Merge pull request #12124 from suvari/master

libreoffice: version bump to 7.5.4.2, add new package: inetutils
This commit is contained in:
Kamil ATLI
2023-07-07 08:11:02 +03:00
committed by GitHub
24 changed files with 1024 additions and 283 deletions
+54
View File
@@ -0,0 +1,54 @@
#!/usr/bin/python
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import get
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
def setup():
#autotools.autoreconf("-vif")
autotools.configure("--prefix=/usr \
--libexecdir=/usr/lib \
--with-systemdsystemunitdir=no \
--localstatedir=/var \
--sysconfdir=/etc \
--with-pam \
--with-socket-dir=/var/run/inetutils \
--with-xinetd=/etc/xinetd.d \
--enable-ftp \
--enable-ftpd \
--enable-telnet \
--enable-telnetd \
--enable-talk \
--enable-talkd \
--disable-rcp \
--disable-servers \
--disable-rlogin \
--disable-rsh \
--disable-rexec \
--disable-rexecd \
--disable-tftp \
--disable-tftpd \
--disable-ping \
--disable-ping6 \
--disable-logger \
--disable-syslogd \
--disable-inetd \
--disable-whois \
--disable-uucpd \
--disable-ifconfig \
--disable-traceroute")
def build():
autotools.make()
#def check():
#autotools.make("check")
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("COPYING", "README")
@@ -0,0 +1,12 @@
[Unit]
Description=FTPD Daemon
After=network.target
[Service]
Type=forking
PIDFile=/run/ftpd.pid
ExecStart=/usr/bin/ftpd -D
ExecStopPost=/usr/bin/rm -f /run/ftpd.pid
[Install]
WantedBy=multi-user.target
@@ -0,0 +1,13 @@
#%PAM-1.0
# For root login to succeed here with pam_securetty, "rlogin" must be
# listed in /etc/securetty.
auth required pam_nologin.so
auth required pam_securetty.so
auth required pam_env.so
auth sufficient pam_rhosts.so
auth include system-auth
account include system-auth
password include system-auth
session optional pam_keyinit.so force revoke
session required pam_loginuid.so
session include system-auth
@@ -0,0 +1,9 @@
[Unit]
Description=Remote Login Facilities Activation Socket
[Socket]
ListenStream=513
Accept=true
[Install]
WantedBy=sockets.target
@@ -0,0 +1,10 @@
service login
{
flags = REUSE
socket_type = stream
wait = no
user = root
server = /usr/bin/rlogind
log_on_failure += USERID
disable = yes
}
@@ -0,0 +1,7 @@
[Unit]
Description=Remote Login Facilities Server
After=local-fs.target
[Service]
ExecStart=-/usr/bin/rlogind
StandardInput=socket
@@ -0,0 +1,11 @@
#%PAM-1.0
# For root login to succeed here with pam_securetty, "rsh" must be
# listed in /etc/securetty.
auth required pam_nologin.so
auth required pam_securetty.so
auth required pam_env.so
auth required pam_rhosts.so
account include system-auth
session optional pam_keyinit.so force revoke
session required pam_loginuid.so
session include system-auth
@@ -0,0 +1,9 @@
[Unit]
Description=Remote Shell Facilities Activation Socket
[Socket]
ListenStream=514
Accept=true
[Install]
WantedBy=sockets.target
@@ -0,0 +1,10 @@
service shell
{
flags = REUSE
socket_type = stream
wait = no
user = root
server = /usr/bin/rshd
log_on_failure += USERID
disable = yes
}
@@ -0,0 +1,7 @@
[Unit]
Description=Remote Shell Facilities Server
After=local-fs.target
[Service]
ExecStart=-/usr/bin/rshd
StandardInput=socket
@@ -0,0 +1,12 @@
[Unit]
Description=Talk Server
Documentation=man:talkd(8) man:talk(1)
[Service]
User=nobody
Group=tty
ExecStart=/usr/bin/talkd
StandardInput=socket
[Install]
Also=talk.socket
@@ -0,0 +1,9 @@
[Unit]
Description=Talk Server Activation Socket
Documentation=man:talkd(8) man:talk(1)
[Socket]
ListenDatagram=0.0.0.0:518
[Install]
WantedBy=sockets.target
@@ -0,0 +1,10 @@
service ntalk
{
flags = REUSE
socket_type = dgram
wait = yes
user = root
server = /usr/bin/talkd
log_on_failure += USERID
disable = yes
}
@@ -0,0 +1,10 @@
[Unit]
Description=Telnet Server Activation Socket
Documentation=man:telnetd(8)
[Socket]
ListenStream=23
Accept=true
[Install]
WantedBy=sockets.target
@@ -0,0 +1,10 @@
service telnet
{
flags = REUSE
socket_type = stream
wait = no
user = root
server = /usr/bin/telnetd
log_on_failure += USERID
disable = yes
}
@@ -0,0 +1,7 @@
[Unit]
Description=Telnet Server
After=local-fs.target
[Service]
ExecStart=-/usr/bin/telnetd
StandardInput=socket
+88
View File
@@ -0,0 +1,88 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>inetutils</Name>
<Homepage>https://www.gnu.org/software/inetutils/</Homepage>
<Packager>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Packager>
<License>GPL3</License>
<Icon>inetutils</Icon>
<Summary>A collection of common network programs</Summary>
<Description>netutils is a collection of common network programs. It includes: An inetd meta-server. An ftp client and server. A telnet client and server.</Description>
<Archive sha1sum="df64dd4ea0e752a839dd51dd8a6a001c9c7d1e96" type="tarxz">https://ftp.gnu.org/gnu/inetutils/inetutils-2.4.tar.xz</Archive>
<BuildDependencies>
<Dependency>pam-devel</Dependency>
<Dependency>libcap-devel</Dependency>
<Dependency>readline-devel</Dependency>
<Dependency>ncurses-devel</Dependency>
<Dependency>libxcrypt-devel</Dependency>
<Dependency>help2man</Dependency>
</BuildDependencies>
<Patches>
<!-- <Patch></Patch> -->
</Patches>
</Source>
<Package>
<Name>inetutils</Name>
<RuntimeDependencies>
<Dependency>pam</Dependency>
<Dependency>libcap</Dependency>
<Dependency>readline</Dependency>
<Dependency>ncurses</Dependency>
<Dependency>libxcrypt</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib/tftpd</Path>
<Path fileType="library">/usr/lib/talkd</Path>
<!-- <Path fileType="library">/usr/lib/rshd</Path> -->
<Path fileType="library">/usr/lib/uucpd</Path>
<!-- <Path fileType="library">/usr/lib/rexecd</Path> -->
<Path fileType="library">/usr/lib/ftpd</Path>
<Path fileType="library">/usr/lib/syslogd</Path>
<Path fileType="library">/usr/lib/telnetd</Path>
<!-- <Path fileType="library">/usr/lib/rlogind</Path> -->
<Path fileType="library">/usr/lib/inetd</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="data">/usr/share/info</Path>
<Path fileType="config">/etc/xinetd.d</Path>
<Path fileType="config">/etc/pam.d</Path>
<Path fileType="data">/usr/share/dbus-1/services</Path>
<Path fileType="data">/var/run/inetutils</Path>
</Files>
<AdditionalFiles>
<AdditionalFile owner="root" permission="0644" target="/etc/xinetd.d/telnet">telnet.xinetd</AdditionalFile>
<AdditionalFile owner="root" permission="0644" target="/etc/xinetd.d/talk">talk.xinetd</AdditionalFile>
<AdditionalFile target="/usr/share/dbus-1/services/ftpd.service" permission="0644" owner="root">ftpd.service</AdditionalFile>
<AdditionalFile target="/usr/share/dbus-1/services/talk.service" permission="0644" owner="root">talk.service</AdditionalFile>
<AdditionalFile target="/usr/share/dbus-1/services/telnet@.service" permission="0644" owner="root">telnet@.service</AdditionalFile>
<AdditionalFile target="/var/run/inetutils/talk.socket" permission="0644" owner="root">talk.socket</AdditionalFile>
<AdditionalFile target="/var/run/inetutils/telnet.socket" permission="0644" owner="root">telnet.socket</AdditionalFile>
<!-- FIXME: Güvenlik kaygısıyla aşagıdakiler kapatıldı, gerekenleri açılabilirsiniz.
The following has been closed for security concerns, you can open the necessary ones. -->
<!-- <AdditionalFile target="/var/run/inetutils/rlogin.socket" permission="0644" owner="root">rlogin.socket</AdditionalFile> -->
<!-- <AdditionalFile target="/var/run/inetutils/rsh.socket" permission="0644" owner="root">rsh.socket</AdditionalFile> -->
<!-- <AdditionalFile target="/usr/share/dbus-1/services/rlogin@.service" permission="0644" owner="root">rlogin@.service</AdditionalFile> -->
<!-- <AdditionalFile target="/usr/share/dbus-1/services/rsh@.service" permission="0644" owner="root">rsh@.service</AdditionalFile> -->
<!-- <AdditionalFile owner="root" permission="0644" target="/etc/xinetd.d/rlogin">rlogin.xinetd</AdditionalFile> -->
<!-- <AdditionalFile owner="root" permission="0644" target="/etc/xinetd.d/rsh">rsh.xinetd</AdditionalFile> -->
<!-- <AdditionalFile owner="root" permission="0644" target="/etc/pam.d/rlogin">rlogin.pam</AdditionalFile> -->
<!-- <AdditionalFile owner="root" permission="0644" target="/etc/pam.d/rsh">rsh.pam</AdditionalFile> -->
</AdditionalFiles>
</Package>
<History>
<Update release="1">
<Date>2023-07-07</Date>
<Version>2.4</Version>
<Comment>First release</Comment>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>inetutils</Name>
<Summary xml:lang="tr">Ortak ağ programlarının bir koleksiyonu</Summary>
<Description xml:lang="tr">netutils, ortak ağ programlarının bir koleksiyonudur. Şunları içerir: Bir inetd meta sunucusu. Bir ftp istemcisi ve sunucusu. Bir telnet istemcisi ve sunucusu.</Description>
</Source>
</PISI>
+1 -1
View File
@@ -96,12 +96,12 @@ def setup():
--with-system-redland \
--with-system-zlib \
--with-system-libetonyek \
--with-system-zxing \
--without-system-dicts \
--without-fonts \
--without-system-hsqldb \
--without-system-libstaroffice \
--without-system-libzmf \
--without-system-ucpp \
--without-system-coinmp \
--without-system-firebird \
--without-system-libcmis \
+97 -76
View File
@@ -3,7 +3,7 @@
<PISI>
<Source>
<Name>libreoffice</Name>
<Homepage>http://www.documentfoundation.org</Homepage>
<Homepage>https://www.libreoffice.org/</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
@@ -13,86 +13,94 @@
<IsA>app:gui</IsA>
<Summary>LibreOffice office suite</Summary>
<Description>LibreOffice is an open source, multi-platform office productivity suite. It includes key desktop applications such as a word processor, a spreadsheet application, a presentation creator-viewer, a formula editor and a drawing program, with a user interface and feature set similar to other office suites. Sophisticated and flexible, LibreOffice also works transparently with a variety of file formats, including those of Microsoft Office.</Description>
<Archive sha1sum="dfea59f582fd13ba352f067742e832e0b4a3b0aa" type="tarxz">http://download.documentfoundation.org/libreoffice/src/7.4.4/libreoffice-7.4.4.2.tar.xz</Archive>
<Archive sha1sum="c5aa89e424ceb560648833c135e42c51ba4ab24d" type="tarxz">http://download.documentfoundation.org/libreoffice/src/7.4.4/libreoffice-dictionaries-7.4.4.2.tar.xz</Archive>
<Archive sha1sum="88614711b9bd19416469efc8667db590dcf1ad75" type="tarxz">http://download.documentfoundation.org/libreoffice/src/7.4.4/libreoffice-help-7.4.4.2.tar.xz</Archive>
<Archive sha1sum="b95a5d11ad9eaf1e05c2b89b1cf25b3e280a4c2f" type="tarxz">http://download.documentfoundation.org/libreoffice/src/7.4.4/libreoffice-translations-7.4.4.2.tar.xz</Archive>
<Archive sha1sum="278033ef87ba714a1171cef04eb76b1b196da1d5" type="tarxz">http://download.documentfoundation.org/libreoffice/src/7.5.4/libreoffice-7.5.4.2.tar.xz</Archive>
<Archive sha1sum="ff2eea5cf174c2793d3a85914716a3014605b409" type="tarxz">http://download.documentfoundation.org/libreoffice/src/7.5.4/libreoffice-dictionaries-7.5.4.2.tar.xz</Archive>
<Archive sha1sum="7753e9e3e1883da34b136f8a1a98f75c97aef0d4" type="tarxz">http://download.documentfoundation.org/libreoffice/src/7.5.4/libreoffice-help-7.5.4.2.tar.xz</Archive>
<Archive sha1sum="a76232af3d2cbed9ea9fbac76edbfe8057258225" type="tarxz">http://download.documentfoundation.org/libreoffice/src/7.5.4/libreoffice-translations-7.5.4.2.tar.xz</Archive>
<!--External build deps-->
<Archive sha1sum="643b830a487632aaae5a42397b3eb5f0b41b7b57" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/xmlsec1-1.2.34.tar.gz</Archive>
<Archive sha1sum="356f92582fa309f2fd9c901dabd4f195af4e85a4" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/xmlsec1-1.2.37.tar.gz</Archive>
<Archive sha1sum="1acea86fd399ed7817879d36370d3d1f8b109050" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/35c94d2df8893241173de1d16b6034c0-swingExSrc.zip</Archive>
<Archive sha1sum="8a90669029e107b61953b90ba11545fef586c2ca" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip</Archive>
<Archive sha1sum="2d49e11b0b711970f494294dc3698f05eb294853" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip</Archive>
<Archive sha1sum="0a134d01e9aeb09b33f4c7450fb41abb7bed9db6" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/commons-logging-1.2-src.tar.gz</Archive>
<Archive sha1sum="43a7ff11dd15370d456b20a093e1ee81279163a0" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/eeb2c7ddf0d302fba4bfc6e97eac9624-libbase-1.1.6.zip</Archive>
<Archive sha1sum="b92930010622906778f713fb8f0153fa0683d018" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/39bb3fcea1514f1369fcfc87542390fd-sacjava-1.3.zip</Archive>
<Archive sha1sum="3232dd31859be4f7eb443c33e8e3287f394789a0" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/3404ab6b1792ae5f16bbd603bd1e1d03-libformula-1.1.7.zip</Archive>
<Archive sha1sum="47b58e0ef2d856df26372a7061ae43fae6e08051" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/97b2d4dba862397f446b217e2b623e71-libloader-1.1.6.zip</Archive>
<Archive sha1sum="5ecb895ffc1eff2c381fa78d2197d0c57422b3df" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/f94d9870737518e3b597f9265f4e9803-libserializer-1.1.6.zip</Archive>
<Archive sha1sum="a637c0c3ad3be32d6814972e1c45e547c5f6359d" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/8ce2fcd72becf06c41f7201d15373ed9-librepository-1.1.6.zip</Archive>
<Archive sha1sum="e393beea80d36ff27b732882c706826988a64f5c" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/3bdf40c0d199af31923e900d082ca2dd-libfonts-1.1.6.zip</Archive>
<Archive sha1sum="b19ad429273abb116432eae3af955ecaf1ab5b17" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/ace6ab49184e329db254e454a010f56d-libxml-1.1.7.zip</Archive>
<Archive sha1sum="65dfba9970bb862d09c1f9e636b86b22f05d3936" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/db60e4fde8dd6d6807523deb71ee34dc-liblayout-0.2.10.zip</Archive>
<Archive sha1sum="452eba922e4f41603539c9dc39947d2271e47093" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz</Archive>
<Archive sha1sum="34ddcc2c3eb993f1148d8c968cf949a4f8f58ceb" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/language-subtag-registry-2022-08-08.tar.bz2</Archive>
<Archive sha1sum="6cc86629f8d276ab1c45c3f337674284fab4eff6" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/collada2gltf-master-6258611a6a.tar.bz2</Archive>
<Archive sha1sum="c4f5760a1d21213dc52e2cf3ad9c0b9112585f36" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/OpenCOLLADA-master-6509aa13af.tar.bz2</Archive>
<Archive sha1sum="7168b0f40aa5c72267899601c116d2348d2f56ec" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip</Archive>
<Archive sha1sum="f5fce3d5eb21294f9ffba40c34e7c736ab64d6b9" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/62c0b97e94fe47d5e50ff605d2edf37a-hsqldb-2.3.3.zip</Archive>
<Archive sha1sum="3478ebc27bb76025f4b5c2ae6a9bac6090e2cb09" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip</Archive>
<Archive sha1sum="1acd76cd63f7b19f6a0252eb029c3cb13a25aa9b" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip</Archive>
<Archive sha1sum="f945b23b7801a3601998973028a054ee379967cb" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/libfreehand-0.1.2.tar.xz</Archive>
<Archive sha1sum="285d712cc63e3f6325e11ca2004849ba05e75d3a" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/liborcus-0.17.2.tar.bz2</Archive>
<Archive sha1sum="0e7bb87384e9ad80ea87c61d13961670be9d8af5" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/liborcus-0.18.0.tar.xz</Archive>
<Archive sha1sum="76497846de1f3d2ef438d79e31328107658d10be" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/beeca87be45ec87d241ddd0e1bad80c1-bsh-2.0b6-src.zip</Archive>
<Archive sha1sum="0556c392beb59433e577e3517575801212201df6" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/5ade6ae2a99bc1e9e57031ca88d36dad-hyphen-2.8.8.tar.gz</Archive>
<Archive sha1sum="d90dceea7c1a04ad4324f5ee286f3eaa9129bdbd" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/libabw-0.1.3.tar.xz</Archive>
<Archive sha1sum="feca71d94d2c6e6d5565ff2a3210ba61fb2451d9" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/libcmis-0.5.2.tar.xz</Archive>
<Archive sha1sum="0631e2efa6d8580618fa39091bea80000fd44dbd" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/libnumbertext-1.0.11.tar.xz</Archive>
<Archive sha1sum="154279bc5939d7099697887ea15c5ca921abeaeb" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/lxml-4.1.1.tgz</Archive>
<Archive sha1sum="54978e00d5529eb3e1947e9809445602c7bd0037" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/libexttextcat-3.4.6.tar.xz</Archive>
<Archive sha1sum="198d281b63ddfe0a6d3c9678ffe62b458fbbdabf" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/libmwaw-0.3.21.tar.xz</Archive>
<Archive sha1sum="9b168499b802eb63aa16be2a7a6f9112b4dbbac3" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/libstaroffice-0.0.7.tar.xz</Archive>
<Archive sha1sum="c0dc491800f4aa24960d20fa38b9f84df1c15e07" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/libzmf-0.0.2.tar.xz</Archive>
<Archive sha1sum="18fde9588c236d51eea9437ed882d8b751daf01f" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/libe-book-0.1.3.tar.xz</Archive>
<Archive sha1sum="48e81c60e173552fce77ce3b414e68b7d52a5301" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/libepubgen-0.1.1.tar.xz</Archive>
<Archive sha1sum="f0e1b3d7996f2340a95309b61d9b27b596aca3da" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/libqxp-0.0.2.tar.xz</Archive>
<Archive sha1sum="815216ecc4c8cac1cc5905ca3fb5d6168c1deac4" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/26b3e95ddf3d9c077c480ea45874b3b8-lp_solve_5.5.tar.gz</Archive>
<Archive sha1sum="c038831d84882cdf639e038e44decb1e40527591" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/a8c2c5b8f09e7ede322d5c602ff6a4b6-mythes-1.2.4.tar.gz</Archive>
<Archive sha1sum="373f266a9fa9837c675b202ebe3399ef7f69bb39" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/mythes-1.2.5.tar.xz</Archive>
<Archive sha1sum="32067e3859366477d80a7482221e579b88791b28" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/pdfium-5058.tar.bz2</Archive>
<Archive sha1sum="a540f5759db8daf6e374158814f3564e1507486f" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/pdfium-5522.tar.bz2</Archive>
<Archive sha1sum="df391cea80b616eec37a51eb8b2dddb0024c8e6a" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/QR-Code-generator-1.4.0.tar.gz</Archive>
<Archive sha1sum="15c5a11998ab606999b8ef61ff2c04d217064d62" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/Firebird-3.0.7.33374-0.tar.bz2</Archive>
<Archive sha1sum="f52c74abcbf55c72cd89f709db658ea33ed45154" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/CoinMP-1.7.6.tgz</Archive>
<Archive sha1sum="3acd305258bc017c7224b1933edd148deb03d79a" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/CoinMP-1.8.4.tgz</Archive>
<Archive sha1sum="842a219491c4119b2ef148adffe9d537723a493e" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/ltm-1.0.zip</Archive>
<Archive sha1sum="bcf50ce79a21340388894cef522871b14926ad2d" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/box2d-2.4.1.tar.gz</Archive>
<Archive sha1sum="083509db5ad9d1680830be9add727d58b54ca0d3" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/dtoa-20180411.tgz</Archive>
<Archive sha1sum="bd92f8c5ab55777c66492a6f3566d013f19c9bbe" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/a233181e03d3c307668b4c722d881661-mariadb_client-2.0.0-src.tar.gz</Archive>
<Archive sha1sum="56b48c3a11edb63415f18395b940824bcd9efe93" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/mariadb-connector-c-3.1.8-src.tar.gz</Archive>
<Archive sha1sum="128b827fbe2337b67661e2de79a08343a3d7d281" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/skia-m103-b301ff025004c9cd82816c86c547588e6c24b466.tar.xz</Archive>
<Archive sha1sum="4915f1b8613978441d36b9d8648ffe5554604b8d" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/zxing-cpp-1.2.0.tar.gz</Archive>
<Archive sha1sum="8038a26952534c32483f9269fc6b061ee4d586c6" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/zxing-cpp-1.4.0.tar.gz</Archive>
<Archive sha1sum="28bba6fd877ada1629d5e093d7b1d3701a6bb36f" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/poppler-22.12.0.tar.xz</Archive>
<Archive sha1sum="d356e54be3e787a6d691f1fa8e0f2b8a89fc5b5f" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/poppler-data-0.4.11.tar.gz</Archive>
<Archive sha1sum="30019f0b0c682f14e58f0302a24d3cf2b1b0d4e5" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/libcuckoo-93217f8d391718380c508a722ab9acd5e9081233.tar.gz</Archive>
<Archive sha1sum="d336802a36ed2c87dd243e7c2f1d0542dace5cca" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/extern/884ed41809687c3e168fc7c19b16585149ff058eca79acbf3ee784f6630704cc-opens___.ttf</Archive>
<Archive sha1sum="dd55efd721df8a013709e27836bdf26623e5320e" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/extern/f543e6e2d7275557a839a164941c0a86e5f2c3f2a0042bfc434c88c6dde9e140-opens___.ttf</Archive>
<Archive sha1sum="bdec3915c01cd60e20892376aa5e5a0d3980c389" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/b7cae45ad2c23551fd6ccb8ae2c1f59e-numbertext_0.9.5.oxt</Archive>
<Archive sha1sum="643b830a487632aaae5a42397b3eb5f0b41b7b57" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/xmlsec1-1.2.34.tar.gz</Archive>
<Archive sha1sum="356f92582fa309f2fd9c901dabd4f195af4e85a4" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/xmlsec1-1.2.37.tar.gz</Archive>
<Archive sha1sum="1acea86fd399ed7817879d36370d3d1f8b109050" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/35c94d2df8893241173de1d16b6034c0-swingExSrc.zip</Archive>
<Archive sha1sum="8a90669029e107b61953b90ba11545fef586c2ca" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip</Archive>
<Archive sha1sum="2d49e11b0b711970f494294dc3698f05eb294853" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip</Archive>
<Archive sha1sum="0a134d01e9aeb09b33f4c7450fb41abb7bed9db6" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/commons-logging-1.2-src.tar.gz</Archive>
<Archive sha1sum="43a7ff11dd15370d456b20a093e1ee81279163a0" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/eeb2c7ddf0d302fba4bfc6e97eac9624-libbase-1.1.6.zip</Archive>
<Archive sha1sum="b92930010622906778f713fb8f0153fa0683d018" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/39bb3fcea1514f1369fcfc87542390fd-sacjava-1.3.zip</Archive>
<Archive sha1sum="3232dd31859be4f7eb443c33e8e3287f394789a0" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/3404ab6b1792ae5f16bbd603bd1e1d03-libformula-1.1.7.zip</Archive>
<Archive sha1sum="47b58e0ef2d856df26372a7061ae43fae6e08051" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/97b2d4dba862397f446b217e2b623e71-libloader-1.1.6.zip</Archive>
<Archive sha1sum="5ecb895ffc1eff2c381fa78d2197d0c57422b3df" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/f94d9870737518e3b597f9265f4e9803-libserializer-1.1.6.zip</Archive>
<Archive sha1sum="a637c0c3ad3be32d6814972e1c45e547c5f6359d" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/8ce2fcd72becf06c41f7201d15373ed9-librepository-1.1.6.zip</Archive>
<Archive sha1sum="e393beea80d36ff27b732882c706826988a64f5c" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/3bdf40c0d199af31923e900d082ca2dd-libfonts-1.1.6.zip</Archive>
<Archive sha1sum="b19ad429273abb116432eae3af955ecaf1ab5b17" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/ace6ab49184e329db254e454a010f56d-libxml-1.1.7.zip</Archive>
<Archive sha1sum="65dfba9970bb862d09c1f9e636b86b22f05d3936" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/db60e4fde8dd6d6807523deb71ee34dc-liblayout-0.2.10.zip</Archive>
<Archive sha1sum="452eba922e4f41603539c9dc39947d2271e47093" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz</Archive>
<Archive sha1sum="3cb8ff762e94cf732e975faa4769c0fe8f9e70fb" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/language-subtag-registry-2023-05-11.tar.bz2</Archive>
<Archive sha1sum="6cc86629f8d276ab1c45c3f337674284fab4eff6" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/collada2gltf-master-6258611a6a.tar.bz2</Archive>
<Archive sha1sum="c4f5760a1d21213dc52e2cf3ad9c0b9112585f36" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/OpenCOLLADA-master-6509aa13af.tar.bz2</Archive>
<Archive sha1sum="7168b0f40aa5c72267899601c116d2348d2f56ec" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip</Archive>
<Archive sha1sum="f5fce3d5eb21294f9ffba40c34e7c736ab64d6b9" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/62c0b97e94fe47d5e50ff605d2edf37a-hsqldb-2.3.3.zip</Archive>
<Archive sha1sum="3478ebc27bb76025f4b5c2ae6a9bac6090e2cb09" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip</Archive>
<Archive sha1sum="1acd76cd63f7b19f6a0252eb029c3cb13a25aa9b" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip</Archive>
<Archive sha1sum="f945b23b7801a3601998973028a054ee379967cb" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/libfreehand-0.1.2.tar.xz</Archive>
<Archive sha1sum="285d712cc63e3f6325e11ca2004849ba05e75d3a" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/liborcus-0.17.2.tar.bz2</Archive>
<Archive sha1sum="9bff8c07b5dace0f9ec0d67e0629de1c2f974d9a" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/liborcus-0.18.1.tar.xz</Archive>
<Archive sha1sum="76497846de1f3d2ef438d79e31328107658d10be" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/beeca87be45ec87d241ddd0e1bad80c1-bsh-2.0b6-src.zip</Archive>
<Archive sha1sum="0556c392beb59433e577e3517575801212201df6" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/5ade6ae2a99bc1e9e57031ca88d36dad-hyphen-2.8.8.tar.gz</Archive>
<Archive sha1sum="d90dceea7c1a04ad4324f5ee286f3eaa9129bdbd" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/libabw-0.1.3.tar.xz</Archive>
<Archive sha1sum="feca71d94d2c6e6d5565ff2a3210ba61fb2451d9" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/libcmis-0.5.2.tar.xz</Archive>
<Archive sha1sum="0631e2efa6d8580618fa39091bea80000fd44dbd" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/libnumbertext-1.0.11.tar.xz</Archive>
<Archive sha1sum="b0242ca2de9868fe8ec9c1e8ddbb394d61e760c0" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/lxml-4.9.2.tgz</Archive>
<Archive sha1sum="54978e00d5529eb3e1947e9809445602c7bd0037" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/libexttextcat-3.4.6.tar.xz</Archive>
<Archive sha1sum="198d281b63ddfe0a6d3c9678ffe62b458fbbdabf" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/libmwaw-0.3.21.tar.xz</Archive>
<Archive sha1sum="9b168499b802eb63aa16be2a7a6f9112b4dbbac3" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/libstaroffice-0.0.7.tar.xz</Archive>
<Archive sha1sum="c0dc491800f4aa24960d20fa38b9f84df1c15e07" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/libzmf-0.0.2.tar.xz</Archive>
<Archive sha1sum="18fde9588c236d51eea9437ed882d8b751daf01f" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/libe-book-0.1.3.tar.xz</Archive>
<Archive sha1sum="48e81c60e173552fce77ce3b414e68b7d52a5301" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/libepubgen-0.1.1.tar.xz</Archive>
<Archive sha1sum="f0e1b3d7996f2340a95309b61d9b27b596aca3da" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/libqxp-0.0.2.tar.xz</Archive>
<Archive sha1sum="815216ecc4c8cac1cc5905ca3fb5d6168c1deac4" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">http://dev-www.libreoffice.org/src/26b3e95ddf3d9c077c480ea45874b3b8-lp_solve_5.5.tar.gz</Archive>
<Archive sha1sum="c038831d84882cdf639e038e44decb1e40527591" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/a8c2c5b8f09e7ede322d5c602ff6a4b6-mythes-1.2.4.tar.gz</Archive>
<Archive sha1sum="373f266a9fa9837c675b202ebe3399ef7f69bb39" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/mythes-1.2.5.tar.xz</Archive>
<!-- <Archive sha1sum="32067e3859366477d80a7482221e579b88791b28" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/pdfium-5058.tar.bz2</Archive> -->
<Archive sha1sum="fe568aa9660f4bffa68b0dd38380c92a65a031ee" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/pdfium-5408.tar.bz2</Archive>
<Archive sha1sum="443f5e51bf9bffe50432b3d5c338bdbf2f28a92b" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/pdfium-5778.tar.bz2</Archive>
<Archive sha1sum="df391cea80b616eec37a51eb8b2dddb0024c8e6a" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/QR-Code-generator-1.4.0.tar.gz</Archive>
<Archive sha1sum="15c5a11998ab606999b8ef61ff2c04d217064d62" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/Firebird-3.0.7.33374-0.tar.bz2</Archive>
<Archive sha1sum="29356301dd14629e0a421821cb394cef7db08442" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/Firebird-4.0.2.2816-0.tar.xz</Archive>
<Archive sha1sum="f52c74abcbf55c72cd89f709db658ea33ed45154" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/CoinMP-1.7.6.tgz</Archive>
<Archive sha1sum="3acd305258bc017c7224b1933edd148deb03d79a" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/CoinMP-1.8.4.tgz</Archive>
<Archive sha1sum="842a219491c4119b2ef148adffe9d537723a493e" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/ltm-1.0.zip</Archive>
<Archive sha1sum="f0a9bcf805b6eb2ba3606bcb70989517eef58635" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/ltm-1.2.0.tar.xz</Archive>
<Archive sha1sum="bcf50ce79a21340388894cef522871b14926ad2d" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/box2d-2.4.1.tar.gz</Archive>
<Archive sha1sum="083509db5ad9d1680830be9add727d58b54ca0d3" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/dtoa-20180411.tgz</Archive>
<Archive sha1sum="bd92f8c5ab55777c66492a6f3566d013f19c9bbe" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/a233181e03d3c307668b4c722d881661-mariadb_client-2.0.0-src.tar.gz</Archive>
<Archive sha1sum="56b48c3a11edb63415f18395b940824bcd9efe93" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/mariadb-connector-c-3.1.8-src.tar.gz</Archive>
<Archive sha1sum="128b827fbe2337b67661e2de79a08343a3d7d281" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/skia-m103-b301ff025004c9cd82816c86c547588e6c24b466.tar.xz</Archive>
<Archive sha1sum="44bfe996e61f6b72e29db5fc2f6abf41cc2d6768" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/skia-m116-2ddcf183eb260f63698aa74d1bb380f247ad7ccd.tar.xz</Archive>
<!-- <Archive sha1sum="4915f1b8613978441d36b9d8648ffe5554604b8d" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/zxing-cpp-1.2.0.tar.gz</Archive> -->
<!-- <Archive sha1sum="8038a26952534c32483f9269fc6b061ee4d586c6" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/zxing-cpp-1.4.0.tar.gz</Archive> -->
<Archive sha1sum="28bba6fd877ada1629d5e093d7b1d3701a6bb36f" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/poppler-22.12.0.tar.xz</Archive>
<Archive sha1sum="918d2ee8f1fa6c85d244b97b4c2d6a458d53e18d" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/poppler-23.06.0.tar.xz</Archive>
<Archive sha1sum="d356e54be3e787a6d691f1fa8e0f2b8a89fc5b5f" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/poppler-data-0.4.11.tar.gz</Archive>
<Archive sha1sum="dc2c4360fb7de80dd5e1d0b4a1e74a4709dd2daf" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/poppler-data-0.4.12.tar.gz</Archive>
<Archive sha1sum="30019f0b0c682f14e58f0302a24d3cf2b1b0d4e5" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/libcuckoo-93217f8d391718380c508a722ab9acd5e9081233.tar.gz</Archive>
<Archive sha1sum="d336802a36ed2c87dd243e7c2f1d0542dace5cca" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">https://dev-www.libreoffice.org/extern/884ed41809687c3e168fc7c19b16585149ff058eca79acbf3ee784f6630704cc-opens___.ttf</Archive>
<Archive sha1sum="dd55efd721df8a013709e27836bdf26623e5320e" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">https://dev-www.libreoffice.org/extern/f543e6e2d7275557a839a164941c0a86e5f2c3f2a0042bfc434c88c6dde9e140-opens___.ttf</Archive>
<Archive sha1sum="bdec3915c01cd60e20892376aa5e5a0d3980c389" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/b7cae45ad2c23551fd6ccb8ae2c1f59e-numbertext_0.9.5.oxt</Archive>
<!--for test suit-->
<Archive sha1sum="a2aaff3c6e19d7442295ca8a1c39e8c3a8b4081a" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">http://dev-www.libreoffice.org/extern/odfvalidator-1.2.0-incubating-SNAPSHOT-jar-with-dependencies-971c54fd38a968f5860014b44301872706f9e540.jar</Archive>
<Archive sha1sum="61339dceb65aad4c81edf2169857e57863ec46db" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/extern/odfvalidator-0.9.0-RC2-SNAPSHOT-jar-with-dependencies-2726ab578664434a545f8379a01a9faffac0ae73.jar</Archive>
<Archive sha1sum="f4772556920231cf164348e51285b0c18dfc7f5b" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">http://dev-www.libreoffice.org/extern/8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar</Archive>
<Archive sha1sum="02545575792c66a176969b71c09ae0e91ebd49a4" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/dragonbox-1.1.3.tar.gz</Archive>
<Archive sha1sum="dd841f463ba99523fe811e3ca03db5784d8ed937" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/libxml2-2.10.3.tar.xz</Archive>
<Archive sha1sum="24586e2a8e01a9cced102d68852661b964502429" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/libwebp-1.2.4.tar.gz</Archive>
<Archive sha1sum="3cfc332ebbd7d7ec0fe5a72c0f20264e2950d87a" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/libwebp-1.3.0-rc1.tar.gz</Archive>
<Archive sha1sum="e0e612005f691863359315108dadc8c3a999cc8e" type="binary" target="libreoffice-7.4.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/tiff-4.5.0rc3.tar.xz</Archive>
<Archive sha1sum="a2aaff3c6e19d7442295ca8a1c39e8c3a8b4081a" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">http://dev-www.libreoffice.org/extern/odfvalidator-1.2.0-incubating-SNAPSHOT-jar-with-dependencies-971c54fd38a968f5860014b44301872706f9e540.jar</Archive>
<Archive sha1sum="61339dceb65aad4c81edf2169857e57863ec46db" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">https://dev-www.libreoffice.org/extern/odfvalidator-0.9.0-RC2-SNAPSHOT-jar-with-dependencies-2726ab578664434a545f8379a01a9faffac0ae73.jar</Archive>
<Archive sha1sum="f4772556920231cf164348e51285b0c18dfc7f5b" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">https://dev-www.libreoffice.org/extern/a1adc7a47ed126ed029893c23c8bdd43-officeotron-0.7.4-master.jar</Archive>
<Archive sha1sum="02545575792c66a176969b71c09ae0e91ebd49a4" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/dragonbox-1.1.3.tar.gz</Archive>
<Archive sha1sum="66e0f5e35ebed5cbc47a0811451491226d4cabc5" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/libxml2-2.11.4.tar.xz</Archive>
<!-- <Archive sha1sum="24586e2a8e01a9cced102d68852661b964502429" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/libwebp-1.2.4.tar.gz</Archive> -->
<Archive sha1sum="49da8782aeedab8779bb2bc1a3f24bf02807e8ee" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/libwebp-1.3.0.tar.gz</Archive>
<Archive sha1sum="068accf4b781052fe1144c26831babdf07b48787" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/libwebp-1.3.1.tar.gz</Archive>
<Archive sha1sum="e0e612005f691863359315108dadc8c3a999cc8e" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/tiff-4.5.0rc3.tar.xz</Archive>
<Archive sha1sum="1cd4a4bd455efee82e351cd60f472e7f2c15217e" type="binary" target="libreoffice-7.5.4.2/external/tarballs/">https://dev-www.libreoffice.org/src/tiff-4.5.1.tar.xz</Archive>
<Patches>
<Patch>make-pyuno-work-with-system-wide-module-install.diff</Patch>
<Patch>623ea5c.diff</Patch>
<Patch>Remove_dependency_on_BitArray.h_from_zxing-1.2.0.patch</Patch>
<!-- <Patch>Remove_dependency_on_BitArray.h_from_zxing-1.2.0.patch</Patch> -->
<!-- <Patch>0001-rhbz-1918152-fix-FTBFS.patch </Patch> -->
</Patches>
@@ -199,6 +207,7 @@
<Dependency>gpgme-devel</Dependency>
<Dependency>libepoxy-devel</Dependency>
<Dependency>ccache</Dependency>
<Dependency>zxing-cpp-devel</Dependency>
</BuildDependencies>
</Source>
@@ -238,6 +247,7 @@
<Dependency>libXinerama</Dependency>
<Dependency>libjpeg-turbo</Dependency>
<Dependency>gstreamer</Dependency>
<Dependency>jre8-openjdk-headless</Dependency>
<Dependency>jre-openjdk-headless</Dependency>
<Dependency>jre-openjdk</Dependency>
<Dependency versionFrom="3.22.8">gtk3</Dependency>
@@ -269,6 +279,7 @@
<Dependency>libwps</Dependency>
<Dependency>libetonyek</Dependency>
<Dependency>xcb-util-wm</Dependency>
<Dependency>zxing-cpp</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
@@ -2075,6 +2086,7 @@
<Summary>libreoffice-dsb, Lower Sorbian language pack for LibreOffice.</Summary>
<Files>
<Path fileType="data">/usr/lib/libreoffice/readmes/*_dsb</Path>
<Path fileType="data">/usr/lib/libreoffice/help/dsb</Path>
<Path fileType="data">/usr/lib/libreoffice/share/autotext/dsb</Path>
<Path fileType="data">/usr/lib/libreoffice/share/autocorr/acor_dsb.dat</Path>
<Path fileType="data">/usr/lib/libreoffice/share/registry/*dsb.xcd</Path>
@@ -2252,6 +2264,7 @@
<Summary>libreoffice-fa, Persian language pack for LibreOffice.</Summary>
<Files>
<Path fileType="data">/usr/lib/libreoffice/readmes/*_fa</Path>
<Path fileType="data">/usr/lib/libreoffice/share/extensions/dict-fa</Path>
<Path fileType="data">/usr/lib/libreoffice/share/autotext/fa</Path>
<Path fileType="data">/usr/lib/libreoffice/share/registry/*fa.xcd</Path>
<Path fileType="data">/usr/lib/libreoffice/share/registry/res/*fa.xcd</Path>
@@ -2496,6 +2509,7 @@
<Summary>libreoffice-hsb, Sorbian Upper language pack for LibreOffice.</Summary>
<Files>
<Path fileType="data">/usr/lib/libreoffice/readmes/*_hsb</Path>
<Path fileType="data">/usr/lib/libreoffice/help/hsb</Path>
<Path fileType="data">/usr/lib/libreoffice/share/autotext/hsb</Path>
<Path fileType="data">/usr/lib/libreoffice/share/registry/*hsb.xcd</Path>
<Path fileType="data">/usr/lib/libreoffice/share/registry/res/*hsb.xcd</Path>
@@ -3812,6 +3826,13 @@
</Package>
<History>
<Update release="24">
<Date>2023-01-15</Date>
<Version>7.5.4.2</Version>
<Comment>Version Bump</Comment>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Update>
<Update release="23">
<Date>2023-01-15</Date>
<Version>7.4.4.2</Version>
+628 -204
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -1 +1 @@
b98f9a799b99fb261a5465bc7cd03dae7c781310
184ff56ab8d9c81201a2ba18d16a82304dc62675
BIN
View File
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
7b302ad5f198840ae8505b73cf7cadb9a3684abd
3046efa3cf82746cc68eeb6f458bb5844b1d362d