diff --git a/network/connection/inetutils/actions.py b/network/connection/inetutils/actions.py new file mode 100644 index 0000000000..83ea6bb6ee --- /dev/null +++ b/network/connection/inetutils/actions.py @@ -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") diff --git a/network/connection/inetutils/files/ftpd.service b/network/connection/inetutils/files/ftpd.service new file mode 100644 index 0000000000..c1deb0d52a --- /dev/null +++ b/network/connection/inetutils/files/ftpd.service @@ -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 diff --git a/network/connection/inetutils/files/rlogin.pam b/network/connection/inetutils/files/rlogin.pam new file mode 100644 index 0000000000..d92a5da404 --- /dev/null +++ b/network/connection/inetutils/files/rlogin.pam @@ -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 diff --git a/network/connection/inetutils/files/rlogin.socket b/network/connection/inetutils/files/rlogin.socket new file mode 100644 index 0000000000..c8c276c59e --- /dev/null +++ b/network/connection/inetutils/files/rlogin.socket @@ -0,0 +1,9 @@ +[Unit] +Description=Remote Login Facilities Activation Socket + +[Socket] +ListenStream=513 +Accept=true + +[Install] +WantedBy=sockets.target diff --git a/network/connection/inetutils/files/rlogin.xinetd b/network/connection/inetutils/files/rlogin.xinetd new file mode 100644 index 0000000000..bffdb90116 --- /dev/null +++ b/network/connection/inetutils/files/rlogin.xinetd @@ -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 +} diff --git a/network/connection/inetutils/files/rlogin@.service b/network/connection/inetutils/files/rlogin@.service new file mode 100644 index 0000000000..77c18caa92 --- /dev/null +++ b/network/connection/inetutils/files/rlogin@.service @@ -0,0 +1,7 @@ +[Unit] +Description=Remote Login Facilities Server +After=local-fs.target + +[Service] +ExecStart=-/usr/bin/rlogind +StandardInput=socket diff --git a/network/connection/inetutils/files/rsh.pam b/network/connection/inetutils/files/rsh.pam new file mode 100644 index 0000000000..3c04bc7d68 --- /dev/null +++ b/network/connection/inetutils/files/rsh.pam @@ -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 diff --git a/network/connection/inetutils/files/rsh.socket b/network/connection/inetutils/files/rsh.socket new file mode 100644 index 0000000000..4d44b99eb8 --- /dev/null +++ b/network/connection/inetutils/files/rsh.socket @@ -0,0 +1,9 @@ +[Unit] +Description=Remote Shell Facilities Activation Socket + +[Socket] +ListenStream=514 +Accept=true + +[Install] +WantedBy=sockets.target diff --git a/network/connection/inetutils/files/rsh.xinetd b/network/connection/inetutils/files/rsh.xinetd new file mode 100644 index 0000000000..c8848ce7f8 --- /dev/null +++ b/network/connection/inetutils/files/rsh.xinetd @@ -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 +} diff --git a/network/connection/inetutils/files/rsh@.service b/network/connection/inetutils/files/rsh@.service new file mode 100644 index 0000000000..403754a9fe --- /dev/null +++ b/network/connection/inetutils/files/rsh@.service @@ -0,0 +1,7 @@ +[Unit] +Description=Remote Shell Facilities Server +After=local-fs.target + +[Service] +ExecStart=-/usr/bin/rshd +StandardInput=socket diff --git a/network/connection/inetutils/files/talk.service b/network/connection/inetutils/files/talk.service new file mode 100644 index 0000000000..25eb6732d6 --- /dev/null +++ b/network/connection/inetutils/files/talk.service @@ -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 diff --git a/network/connection/inetutils/files/talk.socket b/network/connection/inetutils/files/talk.socket new file mode 100644 index 0000000000..b09e07cbb8 --- /dev/null +++ b/network/connection/inetutils/files/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 diff --git a/network/connection/inetutils/files/talk.xinetd b/network/connection/inetutils/files/talk.xinetd new file mode 100644 index 0000000000..b62e563107 --- /dev/null +++ b/network/connection/inetutils/files/talk.xinetd @@ -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 +} diff --git a/network/connection/inetutils/files/telnet.socket b/network/connection/inetutils/files/telnet.socket new file mode 100644 index 0000000000..811b6725fa --- /dev/null +++ b/network/connection/inetutils/files/telnet.socket @@ -0,0 +1,10 @@ +[Unit] +Description=Telnet Server Activation Socket +Documentation=man:telnetd(8) + +[Socket] +ListenStream=23 +Accept=true + +[Install] +WantedBy=sockets.target diff --git a/network/connection/inetutils/files/telnet.xinetd b/network/connection/inetutils/files/telnet.xinetd new file mode 100644 index 0000000000..c56f339851 --- /dev/null +++ b/network/connection/inetutils/files/telnet.xinetd @@ -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 +} diff --git a/network/connection/inetutils/files/telnet@.service b/network/connection/inetutils/files/telnet@.service new file mode 100644 index 0000000000..d92af371ba --- /dev/null +++ b/network/connection/inetutils/files/telnet@.service @@ -0,0 +1,7 @@ +[Unit] +Description=Telnet Server +After=local-fs.target + +[Service] +ExecStart=-/usr/bin/telnetd +StandardInput=socket diff --git a/network/connection/inetutils/pspec.xml b/network/connection/inetutils/pspec.xml new file mode 100644 index 0000000000..f4c4da71cb --- /dev/null +++ b/network/connection/inetutils/pspec.xml @@ -0,0 +1,88 @@ + + + + + inetutils + https://www.gnu.org/software/inetutils/ + + Kamil Atlı + suvari@pisilinux.org + + GPL3 + inetutils + A collection of common network programs + netutils is a collection of common network programs. It includes: An inetd meta-server. An ftp client and server. A telnet client and server. + https://ftp.gnu.org/gnu/inetutils/inetutils-2.4.tar.xz + + pam-devel + libcap-devel + readline-devel + ncurses-devel + libxcrypt-devel + help2man + + + + + + + + inetutils + + pam + libcap + readline + ncurses + libxcrypt + + + /usr/share/man + /usr/bin + /usr/lib/tftpd + /usr/lib/talkd + + /usr/lib/uucpd + + /usr/lib/ftpd + /usr/lib/syslogd + /usr/lib/telnetd + + /usr/lib/inetd + /usr/share/doc + /usr/share/info + /etc/xinetd.d + /etc/pam.d + /usr/share/dbus-1/services + /var/run/inetutils + + + telnet.xinetd + talk.xinetd + ftpd.service + talk.service + telnet@.service + talk.socket + telnet.socket + + + + + + + + + + + + + + + 2023-07-07 + 2.4 + First release + Kamil Atlı + suvari@pisilinux.org + + + diff --git a/network/connection/inetutils/translations.xml b/network/connection/inetutils/translations.xml new file mode 100644 index 0000000000..7afcbdee54 --- /dev/null +++ b/network/connection/inetutils/translations.xml @@ -0,0 +1,8 @@ + + + + inetutils + Ortak ağ programlarının bir koleksiyonu + 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. + + diff --git a/office/libreoffice/libreoffice/actions.py b/office/libreoffice/libreoffice/actions.py index 5d92c09c70..04f15b9442 100644 --- a/office/libreoffice/libreoffice/actions.py +++ b/office/libreoffice/libreoffice/actions.py @@ -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 \ diff --git a/office/libreoffice/libreoffice/pspec.xml b/office/libreoffice/libreoffice/pspec.xml index 99bdb31905..a93913ea25 100644 --- a/office/libreoffice/libreoffice/pspec.xml +++ b/office/libreoffice/libreoffice/pspec.xml @@ -3,7 +3,7 @@ libreoffice - http://www.documentfoundation.org + https://www.libreoffice.org/ PisiLinux Community admins@pisilinux.org @@ -13,86 +13,94 @@ app:gui LibreOffice office suite 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. - http://download.documentfoundation.org/libreoffice/src/7.4.4/libreoffice-7.4.4.2.tar.xz - http://download.documentfoundation.org/libreoffice/src/7.4.4/libreoffice-dictionaries-7.4.4.2.tar.xz - http://download.documentfoundation.org/libreoffice/src/7.4.4/libreoffice-help-7.4.4.2.tar.xz - http://download.documentfoundation.org/libreoffice/src/7.4.4/libreoffice-translations-7.4.4.2.tar.xz + http://download.documentfoundation.org/libreoffice/src/7.5.4/libreoffice-7.5.4.2.tar.xz + http://download.documentfoundation.org/libreoffice/src/7.5.4/libreoffice-dictionaries-7.5.4.2.tar.xz + http://download.documentfoundation.org/libreoffice/src/7.5.4/libreoffice-help-7.5.4.2.tar.xz + http://download.documentfoundation.org/libreoffice/src/7.5.4/libreoffice-translations-7.5.4.2.tar.xz - https://dev-www.libreoffice.org/src/xmlsec1-1.2.34.tar.gz - https://dev-www.libreoffice.org/src/xmlsec1-1.2.37.tar.gz - http://dev-www.libreoffice.org/src/35c94d2df8893241173de1d16b6034c0-swingExSrc.zip - http://dev-www.libreoffice.org/src/798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip - http://dev-www.libreoffice.org/src/a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip - http://dev-www.libreoffice.org/src/commons-logging-1.2-src.tar.gz - http://dev-www.libreoffice.org/src/eeb2c7ddf0d302fba4bfc6e97eac9624-libbase-1.1.6.zip - http://dev-www.libreoffice.org/src/39bb3fcea1514f1369fcfc87542390fd-sacjava-1.3.zip - http://dev-www.libreoffice.org/src/3404ab6b1792ae5f16bbd603bd1e1d03-libformula-1.1.7.zip - http://dev-www.libreoffice.org/src/97b2d4dba862397f446b217e2b623e71-libloader-1.1.6.zip - http://dev-www.libreoffice.org/src/f94d9870737518e3b597f9265f4e9803-libserializer-1.1.6.zip - http://dev-www.libreoffice.org/src/8ce2fcd72becf06c41f7201d15373ed9-librepository-1.1.6.zip - http://dev-www.libreoffice.org/src/3bdf40c0d199af31923e900d082ca2dd-libfonts-1.1.6.zip - http://dev-www.libreoffice.org/src/ace6ab49184e329db254e454a010f56d-libxml-1.1.7.zip - http://dev-www.libreoffice.org/src/db60e4fde8dd6d6807523deb71ee34dc-liblayout-0.2.10.zip - http://dev-www.libreoffice.org/src/0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz - https://dev-www.libreoffice.org/src/language-subtag-registry-2022-08-08.tar.bz2 - http://dev-www.libreoffice.org/src/collada2gltf-master-6258611a6a.tar.bz2 - http://dev-www.libreoffice.org/src/OpenCOLLADA-master-6509aa13af.tar.bz2 - https://dev-www.libreoffice.org/src/17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip - https://dev-www.libreoffice.org/src/62c0b97e94fe47d5e50ff605d2edf37a-hsqldb-2.3.3.zip - http://dev-www.libreoffice.org/src/d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip - http://dev-www.libreoffice.org/src/ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip - http://dev-www.libreoffice.org/src/libfreehand-0.1.2.tar.xz - https://dev-www.libreoffice.org/src/liborcus-0.17.2.tar.bz2 - https://dev-www.libreoffice.org/src/liborcus-0.18.0.tar.xz - http://dev-www.libreoffice.org/src/beeca87be45ec87d241ddd0e1bad80c1-bsh-2.0b6-src.zip - http://dev-www.libreoffice.org/src/5ade6ae2a99bc1e9e57031ca88d36dad-hyphen-2.8.8.tar.gz - https://dev-www.libreoffice.org/src/libabw-0.1.3.tar.xz - https://dev-www.libreoffice.org/src/libcmis-0.5.2.tar.xz - https://dev-www.libreoffice.org/src/libnumbertext-1.0.11.tar.xz - https://dev-www.libreoffice.org/src/lxml-4.1.1.tgz - http://dev-www.libreoffice.org/src/libexttextcat-3.4.6.tar.xz - https://dev-www.libreoffice.org/src/libmwaw-0.3.21.tar.xz - http://dev-www.libreoffice.org/src/libstaroffice-0.0.7.tar.xz - http://dev-www.libreoffice.org/src/libzmf-0.0.2.tar.xz - https://dev-www.libreoffice.org/src/libe-book-0.1.3.tar.xz - https://dev-www.libreoffice.org/src/libepubgen-0.1.1.tar.xz - https://dev-www.libreoffice.org/src/libqxp-0.0.2.tar.xz - http://dev-www.libreoffice.org/src/26b3e95ddf3d9c077c480ea45874b3b8-lp_solve_5.5.tar.gz - https://dev-www.libreoffice.org/src/a8c2c5b8f09e7ede322d5c602ff6a4b6-mythes-1.2.4.tar.gz - https://dev-www.libreoffice.org/src/mythes-1.2.5.tar.xz - https://dev-www.libreoffice.org/src/pdfium-5058.tar.bz2 - https://dev-www.libreoffice.org/src/pdfium-5522.tar.bz2 - https://dev-www.libreoffice.org/src/QR-Code-generator-1.4.0.tar.gz - https://dev-www.libreoffice.org/src/Firebird-3.0.7.33374-0.tar.bz2 - https://dev-www.libreoffice.org/src/CoinMP-1.7.6.tgz - https://dev-www.libreoffice.org/src/CoinMP-1.8.4.tgz - https://dev-www.libreoffice.org/src/ltm-1.0.zip - https://dev-www.libreoffice.org/src/box2d-2.4.1.tar.gz - https://dev-www.libreoffice.org/src/dtoa-20180411.tgz - https://dev-www.libreoffice.org/src/a233181e03d3c307668b4c722d881661-mariadb_client-2.0.0-src.tar.gz - https://dev-www.libreoffice.org/src/mariadb-connector-c-3.1.8-src.tar.gz - https://dev-www.libreoffice.org/src/skia-m103-b301ff025004c9cd82816c86c547588e6c24b466.tar.xz - https://dev-www.libreoffice.org/src/zxing-cpp-1.2.0.tar.gz - https://dev-www.libreoffice.org/src/zxing-cpp-1.4.0.tar.gz - https://dev-www.libreoffice.org/src/poppler-22.12.0.tar.xz - https://dev-www.libreoffice.org/src/poppler-data-0.4.11.tar.gz - https://dev-www.libreoffice.org/src/libcuckoo-93217f8d391718380c508a722ab9acd5e9081233.tar.gz - https://dev-www.libreoffice.org/extern/884ed41809687c3e168fc7c19b16585149ff058eca79acbf3ee784f6630704cc-opens___.ttf - https://dev-www.libreoffice.org/extern/f543e6e2d7275557a839a164941c0a86e5f2c3f2a0042bfc434c88c6dde9e140-opens___.ttf - https://dev-www.libreoffice.org/src/b7cae45ad2c23551fd6ccb8ae2c1f59e-numbertext_0.9.5.oxt + https://dev-www.libreoffice.org/src/xmlsec1-1.2.34.tar.gz + https://dev-www.libreoffice.org/src/xmlsec1-1.2.37.tar.gz + http://dev-www.libreoffice.org/src/35c94d2df8893241173de1d16b6034c0-swingExSrc.zip + http://dev-www.libreoffice.org/src/798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip + http://dev-www.libreoffice.org/src/a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip + http://dev-www.libreoffice.org/src/commons-logging-1.2-src.tar.gz + http://dev-www.libreoffice.org/src/eeb2c7ddf0d302fba4bfc6e97eac9624-libbase-1.1.6.zip + http://dev-www.libreoffice.org/src/39bb3fcea1514f1369fcfc87542390fd-sacjava-1.3.zip + http://dev-www.libreoffice.org/src/3404ab6b1792ae5f16bbd603bd1e1d03-libformula-1.1.7.zip + http://dev-www.libreoffice.org/src/97b2d4dba862397f446b217e2b623e71-libloader-1.1.6.zip + http://dev-www.libreoffice.org/src/f94d9870737518e3b597f9265f4e9803-libserializer-1.1.6.zip + http://dev-www.libreoffice.org/src/8ce2fcd72becf06c41f7201d15373ed9-librepository-1.1.6.zip + http://dev-www.libreoffice.org/src/3bdf40c0d199af31923e900d082ca2dd-libfonts-1.1.6.zip + http://dev-www.libreoffice.org/src/ace6ab49184e329db254e454a010f56d-libxml-1.1.7.zip + http://dev-www.libreoffice.org/src/db60e4fde8dd6d6807523deb71ee34dc-liblayout-0.2.10.zip + http://dev-www.libreoffice.org/src/0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz + https://dev-www.libreoffice.org/src/language-subtag-registry-2023-05-11.tar.bz2 + http://dev-www.libreoffice.org/src/collada2gltf-master-6258611a6a.tar.bz2 + http://dev-www.libreoffice.org/src/OpenCOLLADA-master-6509aa13af.tar.bz2 + https://dev-www.libreoffice.org/src/17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip + https://dev-www.libreoffice.org/src/62c0b97e94fe47d5e50ff605d2edf37a-hsqldb-2.3.3.zip + http://dev-www.libreoffice.org/src/d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip + http://dev-www.libreoffice.org/src/ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip + http://dev-www.libreoffice.org/src/libfreehand-0.1.2.tar.xz + https://dev-www.libreoffice.org/src/liborcus-0.17.2.tar.bz2 + https://dev-www.libreoffice.org/src/liborcus-0.18.1.tar.xz + http://dev-www.libreoffice.org/src/beeca87be45ec87d241ddd0e1bad80c1-bsh-2.0b6-src.zip + http://dev-www.libreoffice.org/src/5ade6ae2a99bc1e9e57031ca88d36dad-hyphen-2.8.8.tar.gz + https://dev-www.libreoffice.org/src/libabw-0.1.3.tar.xz + https://dev-www.libreoffice.org/src/libcmis-0.5.2.tar.xz + https://dev-www.libreoffice.org/src/libnumbertext-1.0.11.tar.xz + https://dev-www.libreoffice.org/src/lxml-4.9.2.tgz + http://dev-www.libreoffice.org/src/libexttextcat-3.4.6.tar.xz + https://dev-www.libreoffice.org/src/libmwaw-0.3.21.tar.xz + http://dev-www.libreoffice.org/src/libstaroffice-0.0.7.tar.xz + http://dev-www.libreoffice.org/src/libzmf-0.0.2.tar.xz + https://dev-www.libreoffice.org/src/libe-book-0.1.3.tar.xz + https://dev-www.libreoffice.org/src/libepubgen-0.1.1.tar.xz + https://dev-www.libreoffice.org/src/libqxp-0.0.2.tar.xz + http://dev-www.libreoffice.org/src/26b3e95ddf3d9c077c480ea45874b3b8-lp_solve_5.5.tar.gz + https://dev-www.libreoffice.org/src/a8c2c5b8f09e7ede322d5c602ff6a4b6-mythes-1.2.4.tar.gz + https://dev-www.libreoffice.org/src/mythes-1.2.5.tar.xz + + https://dev-www.libreoffice.org/src/pdfium-5408.tar.bz2 + https://dev-www.libreoffice.org/src/pdfium-5778.tar.bz2 + https://dev-www.libreoffice.org/src/QR-Code-generator-1.4.0.tar.gz + https://dev-www.libreoffice.org/src/Firebird-3.0.7.33374-0.tar.bz2 + https://dev-www.libreoffice.org/src/Firebird-4.0.2.2816-0.tar.xz + https://dev-www.libreoffice.org/src/CoinMP-1.7.6.tgz + https://dev-www.libreoffice.org/src/CoinMP-1.8.4.tgz + https://dev-www.libreoffice.org/src/ltm-1.0.zip + https://dev-www.libreoffice.org/src/ltm-1.2.0.tar.xz + https://dev-www.libreoffice.org/src/box2d-2.4.1.tar.gz + https://dev-www.libreoffice.org/src/dtoa-20180411.tgz + https://dev-www.libreoffice.org/src/a233181e03d3c307668b4c722d881661-mariadb_client-2.0.0-src.tar.gz + https://dev-www.libreoffice.org/src/mariadb-connector-c-3.1.8-src.tar.gz + https://dev-www.libreoffice.org/src/skia-m103-b301ff025004c9cd82816c86c547588e6c24b466.tar.xz + https://dev-www.libreoffice.org/src/skia-m116-2ddcf183eb260f63698aa74d1bb380f247ad7ccd.tar.xz + + + https://dev-www.libreoffice.org/src/poppler-22.12.0.tar.xz + https://dev-www.libreoffice.org/src/poppler-23.06.0.tar.xz + https://dev-www.libreoffice.org/src/poppler-data-0.4.11.tar.gz + https://dev-www.libreoffice.org/src/poppler-data-0.4.12.tar.gz + https://dev-www.libreoffice.org/src/libcuckoo-93217f8d391718380c508a722ab9acd5e9081233.tar.gz + https://dev-www.libreoffice.org/extern/884ed41809687c3e168fc7c19b16585149ff058eca79acbf3ee784f6630704cc-opens___.ttf + https://dev-www.libreoffice.org/extern/f543e6e2d7275557a839a164941c0a86e5f2c3f2a0042bfc434c88c6dde9e140-opens___.ttf + https://dev-www.libreoffice.org/src/b7cae45ad2c23551fd6ccb8ae2c1f59e-numbertext_0.9.5.oxt - http://dev-www.libreoffice.org/extern/odfvalidator-1.2.0-incubating-SNAPSHOT-jar-with-dependencies-971c54fd38a968f5860014b44301872706f9e540.jar - https://dev-www.libreoffice.org/extern/odfvalidator-0.9.0-RC2-SNAPSHOT-jar-with-dependencies-2726ab578664434a545f8379a01a9faffac0ae73.jar - http://dev-www.libreoffice.org/extern/8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar - https://dev-www.libreoffice.org/src/dragonbox-1.1.3.tar.gz - https://dev-www.libreoffice.org/src/libxml2-2.10.3.tar.xz - https://dev-www.libreoffice.org/src/libwebp-1.2.4.tar.gz - https://dev-www.libreoffice.org/src/libwebp-1.3.0-rc1.tar.gz - https://dev-www.libreoffice.org/src/tiff-4.5.0rc3.tar.xz + http://dev-www.libreoffice.org/extern/odfvalidator-1.2.0-incubating-SNAPSHOT-jar-with-dependencies-971c54fd38a968f5860014b44301872706f9e540.jar + https://dev-www.libreoffice.org/extern/odfvalidator-0.9.0-RC2-SNAPSHOT-jar-with-dependencies-2726ab578664434a545f8379a01a9faffac0ae73.jar + https://dev-www.libreoffice.org/extern/a1adc7a47ed126ed029893c23c8bdd43-officeotron-0.7.4-master.jar + https://dev-www.libreoffice.org/src/dragonbox-1.1.3.tar.gz + https://dev-www.libreoffice.org/src/libxml2-2.11.4.tar.xz + + https://dev-www.libreoffice.org/src/libwebp-1.3.0.tar.gz + https://dev-www.libreoffice.org/src/libwebp-1.3.1.tar.gz + https://dev-www.libreoffice.org/src/tiff-4.5.0rc3.tar.xz + https://dev-www.libreoffice.org/src/tiff-4.5.1.tar.xz make-pyuno-work-with-system-wide-module-install.diff 623ea5c.diff - Remove_dependency_on_BitArray.h_from_zxing-1.2.0.patch + @@ -199,6 +207,7 @@ gpgme-devel libepoxy-devel ccache + zxing-cpp-devel @@ -238,6 +247,7 @@ libXinerama libjpeg-turbo gstreamer + jre8-openjdk-headless jre-openjdk-headless jre-openjdk gtk3 @@ -269,6 +279,7 @@ libwps libetonyek xcb-util-wm + zxing-cpp /usr/bin @@ -2075,6 +2086,7 @@ libreoffice-dsb, Lower Sorbian language pack for LibreOffice. /usr/lib/libreoffice/readmes/*_dsb + /usr/lib/libreoffice/help/dsb /usr/lib/libreoffice/share/autotext/dsb /usr/lib/libreoffice/share/autocorr/acor_dsb.dat /usr/lib/libreoffice/share/registry/*dsb.xcd @@ -2252,6 +2264,7 @@ libreoffice-fa, Persian language pack for LibreOffice. /usr/lib/libreoffice/readmes/*_fa + /usr/lib/libreoffice/share/extensions/dict-fa /usr/lib/libreoffice/share/autotext/fa /usr/lib/libreoffice/share/registry/*fa.xcd /usr/lib/libreoffice/share/registry/res/*fa.xcd @@ -2496,6 +2509,7 @@ libreoffice-hsb, Sorbian Upper language pack for LibreOffice. /usr/lib/libreoffice/readmes/*_hsb + /usr/lib/libreoffice/help/hsb /usr/lib/libreoffice/share/autotext/hsb /usr/lib/libreoffice/share/registry/*hsb.xcd /usr/lib/libreoffice/share/registry/res/*hsb.xcd @@ -3812,6 +3826,13 @@ + + 2023-01-15 + 7.5.4.2 + Version Bump + Kamil Atlı + suvari@pisilinux.org + 2023-01-15 7.4.4.2 diff --git a/pisi-index.xml b/pisi-index.xml index 4f8964bda6..888b91dbc4 100644 --- a/pisi-index.xml +++ b/pisi-index.xml @@ -1474,7 +1474,7 @@ Linux desktop which provides advanced innovative features and a traditional user experience Linux desktop which provides advanced innovative features and a traditional user experience cinnamon - https://github.com/linuxmint/cinnamon/archive/refs/tags/5.8.2.tar.gz + https://github.com/linuxmint/cinnamon/archive/refs/tags/5.8.3.tar.gz cjs-devel meson @@ -1653,6 +1653,13 @@ + + 2023-06-26 + 5.8.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2023-06-14 5.8.2 @@ -3005,7 +3012,7 @@ desktop.cinnamon Mint-X GTK2, GTK3, Metacity and Xfce theme. Mint-X GTK2, GTK3, Metacity and Xfce theme. - http://packages.linuxmint.com/pool/main/m/mint-themes/mint-themes_2.1.2.tar.xz + http://packages.linuxmint.com/pool/main/m/mint-themes/mint-themes_2.1.3.tar.xz sassc optipng @@ -3021,6 +3028,13 @@ + + 2023-06-26 + 2.1.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2023-06-14 2.1.2 @@ -3149,7 +3163,7 @@ File manager for Cinnamon Cinnamon için Dosya Yöneticisi nemo - https://github.com/linuxmint/nemo/archive/refs/tags/5.8.2.tar.gz + https://github.com/linuxmint/nemo/archive/refs/tags/5.8.3.tar.gz meson samurai @@ -3238,7 +3252,7 @@ nemo için geliştirme dosyaları development - nemo + nemo gtk3-devel glib2-devel @@ -3249,6 +3263,13 @@ + + 2023-06-26 + 5.8.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2023-06-14 5.8.2 @@ -5553,7 +5574,7 @@ Eye of GNOME image viewer GNOME resim gösterici eog - mirrors://gnome/eog/44/eog-44.2.tar.xz + mirrors://gnome/eog/44/eog-44.3.tar.xz glib2-devel gtk3-devel @@ -5623,7 +5644,7 @@ eog-devel eog için geliştirme dosyaları - eog + eog libhandy-devel gtk3-devel @@ -5633,6 +5654,13 @@ + + 2023-07-02 + 44.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2023-05-28 44.2 @@ -6911,7 +6939,7 @@ Intuitive GNOME web browser. Epiphany is a GNOME web browser based on the WebKit rendering engine. epiphany - https://download.gnome.org/sources/epiphany/44/epiphany-44.3.tar.xz + https://download.gnome.org/sources/epiphany/44/epiphany-44.5.tar.xz glib2-devel itstool @@ -6987,6 +7015,20 @@ + + 2023-06-30 + 44.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2023-06-30 + 44.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2023-05-26 44.3 @@ -7109,11 +7151,11 @@ Integrated mail, addressbook and calendaring for GNOME. The Evolution package contains an integrated mail, calendar and address book suite designed for the GNOME environment. evolution - https://download.gnome.org/sources/evolution/3.48/evolution-3.48.3.tar.xz + https://download.gnome.org/sources/evolution/3.48/evolution-3.48.4.tar.xz gnome-desktop-devel libcanberra-gtk3-devel - evolution-data-server-devel + evolution-data-server-devel gspell-devel gnome-autoar-devel libarchive-devel @@ -7193,11 +7235,11 @@ evolution-devel - evolution + evolution gtk3-devel glib2-devel gnome-desktop-devel - evolution-data-server-devel + evolution-data-server-devel webkit2gtk-4.1-devel @@ -7206,6 +7248,13 @@ + + 2023-07-01 + 3.48.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2023-06-02 3.48.3 @@ -9062,7 +9111,7 @@ desktop.gnome.apps GNOME Maps application Maps is a map application for GNOME. - https://download.gnome.org/sources/gnome-maps/44/gnome-maps-44.2.tar.xz + https://download.gnome.org/sources/gnome-maps/44/gnome-maps-44.3.tar.xz libchamplain-devel meson @@ -9108,6 +9157,13 @@ + + 2023-07-02 + 44.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2023-05-26 44.2 @@ -10693,7 +10749,7 @@ A framework for creating UPnP devices and control points UPnP cihazları ve kontrol noktaları oluşturmak için bir çerçeve gupnp-logo - mirrors://gnome/gupnp/1.6/gupnp-1.6.2.tar.xz + mirrors://gnome/gupnp/1.6/gupnp-1.6.4.tar.xz meson gtk-doc @@ -10727,7 +10783,7 @@ gupnp-devel gupnp için geliştirme dosyaları - gupnp + gupnp glib2-devel gssdp-devel libsoup3-devel @@ -10741,6 +10797,13 @@ + + 2023-07-01 + 1.6.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2022-11-20 1.6.2 @@ -11946,10 +12009,11 @@ GNOME's main interface to configure various aspects of the desktop GNOME Settings is GNOME's main interface for configuration of various aspects of your desktop. gnome-control-center - https://download.gnome.org/sources/gnome-control-center/44/gnome-control-center-44.2.tar.xz + https://download.gnome.org/sources/gnome-control-center/44/gnome-control-center-44.3.tar.xz gcr-devel glib2-devel + fwupd-devel gsettings-desktop-schemas-devel intltool meson @@ -12079,13 +12143,20 @@ gnome-control-center-devel - gnome-control-center + gnome-control-center /usr/share/pkgconfig + + 2023-06-30 + 44.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2023-05-26 44.2 @@ -12566,7 +12637,7 @@ The Evolution Data Server package provides a unified backend for programs that work with contacts, tasks, and calendar information. The Evolution Data Server provides a single database for common, desktop-wide information, such as a user's address book or calendar events. evolution - https://download.gnome.org/sources/evolution-data-server/3.48/evolution-data-server-3.48.3.tar.xz + https://download.gnome.org/sources/evolution-data-server/3.48/evolution-data-server-3.48.4.tar.xz git flex @@ -12657,7 +12728,7 @@ evolution-data-server-devel Development files for evolution-data-server - evolution-data-server + evolution-data-server nss-devel gtk3-devel gtk4-devel @@ -12682,6 +12753,13 @@ + + 2023-07-01 + 3.48.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2023-06-02 3.48.3 @@ -15560,9 +15638,10 @@ GNOME Session and the applications that run under it. GNOME Shell is the defining technology of the GNOME40 user experience. It provides core interface functions like switching to windows and launching applications. gnome-shell, GNOME40 kullanıcı tecrübesinin belirleyici teknolojisidir. Pencereler arası geçiş ve uygulama çalıştırma gibi temel işlevleri sağlar. gnome - https://download.gnome.org/sources/gnome-shell/44/gnome-shell-44.2.tar.xz + https://download.gnome.org/sources/gnome-shell/44/gnome-shell-44.3.tar.xz at-spi2-atk-devel + gtk4-update-icon-cache evolution-data-server-devel folks-devel gcr-4-devel @@ -15659,6 +15738,13 @@ GNOME Session and the applications that run under it. + + 2023-07-06 + 44.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2023-06-03 44.2 @@ -16496,7 +16582,7 @@ settings shared by various components of a desktop. Yeni nesil GNOME sanal dosya sistemi GVFS is a userspace virtual filesystem designed to work with the I/O abstractions, especially HAL. It supports fuse for directly access for GVFS mounts. It installs several modules and backends that are automatically used by applications. GVFS I/O soyutlamaları, özellikle HAL, için geliştirilmiş, sistem tabanlı bir sanal dosya sistemidir. Doğrudan fuse ile birlikle kendi bağlamlarına erişmesini destekler. GVFS, birçok modül ve sitem servisini uygulamaların otomatik kullanması için yükler. - https://download.gnome.org/sources/gvfs/1.50/gvfs-1.50.4.tar.xz + https://download.gnome.org/sources/gvfs/1.50/gvfs-1.50.5.tar.xz meson gtk-doc @@ -16549,7 +16635,7 @@ settings shared by various components of a desktop. polkit libplist - gvfs + gvfs gnome-online-accounts libimobiledevice @@ -16567,7 +16653,7 @@ settings shared by various components of a desktop. libsecret libgcrypt - gvfs + gvfs /usr/lib/gvfs/gvfsd-afp @@ -16583,7 +16669,7 @@ settings shared by various components of a desktop. GVFS sıkıştırma arkaucu libarchive - gvfs + gvfs /usr/libexec/gvfsd-archive @@ -16597,7 +16683,7 @@ settings shared by various components of a desktop. GVFS dijital kamera arkaucu libgphoto2 - gvfs + gvfs /usr/libexec/gvfs-gphoto2-volume-monitor @@ -16613,7 +16699,7 @@ settings shared by various components of a desktop. GVFS FUSE arkaucu fuse3 - gvfs + gvfs /usr/libexec/gvfsd-fuse @@ -16624,7 +16710,7 @@ settings shared by various components of a desktop. Samba backend for GVFS GVFS Samba arkaucu - gvfs + gvfs samba @@ -16642,7 +16728,7 @@ settings shared by various components of a desktop. libmtp libusb - gvfs + gvfs /usr/libexec/gvfsd-mtp @@ -16657,7 +16743,7 @@ settings shared by various components of a desktop. gvfs-goa gvfs-goa - GNOME Online Accounts support for gvfs - gvfs + gvfs /usr/lib/gvfs-goa-volume-monitor @@ -16669,7 +16755,7 @@ settings shared by various components of a desktop. gvfs-google Samba backend for GVFS - gvfs + gvfs libgdata @@ -16790,6 +16876,13 @@ settings shared by various components of a desktop. + + 2023-06-30 + 1.50.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2023-05-21 1.50.4 @@ -18401,7 +18494,7 @@ services for numerous locations. Mutter is a Wayland display server and X11 window manager and compositor library. Mutter is a Wayland display server and X11 window manager and compositor library. gnome - https://download.gnome.org/sources/mutter/44/mutter-44.2.tar.xz + https://download.gnome.org/sources/mutter/44/mutter-44.3.tar.xz gettext-devel lcms2-devel @@ -18510,7 +18603,7 @@ services for numerous locations. mutter-devel Mutter is a Wayland display server and X11 window manager and compositor library. - mutter + mutter atk-devel gtk3-devel cairo-devel @@ -18531,6 +18624,13 @@ services for numerous locations. + + 2023-07-06 + 44.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2023-06-03 44.2 @@ -73664,7 +73764,6 @@ It supports email, address books, calendars, tasks, news feeds and much more.udftools ntfsprogs fatresize - exfat-utils dosfstools reiserfsprogs smartmontools @@ -73691,6 +73790,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.elogind-devel polkit-qt-devel jfsutils + exfatprogs f2fs-tools nilfs-utils-devel e2fsprogs-devel @@ -73709,7 +73809,6 @@ It supports email, address books, calendars, tasks, news feeds and much more.udftools fatresize ntfsprogs - exfat-utils dosfstools reiserfsprogs smartmontools @@ -73725,6 +73824,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.libutil-linux polkit-qt jfsutils + exfatprogs f2fs-tools nilfs-utils e2fsprogs @@ -73741,7 +73841,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.kpmcore-devel Development files for kpmcore - kpmcore + kpmcore /usr/include @@ -73750,6 +73850,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2023-07-02 + 23.04.2 + rebuild for exfatprogs + Mustafa Cinasal + muscnsl@gmail.com + 2023-06-08 23.04.2 @@ -98285,6 +98392,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.e2fsprogs kdbusaddons polkit-qt + kwindowsystem /usr/bin @@ -98295,6 +98403,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2023-07-02 + 23.04.2 + Rebuild for kpmcore + Mustafa Cinasal + muscnsl@gmail.com + 2023-06-08 23.04.2 @@ -173245,7 +173360,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.Add-ons for the Kirigami framework Add-ons for the Kirigami framework Add-ons for the Kirigami framework - https://github.com/KDE/kirigami-addons/archive/refs/tags/v0.8.0.tar.gz + https://github.com/KDE/kirigami-addons/archive/refs/tags/v0.9.0.tar.gz ki18n-devel kirigami-devel @@ -173271,6 +173386,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2023-06-30 + 0.9.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2023-04-21 0.8.0 @@ -174845,16 +174967,24 @@ It supports email, address books, calendars, tasks, news feeds and much more.mint-x icon teması. Mint-X Icon themes. A mint/metal theme based on mintified versions of Clearlooks Revamp, Elementary and Faenza. mint-x icon teması. - http://packages.linuxmint.com/pool/main/m/mint-x-icons/mint-x-icons_1.6.4.tar.xz + http://packages.linuxmint.com/pool/main/m/mint-x-icons/mint-x-icons_1.6.5.tar.xz desktop/lookandfeel/icon-theme-mint-x/pspec.xml icon-theme-mint-x /usr/share/icons + /usr/share/folder-color-switcher/colors.d/Mint-X.json + + 2023-06-26 + 1.6.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2022-06-30 1.6.4 @@ -174877,16 +175007,24 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.lookandfeel A flat, colorful, and modern theme based on Paper and Moka. A flat, colorful, and modern theme based on Paper and Moka. - https://github.com/linuxmint/mint-y-icons/archive/refs/tags/1.6.5.tar.gz + https://github.com/linuxmint/mint-y-icons/archive/refs/tags/1.6.6.tar.gz desktop/lookandfeel/icon-theme-mint-y/pspec.xml icon-theme-mint-y /usr/share/icons + /usr/share/folder-color-switcher/colors.d/Mint-Y.json + + 2023-06-26 + 1.6.6 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2022-11-29 1.6.5 @@ -187440,7 +187578,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.Çeşitli metin işleme eklentileri Çeşitli metin işleme eklentileri ktextaddons - https://download.kde.org/stable/ktextaddons/ktextaddons-1.3.1.tar.xz + https://download.kde.org/stable/ktextaddons/ktextaddons-1.3.2.tar.xz qt5-linguist ki18n-devel @@ -187481,7 +187619,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.ktextaddons-devel Development files for ktextaddons - ktextaddons + ktextaddons /usr/include @@ -187490,6 +187628,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2023-06-30 + 1.3.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2023-05-11 1.3.1 @@ -188404,9 +188549,9 @@ It supports email, address books, calendars, tasks, news feeds and much more.QML based X11 and Wayland display manager QML tabanlı X11 ve Wayland ekran yöneticisi. KDE Power Management module. Provides kded daemon DBus helper and KCM for configuring Power settings - https://github.com/sddm/sddm/releases/download/v0.19.0/sddm-0.19.0.tar.xz - https://github.com/sebo28/Sweet-Cat/archive/v0.1.tar.gz - https://github.com/erkanisik1/pisiNar3-sddm-theme/archive/refs/tags/pisinar3-V1.2.tar.gz + https://github.com/sddm/sddm/archive/refs/tags/v0.20.0.tar.gz + https://github.com/sebo28/Sweet-Cat/archive/v0.1.tar.gz + https://github.com/erkanisik1/pisiNar3-sddm-theme/archive/refs/tags/pisinar3-V1.2.tar.gz docutils keyutils @@ -188424,10 +188569,6 @@ It supports email, address books, calendars, tasks, news feeds and much more.qt5-declarative-devel qt5-quickcontrols2-devel - - sddm-0.19.0-consolidate-1.patch - 0002-sddm-fix-build.patch - desktop/misc/sddm/pspec.xml @@ -188471,6 +188612,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2023-06-30 + 0.20.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2023-06-14 0.19.0 @@ -221391,7 +221539,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.Linux resmi Bluetooth protokol yığını bluez contains the tools and libraries that provides support for the core Bluetooth layers and protocols. Bu projenin genel amacı Linux'ta Bluetooth kablosuz standartların ayrıntılarını yerine getirmektir. - https://mirrors.edge.kernel.org/pub/linux/bluetooth/bluez-5.66.tar.xz + https://mirrors.edge.kernel.org/pub/linux/bluetooth/bluez-5.68.tar.xz docutils alsa-lib-devel @@ -221409,7 +221557,6 @@ It supports email, address books, calendars, tasks, news feeds and much more. 0001-Allow-using-obexd-without-systemd-in-the-user-session-r2.patch - 0001-obex-Use-GLib-helper-function-to-manipulate-paths.patch hardware/bluetooth/bluez/pspec.xml @@ -221417,7 +221564,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.bluez Development files for bluez-libs - bluez-libs + bluez-libs dbus eudev glib2 @@ -221464,7 +221611,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.Development files for bluez-libs bluez-libs için geliştirme dosyaları - bluez-libs + bluez-libs /usr/include/bluetooth @@ -221472,6 +221619,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2023-07-01 + 5.68 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2022-11-15 5.66 @@ -222826,18 +222980,25 @@ It supports email, address books, calendars, tasks, news feeds and much more.hardware.disk exFAT filesystem userspace utilities. As new exfat filesystem is merged into linux-5.7 kernel, exfatprogs is created as an official userspace utilities that contain all of the standard utilities for creating and fixing and debugging exfat filesystem in linux system. - https://github.com/exfatprogs/exfatprogs/releases/download/1.2.0/exfatprogs-1.2.0.tar.xz + https://github.com/exfatprogs/exfatprogs/releases/download/1.2.1/exfatprogs-1.2.1.tar.xz hardware/disk/exfatprogs/pspec.xml exfatprogs - /usr/sbin + /usr/bin /usr/share/man/man8 /usr/share/doc/exfatprogs/NEWS + + 2023-07-02 + 1.2.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2022-10-28 1.2.0 @@ -228693,7 +228854,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.Una interfaz para sistemas de archivos implementados en el espacio de usuario fuse is a backend allowing regular users to (un)mount filesystems for their own use. FUSE, kullanıcıların kendileri için dosya sistemleri oluşturmasına, bağlamasına ve bağı koparmasına imkân veren bir arkauç kitaplıktır. - https://github.com/libfuse/libfuse/releases/download/fuse-3.15.0/fuse-3.15.0.tar.xz + https://github.com/libfuse/libfuse/releases/download/fuse-3.15.1/fuse-3.15.1.tar.gz meson doxygen @@ -228725,7 +228886,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.fuse3 için geliştirme dosyaları system.devel - fuse3 + fuse3 /usr/include @@ -228733,6 +228894,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2023-07-05 + 3.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2023-06-10 3.15.0 @@ -228972,7 +229140,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.Hardware identification and configuration data Hardware identification and configuration data Hardware identification and configuration data - https://github.com/vcrhonek/hwdata/archive/refs/tags/v0.371.tar.gz + https://github.com/vcrhonek/hwdata/archive/refs/tags/v0.372.tar.gz hardware/misc/hwdata/pspec.xml @@ -228985,6 +229153,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2023-07-04 + 0.372 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2023-06-02 0.371 @@ -233135,7 +233310,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.Güç Yönetim Hizmeti upower provides a daemon, API and command line tools for managing power devices attached to the system. upower, sisteme bağlı güç cihazlarını yönetmek için gerekli kitaplıkları ve sistem hizmetini sunar. - https://gitlab.freedesktop.org/upower/upower/-/archive/v1.90.0/upower-v1.90.0.tar.bz2 + https://gitlab.freedesktop.org/upower/upower/-/archive/v1.90.1/upower-v1.90.1.tar.bz2 tr.po @@ -233196,7 +233371,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.Development files for upower upower için geliştirme dosyaları - upower + upower dbus-devel glib2-devel polkit-devel @@ -233211,6 +233386,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2023-07-05 + 1.90.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2023-01-12 1.90.0 @@ -237981,20 +238163,21 @@ It supports email, address books, calendars, tasks, news feeds and much more.hardware.virtualization Operating system and container binary deployment and upgrades OSTree is a tool for managing bootable, immutable, versioned filesystem trees - https://github.com/ostreedev/ostree/releases/download/v2021.2/libostree-2021.2.tar.xz + https://github.com/ostreedev/ostree/releases/download/v2023.5/libostree-2023.5.tar.xz python3 glib2-devel xz-devel zlib-devel + fuse3-devel e2fsprogs-devel libsoup-devel gpgme-devel openssl-devel avahi-glib-devel - fuse-devel libutil-linux-devel libarchive-devel + gtk-doc disable_werror_implicit_funtion_declaraction.patch @@ -238008,7 +238191,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.avahi-glib avahi-libs zlib - fuse + fuse3 glib2 gpgme libsoup @@ -238033,10 +238216,10 @@ It supports email, address books, calendars, tasks, news feeds and much more.ostree-devel Development files for ostree - ostree + ostree xz-devel zlib-devel - fuse-devel + fuse3-devel glib2-devel gpgme-devel libsoup-devel @@ -238050,6 +238233,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2023-07-01 + 2023.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-04-26 2021.2 @@ -244698,7 +244888,7 @@ cleaner, which will allow to add new features in the future. Server and user space API to deal with multimedia pipelines Server and user space API to deal with multimedia pipelines Server and user space API to deal with multimedia pipelines - https://github.com/PipeWire/pipewire/archive/0.3.65.tar.gz + https://github.com/PipeWire/pipewire/archive/0.3.72.tar.gz git meson @@ -244770,7 +244960,7 @@ cleaner, which will allow to add new features in the future. Development files for pipewire glib2-devel - pipewire + pipewire /usr/include @@ -244781,13 +244971,20 @@ cleaner, which will allow to add new features in the future. pipewire-docs Development files for pipewire - pipewire + pipewire /usr/share/doc/pipewire/html + + 2023-06-27 + 0.3.72 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2023-01-26 0.3.65 @@ -245926,7 +246123,7 @@ cleaner, which will allow to add new features in the future. Açık kaynak fotoğraf iş akışı uygulaması ve ham(raw) geliştirme ortamı darktable is an open source photography workflow application and RAW developer. A virtual lighttable and darkroom for photographers. darktable, açık kaynak fotoğraf iş akışı uygulaması ve ham(raw) geliştirme ortamı sunan gelişmiş bir araçtır. - https://github.com/darktable-org/darktable/releases/download/release-4.2.0/darktable-4.2.0.tar.xz + https://github.com/darktable-org/darktable/releases/download/release-4.4.1/darktable-4.4.1.tar.xz llvm cmake @@ -246047,6 +246244,13 @@ cleaner, which will allow to add new features in the future. + + 2023-07-01 + 4.4.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2022-12-31 4.2.0 @@ -253938,7 +254142,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression Bu kütüphane TIFF (Tag Image File Format) resim biçimi desteği sağlar. Bu biçim resim bilgisi saklamak için pek çok yerde kullanılır. Este software facilita soporte para el formato de imagen etiqueteado (TIFF), un formato para almacenamiento de imágenes de uso común. Biblioteka do manipulacji plikami w formacie TIFF. - http://download.osgeo.org/libtiff/tiff-4.4.0.tar.xz + http://download.osgeo.org/libtiff/tiff-4.5.1.tar.xz xz-devel zlib-devel @@ -253946,9 +254150,6 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression libjpeg-turbo-devel jbigkit-devel - - dd1bcc7abb26094e93636e85520f0d8f81ab0fab.patch - multimedia/graphics/tiff/pspec.xml @@ -253970,7 +254171,11 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression Developement files for tiff tiff için geliştirme dosyaları - tiff + tiff + xz-devel + zlib-devel + zstd-devel + libjpeg-turbo-devel /usr/include @@ -254002,7 +254207,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression libjpeg-turbo-32bit - tiff + tiff libjpeg-turbo-32bit libgcc xz-32bit @@ -254013,6 +254218,13 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression + + 2023-06-15 + 4.5.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2023-04-04 4.4.0 @@ -254171,7 +254383,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression webp image format and format conversion png,jpeg,tiff webp resim formatı kütüphanesi ve png,jpeg,tiff resim formatlarına dönüştürme aracı libwebp - https://github.com/webmproject/libwebp/archive/v1.2.4.tar.gz + https://github.com/webmproject/libwebp/archive/v1.3.1.tar.gz mesa-devel mesa-glu-devel @@ -254197,6 +254409,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression /usr/lib/libwebp* + /usr/lib/libsharpyuv* /usr/bin /usr/share/man /usr/share/doc/webp @@ -254214,6 +254427,13 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression + + 2023-06-30 + 1.3.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2022-08-06 1.2.4 @@ -257949,7 +258169,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol Einfachee direkte Medien-Schicht libsdl is a cross-platform multimedia library designed to provide low level access to audio, keyboard, mouse, joystick, 3D hardware via OpenGL, and 2D video framebuffer. libsdl; ses, klavye, fare, oyun çubuğu, OpenGL ile 3B donanımsal hızlandırma, 2B görüntü belleğine direkt erişim sağlayan birden çok platform destekleyen bir çokluortam kitaplığıdır. - https://github.com/libsdl-org/SDL/releases/download/release-2.26.2/SDL2-2.26.2.tar.gz + https://github.com/libsdl-org/SDL/releases/download/release-2.28.1/SDL2-2.28.1.tar.gz DirectFB-devel alsa-lib-devel @@ -258006,7 +258226,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol Development files for libsdl2 libsdl2 için geliştirme dosyaları - libsdl2 + libsdl2 /usr/bin @@ -258046,13 +258266,27 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol libXinerama-32bit libXScrnSaver-32bit pulseaudio-libs-32bit - libsdl2 + libsdl2 /usr/lib32 + + 2023-07-02 + 2.28.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2023-06-21 + 2.28.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2023-04-13 2.26.2 @@ -284715,6 +284949,78 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + + inetutils + https://www.gnu.org/software/inetutils/ + + Kamil Atlı + suvari@pisilinux.org + + GPL3 + network.connection + A collection of common network programs + Ortak ağ programlarının bir koleksiyonu + netutils is a collection of common network programs. It includes: An inetd meta-server. An ftp client and server. A telnet client and server. + 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. + inetutils + https://ftp.gnu.org/gnu/inetutils/inetutils-2.4.tar.xz + + pam-devel + libcap-devel + readline-devel + ncurses-devel + libxcrypt-devel + help2man + + network/connection/inetutils/pspec.xml + + + inetutils + + pam + libcap + readline + ncurses + libxcrypt + + + /usr/share/man + /usr/bin + /usr/lib/tftpd + /usr/lib/talkd + /usr/lib/uucpd + /usr/lib/ftpd + /usr/lib/syslogd + /usr/lib/telnetd + /usr/lib/inetd + /usr/share/doc + /usr/share/info + /etc/xinetd.d + /etc/pam.d + /usr/share/dbus-1/services + /var/run/inetutils + + + telnet.xinetd + talk.xinetd + ftpd.service + talk.service + telnet@.service + talk.socket + telnet.socket + + + + + 2023-07-07 + 2.4 + First release + Kamil Atlı + suvari@pisilinux.org + + + iwd @@ -285719,9 +286025,10 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol NetworkManager attempts to keep an active network connection available at all times. NetworkManager, etkin bir bağlantı kurmak ve onu sürekli ayakta tutmak üzere tasarlanmış, D-Bus ve UDEV teknolojilerini kullanan bir ağ yönetim altyapısıdır. NetworkManager - https://download.gnome.org/sources/NetworkManager/1.42/NetworkManager-1.42.6.tar.xz + https://download.gnome.org/sources/NetworkManager/1.42/NetworkManager-1.42.8.tar.xz meson + audit-devel curl-devel intltool dhclient @@ -285835,7 +286142,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol glib2-devel dbus-glib-devel - NetworkManager + NetworkManager /usr/include @@ -285846,13 +286153,20 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol NetworkManager-docs Development files for NetworkManager - NetworkManager + NetworkManager /usr/share/gtk-doc + + 2023-06-28 + 1.42.8 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2023-05-04 1.42.6 @@ -286507,31 +286821,13 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol Modem ile internet erişimi için PPP (point to point protocol) noktadan noktaya erişim protokolü The Point-to-Point Protocol (PPP) provides a standard way to transmit datagrams over a serial link. PPP protokolü veriyi seri bir bağlantı üzerinden transfer etmek için standart bir yol sağlar. - https://www.samba.org/ftp/ppp/ppp-2.4.9.tar.gz - http://distfiles.gentoo.org/distfiles/ppp-dhcpc.tgz + https://www.samba.org/ftp/ppp/ppp-2.5.0.tar.gz + http://distfiles.gentoo.org/distfiles/ppp-dhcpc.tgz libpcap-devel openssl-devel pam-devel - - gentoo/0001-Change-Make-vars-to-work-in-Gentoo-builds.patch - gentoo/0002-Use-internal-implementation-of-logwtmp-function.patch - gentoo/0003-Add-MPLSCP-support.patch - gentoo/0004-smarter-killaddr.patch - gentoo/0005-Improve-waiting-for-children-on-exit.patch - gentoo/0006-Remove-one-of-the-2-pidfiles-pidfilename-or-linkpidf.patch - gentoo/0007-Run-etc-ppp-auth-fail-script-if-exists-and-authentic.patch - gentoo/0008-Try-to-create-dev-ppp-if-not-available.patch - gentoo/0009-passwordfd-read-early.patch - gentoo/0010-Add-option-to-ask-peer-for-WINS-address.patch - gentoo/0011-Log-connect-errors-to-var-log-ppp-connect-errors.patch - gentoo/0012-Don-t-hang-when-starting-pppoe-connection-without-se.patch - gentoo/0013-Add-defaultmetric-as-compatibility-option-name.patch - gentoo/0014-Warn-user-of-deprecated-option-defaultmetric.patch - gentoo/85_all_dhcp-make-vars.patch - gentoo/86_all_dhcp-sys_error_to_strerror.patch - network/connection/ppp/pspec.xml @@ -286567,13 +286863,20 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol Development files for ppp ppp için geliştirme dosyaları - ppp + ppp /usr/include + + 2023-06-23 + 2.5.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2023-04-19 2.4.9 @@ -287391,7 +287694,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol Iproute2 is a collection of utilites for controlling TCP/IP networking and traffic control in Linux. Iproute2 TCP/IP ağları ve trafik kontrolü için araçlar içeren bir koolleksiyondur. network-server - https://git.kernel.org/pub/scm/network/iproute2/iproute2.git/snapshot/iproute2-6.3.0.tar.gz + https://git.kernel.org/pub/scm/network/iproute2/iproute2.git/snapshot/iproute2-6.4.0.tar.gz db-devel zlib-devel @@ -287430,6 +287733,13 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + 2023-06-27 + 6.4.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2023-04-28 6.3.0 @@ -288418,7 +288728,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol Moduły GIO dotyczące sieci do glib This package contains various network related extensions for the GIO library. Pakiet zawiera różne rozszerzenia dotyczące sieci do biblioteki GIO. - mirrors://gnome/glib-networking/2.76/glib-networking-2.76.0.tar.xz + mirrors://gnome/glib-networking/2.76/glib-networking-2.76.1.tar.xz meson gnutls-devel @@ -288450,6 +288760,13 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + 2023-06-30 + 2.76.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2023-03-17 2.76.0 @@ -289942,7 +290259,7 @@ functionality to build high-performing, platform-independent programs.Olay bazlı V8 Javascript motoru Node.js is an open-source, cross-platform, JavaScript runtime environment. It executes JavaScript code outside of a browser. Kolay, hızlı, ölçeklenebilir ağ uygulamaları oluşturmak için Chrome'un JavaScript çalışma üzerine inşa edilmiş bir platform. - https://nodejs.org/dist/v16.11.1/node-v16.11.1.tar.xz + https://nodejs.org/dist/v20.4.0/node-v20.4.0.tar.xz icu4c-devel libuv-devel @@ -289973,6 +290290,13 @@ functionality to build high-performing, platform-independent programs. + + 2023-07-06 + 20.4.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-10-23 16.11.1 @@ -301560,7 +301884,7 @@ complete albums that you have purchased from Amazon. libreoffice - http://www.documentfoundation.org + https://www.libreoffice.org/ PisiLinux Community admins@pisilinux.org @@ -301573,80 +301897,84 @@ complete albums that you have purchased from Amazon. 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. LibreOffice, pek çok farklı işletim sisteminde çalışabilen açık kaynak kodlu bir yazılım projesidir. LibreOffice, kelime işlemci, hesap tablosu, sunum ve çizim programları, formül düzenleyici gibi temel masaüstü ofis uygulamalarını içerir ve alışılmış ofis programlarının özelliklerini sunar. Microsoft Office dosyaları da dahil olmak üzere bilinen ofis dosya formatlarıyla uyumlu çalışır. libreoffice-startcenter - http://download.documentfoundation.org/libreoffice/src/7.4.4/libreoffice-7.4.4.2.tar.xz - http://download.documentfoundation.org/libreoffice/src/7.4.4/libreoffice-dictionaries-7.4.4.2.tar.xz - http://download.documentfoundation.org/libreoffice/src/7.4.4/libreoffice-help-7.4.4.2.tar.xz - http://download.documentfoundation.org/libreoffice/src/7.4.4/libreoffice-translations-7.4.4.2.tar.xz - https://dev-www.libreoffice.org/src/xmlsec1-1.2.34.tar.gz - https://dev-www.libreoffice.org/src/xmlsec1-1.2.37.tar.gz - http://dev-www.libreoffice.org/src/35c94d2df8893241173de1d16b6034c0-swingExSrc.zip - http://dev-www.libreoffice.org/src/798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip - http://dev-www.libreoffice.org/src/a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip - http://dev-www.libreoffice.org/src/commons-logging-1.2-src.tar.gz - http://dev-www.libreoffice.org/src/eeb2c7ddf0d302fba4bfc6e97eac9624-libbase-1.1.6.zip - http://dev-www.libreoffice.org/src/39bb3fcea1514f1369fcfc87542390fd-sacjava-1.3.zip - http://dev-www.libreoffice.org/src/3404ab6b1792ae5f16bbd603bd1e1d03-libformula-1.1.7.zip - http://dev-www.libreoffice.org/src/97b2d4dba862397f446b217e2b623e71-libloader-1.1.6.zip - http://dev-www.libreoffice.org/src/f94d9870737518e3b597f9265f4e9803-libserializer-1.1.6.zip - http://dev-www.libreoffice.org/src/8ce2fcd72becf06c41f7201d15373ed9-librepository-1.1.6.zip - http://dev-www.libreoffice.org/src/3bdf40c0d199af31923e900d082ca2dd-libfonts-1.1.6.zip - http://dev-www.libreoffice.org/src/ace6ab49184e329db254e454a010f56d-libxml-1.1.7.zip - http://dev-www.libreoffice.org/src/db60e4fde8dd6d6807523deb71ee34dc-liblayout-0.2.10.zip - http://dev-www.libreoffice.org/src/0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz - https://dev-www.libreoffice.org/src/language-subtag-registry-2022-08-08.tar.bz2 - http://dev-www.libreoffice.org/src/collada2gltf-master-6258611a6a.tar.bz2 - http://dev-www.libreoffice.org/src/OpenCOLLADA-master-6509aa13af.tar.bz2 - https://dev-www.libreoffice.org/src/17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip - https://dev-www.libreoffice.org/src/62c0b97e94fe47d5e50ff605d2edf37a-hsqldb-2.3.3.zip - http://dev-www.libreoffice.org/src/d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip - http://dev-www.libreoffice.org/src/ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip - http://dev-www.libreoffice.org/src/libfreehand-0.1.2.tar.xz - https://dev-www.libreoffice.org/src/liborcus-0.17.2.tar.bz2 - https://dev-www.libreoffice.org/src/liborcus-0.18.0.tar.xz - http://dev-www.libreoffice.org/src/beeca87be45ec87d241ddd0e1bad80c1-bsh-2.0b6-src.zip - http://dev-www.libreoffice.org/src/5ade6ae2a99bc1e9e57031ca88d36dad-hyphen-2.8.8.tar.gz - https://dev-www.libreoffice.org/src/libabw-0.1.3.tar.xz - https://dev-www.libreoffice.org/src/libcmis-0.5.2.tar.xz - https://dev-www.libreoffice.org/src/libnumbertext-1.0.11.tar.xz - https://dev-www.libreoffice.org/src/lxml-4.1.1.tgz - http://dev-www.libreoffice.org/src/libexttextcat-3.4.6.tar.xz - https://dev-www.libreoffice.org/src/libmwaw-0.3.21.tar.xz - http://dev-www.libreoffice.org/src/libstaroffice-0.0.7.tar.xz - http://dev-www.libreoffice.org/src/libzmf-0.0.2.tar.xz - https://dev-www.libreoffice.org/src/libe-book-0.1.3.tar.xz - https://dev-www.libreoffice.org/src/libepubgen-0.1.1.tar.xz - https://dev-www.libreoffice.org/src/libqxp-0.0.2.tar.xz - http://dev-www.libreoffice.org/src/26b3e95ddf3d9c077c480ea45874b3b8-lp_solve_5.5.tar.gz - https://dev-www.libreoffice.org/src/a8c2c5b8f09e7ede322d5c602ff6a4b6-mythes-1.2.4.tar.gz - https://dev-www.libreoffice.org/src/mythes-1.2.5.tar.xz - https://dev-www.libreoffice.org/src/pdfium-5058.tar.bz2 - https://dev-www.libreoffice.org/src/pdfium-5522.tar.bz2 - https://dev-www.libreoffice.org/src/QR-Code-generator-1.4.0.tar.gz - https://dev-www.libreoffice.org/src/Firebird-3.0.7.33374-0.tar.bz2 - https://dev-www.libreoffice.org/src/CoinMP-1.7.6.tgz - https://dev-www.libreoffice.org/src/CoinMP-1.8.4.tgz - https://dev-www.libreoffice.org/src/ltm-1.0.zip - https://dev-www.libreoffice.org/src/box2d-2.4.1.tar.gz - https://dev-www.libreoffice.org/src/dtoa-20180411.tgz - https://dev-www.libreoffice.org/src/a233181e03d3c307668b4c722d881661-mariadb_client-2.0.0-src.tar.gz - https://dev-www.libreoffice.org/src/mariadb-connector-c-3.1.8-src.tar.gz - https://dev-www.libreoffice.org/src/skia-m103-b301ff025004c9cd82816c86c547588e6c24b466.tar.xz - https://dev-www.libreoffice.org/src/zxing-cpp-1.2.0.tar.gz - https://dev-www.libreoffice.org/src/zxing-cpp-1.4.0.tar.gz - https://dev-www.libreoffice.org/src/poppler-22.12.0.tar.xz - https://dev-www.libreoffice.org/src/poppler-data-0.4.11.tar.gz - https://dev-www.libreoffice.org/src/libcuckoo-93217f8d391718380c508a722ab9acd5e9081233.tar.gz - https://dev-www.libreoffice.org/extern/884ed41809687c3e168fc7c19b16585149ff058eca79acbf3ee784f6630704cc-opens___.ttf - https://dev-www.libreoffice.org/extern/f543e6e2d7275557a839a164941c0a86e5f2c3f2a0042bfc434c88c6dde9e140-opens___.ttf - https://dev-www.libreoffice.org/src/b7cae45ad2c23551fd6ccb8ae2c1f59e-numbertext_0.9.5.oxt - http://dev-www.libreoffice.org/extern/odfvalidator-1.2.0-incubating-SNAPSHOT-jar-with-dependencies-971c54fd38a968f5860014b44301872706f9e540.jar - https://dev-www.libreoffice.org/extern/odfvalidator-0.9.0-RC2-SNAPSHOT-jar-with-dependencies-2726ab578664434a545f8379a01a9faffac0ae73.jar - http://dev-www.libreoffice.org/extern/8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar - https://dev-www.libreoffice.org/src/dragonbox-1.1.3.tar.gz - https://dev-www.libreoffice.org/src/libxml2-2.10.3.tar.xz - https://dev-www.libreoffice.org/src/libwebp-1.2.4.tar.gz - https://dev-www.libreoffice.org/src/libwebp-1.3.0-rc1.tar.gz - https://dev-www.libreoffice.org/src/tiff-4.5.0rc3.tar.xz + http://download.documentfoundation.org/libreoffice/src/7.5.4/libreoffice-7.5.4.2.tar.xz + http://download.documentfoundation.org/libreoffice/src/7.5.4/libreoffice-dictionaries-7.5.4.2.tar.xz + http://download.documentfoundation.org/libreoffice/src/7.5.4/libreoffice-help-7.5.4.2.tar.xz + http://download.documentfoundation.org/libreoffice/src/7.5.4/libreoffice-translations-7.5.4.2.tar.xz + https://dev-www.libreoffice.org/src/xmlsec1-1.2.34.tar.gz + https://dev-www.libreoffice.org/src/xmlsec1-1.2.37.tar.gz + http://dev-www.libreoffice.org/src/35c94d2df8893241173de1d16b6034c0-swingExSrc.zip + http://dev-www.libreoffice.org/src/798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip + http://dev-www.libreoffice.org/src/a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip + http://dev-www.libreoffice.org/src/commons-logging-1.2-src.tar.gz + http://dev-www.libreoffice.org/src/eeb2c7ddf0d302fba4bfc6e97eac9624-libbase-1.1.6.zip + http://dev-www.libreoffice.org/src/39bb3fcea1514f1369fcfc87542390fd-sacjava-1.3.zip + http://dev-www.libreoffice.org/src/3404ab6b1792ae5f16bbd603bd1e1d03-libformula-1.1.7.zip + http://dev-www.libreoffice.org/src/97b2d4dba862397f446b217e2b623e71-libloader-1.1.6.zip + http://dev-www.libreoffice.org/src/f94d9870737518e3b597f9265f4e9803-libserializer-1.1.6.zip + http://dev-www.libreoffice.org/src/8ce2fcd72becf06c41f7201d15373ed9-librepository-1.1.6.zip + http://dev-www.libreoffice.org/src/3bdf40c0d199af31923e900d082ca2dd-libfonts-1.1.6.zip + http://dev-www.libreoffice.org/src/ace6ab49184e329db254e454a010f56d-libxml-1.1.7.zip + http://dev-www.libreoffice.org/src/db60e4fde8dd6d6807523deb71ee34dc-liblayout-0.2.10.zip + http://dev-www.libreoffice.org/src/0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz + https://dev-www.libreoffice.org/src/language-subtag-registry-2023-05-11.tar.bz2 + http://dev-www.libreoffice.org/src/collada2gltf-master-6258611a6a.tar.bz2 + http://dev-www.libreoffice.org/src/OpenCOLLADA-master-6509aa13af.tar.bz2 + https://dev-www.libreoffice.org/src/17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip + https://dev-www.libreoffice.org/src/62c0b97e94fe47d5e50ff605d2edf37a-hsqldb-2.3.3.zip + http://dev-www.libreoffice.org/src/d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip + http://dev-www.libreoffice.org/src/ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip + http://dev-www.libreoffice.org/src/libfreehand-0.1.2.tar.xz + https://dev-www.libreoffice.org/src/liborcus-0.17.2.tar.bz2 + https://dev-www.libreoffice.org/src/liborcus-0.18.1.tar.xz + http://dev-www.libreoffice.org/src/beeca87be45ec87d241ddd0e1bad80c1-bsh-2.0b6-src.zip + http://dev-www.libreoffice.org/src/5ade6ae2a99bc1e9e57031ca88d36dad-hyphen-2.8.8.tar.gz + https://dev-www.libreoffice.org/src/libabw-0.1.3.tar.xz + https://dev-www.libreoffice.org/src/libcmis-0.5.2.tar.xz + https://dev-www.libreoffice.org/src/libnumbertext-1.0.11.tar.xz + https://dev-www.libreoffice.org/src/lxml-4.9.2.tgz + http://dev-www.libreoffice.org/src/libexttextcat-3.4.6.tar.xz + https://dev-www.libreoffice.org/src/libmwaw-0.3.21.tar.xz + http://dev-www.libreoffice.org/src/libstaroffice-0.0.7.tar.xz + http://dev-www.libreoffice.org/src/libzmf-0.0.2.tar.xz + https://dev-www.libreoffice.org/src/libe-book-0.1.3.tar.xz + https://dev-www.libreoffice.org/src/libepubgen-0.1.1.tar.xz + https://dev-www.libreoffice.org/src/libqxp-0.0.2.tar.xz + http://dev-www.libreoffice.org/src/26b3e95ddf3d9c077c480ea45874b3b8-lp_solve_5.5.tar.gz + https://dev-www.libreoffice.org/src/a8c2c5b8f09e7ede322d5c602ff6a4b6-mythes-1.2.4.tar.gz + https://dev-www.libreoffice.org/src/mythes-1.2.5.tar.xz + https://dev-www.libreoffice.org/src/pdfium-5408.tar.bz2 + https://dev-www.libreoffice.org/src/pdfium-5778.tar.bz2 + https://dev-www.libreoffice.org/src/QR-Code-generator-1.4.0.tar.gz + https://dev-www.libreoffice.org/src/Firebird-3.0.7.33374-0.tar.bz2 + https://dev-www.libreoffice.org/src/Firebird-4.0.2.2816-0.tar.xz + https://dev-www.libreoffice.org/src/CoinMP-1.7.6.tgz + https://dev-www.libreoffice.org/src/CoinMP-1.8.4.tgz + https://dev-www.libreoffice.org/src/ltm-1.0.zip + https://dev-www.libreoffice.org/src/ltm-1.2.0.tar.xz + https://dev-www.libreoffice.org/src/box2d-2.4.1.tar.gz + https://dev-www.libreoffice.org/src/dtoa-20180411.tgz + https://dev-www.libreoffice.org/src/a233181e03d3c307668b4c722d881661-mariadb_client-2.0.0-src.tar.gz + https://dev-www.libreoffice.org/src/mariadb-connector-c-3.1.8-src.tar.gz + https://dev-www.libreoffice.org/src/skia-m103-b301ff025004c9cd82816c86c547588e6c24b466.tar.xz + https://dev-www.libreoffice.org/src/skia-m116-2ddcf183eb260f63698aa74d1bb380f247ad7ccd.tar.xz + https://dev-www.libreoffice.org/src/poppler-22.12.0.tar.xz + https://dev-www.libreoffice.org/src/poppler-23.06.0.tar.xz + https://dev-www.libreoffice.org/src/poppler-data-0.4.11.tar.gz + https://dev-www.libreoffice.org/src/poppler-data-0.4.12.tar.gz + https://dev-www.libreoffice.org/src/libcuckoo-93217f8d391718380c508a722ab9acd5e9081233.tar.gz + https://dev-www.libreoffice.org/extern/884ed41809687c3e168fc7c19b16585149ff058eca79acbf3ee784f6630704cc-opens___.ttf + https://dev-www.libreoffice.org/extern/f543e6e2d7275557a839a164941c0a86e5f2c3f2a0042bfc434c88c6dde9e140-opens___.ttf + https://dev-www.libreoffice.org/src/b7cae45ad2c23551fd6ccb8ae2c1f59e-numbertext_0.9.5.oxt + http://dev-www.libreoffice.org/extern/odfvalidator-1.2.0-incubating-SNAPSHOT-jar-with-dependencies-971c54fd38a968f5860014b44301872706f9e540.jar + https://dev-www.libreoffice.org/extern/odfvalidator-0.9.0-RC2-SNAPSHOT-jar-with-dependencies-2726ab578664434a545f8379a01a9faffac0ae73.jar + https://dev-www.libreoffice.org/extern/a1adc7a47ed126ed029893c23c8bdd43-officeotron-0.7.4-master.jar + https://dev-www.libreoffice.org/src/dragonbox-1.1.3.tar.gz + https://dev-www.libreoffice.org/src/libxml2-2.11.4.tar.xz + https://dev-www.libreoffice.org/src/libwebp-1.3.0.tar.gz + https://dev-www.libreoffice.org/src/libwebp-1.3.1.tar.gz + https://dev-www.libreoffice.org/src/tiff-4.5.0rc3.tar.xz + https://dev-www.libreoffice.org/src/tiff-4.5.1.tar.xz xz-devel ant @@ -301749,11 +302077,11 @@ complete albums that you have purchased from Amazon. gpgme-devel libepoxy-devel ccache + zxing-cpp-devel make-pyuno-work-with-system-wide-module-install.diff 623ea5c.diff - Remove_dependency_on_BitArray.h_from_zxing-1.2.0.patch office/libreoffice/libreoffice/pspec.xml @@ -301793,6 +302121,7 @@ complete albums that you have purchased from Amazon. libXinerama libjpeg-turbo gstreamer + jre8-openjdk-headless jre-openjdk-headless jre-openjdk gtk3 @@ -301824,6 +302153,7 @@ complete albums that you have purchased from Amazon. libwps libetonyek xcb-util-wm + zxing-cpp /usr/bin @@ -302302,7 +302632,7 @@ complete albums that you have purchased from Amazon. libreoffice-kde5-integration LibreOffice KDE5 integration - libreoffice + libreoffice plasma-framework kio kconfig @@ -303538,6 +303868,7 @@ complete albums that you have purchased from Amazon. lang-dsb /usr/lib/libreoffice/readmes/*_dsb + /usr/lib/libreoffice/help/dsb /usr/lib/libreoffice/share/autotext/dsb /usr/lib/libreoffice/share/autocorr/acor_dsb.dat /usr/lib/libreoffice/share/registry/*dsb.xcd @@ -303706,6 +304037,7 @@ complete albums that you have purchased from Amazon. lang-fa /usr/lib/libreoffice/readmes/*_fa + /usr/lib/libreoffice/share/extensions/dict-fa /usr/lib/libreoffice/share/autotext/fa /usr/lib/libreoffice/share/registry/*fa.xcd /usr/lib/libreoffice/share/registry/res/*fa.xcd @@ -303937,6 +304269,7 @@ complete albums that you have purchased from Amazon. lang-hsb /usr/lib/libreoffice/readmes/*_hsb + /usr/lib/libreoffice/help/hsb /usr/lib/libreoffice/share/autotext/hsb /usr/lib/libreoffice/share/registry/*hsb.xcd /usr/lib/libreoffice/share/registry/res/*hsb.xcd @@ -305181,6 +305514,13 @@ complete albums that you have purchased from Amazon. + + 2023-01-15 + 7.5.4.2 + Version Bump + Kamil Atlı + suvari@pisilinux.org + 2023-01-15 7.4.4.2 @@ -305983,7 +306323,7 @@ complete albums that you have purchased from Amazon. A library for processing plaintext documentation into useful formats, such as HTML, XML, and LaTeX. Docutils, düzyazı belgelendirmelerini HTML, LaTeX, man-betleri, açık belge veya XML biçimlerine dönüştürebilen açık kaynak kodlu uygulamalar ve kitaplığıdır. Librería para procesamiento de texto plano para conversión a formatos útiles como HTML, XML, y LaTeX. - https://sourceforge.net/projects/docutils/files/docutils/0.19/docutils-0.19.tar.gz/download + https://sourceforge.net/projects/docutils/files/docutils/0.20.1/docutils-0.20.1.tar.gz/download python3-setuptools python-setuptools @@ -306006,7 +306346,7 @@ complete albums that you have purchased from Amazon. Python için docutils modülü Python için docutils modülü - docutils + docutils /usr/lib/python2* @@ -306018,7 +306358,7 @@ complete albums that you have purchased from Amazon. Python3 için docutils modülü Python3 için docutils modülü - docutils + docutils python3 @@ -306026,6 +306366,13 @@ complete albums that you have purchased from Amazon. + + 2023-07-01 + 0.20.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + 2023-04-21 0.19 @@ -306520,7 +306867,7 @@ complete albums that you have purchased from Amazon. Hafif ve özgür bir PDF görüntüleyici Evince is a document viewer for multiple document formats. The goal of evince is to replace the multiple document viewers that exist on the GNOME Desktop with a single simple application. evince değişik tipte belgeleri görüntülemek için kullanılan bir araçtır. Evince'in amacı, GNOME Masaüstü ortamı için basit bir belge görüntüleyici olarak diğer belge görüntüleyicilerinin yerini almaktır. - https://download.gnome.org/sources/evince/44/evince-44.2.tar.xz + https://download.gnome.org/sources/evince/44/evince-44.3.tar.xz meson itstool @@ -306611,7 +306958,7 @@ complete albums that you have purchased from Amazon. Development files for evince evince için geliştirme dosyaları - evince + evince glib2-devel gtk3-devel @@ -306630,6 +306977,13 @@ complete albums that you have purchased from Amazon. + + 2023-07-01 + 44.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2023-06-17 44.2 @@ -353204,7 +353558,7 @@ complete albums that you have purchased from Amazon. Vala is a new programming language that aims to bring modern programming language features to GNOME developers without imposing any additional runtime requirements and without using a different ABI compared to applications and libraries written in C. Vala, ek bir çalışma zamanı bağımlılığı olmayan ve C kitaplıklarının olduğu gibi kullanılabilmesini sağlayan modern bir programlama dilidir. Vala to nowy język programowania, którego celem jest udostępnienie cech nowoczesnych języków programowania programistom GNOME bez wymuszania dodatkowych wymagań co do środowiska uruchomieniowego i używania API innego niż w aplikacjach i bibliotekach napisanych w C. - mirrors://gnome/vala/0.56/vala-0.56.8.tar.xz + mirrors://gnome/vala/0.56/vala-0.56.9.tar.xz help2man glib2-devel @@ -353252,7 +353606,7 @@ complete albums that you have purchased from Amazon. vala için geliştirme dosyaları Pliki nagłówkowe dla kompilatora vala - vala + vala glib2-devel @@ -353265,6 +353619,13 @@ complete albums that you have purchased from Amazon. + + 2023-07-02 + 0.56.9 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2023-05-25 0.56.8 @@ -362235,11 +362596,11 @@ to create header files and sources from protocol files. library programming.library A C++ library to decode QRCode - A C++ library to decode QRCode + QRCode'un kodunu çözmek için bir C++ kitaplığı QRCode'un kodunu çözmek için bir C++ kitaplığı QRCode'un kodunu çözmek için bir C++ kitaplığı zxing-cpp - https://github.com/zxing-cpp/zxing-cpp/archive/refs/tags/v2.0.0.tar.gz + https://github.com/zxing-cpp/zxing-cpp/archive/refs/tags/v2.1.0.tar.gz cmake @@ -362260,7 +362621,7 @@ to create header files and sources from protocol files. zxing-cpp-devel Development files for zxing-cpp - zxing-cpp + zxing-cpp /usr/include @@ -362269,6 +362630,13 @@ to create header files and sources from protocol files. + + 2023-06-07 + 2.1.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2023-04-20 2.0.0 @@ -385672,7 +386040,7 @@ contacts, tasks, and calendar information. Yönetici haklarıyla komut çalıştırma uygulaması sudo allows certain users/groups to run commands with root user privileges. sudo, belirli kullanıcıların ya da kullanıcı gruplarının komut ve uygulamaları yönetici kullanıcı (root) haklarıyla çalıştırmasına izin veren bir konsol uygulamasıdır. - https://www.sudo.ws/sudo/dist/sudo-1.9.13p3.tar.gz + https://www.sudo.ws/sudo/dist/sudo-1.9.14.tar.gz nss-devel pam-devel @@ -385720,6 +386088,13 @@ contacts, tasks, and calendar information. + + 2023-06-29 + 1.9.14 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2023-05-06 1.9.13_p3 @@ -387371,7 +387746,7 @@ contacts, tasks, and calendar information. Zip arşivleri yaratmak, okumak ve değiştirmek için C kitaplığı libzip is a C library for reading, creating and modifying zip archives. Files can be added from data buffers, files or compressed data copied directly from other zip archives. libzip, zip arşivleri yaratma, okumak ve değiştirmek için kullanılabilecek bir C kitaplığıdır. - https://libzip.org/download/libzip-1.9.2.tar.xz + https://libzip.org/download/libzip-1.10.0.tar.xz xz-devel zstd-devel @@ -387404,7 +387779,7 @@ contacts, tasks, and calendar information. libzip için geliştirme dosyaları zlib-devel - libzip + libzip /usr/include @@ -387413,6 +387788,13 @@ contacts, tasks, and calendar information. + + 2023-06-25 + 1.10.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2022-06-28 1.9.2 @@ -388782,7 +389164,7 @@ contacts, tasks, and calendar information. GnuPG allows to encrypt and sign your data and communication, features a versatile key managment system as well as access modules for all kinds of public key directories. GnuPG verilerinizin ve iletişimlerinizin şifrelenmesi ve imzalanmmasını sağlar, her tür genel anahtar dizinleri için modullere erişiminde olduğu gibi çok yönlü anahtar yönetim sistemi avantajı vardır. gnupg - https://www.gnupg.org/ftp/gcrypt/gnupg/gnupg-2.4.2.tar.bz2 + https://www.gnupg.org/ftp/gcrypt/gnupg/gnupg-2.4.3.tar.bz2 openldap-client pinentry @@ -388850,7 +389232,7 @@ contacts, tasks, and calendar information. Documentation files for GnuPG GnuPG paketine ait API dokümantasyonu - gnupg + gnupg /usr/share/doc/gnupg/html @@ -388859,6 +389241,13 @@ contacts, tasks, and calendar information. + + 2023-07-05 + 2.4.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2023-05-31 2.4.2 @@ -389887,7 +390276,7 @@ contacts, tasks, and calendar information. Network Security Services (NSS) is a set of libraries designed to support cross-platform development of security-enabled client and server applications. Applications built with NSS can support SSL v2 and v3, TLS, PKCS #5, PKCS #7, PKCS #11, PKCS #12, S/MIME, X.509 v3 certificates, and other security standards. NSS, platform bağımsız güvenli ağ servisi geliştirme kitaplıklarından oluşur. Bu kitaplık yardımı ile SSL v2 ve v3, PKCS #5, PKCS #7, PKCS #11, PKCS #12, S/MIME, X.509 v3 sertifikaları ve diğer bir çok güvenlik standardına uygun güvenli sunucu-istemci yazılımları geliştirilebilir. Network Security Services (NSS) es un conjunto de librerías para desarrollo cross-plataforma de aplicaciones cliente-servidor con facilidad de seguridad. Aplicaciones usando NSS pueden soportar certificados SSL v2 y v3, TLS, PKCS #5, PKCS #7, PKCS #11, PKCS #12, S/MIME, X.509 v3, y otros estándares de seguridad. - https://ftp.mozilla.org/pub/security/nss/releases/NSS_3_89_1_RTM/src/nss-3.89.1.tar.gz + https://ftp.mozilla.org/pub/security/nss/releases/NSS_3_91_RTM/src/nss-3.91.tar.gz nss.pc.in nss-config.in @@ -389930,7 +390319,7 @@ contacts, tasks, and calendar information. nss için geliştirme dosyaları nspr-devel - nss + nss /usr/bin/nss-config @@ -389940,6 +390329,13 @@ contacts, tasks, and calendar information. + + 2023-07-01 + 3.91 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2023-05-08 3.89.1 @@ -392622,7 +393018,7 @@ contacts, tasks, and calendar information. Herramienta útil para diagnostico, aprendizaje y depuración strace intercepts and records the system calls called and received by a running process. strace can print a record of each system call, its arguments and its return value. strace, çalışan bir UNIX süreci tarafından çağırılan ve alınan sistem çağrılarını, bu çağrılara verilen parametreleri ve dönüş değerlerini gösteren bir hata ayıklama aracıdır. - https://strace.io/files/5.15/strace-5.15.tar.xz + https://strace.io/files/6.4/strace-6.4.tar.xz libunwind-devel @@ -392640,6 +393036,13 @@ contacts, tasks, and calendar information. + + 2023-06-27 + 6.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2022-02-04 5.15 @@ -401001,7 +401404,7 @@ contacts, tasks, and calendar information. Linux için video hızlandırma API'si libva is a library providing the VA API video acceleration API. libva, VA video hızlandırma API'sini sağlayan bir kitaplıktır. - https://github.com/intel/libva/archive/2.18.0.tar.gz + https://github.com/intel/libva/archive/2.19.0.tar.gz libdrm-devel libXext-devel @@ -401034,7 +401437,7 @@ contacts, tasks, and calendar information. Development files for libva libva için geliştirme dosyaları - libva + libva wayland-devel @@ -401058,7 +401461,7 @@ contacts, tasks, and calendar information. libX11-32bit - libva + libva libdrm-32bit wayland-32bit libXext-32bit @@ -401072,6 +401475,13 @@ contacts, tasks, and calendar information. + + 2023-07-05 + 2.19.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2023-03-22 2.18.0 @@ -406579,7 +406989,7 @@ contacts, tasks, and calendar information. Specifications of extended Wayland protocols Genişletişmiş wayland protocolü tanımlamaları Specifications of extended Wayland protocols - https://ftp.osuosl.org/pub/blfs/conglomeration/wayland-protocols/wayland-protocols-1.31.tar.xz + https://gitlab.freedesktop.org/wayland/wayland-protocols/-/archive/1.32/wayland-protocols-1.32.tar.bz2 meson wayland-client @@ -406600,13 +407010,20 @@ contacts, tasks, and calendar information. wayland-protocols-devel wayland-protocols için geliştirme dosyaları - wayland-protocols + wayland-protocols /usr/share/pkgconfig + + 2023-07-04 + 1.32 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2022-12-27 1.31 @@ -413217,7 +413634,7 @@ contacts, tasks, and calendar information. Wayland tools to display information about current compositor Wayland tools to display information about current compositor Wayland tools to display information about current compositor - https://gitlab.freedesktop.org/wayland/wayland-utils/-/archive/1.1.0/wayland-utils-1.1.0.tar.bz2 + https://gitlab.freedesktop.org/wayland/wayland-utils/-/archive/1.2.0/wayland-utils-1.2.0.tar.bz2 meson wayland-devel @@ -413243,6 +413660,13 @@ contacts, tasks, and calendar information. + + 2023-07-04 + 1.2.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2022-09-19 1.1.0 diff --git a/pisi-index.xml.sha1sum b/pisi-index.xml.sha1sum index 222704d8bf..4d2f862ed7 100644 --- a/pisi-index.xml.sha1sum +++ b/pisi-index.xml.sha1sum @@ -1 +1 @@ -b98f9a799b99fb261a5465bc7cd03dae7c781310 \ No newline at end of file +184ff56ab8d9c81201a2ba18d16a82304dc62675 \ No newline at end of file diff --git a/pisi-index.xml.xz b/pisi-index.xml.xz index 259bbdefda..c193ecf631 100644 Binary files a/pisi-index.xml.xz and b/pisi-index.xml.xz differ diff --git a/pisi-index.xml.xz.sha1sum b/pisi-index.xml.xz.sha1sum index df897c4f3d..939a928408 100644 --- a/pisi-index.xml.xz.sha1sum +++ b/pisi-index.xml.xz.sha1sum @@ -1 +1 @@ -7b302ad5f198840ae8505b73cf7cadb9a3684abd \ No newline at end of file +3046efa3cf82746cc68eeb6f458bb5844b1d362d \ No newline at end of file