From 3143a5ffb6695f73827220c9d48ed16993da34b8 Mon Sep 17 00:00:00 2001 From: cc Date: Wed, 28 Jul 2021 17:29:47 +0200 Subject: [PATCH 001/824] libcgroup: update to 2.0. update libcgroup to version 2.0 --- .../libcgroup/patches/CVE-2018-14348.patch | 12 ------ .../patches/api.c-fix-infinite-loop.patch | 38 ------------------- srcpkgs/libcgroup/patches/musl-decls.patch | 3 +- ...-strerror_r.patch => musl-sterror_r.patch} | 4 +- srcpkgs/libcgroup/template | 14 +++---- srcpkgs/libcgroup/update | 1 - 6 files changed, 8 insertions(+), 64 deletions(-) delete mode 100644 srcpkgs/libcgroup/patches/CVE-2018-14348.patch delete mode 100644 srcpkgs/libcgroup/patches/api.c-fix-infinite-loop.patch rename srcpkgs/libcgroup/patches/{musl-strerror_r.patch => musl-sterror_r.patch} (99%) delete mode 100644 srcpkgs/libcgroup/update diff --git a/srcpkgs/libcgroup/patches/CVE-2018-14348.patch b/srcpkgs/libcgroup/patches/CVE-2018-14348.patch deleted file mode 100644 index bd083c2aad97..000000000000 --- a/srcpkgs/libcgroup/patches/CVE-2018-14348.patch +++ /dev/null @@ -1,12 +0,0 @@ ---- a/src/daemon/cgrulesengd.c -+++ b/src/daemon/cgrulesengd.c -@@ -889,9 +889,6 @@ - } else if (pid > 0) { - exit(EXIT_SUCCESS); - } -- -- /* Change the file mode mask. */ -- umask(0); - } else { - flog(LOG_DEBUG, "Not using daemon mode\n"); - pid = getpid(); diff --git a/srcpkgs/libcgroup/patches/api.c-fix-infinite-loop.patch b/srcpkgs/libcgroup/patches/api.c-fix-infinite-loop.patch deleted file mode 100644 index 12ee0eeebc84..000000000000 --- a/srcpkgs/libcgroup/patches/api.c-fix-infinite-loop.patch +++ /dev/null @@ -1,38 +0,0 @@ -Date: Tue, 8 Dec 2015 16:53:41 +0100 -Subject: [PATCH] api.c: fix infinite loop - -If getgrnam or getpwuid functions failed, the program entered -an infinite loop, because the rule pointer was never advanced. -This is now fixed by updating the pointer before continuing -to the next iteration. ---- - src/api.c | 8 ++++++-- - 1 file changed, 6 insertions(+), 2 deletions(-) - -diff --git a/src/api.c b/src/api.c -index d6c9d3a..ef796ac 100644 ---- a/src/api.c -+++ b/src/api.c -@@ -2775,13 +2775,17 @@ static struct cgroup_rule *cgroup_find_matching_rule_uid_gid(uid_t uid, - /* Get the group data. */ - sp = &(rule->username[1]); - grp = getgrnam(sp); -- if (!grp) -+ if (!grp) { -+ rule = rule->next; - continue; -+ } - - /* Get the data for UID. */ - usr = getpwuid(uid); -- if (!usr) -+ if (!usr) { -+ rule = rule->next; - continue; -+ } - - /* If UID is a member of group, we matched. */ - for (i = 0; grp->gr_mem[i]; i++) { --- -2.10.2 - diff --git a/srcpkgs/libcgroup/patches/musl-decls.patch b/srcpkgs/libcgroup/patches/musl-decls.patch index eacf4e618d93..32a58fc7f677 100644 --- a/srcpkgs/libcgroup/patches/musl-decls.patch +++ b/srcpkgs/libcgroup/patches/musl-decls.patch @@ -3,7 +3,7 @@ include file sys/cdefs.h --- a/include/libcgroup.h 2014-01-13 15:05:56.000000000 +0100 +++ b/include/libcgroup.h 2015-10-25 14:03:32.921207668 +0100 -@@ -16,6 +16,16 @@ +@@ -16,5 +16,15 @@ #ifndef _LIBCGROUP_H #define _LIBCGROUP_H @@ -18,5 +18,4 @@ include file sys/cdefs.h +#endif /* !defined(__GLIBC__) */ + #define _LIBCGROUP_H_INSIDE - #include diff --git a/srcpkgs/libcgroup/patches/musl-strerror_r.patch b/srcpkgs/libcgroup/patches/musl-sterror_r.patch similarity index 99% rename from srcpkgs/libcgroup/patches/musl-strerror_r.patch rename to srcpkgs/libcgroup/patches/musl-sterror_r.patch index 0f54e12b05d2..0f14d325e965 100644 --- a/srcpkgs/libcgroup/patches/musl-strerror_r.patch +++ b/srcpkgs/libcgroup/patches/musl-sterror_r.patch @@ -4,7 +4,7 @@ GNU libc's if _GNU_SOURCE is defined. --- a/src/api.c 2014-01-13 15:05:56.000000000 +0100 +++ b/src/api.c 2015-10-25 14:09:18.690232596 +0100 @@ -3332,8 +3332,16 @@ - + const char *cgroup_strerror(int code) { +#if defined(__GLIBC__) @@ -17,6 +17,6 @@ GNU libc's if _GNU_SOURCE is defined. + return "strerror_r() failed"; + } +#endif - + return cgroup_strerror_codes[code % ECGROUPNOTCOMPILED]; } diff --git a/srcpkgs/libcgroup/template b/srcpkgs/libcgroup/template index c9c19120e597..0b8b45d0bce4 100644 --- a/srcpkgs/libcgroup/template +++ b/srcpkgs/libcgroup/template @@ -1,17 +1,16 @@ # Template file for 'libcgroup' pkgname=libcgroup -version=0.41 -revision=8 +version=2.0 +revision=1 build_style=gnu-configure -configure_args="--sbindir=/usr/bin --enable-pam-module-dir=/usr/lib/security" hostmakedepends="flex automake libtool" makedepends="pam-devel" short_desc="Library that abstracts the control group file system in Linux" maintainer="Orphaned " license="LGPL-2.1" -homepage="http://libcg.sourceforge.net" -distfiles="${SOURCEFORGE_SITE}/libcg/${pkgname}-${version}.tar.bz2" -checksum=e4e38bdc7ef70645ce33740ddcca051248d56b53283c0dc6d404e17706f6fb51 +homepage="https://github.com/libcgroup/libcgroup" +distfiles="https://github.com/libcgroup/libcgroup/releases/download/v${version}/${pkgname}-${version}.tar.gz" +checksum=aecc501a9ea6a97da0673585db5081df912ae607dec36d5f6f7ab14f69d48ab8 case "$XBPS_TARGET_MACHINE" in *-musl) # Add musl-fts implementation @@ -20,9 +19,6 @@ case "$XBPS_TARGET_MACHINE" in ;; esac -pre_configure() { - autoreconf -if -} post_configure() { # Disable tests sed -i Makefile -e "/SUBDIRS =/ s; tests;;" diff --git a/srcpkgs/libcgroup/update b/srcpkgs/libcgroup/update deleted file mode 100644 index d395a5b230c3..000000000000 --- a/srcpkgs/libcgroup/update +++ /dev/null @@ -1 +0,0 @@ -pattern="${pkgname}-v?\K[\d.]+(?=\.tar)" From bf8ebed919a49d5fd815cc29d6de60b84e435283 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 27 Jul 2021 23:48:35 +0200 Subject: [PATCH 002/824] harfbuzz: update to 2.8.2. --- srcpkgs/harfbuzz/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/harfbuzz/template b/srcpkgs/harfbuzz/template index ee03db31a273..106a44ff3139 100644 --- a/srcpkgs/harfbuzz/template +++ b/srcpkgs/harfbuzz/template @@ -1,6 +1,6 @@ # Template file for 'harfbuzz' pkgname=harfbuzz -version=2.8.1 +version=2.8.2 revision=1 build_style=meson build_helper=gir @@ -14,7 +14,7 @@ license="MIT" homepage="http://www.freedesktop.org/wiki/Software/HarfBuzz/" changelog="https://github.com/harfbuzz/harfbuzz/raw/master/NEWS" distfiles="https://github.com/harfbuzz/harfbuzz/releases/download/${version}/harfbuzz-${version}.tar.xz" -checksum=4124f663ec4bf4e294d9cf230668370b4249a48ff34deaf0f06e8fc82d891300 +checksum=d58461395ce28b9dc03903254374dd70c38c8c28c5046db123c08f7ab9417be7 libharfbuzz_package() { short_desc+=" - runtime library" From d1dc4cc5affe165ab385a92277e491ce3028f0ea Mon Sep 17 00:00:00 2001 From: Duncaen Date: Wed, 28 Jul 2021 21:52:23 +0200 Subject: [PATCH 003/824] openfortivpn: update to 1.17.0. --- srcpkgs/openfortivpn/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/openfortivpn/template b/srcpkgs/openfortivpn/template index 3ba99f7b2664..955517561869 100644 --- a/srcpkgs/openfortivpn/template +++ b/srcpkgs/openfortivpn/template @@ -1,7 +1,7 @@ # Template file for 'openfortivpn' pkgname=openfortivpn -version=1.16.0 -revision=2 +version=1.17.0 +revision=1 build_style=gnu-configure configure_args=" --enable-proc @@ -18,7 +18,7 @@ license="GPL-3.0-or-later" homepage="https://github.com/adrienverge/openfortivpn" changelog="https://github.com/adrienverge/openfortivpn/raw/master/CHANGELOG.md" distfiles="https://github.com/adrienverge/openfortivpn/archive/v${version}.tar.gz" -checksum=599b1e159a03be557242aa0e693bb7ddbadf2a4a2b3ffcf77dc15459fe7f6cd6 +checksum=0dd37a63f499abfc2b81152d67fdba8d2b1218c8b9176bf10193d6579f285454 conf_files="/etc/openfortivpn/config" From 830b5cf6024b9c44811ae3b045f538501cf2036c Mon Sep 17 00:00:00 2001 From: Duncaen Date: Wed, 28 Jul 2021 21:54:25 +0200 Subject: [PATCH 004/824] openradtool: update to 0.13.8. --- srcpkgs/openradtool/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/openradtool/template b/srcpkgs/openradtool/template index 558f7e19e8fb..0ae052a88f75 100644 --- a/srcpkgs/openradtool/template +++ b/srcpkgs/openradtool/template @@ -1,6 +1,6 @@ # Template file for 'openradtool' pkgname=openradtool -version=0.13.7 +version=0.13.8 revision=1 build_style=configure configure_args="PREFIX=/usr MANDIR=/usr/share/man" @@ -15,7 +15,7 @@ license="ISC" homepage="https://kristaps.bsd.lv/openradtool/" changelog="https://kristaps.bsd.lv/openradtool/archive.html" distfiles="https://kristaps.bsd.lv/openradtool/snapshots/openradtool-${version}.tar.gz" -checksum=1bbd76fd5c9ed647b3a0a03ff9a491073efc1a684043e9d0d5403cbcbdab885b +checksum=5c2750d12630f325b292c87b30cbba390ca881226026a9386530572ebb1e3eb7 post_install() { sed -n '2,16p' main.c >LICENSE From 14cf67008c2cf670ae69a87e6e0bd07375aa52c1 Mon Sep 17 00:00:00 2001 From: Andrew Benson Date: Wed, 28 Jul 2021 15:30:18 -0500 Subject: [PATCH 005/824] libxlsxwriter: update to 1.1.0. --- common/shlibs | 2 +- srcpkgs/libxlsxwriter/template | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/common/shlibs b/common/shlibs index 7f0560d2bad3..04eefcdcbdd1 100644 --- a/common/shlibs +++ b/common/shlibs @@ -141,7 +141,7 @@ librsvg-2.so.2 librsvg-2.26.0_1 libdbus-1.so.3 dbus-libs-1.2.10_1 libdbus-glib-1.so.2 dbus-glib-0.80_1 libxml2.so.2 libxml2-2.7.0_1 -libxlsxwriter.so.1 libxlsxwriter-1.0.0_1 +libxlsxwriter.so.2.1 libxlsxwriter-1.1.0_1 libfuse.so.2 fuse-2.8.1_1 libfuse3.so.3 fuse3-3.1.0_1 libXext.so.6 libXext-1.0.5_1 diff --git a/srcpkgs/libxlsxwriter/template b/srcpkgs/libxlsxwriter/template index 537a5f588923..90fe3e9533cb 100644 --- a/srcpkgs/libxlsxwriter/template +++ b/srcpkgs/libxlsxwriter/template @@ -1,6 +1,6 @@ # Template file for 'libxlsxwriter' pkgname=libxlsxwriter -version=1.0.6 +version=1.1.0 revision=1 wrksrc="${pkgname}-RELEASE_${version}" build_style=cmake @@ -11,7 +11,7 @@ maintainer="Andrew Benson " license="BSD-2-Clause" homepage="https://libxlsxwriter.github.io/" distfiles="https://github.com/jmcnamara/libxlsxwriter/archive/RELEASE_${version}.tar.gz" -checksum=6217d2940a44c2eac3b48942e83e1320a871e47aabdb4047484426539e45e930 +checksum=c74e6bed66158aaf86b2d624243c6d89cdbbbca406258ab5ef0d55e71381773e pre_configure() { sed -i "/^add_library/a set_target_properties(\${PROJECT_NAME} \ From 35bc0ff0173134851df64250bcabdecdcb124282 Mon Sep 17 00:00:00 2001 From: Andrew Benson Date: Wed, 28 Jul 2021 15:29:52 -0500 Subject: [PATCH 006/824] sc-im: revbump for libxlsxwriter --- srcpkgs/sc-im/template | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/srcpkgs/sc-im/template b/srcpkgs/sc-im/template index 638d0cc797ad..2c7a468c33c6 100644 --- a/srcpkgs/sc-im/template +++ b/srcpkgs/sc-im/template @@ -1,13 +1,14 @@ # Template file for 'sc-im' pkgname=sc-im version=0.8.2 -revision=1 +revision=2 build_wrksrc="src" build_style=gnu-makefile make_build_args="prefix=/usr CFLAGS+=-DXLS LDLIBS+=-lxlsreader" make_install_args="prefix=/usr" hostmakedepends="bison pkg-config gnuplot which" -makedepends="libxls-devel libxlsxwriter-devel libxml2-devel libzip-devel lua51-devel" +makedepends="libxls-devel libxlsxwriter-devel libxml2-devel libzip-devel + lua51-devel ncurses-devel" depends="less" short_desc="SpreadSheet Calculator (sc) Improvised" maintainer="Leah Neukirchen " From 648a81d0aae80af6f2b348567be5386bdc2d9519 Mon Sep 17 00:00:00 2001 From: Andrew Benson Date: Wed, 28 Jul 2021 16:27:33 -0500 Subject: [PATCH 007/824] plantuml: update to 1.2021.9. --- srcpkgs/plantuml/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/plantuml/template b/srcpkgs/plantuml/template index d772476fbd32..a18b089b1431 100644 --- a/srcpkgs/plantuml/template +++ b/srcpkgs/plantuml/template @@ -1,7 +1,7 @@ # Template file for 'plantuml' pkgname=plantuml reverts="8047_1 8053_1 8059_1" -version=1.2021.7 +version=1.2021.9 revision=1 create_wrksrc=yes hostmakedepends="apache-ant openjdk8" @@ -11,7 +11,7 @@ maintainer="Julien Dehos " license="GPL-2.0-or-later" homepage="http://plantuml.com/" distfiles="${SOURCEFORGE_SITE}/plantuml/plantuml-gplv2-${version}.tar.gz" -checksum=0dd85bb63d385c8494d4a09d1f11396e8cc23fbe65810d953c199b792bdd6104 +checksum=082b4cd108668f1f45c698b44900b744907abe36674dd86f2d3075ab88984c74 do_build() { . /etc/profile.d/10_openjdk8.sh From a7e520652eca96541cd717a1ec605648a18df24d Mon Sep 17 00:00:00 2001 From: Alex Lohr Date: Wed, 28 Jul 2021 09:31:18 +0200 Subject: [PATCH 008/824] slack-desktop: update to 4.18.0 Closes: #32225 [via git-merge-pr] --- srcpkgs/slack-desktop/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/slack-desktop/template b/srcpkgs/slack-desktop/template index 03dddc195145..bdbd6bb2effd 100644 --- a/srcpkgs/slack-desktop/template +++ b/srcpkgs/slack-desktop/template @@ -1,6 +1,6 @@ # Template file for 'slack-desktop' pkgname=slack-desktop -version=4.17.0 +version=4.18.0 revision=1 archs="x86_64" hostmakedepends="tar xz" @@ -10,7 +10,7 @@ maintainer="Diogo Leal " license="custom:Proprietary" homepage="https://slack.com/" distfiles="https://slack-ssb-updates.global.ssl.fastly.net/linux_releases/${pkgname}-${version}-amd64.deb" -checksum=b1e7123f9e51d292b647fecd42236f2de3b3f863c631e8278d47e08b8aae8c1d +checksum=701a8bd2a6c0e793b35092f147dd6639e66a1860ad300088a988f39d45ac0db6 restricted=yes repository="nonfree" nopie=yes From 24be999842fbe6eb37d10416728c57faf5df46c7 Mon Sep 17 00:00:00 2001 From: Hervy Qurrotul Ainur Rozi Date: Wed, 28 Jul 2021 18:31:25 +0700 Subject: [PATCH 009/824] flameshot: update to 0.10.1 --- srcpkgs/flameshot/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/flameshot/template b/srcpkgs/flameshot/template index aeedc7372f49..37673aa7e1b2 100644 --- a/srcpkgs/flameshot/template +++ b/srcpkgs/flameshot/template @@ -1,6 +1,6 @@ # Template file for 'flameshot' pkgname=flameshot -version=0.10.0 +version=0.10.1 revision=1 build_style=cmake hostmakedepends="qt5-qmake qt5-host-tools" @@ -11,4 +11,4 @@ maintainer="Neel Chotai " license="GPL-3.0-or-later" homepage="https://github.com/lupoDharkael/flameshot" distfiles="https://github.com/lupoDharkael/flameshot/archive/v${version}.tar.gz" -checksum=44e53c5dcefddb05bd6fa1af667df287f44baa1746468bfab5f76318c0bb3f83 +checksum=c2d760345d78dd5d2488c6bea54cb10870b09772179f33594a33c8f62ccdeeb9 From 75915800ba3c8a76fc0edb5824d3127883475cf8 Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Thu, 29 Jul 2021 14:44:58 +0200 Subject: [PATCH 010/824] bcc: update to 0.21.0. --- srcpkgs/bcc/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/bcc/template b/srcpkgs/bcc/template index cbdb9de0abcf..5fdf8be098b3 100644 --- a/srcpkgs/bcc/template +++ b/srcpkgs/bcc/template @@ -1,7 +1,7 @@ # Template file for 'bcc' pkgname=bcc -version=0.20.0 -revision=2 +version=0.21.0 +revision=1 wrksrc="bcc" build_style=cmake configure_args="-DREVISION=${version}" From d0312f1bc0a7f8e60649f3ed3a86dbf60a390f05 Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Thu, 29 Jul 2021 14:45:58 +0200 Subject: [PATCH 011/824] ipset: update to 7.14. --- srcpkgs/ipset/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/ipset/template b/srcpkgs/ipset/template index b95b5225e80f..51150121385d 100644 --- a/srcpkgs/ipset/template +++ b/srcpkgs/ipset/template @@ -1,6 +1,6 @@ # Template file for 'ipset' pkgname=ipset -version=7.13 +version=7.14 revision=1 build_style=gnu-configure configure_args="--with-kmod=no PKG_CONFIG=pkg-config" @@ -12,7 +12,7 @@ license="GPL-2.0-only" homepage="https://ipset.netfilter.org/" changelog="https://ipset.netfilter.org/changelog.html" distfiles="https://ipset.netfilter.org/ipset-${version}.tar.bz2" -checksum=a11bdc78fbf174b6a293d76bc482d191d15fefe42949c933dd9c1e7e290dce4c +checksum=27031c36d355907031cce41e65553e99bb013d762fcd55392f63d7e84760f900 libipset_package() { short_desc+=" - library files" From c7ae4c23cc372799cd43739c9a08b907900bb360 Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Thu, 29 Jul 2021 14:47:29 +0200 Subject: [PATCH 012/824] nncp: update to 7.5.0. --- srcpkgs/nncp/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/nncp/template b/srcpkgs/nncp/template index 7b4e258a55e6..279d6235b763 100644 --- a/srcpkgs/nncp/template +++ b/srcpkgs/nncp/template @@ -1,6 +1,6 @@ # Template file for 'nncp' pkgname=nncp -version=7.4.0 +version=7.5.0 revision=1 build_style=go go_import_path=cypherpunks.ru/nncp @@ -9,7 +9,7 @@ maintainer="Leah Neukirchen " license="GPL-3.0-only" homepage="http://www.nncpgo.org/" distfiles="http://www.nncpgo.org/download/${pkgname}-${version}.tar.xz" -checksum=f7499fbfb0658054f2732722d54fe31ea0f105fd9970b5bb6413a9cc065cb0eb +checksum=14d92dc5b8164ee44926d7af46da9f230c8f6207350cc7476db5cdfb8e7c3fe4 do_build() { make From 8f8fcf82af1b641a570d0e41f41bdb51223f6259 Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Thu, 29 Jul 2021 14:50:24 +0200 Subject: [PATCH 013/824] perl-PDF-API2: update to 2.041. --- srcpkgs/perl-PDF-API2/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/perl-PDF-API2/template b/srcpkgs/perl-PDF-API2/template index 469ab7ed715b..6c50c810c944 100644 --- a/srcpkgs/perl-PDF-API2/template +++ b/srcpkgs/perl-PDF-API2/template @@ -1,6 +1,6 @@ # Template file for 'perl-PDF-API2' pkgname=perl-PDF-API2 -version=2.040 +version=2.041 revision=1 wrksrc="PDF-API2-${version}" build_style=perl-module From ff36084ae0956c2b89926e9ccab1cf4cb5713ada Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Thu, 29 Jul 2021 14:53:25 +0200 Subject: [PATCH 014/824] opam: update to 2.1.0. --- srcpkgs/opam/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/opam/template b/srcpkgs/opam/template index c06f3dda3557..7547a3281f08 100644 --- a/srcpkgs/opam/template +++ b/srcpkgs/opam/template @@ -1,7 +1,7 @@ # Template file for 'opam' pkgname=opam -version=2.0.8 -revision=3 +version=2.1.0 +revision=1 build_style=gnu-configure configure_args="--docdir=/usr/share/doc/${pkgname}" make_build_args="lib-ext all" @@ -14,7 +14,7 @@ maintainer="Leah Neukirchen " license="LGPL-3.0-only" homepage="http://opam.ocamlpro.com" distfiles="https://github.com/ocaml/${pkgname}/archive/${version}.tar.gz" -checksum=846d595107949ccd4a144c970406b608762174df712a3d5571af704167dd8090 +checksum=456df1988dcad8a5ee99f4fe1f8791edc04df93225dbeb3d51bf87c5f47769a8 nocross=yes disable_parallel_build=yes From 4fa72959cafa46001b94b3be85499d789b098bfd Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Thu, 29 Jul 2021 14:53:50 +0200 Subject: [PATCH 015/824] linux5.10: update to 5.10.54. --- srcpkgs/linux5.10/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/linux5.10/template b/srcpkgs/linux5.10/template index 166ec208003b..2832c9d04add 100644 --- a/srcpkgs/linux5.10/template +++ b/srcpkgs/linux5.10/template @@ -1,6 +1,6 @@ # Template file for 'linux5.10' pkgname=linux5.10 -version=5.10.53 +version=5.10.54 revision=1 wrksrc="linux-${version}" short_desc="Linux kernel and modules (${version%.*} series)" @@ -8,7 +8,7 @@ maintainer="Leah Neukirchen " license="GPL-2.0-only" homepage="https://www.kernel.org" distfiles="https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-${version}.tar.xz" -checksum=f0058d902933986dbaf03b2a0304d2babe5fe1c8e3f41f156ffd3c3f210106dc +checksum=bf50c63261847187eca4a1793e5df5c1355b21697409589f6ca03e32b629be44 python_version=3 # XXX Restrict archs until a proper -dotconfig is available in FILESDIR. From c6bd940d033d86a20dc645a956b4a77dc9173b9b Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Thu, 29 Jul 2021 15:11:02 +0200 Subject: [PATCH 016/824] perl-PDF-API2: fix checksum. --- srcpkgs/perl-PDF-API2/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/perl-PDF-API2/template b/srcpkgs/perl-PDF-API2/template index 6c50c810c944..d7e1de548189 100644 --- a/srcpkgs/perl-PDF-API2/template +++ b/srcpkgs/perl-PDF-API2/template @@ -13,4 +13,4 @@ maintainer="Leah Neukirchen " license="LGPL-2.1-or-later" homepage="https://metacpan.org/release/PDF-API2" distfiles="${CPAN_SITE}/PDF/PDF-API2-${version}.tar.gz" -checksum=4925f109f47bb6bdd6deb8cf37db4f2e39aa6cdc51991d1d8008b4312ed1935a +checksum=cfa47682471ed4e0c56be92aac2864ef26e6c521723c34e29706d875b6e58537 From 0f2a4868ac92d8aa4482d989434fbea8d50bbc01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89rico=20Nogueira?= Date: Thu, 29 Jul 2021 10:15:44 -0300 Subject: [PATCH 017/824] mdBook: update to 0.4.11. --- srcpkgs/mdBook/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/mdBook/template b/srcpkgs/mdBook/template index 6cb7381f281b..49e3264c70be 100644 --- a/srcpkgs/mdBook/template +++ b/srcpkgs/mdBook/template @@ -1,6 +1,6 @@ # Template file for 'mdBook' pkgname=mdBook -version=0.4.10 +version=0.4.11 revision=1 build_style=cargo short_desc="Create book from markdown files. Like Gitbook but implemented in Rust" @@ -9,7 +9,7 @@ license="MPL-2.0" homepage="https://github.com/rust-lang/mdBook" changelog="https://raw.githubusercontent.com/rust-lang/mdBook/master/CHANGELOG.md" distfiles="https://github.com/rust-lang/mdBook/archive/v${version}.tar.gz" -checksum=ecd1d4cee5b5fa7781799f83010e2074262929a22e37d308061b54ffa7e42f69 +checksum=a66b57a2a70fbc8c665898bf952a7f8276e6f400c2d9340dbfd70ddb96b3562e post_install() { vlicense LICENSE From 5ae6df447f0f4723ee952c49f13bbbc1f79d4201 Mon Sep 17 00:00:00 2001 From: q66 Date: Thu, 29 Jul 2021 18:33:03 +0200 Subject: [PATCH 018/824] LuaJIT: switch ppc patches to -p1 (fixes texlive build) --- .../patches/ppc/musl-ppc-secureplt.patch | 12 ++--- .../patches/ppc64/add-ppc64-support.patch | 48 +++++++++---------- .../patches/ppc64/fix-vm-jit-ppc64.patch | 4 +- srcpkgs/LuaJIT/template | 2 +- 4 files changed, 33 insertions(+), 33 deletions(-) diff --git a/srcpkgs/LuaJIT/files/patches/ppc/musl-ppc-secureplt.patch b/srcpkgs/LuaJIT/files/patches/ppc/musl-ppc-secureplt.patch index b7304474f777..3000ca0ed3d5 100644 --- a/srcpkgs/LuaJIT/files/patches/ppc/musl-ppc-secureplt.patch +++ b/srcpkgs/LuaJIT/files/patches/ppc/musl-ppc-secureplt.patch @@ -2,8 +2,8 @@ Imported from https://github.com/LuaJIT/LuaJIT/pull/486. This fixes crashes on ppc-musl, as musl only supports secureplt. ---- src/lj_dispatch.c -+++ src/lj_dispatch.c +--- a/src/lj_dispatch.c ++++ b/src/lj_dispatch.c @@ -56,6 +56,18 @@ static const ASMFunction dispatch_got[] = { #undef GOTFUNC #endif @@ -33,8 +33,8 @@ This fixes crashes on ppc-musl, as musl only supports secureplt. } #if LJ_HASJIT ---- src/lj_dispatch.h -+++ src/lj_dispatch.h +--- a/src/lj_dispatch.h ++++ b/src/lj_dispatch.h @@ -66,6 +66,21 @@ GOTDEF(GOTENUM) }; #endif @@ -66,8 +66,8 @@ This fixes crashes on ppc-musl, as musl only supports secureplt. ASMFunction got[LJ_GOT__MAX]; /* Global offset table. */ #endif #if LJ_HASJIT ---- src/vm_ppc.dasc -+++ src/vm_ppc.dasc +--- a/src/vm_ppc.dasc ++++ b/src/vm_ppc.dasc @@ -59,7 +59,12 @@ |.define ENV_OFS, 8 |.endif diff --git a/srcpkgs/LuaJIT/files/patches/ppc64/add-ppc64-support.patch b/srcpkgs/LuaJIT/files/patches/ppc64/add-ppc64-support.patch index 8feb60601dd8..7c865859da92 100644 --- a/srcpkgs/LuaJIT/files/patches/ppc64/add-ppc64-support.patch +++ b/srcpkgs/LuaJIT/files/patches/ppc64/add-ppc64-support.patch @@ -26,8 +26,8 @@ Author: Rodrigo R. Galvao diff --git dynasm/dasm_ppc.lua dynasm/dasm_ppc.lua index f73974d..a4ad70b 100644 ---- dynasm/dasm_ppc.lua -+++ dynasm/dasm_ppc.lua +--- a/dynasm/dasm_ppc.lua ++++ b/dynasm/dasm_ppc.lua @@ -257,9 +257,11 @@ map_op = { addic_3 = "30000000RRI", ["addic._3"] = "34000000RRI", @@ -52,8 +52,8 @@ index f73974d..a4ad70b 100644 end), diff --git src/Makefile src/Makefile index 6b73a89..cc50bae 100644 ---- src/Makefile -+++ src/Makefile +--- a/src/Makefile ++++ b/src/Makefile @@ -453,7 +453,16 @@ ifeq (ppc,$(TARGET_LJARCH)) DASM_AFLAGS+= -D GPR64 endif @@ -74,8 +74,8 @@ index 6b73a89..cc50bae 100644 DASM_ARCH= ppc64 diff --git src/host/buildvm_asm.c src/host/buildvm_asm.c index ffd1490..6bb995e 100644 ---- src/host/buildvm_asm.c -+++ src/host/buildvm_asm.c +--- a/src/host/buildvm_asm.c ++++ b/src/host/buildvm_asm.c @@ -140,18 +140,14 @@ static void emit_asm_wordreloc(BuildCtx *ctx, uint8_t *p, int n, #else #define TOCPREFIX "" @@ -111,8 +111,8 @@ index ffd1490..6bb995e 100644 fprintf(ctx->fp, "\t.text\n"); diff --git src/lj_arch.h src/lj_arch.h index d609b37..53bc651 100644 ---- src/lj_arch.h -+++ src/lj_arch.h +--- a/src/lj_arch.h ++++ b/src/lj_arch.h @@ -269,10 +269,18 @@ #if LJ_TARGET_CONSOLE #define LJ_ARCH_PPC32ON64 1 @@ -149,8 +149,8 @@ index d609b37..53bc651 100644 #endif diff --git src/lj_ccall.c src/lj_ccall.c index 5c252e5..b891591 100644 ---- src/lj_ccall.c -+++ src/lj_ccall.c +--- a/src/lj_ccall.c ++++ b/src/lj_ccall.c @@ -369,21 +369,97 @@ #elif LJ_TARGET_PPC /* -- PPC calling conventions --------------------------------------------- */ @@ -376,8 +376,8 @@ index 5c252e5..b891591 100644 #if LJ_TARGET_MIPS64 diff --git src/lj_ccall.h src/lj_ccall.h index 59f6648..bbf309f 100644 ---- src/lj_ccall.h -+++ src/lj_ccall.h +--- a/src/lj_ccall.h ++++ b/src/lj_ccall.h @@ -86,10 +86,23 @@ typedef union FPRArg { #elif LJ_TARGET_PPC @@ -404,8 +404,8 @@ index 59f6648..bbf309f 100644 typedef intptr_t GPRArg; diff --git src/lj_ccallback.c src/lj_ccallback.c index 846827b..eb7f445 100644 ---- src/lj_ccallback.c -+++ src/lj_ccallback.c +--- a/src/lj_ccallback.c ++++ b/src/lj_ccallback.c @@ -61,8 +61,24 @@ static MSize CALLBACK_OFS2SLOT(MSize ofs) #elif LJ_TARGET_PPC @@ -513,8 +513,8 @@ index 846827b..eb7f445 100644 if (ctr->size <= 4 && diff --git src/lj_ctype.h src/lj_ctype.h index 0c220a8..105865b 100644 ---- src/lj_ctype.h -+++ src/lj_ctype.h +--- a/src/lj_ctype.h ++++ b/src/lj_ctype.h @@ -153,7 +153,7 @@ typedef struct CType { /* Simplify target-specific configuration. Checked in lj_ccall.h. */ @@ -526,8 +526,8 @@ index 0c220a8..105865b 100644 diff --git src/lj_def.h src/lj_def.h index 2d8fff6..381d6f5 100644 ---- src/lj_def.h -+++ src/lj_def.h +--- a/src/lj_def.h ++++ b/src/lj_def.h @@ -71,7 +71,11 @@ typedef unsigned int uintptr_t; #define LJ_MAX_IDXCHAIN 100 /* __index/__newindex chain limit. */ #define LJ_STACK_EXTRA (5+2*LJ_FR2) /* Extra stack space (metamethods). */ @@ -542,8 +542,8 @@ index 2d8fff6..381d6f5 100644 #define LJ_MIN_GLOBAL 6 /* Min. global table size (hbits). */ diff --git src/lj_frame.h src/lj_frame.h index 19c49a4..c666418 100644 ---- src/lj_frame.h -+++ src/lj_frame.h +--- a/src/lj_frame.h ++++ b/src/lj_frame.h @@ -210,6 +210,15 @@ enum { LJ_CONT_TAILCALL, LJ_CONT_FFI_CALLBACK }; /* Special continuations. */ #define CFRAME_OFS_MULTRES 408 #define CFRAME_SIZE 384 @@ -562,8 +562,8 @@ index 19c49a4..c666418 100644 #define CFRAME_OFS_NRES 468 diff --git src/lj_target_ppc.h src/lj_target_ppc.h index c5c991a..f0c8c94 100644 ---- src/lj_target_ppc.h -+++ src/lj_target_ppc.h +--- a/src/lj_target_ppc.h ++++ b/src/lj_target_ppc.h @@ -30,8 +30,13 @@ enum { /* Calling conventions. */ @@ -603,8 +603,8 @@ index c5c991a..f0c8c94 100644 PPCI_BC = 0x40800000, diff --git src/vm_ppc.dasc src/vm_ppc.dasc index b4260eb..abb381e 100644 ---- src/vm_ppc.dasc -+++ src/vm_ppc.dasc +--- a/src/vm_ppc.dasc ++++ b/src/vm_ppc.dasc @@ -22,35 +22,40 @@ |// GPR64 64 bit registers (but possibly 32 bit pointers, e.g. PS3). |// Affects reg saves, stack layout, carry/overflow/dot flags etc. diff --git a/srcpkgs/LuaJIT/files/patches/ppc64/fix-vm-jit-ppc64.patch b/srcpkgs/LuaJIT/files/patches/ppc64/fix-vm-jit-ppc64.patch index ab6771110f90..f4e760b73836 100644 --- a/srcpkgs/LuaJIT/files/patches/ppc64/fix-vm-jit-ppc64.patch +++ b/srcpkgs/LuaJIT/files/patches/ppc64/fix-vm-jit-ppc64.patch @@ -1,5 +1,5 @@ ---- src/vm_ppc.dasc 2019-06-03 19:41:50.214671731 +0200 -+++ src/vm_ppc.dasc 2019-06-03 19:44:40.229686143 +0200 +--- a/src/vm_ppc.dasc 2019-06-03 19:41:50.214671731 +0200 ++++ b/src/vm_ppc.dasc 2019-06-03 19:44:40.229686143 +0200 @@ -2774,7 +2774,7 @@ | |->vm_exit_handler: diff --git a/srcpkgs/LuaJIT/template b/srcpkgs/LuaJIT/template index 9fbc72cbe4e7..5b8ab1beda11 100644 --- a/srcpkgs/LuaJIT/template +++ b/srcpkgs/LuaJIT/template @@ -38,7 +38,7 @@ post_patch() { for i in ${FILESDIR}/patches/${patchdir}/*.patch; do msg_normal "patching: $i\n" - patch -sNp0 -i ${i} + patch -sNp1 -i ${i} done } From 251975e3edaa84ca8014edf4a3b3dcae0f0d8502 Mon Sep 17 00:00:00 2001 From: Frank Steinborn Date: Wed, 28 Jul 2021 18:30:08 +0200 Subject: [PATCH 019/824] cozy: update to 1.0.4. --- srcpkgs/cozy/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/cozy/template b/srcpkgs/cozy/template index f8f525cee641..b198300da9a4 100644 --- a/srcpkgs/cozy/template +++ b/srcpkgs/cozy/template @@ -1,6 +1,6 @@ # Template file for 'cozy' pkgname=cozy -version=1.0.3 +version=1.0.4 revision=1 build_style=meson hostmakedepends="pkg-config glib-devel python3 python3-distro python3-peewee @@ -15,4 +15,4 @@ maintainer="johannes " license="GPL-3.0-only, LGPL-3.0-only" homepage="https://github.com/geigi/cozy" distfiles="https://github.com/geigi/cozy/archive/${version}.tar.gz" -checksum=1e6c36054c859cdec6fadcc88be2cd653b88f23b7fef90c937da204e2539ac89 +checksum=d32b76e0a1506ab72d0b45bb0f5711c490a3105fce1019f173536f19716a07f2 From b64df7fa72e80229b80380a6baf53461cb4cc2bc Mon Sep 17 00:00:00 2001 From: HadetTheUndying Date: Wed, 28 Jul 2021 22:26:57 -0500 Subject: [PATCH 020/824] mesa: update to 21.1.6. --- srcpkgs/mesa/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/mesa/template b/srcpkgs/mesa/template index 8443dbfc01e1..8664f4d799bc 100644 --- a/srcpkgs/mesa/template +++ b/srcpkgs/mesa/template @@ -1,6 +1,6 @@ # Template file for 'mesa' pkgname=mesa -version=21.1.5 +version=21.1.6 revision=1 wrksrc="mesa-${version}" build_style=meson @@ -23,7 +23,7 @@ license="MIT, LGPL-2.1-or-later" homepage="https://www.mesa3d.org/" changelog="https://docs.mesa3d.org/relnotes/${version}.html" distfiles="https://mesa.freedesktop.org/archive/mesa-${version}.tar.xz" -checksum=022c7293074aeeced2278c872db4fa693147c70f8595b076cf3f1ef81520766d +checksum=b1cb0122f911dfa9fe1f209a7061378c61a1448a280e711511ca72dad9999e37 if [ "$XBPS_TARGET_LIBC" = "musl" ]; then configure_args+=" -Duse-elf-tls=false" From 584935583d52e61a311c4011af754a0c058b5b5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjam=C3=ADn=20Albi=C3=B1ana?= Date: Thu, 29 Jul 2021 08:28:17 +0200 Subject: [PATCH 021/824] postfix: update to 3.6.2. --- srcpkgs/postfix/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/postfix/template b/srcpkgs/postfix/template index 80d321fb726c..4dc1b9e5dad8 100644 --- a/srcpkgs/postfix/template +++ b/srcpkgs/postfix/template @@ -1,6 +1,6 @@ # Template file for 'postfix' pkgname=postfix -version=3.6.1 +version=3.6.2 revision=1 hostmakedepends="perl m4" makedepends="icu-devel libldap-devel libmariadbclient-devel pcre-devel @@ -10,7 +10,7 @@ maintainer="Benjamín Albiñana " license="IPL-1.0, EPL-2.0" homepage="http://www.postfix.org/" distfiles="http://ftp.porcupine.org/mirrors/postfix-release/official/${pkgname}-${version}.tar.gz" -checksum=20a805625601e7b95989220832c8fa14ce374f0711da054188f8cec6a92fd71c +checksum=507323d20d7b3f705f49cf8c07d437c6d8090bed07e15a3c0ec405edad54a7d4 system_accounts="postfix" postfix_homedir="/var/spool/postfix" From 2beff1801b36b5e34dbe54c3ee82623aeb79b0c2 Mon Sep 17 00:00:00 2001 From: Dominic Monroe Date: Thu, 29 Jul 2021 10:17:20 +0100 Subject: [PATCH 022/824] clojure: update to 1.10.3.933. --- srcpkgs/clojure/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/clojure/template b/srcpkgs/clojure/template index a112c1dc645e..871084663bf8 100644 --- a/srcpkgs/clojure/template +++ b/srcpkgs/clojure/template @@ -1,7 +1,7 @@ # Template file for 'clojure' pkgname=clojure -version=1.10.3.855 -revision=2 +version=1.10.3.933 +revision=1 wrksrc="clojure-tools" depends="virtual?java-environment rlwrap" short_desc="Clojure programming language command line tools" @@ -9,7 +9,7 @@ maintainer="Dominic Monroe " license="EPL-1.0" homepage="https://clojure.org/" distfiles="https://download.clojure.org/install/clojure-tools-${version}.tar.gz" -checksum=cb63ee38146ae646654e93d5f0dc245a1b2940a94dc708e5fa4fc3af08b19384 +checksum=c6c9b4fc7356afc6bfee22d0542f536d4900496bf0fc42376c3d1d30384b6570 do_install() { vmkdir /usr/lib/clojure From ea798d1d800dcef686b456aa43d6bbb9ad9b9da2 Mon Sep 17 00:00:00 2001 From: Helmut Pozimski Date: Thu, 29 Jul 2021 20:13:46 +0200 Subject: [PATCH 023/824] linux5.4: update to 5.4.136. --- srcpkgs/linux5.4/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/linux5.4/template b/srcpkgs/linux5.4/template index 7aeca32a409f..4fd63332b5c9 100644 --- a/srcpkgs/linux5.4/template +++ b/srcpkgs/linux5.4/template @@ -1,6 +1,6 @@ # Template file for 'linux5.4' pkgname=linux5.4 -version=5.4.135 +version=5.4.136 revision=1 wrksrc="linux-${version}" short_desc="Linux kernel and modules (${version%.*} series)" @@ -8,7 +8,7 @@ maintainer="Helmut Pozimski " license="GPL-2.0-only" homepage="https://www.kernel.org" distfiles="https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-${version}.tar.xz" -checksum=83efa4c8c725bd2a5e66e2db5612d0ee586449d36661d13889b9ddf0203efdf1 +checksum=4322dd36bf86b82d410fb2d4df196d1f3b78819aa9dd78b555703bcbf49bad16 python_version=3 nodebug=yes # -dbg package is generated below manually From de666e86ddf53c919cc017561be7ece833d0de45 Mon Sep 17 00:00:00 2001 From: Helmut Pozimski Date: Thu, 29 Jul 2021 20:20:36 +0200 Subject: [PATCH 024/824] linux4.19: update to 4.19.199. --- srcpkgs/linux4.19/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/linux4.19/template b/srcpkgs/linux4.19/template index c3e04295a50d..a6e4f5a686b2 100644 --- a/srcpkgs/linux4.19/template +++ b/srcpkgs/linux4.19/template @@ -1,6 +1,6 @@ # Template file for 'linux4.19' pkgname=linux4.19 -version=4.19.198 +version=4.19.199 revision=1 wrksrc="linux-${version}" short_desc="Linux kernel and modules (${version%.*} series)" @@ -8,7 +8,7 @@ maintainer="Helmut Pozimski " license="GPL-2.0-only" homepage="https://www.kernel.org" distfiles="https://cdn.kernel.org/pub/linux/kernel/v4.x/linux-${version}.tar.xz" -checksum=be20a86c6638a35373472752c17fb09bbc0bfcc71c05454cb4cb224b94c9608e +checksum=3d7babf8d0c6d855b7fd94e831c745e88921798b2366e21e3dece63162e42a9a python_version=3 nodebug=yes # -dbg package is generated below manually From 4a99bde93b38c191d33fff12dd66485fb6cb7ddc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89rico=20Nogueira?= Date: Thu, 29 Jul 2021 16:00:15 -0300 Subject: [PATCH 025/824] yambar: fix launching with --backend=wayland. Fixes: #32248. --- .../yambar/patches/0001-bar-fix-typo.patch | 27 +++++++++++++++++++ srcpkgs/yambar/template | 2 +- 2 files changed, 28 insertions(+), 1 deletion(-) create mode 100644 srcpkgs/yambar/patches/0001-bar-fix-typo.patch diff --git a/srcpkgs/yambar/patches/0001-bar-fix-typo.patch b/srcpkgs/yambar/patches/0001-bar-fix-typo.patch new file mode 100644 index 000000000000..2315031f0c1c --- /dev/null +++ b/srcpkgs/yambar/patches/0001-bar-fix-typo.patch @@ -0,0 +1,27 @@ +From 7d94631991a5d530884664705341a4410ff45f74 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?=C3=89rico=20Nogueira?= +Date: Thu, 29 Jul 2021 15:57:00 -0300 +Subject: [PATCH] bar: fix typo. + +Running 'yambar --backend=wayland' would always error out saying it was +built without wayland support. +--- + bar/bar.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/bar/bar.c b/bar/bar.c +index 4829162..c7b1ea5 100644 +--- a/bar/bar.c ++++ b/bar/bar.c +@@ -399,7 +399,7 @@ bar_new(const struct bar_config *config) + break; + + case BAR_BACKEND_WAYLAND: +-#if defined(BAR_WAYLAND) ++#if defined(ENABLE_WAYLAND) + backend_data = bar_backend_wayland_new(); + backend_iface = &wayland_backend_iface; + #else +-- +2.32.0 + diff --git a/srcpkgs/yambar/template b/srcpkgs/yambar/template index a2608045b3ad..19167b33badb 100644 --- a/srcpkgs/yambar/template +++ b/srcpkgs/yambar/template @@ -1,7 +1,7 @@ # Template file for 'yambar' pkgname=yambar version=1.6.2 -revision=1 +revision=2 wrksrc=$pkgname build_style=meson hostmakedepends="pkg-config scdoc wayland-devel" From d0113f34e8ec82bfd748c95c7c66d97be6bc542e Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Fri, 30 Jul 2021 14:07:32 +0200 Subject: [PATCH 026/824] isync: update to 1.4.3. --- srcpkgs/isync/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/isync/template b/srcpkgs/isync/template index 4233d5e56b43..bad7086f050f 100644 --- a/srcpkgs/isync/template +++ b/srcpkgs/isync/template @@ -1,6 +1,6 @@ # Template file for 'isync' pkgname=isync -version=1.4.2 +version=1.4.3 revision=1 build_style=gnu-configure hostmakedepends="perl pkg-config" @@ -12,7 +12,7 @@ license="GPL-2.0-or-later" homepage="http://isync.sourceforge.net/" changelog="https://sourceforge.net/p/isync/isync/ci/master/tree/NEWS?format=raw" distfiles="${SOURCEFORGE_SITE}/${pkgname}/${pkgname}-${version}.tar.gz" -checksum=1935e7ed412fd6b5928aaea656f290aa8d3222c5feda31534903934ce4755343 +checksum=b4c720745bda3447fbd5b9f71783b23f699a55295917ae7586ee5c22e91b9708 post_install() { vsconf src/mbsyncrc.sample From cd10a1791ec25645b7493324b05342feb334a3c1 Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Fri, 30 Jul 2021 14:09:51 +0200 Subject: [PATCH 027/824] xorg-server: update to 1.20.13. --- srcpkgs/xorg-server/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/xorg-server/template b/srcpkgs/xorg-server/template index 800d5dccff7c..761989ce69a7 100644 --- a/srcpkgs/xorg-server/template +++ b/srcpkgs/xorg-server/template @@ -1,6 +1,6 @@ # Template file for 'xorg-server' pkgname=xorg-server -version=1.20.12 +version=1.20.13 revision=1 build_style=meson configure_args="-Dipv6=true -Dxorg=true -Dxnest=true -Dxephyr=true @@ -25,7 +25,7 @@ maintainer="Leah Neukirchen " license="MIT, BSD-3-Clause" homepage="https://xorg.freedesktop.org" distfiles="${XORG_SITE}/xserver/${pkgname}-${version}.tar.xz" -checksum=336dc093431d81ecc03fa36af771f1181334f2746b7de7796f3cc6a8fa9e8cac +checksum=40aa4e96a56a81a301f15a9b10e06a22700f12b42d9e0e453c7f11d354386300 lib32disabled=yes provides="xserver-abi-extension-10_1 xserver-abi-input-24_1 xserver-abi-video-24_1 xf86-video-modesetting-1_1" From c74c393167b226b8d5bbabb7cca7645ca8d247b8 Mon Sep 17 00:00:00 2001 From: Philipp David Date: Fri, 30 Jul 2021 07:02:48 +0200 Subject: [PATCH 028/824] python3-pikepdf: update to 2.16.1. --- srcpkgs/python3-pikepdf/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-pikepdf/template b/srcpkgs/python3-pikepdf/template index 9ef65d48341a..cffad7a5c60c 100644 --- a/srcpkgs/python3-pikepdf/template +++ b/srcpkgs/python3-pikepdf/template @@ -1,6 +1,6 @@ # Template file for 'python3-pikepdf' pkgname=python3-pikepdf -version=2.15.0 +version=2.16.1 revision=1 wrksrc="pikepdf-${version}" build_style=python3-module @@ -13,7 +13,7 @@ maintainer="Philipp David " license="MPL-2.0" homepage="https://github.com/pikepdf/pikepdf" distfiles="${PYPI_SITE}/p/pikepdf/pikepdf-${version}.tar.gz" -checksum=a33f3b52840ceae3fd64f0a18da307cda4a55549eb64177fc716547636fc37ae +checksum=e24dff6af31f1eb732fcb5db4678835d1f312643996fdcd9dbeb8aca52bc0dde pre_build() { vsed -e '/setuptools_scm_git_archive/d' -i setup.py From e3e508821f2bb1497d37e5f383475878c506c26e Mon Sep 17 00:00:00 2001 From: mobinmob Date: Fri, 30 Jul 2021 20:55:08 +0300 Subject: [PATCH 029/824] sublime-merge-bin: update to 2059. --- srcpkgs/sublime-merge-bin/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/sublime-merge-bin/template b/srcpkgs/sublime-merge-bin/template index d730ab75c608..fadb4a57a37e 100644 --- a/srcpkgs/sublime-merge-bin/template +++ b/srcpkgs/sublime-merge-bin/template @@ -1,6 +1,6 @@ # Template file for 'sublime-merge-bin' pkgname=sublime-merge-bin -version=2056 +version=2059 revision=1 archs="x86_64" wrksrc=sublime_merge @@ -12,7 +12,7 @@ license="custom:EULA" homepage="https://www.sublimemerge.com" changelog="https://www.sublimemerge.com/download" distfiles="https://download.sublimetext.com/sublime_merge_build_${version}_x64.tar.xz" -checksum=29844c7305b7f192b8b0bea6a32eebb80e7317f00ff9c39b4bfdab4982108720 +checksum=eef0cd29290371d06afa400335d37fb6a6f30b1888fb53a017b248c4b43e6e83 _license_checksum=33929b71625d13dacf2a0a5853171b9c04058f71e2955ee660b8d0f8dda45ed1 nopie=yes repository=nonfree From 5641313fd32510cc7f521eb3aa78092249527b08 Mon Sep 17 00:00:00 2001 From: mobinmob Date: Fri, 30 Jul 2021 20:39:19 +0300 Subject: [PATCH 030/824] notcurses: update to 2.3.12. --- srcpkgs/notcurses/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/notcurses/template b/srcpkgs/notcurses/template index 278c10f6d9bf..4b3563f65ffc 100644 --- a/srcpkgs/notcurses/template +++ b/srcpkgs/notcurses/template @@ -1,6 +1,6 @@ # Template file for 'notcurses' pkgname=notcurses -version=2.3.11 +version=2.3.12 revision=1 build_style=cmake configure_args="-DUSE_STATIC=ON $(vopt_bool man USE_PANDOC)" @@ -14,7 +14,7 @@ license="Apache-2.0" homepage="https://nick-black.com/dankwiki/index.php/Notcurses" changelog="https://raw.githubusercontent.com/dankamongmen/notcurses/master/NEWS.md" distfiles="https://github.com/dankamongmen/notcurses/archive/v${version}.tar.gz" -checksum=9cdd868c6546cf1c2cf800ed2a054139b7377527493cdc4b71aced860de0d670 +checksum=ce042908fac11f7df1f9eaa610e46e9c615f53ab036b7c27ae2396292512407b build_options="man" desc_option_man="Use pandoc for manpages" From 4876e6e11574697733cf09433c8c4c5e22c7158b Mon Sep 17 00:00:00 2001 From: mobinmob Date: Fri, 30 Jul 2021 20:28:22 +0300 Subject: [PATCH 031/824] skype: update to 8.74.0.152. --- srcpkgs/skype/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/skype/template b/srcpkgs/skype/template index 3aede5163710..d8e2f3a77606 100644 --- a/srcpkgs/skype/template +++ b/srcpkgs/skype/template @@ -1,7 +1,7 @@ # Template file for 'skype' # This just repackages the rpm package. pkgname=skype -version=8.73.0.129 +version=8.74.0.152 revision=1 archs="x86_64" create_wrksrc=yes @@ -12,7 +12,7 @@ maintainer="mobinmob " license="custom:skype-servicesagreement" # no vlicense homepage="https://www.skype.com" distfiles="https://repo.skype.com/rpm/stable/skypeforlinux_${version}-1.x86_64.rpm" -checksum=b72dcad634f922c77a0531f58d699d657f91939480d8299d9ae649abf01fc6c8 +checksum=1b19fbb55c75815c78e9c20ed29a97c6b11c8b45a2444dd8f1aa51d7ca354039 repository="nonfree" nostrip="yes" From cf155a52e7e16d38b5a9f335fc9c6fa880c90459 Mon Sep 17 00:00:00 2001 From: Daniel Lewan Date: Fri, 30 Jul 2021 08:35:40 +0200 Subject: [PATCH 032/824] pp: update to 1.0.9. --- srcpkgs/pp/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/pp/template b/srcpkgs/pp/template index 36d4d6b42400..b2b64531cd16 100644 --- a/srcpkgs/pp/template +++ b/srcpkgs/pp/template @@ -1,15 +1,15 @@ # Template file for 'pp' pkgname=pp -version=1.0.8 +version=1.0.9 revision=1 wrksrc="${pkgname}" build_style=gnu-makefile short_desc="Simple preprocessor" -maintainer="Paper " +maintainer="Daniel Lewan " license="ISC" homepage="https://mkws.sh/pp.html" distfiles="https://mkws.sh/pp/pp@${version}.tgz" -checksum=2115b8e7d84f86864c979ea3c04288dd7f427fa758372cfef28a04badfade3b8 +checksum=c4044ba8c2e47d8b2ef9fd467c46ae6316fdae8a6de5faaa800b566458e1f5e4 do_build() { make CC="$CC" LDFLAGS="$LDFLAGS" CFLAGS="$CFLAGS" From 2dd28af4c82f5d7b459f388636dfde6c3b3cc820 Mon Sep 17 00:00:00 2001 From: Will Springer Date: Tue, 27 Jul 2021 12:12:28 -0700 Subject: [PATCH 033/824] OpenRCT2: update to 0.3.4.1 --- srcpkgs/OpenRCT2/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/OpenRCT2/template b/srcpkgs/OpenRCT2/template index 86b2abf205c3..761da7f1e580 100644 --- a/srcpkgs/OpenRCT2/template +++ b/srcpkgs/OpenRCT2/template @@ -5,7 +5,7 @@ pkgname=OpenRCT2 _objects_version=1.0.21 _titles_version=0.1.2c _replays_version=0.0.43 -version=0.3.4 +version=0.3.4.1 revision=1 build_style=cmake configure_args=" @@ -33,7 +33,7 @@ homepage="https://openrct2.io" distfiles="https://github.com/OpenRCT2/OpenRCT2/archive/v${version}.tar.gz https://github.com/OpenRCT2/objects/releases/download/v${_objects_version}/objects.zip https://github.com/OpenRCT2/title-sequences/releases/download/v${_titles_version}/title-sequences.zip" -checksum="755529c797b94279e683b77ffbcfcfe901cca2fff817431632a23019ac95c6ca +checksum="01f286dce2a9668fb87f403a0f53880936d3013fd502f32f9bb1217236c28225 b081f885311f9afebc41d9dd4a68b7db4cf736eb815c04e307e1a426f08cfa35 5284333fa501270835b5f0cf420cb52155742335f5658d7889ea35d136b52517" skip_extraction="objects.zip title-sequences.zip replays.zip" From 0aed85bdb32a1c29c8c5bd33f91b431620ae2486 Mon Sep 17 00:00:00 2001 From: mobinmob Date: Fri, 30 Jul 2021 21:05:15 +0300 Subject: [PATCH 034/824] mbedtls: update to 2.16.11. --- srcpkgs/mbedtls/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/mbedtls/template b/srcpkgs/mbedtls/template index 2850d0700945..86257c4735ec 100644 --- a/srcpkgs/mbedtls/template +++ b/srcpkgs/mbedtls/template @@ -1,7 +1,7 @@ # Template file for 'mbedtls' pkgname=mbedtls reverts="2.17.0_1" -version=2.16.10 +version=2.16.11 revision=1 wrksrc="mbedtls-mbedtls-${version}" build_style=cmake @@ -13,7 +13,7 @@ license="Apache-2.0" homepage="https://tls.mbed.org/" changelog="https://raw.githubusercontent.com/ARMmbed/mbedtls/mbedtls-${version%.*}/ChangeLog" distfiles="https://github.com/ARMmbed/mbedtls/archive/mbedtls-${version}.tar.gz" -checksum=78c02e2d277a302454ada90274d16d80f88d761bdd4243528e4206cf7920be78 +checksum=51bb9685c4f4ff9255da5659ff346b89dcaf129e3ba0f3b2b0c48a1a7495e701 pre_configure() { ./scripts/config.pl set MBEDTLS_THREADING_C From 2c7ebe686e6539d65d3e64b4eb0c16b5e3544911 Mon Sep 17 00:00:00 2001 From: boson-at Date: Fri, 30 Jul 2021 06:16:56 +0200 Subject: [PATCH 035/824] osm2pgsql: update to 1.5.1. --- srcpkgs/osm2pgsql/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/osm2pgsql/template b/srcpkgs/osm2pgsql/template index 78b0f41d3cbe..9698f63059b6 100644 --- a/srcpkgs/osm2pgsql/template +++ b/srcpkgs/osm2pgsql/template @@ -1,6 +1,6 @@ # Template file for 'osm2pgsql' pkgname=osm2pgsql -version=1.5.0 +version=1.5.1 revision=1 build_style=cmake hostmakedepends="boost python3 python3-psycopg2" @@ -11,4 +11,4 @@ maintainer="Nýx " license="GPL-3.0-or-later" homepage="https://osm2pgsql.org" distfiles="https://github.com/openstreetmap/osm2pgsql/archive/${version}.tar.gz" -checksum=d31be268dda21cf31418f68c78b8e0cbbd90cd8a283c4dfe0c134a7960936fce +checksum=4df0d332e5d77a9d363f2f06f199da0ac23a0dc7890b3472ea1b5123ac363f6e From 894908b71b0342b1d3fa3709a0010cd5a2130a81 Mon Sep 17 00:00:00 2001 From: FollieHiyuki Date: Thu, 29 Jul 2021 15:44:40 +0300 Subject: [PATCH 036/824] qalculate: update to 3.20.1 --- common/shlibs | 2 +- srcpkgs/qalculate/template | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/common/shlibs b/common/shlibs index 04eefcdcbdd1..da24f1de5810 100644 --- a/common/shlibs +++ b/common/shlibs @@ -2996,7 +2996,7 @@ libdouble-conversion.so.1 double-conversion-2.0.1_1 libspectrum.so.8 libspectrum-1.2.2_1 libbearssl.so.0 bearssl-0.3_1 libXfont2.so.2 libXfont2-2.0.1_1 -libqalculate.so.21 libqalculate-3.0.0_1 +libqalculate.so.22 libqalculate-3.20.1_1 libweston-9.so.0 weston-9.0.0_1 libostree-1.so.1 libostree-2020.8_2 librhash.so.0 rhash-1.3.4_1 diff --git a/srcpkgs/qalculate/template b/srcpkgs/qalculate/template index 6a2388c5cf4f..ac326495fa31 100644 --- a/srcpkgs/qalculate/template +++ b/srcpkgs/qalculate/template @@ -1,7 +1,7 @@ # Template file for 'qalculate' # NOTE: keep this package synchronized with "srcpkgs/qalculate-gtk" pkgname=qalculate -version=3.19.0 +version=3.20.1 revision=1 wrksrc="lib${pkgname}-${version}" build_style=gnu-configure @@ -13,7 +13,7 @@ maintainer="Artem Zhurikhin " license="GPL-2.0-or-later" homepage="https://qalculate.github.io" distfiles="https://github.com/Qalculate/libqalculate/releases/download/v${version}/libqalculate-${version}.tar.gz" -checksum=43657a96e18b91739a0ef1d0f42701d7c5a0c8a3a6c7eee8ebfe9aeda75f7ddc +checksum=cee57c21fd5e20862734d7712907824ef7c689efc7d54c237e3766b6c83c7ee7 libqalculate_package() { short_desc+=" - library files" From f0478f19b9c72c29ef01de96496177a9d2bc95b7 Mon Sep 17 00:00:00 2001 From: FollieHiyuki Date: Thu, 29 Jul 2021 16:39:18 +0300 Subject: [PATCH 037/824] plasma-workspace: revbump for libqalculate.so.22 --- srcpkgs/plasma-workspace/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/plasma-workspace/template b/srcpkgs/plasma-workspace/template index 0c7495ad3dbd..fa84666b06fb 100644 --- a/srcpkgs/plasma-workspace/template +++ b/srcpkgs/plasma-workspace/template @@ -1,10 +1,10 @@ # Template file for 'plasma-workspace' pkgname=plasma-workspace version=5.22.3 -revision=1 +revision=2 build_style=cmake configure_args="-DBUILD_TESTING=OFF - -DWaylandScanner_EXECUTABLE=/usr/bin/wayland-scanner + -DWaylandScanner_EXECUTABLE=/usr/bin/wayland-scanner DKF5_HOST_TOOLING=/usr/lib/cmake" hostmakedepends="extra-cmake-modules iso-codes pkg-config kdoctools kcoreaddons qt5-wayland plasma-wayland-protocols gettext wayland-devel From 4aedc78b57437bccebfb2655ad2da8538168ad92 Mon Sep 17 00:00:00 2001 From: FollieHiyuki Date: Thu, 29 Jul 2021 15:46:26 +0300 Subject: [PATCH 038/824] qalculate-gtk: update to 3.20.1 --- srcpkgs/qalculate-gtk/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/qalculate-gtk/template b/srcpkgs/qalculate-gtk/template index 3fe5bc6a6d54..f71c085f5e8a 100644 --- a/srcpkgs/qalculate-gtk/template +++ b/srcpkgs/qalculate-gtk/template @@ -1,7 +1,7 @@ # Template file for 'qalculate-gtk' # NOTE: keep this package synchronized with "srcpkgs/qalculate" pkgname=qalculate-gtk -version=3.19.0 +version=3.20.1 revision=1 build_style=gnu-configure hostmakedepends="intltool pkg-config glib-devel" @@ -12,4 +12,4 @@ maintainer="Artem Zhurikhin " license="GPL-2.0-or-later" homepage="https://qalculate.github.io" distfiles="https://github.com/Qalculate/qalculate-gtk/releases/download/v${version}/qalculate-gtk-${version}.tar.gz" -checksum=9c060a9a0da9717e7c66acbfd3dfc8c556d731d83448195658219c1b4d5b21cc +checksum=3985766a7b8977a0d1f94b807ea66e388ed29192185394c9ccc7b5733e4ce136 From 730d52125fc8942128d1e15c5cd72bc97eccb141 Mon Sep 17 00:00:00 2001 From: FollieHiyuki Date: Thu, 29 Jul 2021 16:21:08 +0300 Subject: [PATCH 039/824] New package: qalculate-qt-3.20.1 --- srcpkgs/qalculate-gtk/template | 1 + srcpkgs/qalculate-qt/template | 16 ++++++++++++++++ srcpkgs/qalculate/template | 1 + 3 files changed, 18 insertions(+) create mode 100644 srcpkgs/qalculate-qt/template diff --git a/srcpkgs/qalculate-gtk/template b/srcpkgs/qalculate-gtk/template index f71c085f5e8a..a38571989276 100644 --- a/srcpkgs/qalculate-gtk/template +++ b/srcpkgs/qalculate-gtk/template @@ -1,5 +1,6 @@ # Template file for 'qalculate-gtk' # NOTE: keep this package synchronized with "srcpkgs/qalculate" +# and "srcpkgs/qalculate-qt" pkgname=qalculate-gtk version=3.20.1 revision=1 diff --git a/srcpkgs/qalculate-qt/template b/srcpkgs/qalculate-qt/template new file mode 100644 index 000000000000..610c93d8ca70 --- /dev/null +++ b/srcpkgs/qalculate-qt/template @@ -0,0 +1,16 @@ +# Template file for 'qalculate-qt' +# NOTE: keep this package synchronized with "srcpkgs/qalculate" +# and "srcpkgs/qalculate-gtk" +pkgname=qalculate-qt +version=3.20.1 +revision=1 +build_style=qmake +hostmakedepends="intltool pkg-config qt5-qmake qt5-host-tools" +makedepends="libqalculate-devel qt5-devel" +depends="gnuplot" +short_desc="Multi-purpose desktop calculator - QT version" +maintainer="FollieHiyuki " +license="GPL-2.0-or-later" +homepage="https://qalculate.github.io" +distfiles="https://github.com/Qalculate/qalculate-qt/releases/download/v${version}/qalculate-qt-${version}.tar.gz" +checksum=189e952b2b6b99ef63db46bd70d31f140adf19e8364d0eb4064daefca6a16e8a diff --git a/srcpkgs/qalculate/template b/srcpkgs/qalculate/template index ac326495fa31..4d9e490bf26d 100644 --- a/srcpkgs/qalculate/template +++ b/srcpkgs/qalculate/template @@ -1,5 +1,6 @@ # Template file for 'qalculate' # NOTE: keep this package synchronized with "srcpkgs/qalculate-gtk" +# and "srcpkgs/qalculate-qt" pkgname=qalculate version=3.20.1 revision=1 From b83d25247b20e2063d28c05516882c1dea443938 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89rico=20Nogueira?= Date: Fri, 30 Jul 2021 17:06:48 -0300 Subject: [PATCH 040/824] util-linux: backport fix for su(1). Since trusting PAM_RUSER is left to administrators, make sure it can be trusted if necessary. --- ...01-lib-pwdutils-don-t-use-getlogin-3.patch | 47 +++++++++++++++++++ srcpkgs/util-linux/template | 2 +- 2 files changed, 48 insertions(+), 1 deletion(-) create mode 100644 srcpkgs/util-linux/patches/0001-lib-pwdutils-don-t-use-getlogin-3.patch diff --git a/srcpkgs/util-linux/patches/0001-lib-pwdutils-don-t-use-getlogin-3.patch b/srcpkgs/util-linux/patches/0001-lib-pwdutils-don-t-use-getlogin-3.patch new file mode 100644 index 000000000000..facf97c6674e --- /dev/null +++ b/srcpkgs/util-linux/patches/0001-lib-pwdutils-don-t-use-getlogin-3.patch @@ -0,0 +1,47 @@ +From 3386b92e09e8a945cb071808e012e0b600f8bcb2 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?=C3=89rico=20Nogueira?= +Date: Tue, 27 Jul 2021 23:41:30 -0300 +Subject: [PATCH 1/4] lib/pwdutils: don't use getlogin(3). +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +Per the man page, it shouldn't be used for security purposes. This is an +issue especially on musl, where getlogin is implemented as +getenv("LOGNAME"). Since xgetlogin is being used as user identity in su(1), to +set PAM_RUSER, we simply switch to always using getpwuid(getuid()). + +Signed-off-by: Érico Nogueira +--- + lib/pwdutils.c | 8 +++----- + 1 file changed, 3 insertions(+), 5 deletions(-) + +diff --git a/lib/pwdutils.c b/lib/pwdutils.c +index d97020cb9..641a9da40 100644 +--- a/lib/pwdutils.c ++++ b/lib/pwdutils.c +@@ -104,11 +104,6 @@ char *xgetlogin(void) + { + struct passwd *pw = NULL; + uid_t ruid; +- char *user; +- +- user = getlogin(); +- if (user) +- return xstrdup(user); + + /* GNU Hurd implementation has an extension where a process can exist in a + * non-conforming environment, and thus be outside the realms of POSIX +@@ -117,6 +112,9 @@ char *xgetlogin(void) + * environment. + * + * http://austingroupbugs.net/view.php?id=511 ++ * ++ * The same implementation is useful for other systems, since getlogin(3) ++ * shouldn't be used as actual identification. + */ + errno = 0; + ruid = getuid(); +-- +2.32.0 + diff --git a/srcpkgs/util-linux/template b/srcpkgs/util-linux/template index 7094650c3202..41bffc545884 100644 --- a/srcpkgs/util-linux/template +++ b/srcpkgs/util-linux/template @@ -2,7 +2,7 @@ # Keep this package sync with util-linux-common pkgname=util-linux version=2.37.1 -revision=1 +revision=2 build_style=gnu-configure configure_args="--exec-prefix=\${prefix} --enable-libuuid --disable-makeinstall-chown --enable-libblkid --enable-fsck --disable-rpath --enable-fs-paths-extra=/usr/sbin:/usr/bin From 7bccf7fad7e63a457812157856c53e95bf5c606c Mon Sep 17 00:00:00 2001 From: Benjamin Slade Date: Fri, 30 Jul 2021 17:41:13 -0600 Subject: [PATCH 041/824] mu: update to 1.6.1 --- srcpkgs/mu/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/mu/template b/srcpkgs/mu/template index 6e5e816b5ca9..36d67ef65cba 100644 --- a/srcpkgs/mu/template +++ b/srcpkgs/mu/template @@ -1,16 +1,16 @@ # Template file for 'mu' pkgname=mu -version=1.6.0 +version=1.6.1 revision=1 build_style=gnu-configure hostmakedepends="automake libtool pkg-config texinfo glib-devel" makedepends="xapian-core-devel gmime3-devel libuuid-devel" short_desc="Emacs-based tool for dealing with e-mail stored in the Maildir-format" -maintainer="Benjamin Slade " +maintainer="Benjamin Slade " license="GPL-3.0-or-later" homepage="https://www.djcbsoftware.nl/code/mu/" distfiles="https://github.com/djcb/${pkgname}/releases/download/${version}/${pkgname}-${version}.tar.xz" -checksum=d25ff84abe261948ef7226ee91b9559d1d842404c8187ee6ffafdc06673d6465 +checksum=1c9ca62c50f1f087c15aa94c6c02d206a7f297b7903dfdf67e1ced4460d7c784 if [ ! "$CROSS_BUILD" ]; then hostmakedepends+=" emacs" From 00a8dd3e694f8b884b0a1c132f441765228d19fa Mon Sep 17 00:00:00 2001 From: jailbird777 Date: Mon, 26 Jul 2021 19:11:45 -0500 Subject: [PATCH 042/824] New package: dnsdist-1.6.0 --- srcpkgs/dnsdist/files/dnsdist/run | 4 ++++ srcpkgs/dnsdist/template | 36 +++++++++++++++++++++++++++++++ srcpkgs/dnsdist/update | 1 + 3 files changed, 41 insertions(+) create mode 100644 srcpkgs/dnsdist/files/dnsdist/run create mode 100644 srcpkgs/dnsdist/template create mode 100644 srcpkgs/dnsdist/update diff --git a/srcpkgs/dnsdist/files/dnsdist/run b/srcpkgs/dnsdist/files/dnsdist/run new file mode 100644 index 000000000000..130506a53b7d --- /dev/null +++ b/srcpkgs/dnsdist/files/dnsdist/run @@ -0,0 +1,4 @@ +#!/bin/sh +[ -f ./conf ] && . ./conf +MAX_OPEN_FILES=${MAX_OPEN_FILES:-2048} +exec chpst -o $MAX_OPEN_FILES dnsdist --uid _dnsdist --gid _dnsdist --supervised --disable-syslog diff --git a/srcpkgs/dnsdist/template b/srcpkgs/dnsdist/template new file mode 100644 index 000000000000..a75da37f0c49 --- /dev/null +++ b/srcpkgs/dnsdist/template @@ -0,0 +1,36 @@ +# Template file for 'dnsdist' +pkgname=dnsdist +version=1.6.0 +revision=1 +build_style=gnu-configure +configure_args="--with-pic --with-gnu-ld --with-libsodium --with-re2 + --with-net-snmp --with-libcap --with-libssl --enable-dnscrypt + --with-libcrypto=${XBPS_CROSS_BASE}/usr --with-service-user=_dnsdist + --with-service-group=_dnsdist --sbindir=/usr/bin --without-gnutls --with-lmdb + --enable-dns-over-tls --enable-dns-over-https --sysconfdir=/etc/dnsdist" +conf_files="/etc/dnsdist/dnsdist.conf" +hostmakedepends="autoconf automake pkgconf" +makedepends="libsodium-devel boost-devel re2-devel net-snmp-devel libcap-devel + lua54-devel openssl-devel lmdb-devel fstrm-devel libedit-devel h2o-devel" +short_desc="Dynamic DNS loadbalancer" +maintainer="JailBird " +license="GPL-2.0-only" +homepage="https://dnsdist.org/" +distfiles="https://downloads.powerdns.com/releases/${pkgname}-${version}.tar.bz2" +checksum=a7783a04d8d4ad2b0168ffaaf85ef95d5f557057b0462280684dd799d0cdd292 + +system_accounts="_dnsdist" + +if [ "$XBPS_TARGET_WORDSIZE" = 32 ]; then + # This can be removed once MUSL is updated to 1.2.x + broken="no y2038 support" +fi + +pre_configure() { + export LMDB_LIBS="-llmdb" +} + +post_install() { + vinstall dnsdistconf.lua 644 etc/dnsdist dnsdist.conf + vsv dnsdist +} diff --git a/srcpkgs/dnsdist/update b/srcpkgs/dnsdist/update new file mode 100644 index 000000000000..da8e072d218c --- /dev/null +++ b/srcpkgs/dnsdist/update @@ -0,0 +1 @@ +ignore="*alpha[0-9]* *rc[0-9]* *beta[0-9]*" From 2e448c405e2cce6c4a8089cca243d791df0d6b49 Mon Sep 17 00:00:00 2001 From: dkwo Date: Tue, 27 Jul 2021 11:36:40 +0200 Subject: [PATCH 043/824] libX11: patch for new symbols Apply upstream merge request to handle the new _EVDEVK xorgproto symbols, so that xkbcomp does not generate hundreds of warnings. See https://gitlab.freedesktop.org/xorg/lib/libx11/-/merge_requests/79 --- .../handle_new_xorgproto_symbols.patch | 42 +++++++++++++++++++ srcpkgs/libX11/template | 2 +- 2 files changed, 43 insertions(+), 1 deletion(-) create mode 100644 srcpkgs/libX11/patches/handle_new_xorgproto_symbols.patch diff --git a/srcpkgs/libX11/patches/handle_new_xorgproto_symbols.patch b/srcpkgs/libX11/patches/handle_new_xorgproto_symbols.patch new file mode 100644 index 000000000000..630d748009e5 --- /dev/null +++ b/srcpkgs/libX11/patches/handle_new_xorgproto_symbols.patch @@ -0,0 +1,42 @@ +From e92efc63acd7b377faa9e534f4bf52aaa86be2a9 Mon Sep 17 00:00:00 2001 +From: Peter Hutterer +Date: Tue, 27 Jul 2021 11:46:19 +1000 +Subject: [PATCH] makekeys: handle the new _EVDEVK xorgproto symbols + +These keys are all defined through a macro in the form: + #define XF86XK_BrightnessAuto _EVDEVK(0x0F4) + +The _EVDEVK macro is simply an offset of 0x10081000. +Let's parse these lines correctly so those keysyms end up in our +hashtables. + +Signed-off-by: Peter Hutterer +--- + src/util/makekeys.c | 12 ++++++++++++ + 1 file changed, 12 insertions(+) + +diff --git a/src/util/makekeys.c b/src/util/makekeys.c +index e847ef4c..4896cc53 100644 +--- a/src/util/makekeys.c ++++ b/src/util/makekeys.c +@@ -78,6 +78,18 @@ parse_line(const char *buf, char *key, KeySym *val, char *prefix) + return 1; + } + ++ /* See if we can parse one of the _EVDEVK symbols */ ++ i = sscanf(buf, "#define %127s _EVDEVK(0x%lx)", key, val); ++ if (i == 2 && (tmp = strstr(key, "XK_"))) { ++ memcpy(prefix, key, (size_t)(tmp - key)); ++ prefix[tmp - key] = '\0'; ++ tmp += 3; ++ memmove(key, tmp, strlen(tmp) + 1); ++ ++ *val += 0x10081000; ++ return 1; ++ } ++ + /* Now try to catch alias (XK_foo XK_bar) definitions, and resolve them + * immediately: if the target is in the form XF86XK_foo, we need to + * canonicalise this to XF86foo before we do the lookup. */ +-- +GitLab diff --git a/srcpkgs/libX11/template b/srcpkgs/libX11/template index fa008a24b734..202fcdb18432 100644 --- a/srcpkgs/libX11/template +++ b/srcpkgs/libX11/template @@ -1,7 +1,7 @@ # Template file for 'libX11' pkgname=libX11 version=1.7.2 -revision=2 +revision=3 build_style=gnu-configure configure_args="--enable-ipv6 --enable-xlocaledir --without-xmlto --enable-static --enable-malloc0returnsnull" From 476583c474bc04e927239615104130bb6fcb3a35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20N=C3=A9ri?= Date: Fri, 23 Jul 2021 12:24:43 +0000 Subject: [PATCH 044/824] dnscrypt-proxy: fix logging (redirect stderr to svlogd). --- srcpkgs/dnscrypt-proxy/files/dnscrypt-proxy/run | 1 + srcpkgs/dnscrypt-proxy/template | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/srcpkgs/dnscrypt-proxy/files/dnscrypt-proxy/run b/srcpkgs/dnscrypt-proxy/files/dnscrypt-proxy/run index a518ed815435..6e240fb488e2 100755 --- a/srcpkgs/dnscrypt-proxy/files/dnscrypt-proxy/run +++ b/srcpkgs/dnscrypt-proxy/files/dnscrypt-proxy/run @@ -1,2 +1,3 @@ #!/bin/sh +exec 2>&1 exec dnscrypt-proxy -config /etc/dnscrypt-proxy.toml diff --git a/srcpkgs/dnscrypt-proxy/template b/srcpkgs/dnscrypt-proxy/template index 09d53d038ddf..e1121e376804 100644 --- a/srcpkgs/dnscrypt-proxy/template +++ b/srcpkgs/dnscrypt-proxy/template @@ -1,7 +1,7 @@ # Template file for 'dnscrypt-proxy' pkgname=dnscrypt-proxy version=2.0.45 -revision=1 +revision=2 build_style=go go_import_path=github.com/DNSCrypt/dnscrypt-proxy go_package="${go_import_path}/dnscrypt-proxy" From 53c7116b9a63e71269449b66415807de0ed0f6d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Gerdau?= Date: Wed, 21 Jul 2021 22:21:23 +0200 Subject: [PATCH 045/824] kubernetes: update to 1.21.3. --- srcpkgs/kubernetes/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/kubernetes/template b/srcpkgs/kubernetes/template index 93d1c1bc3993..08d2f27b3859 100644 --- a/srcpkgs/kubernetes/template +++ b/srcpkgs/kubernetes/template @@ -1,6 +1,6 @@ # Template file for 'kubernetes' pkgname=kubernetes -version=1.20.2 +version=1.21.3 revision=1 archs="x86_64* ppc64le*" build_style=go @@ -12,7 +12,7 @@ maintainer="Andrea Brancaleoni " license="Apache-2.0" homepage="http://kubernetes.io" distfiles="https://$go_import_path/archive/v$version.tar.gz" -checksum=b83c0780efb182d928dc63d46488a847f161f04e40a94b96bf5247dd671ecdfc +checksum=76efee33b02a85ea6e8e74dd7d95b9d5f78cdd29734c2d0f8a9bc0b20f20c755 nocross=yes system_accounts="kube" make_dirs="/var/lib/kubelet 0755 kube kube" From 805cb4f9eb1b8ba71c64c38ef85d8ac43d99cf4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Sat, 31 Jul 2021 12:05:35 +0700 Subject: [PATCH 046/824] cryfs: build with NDEBUG defined Close: #32266 --- srcpkgs/cryfs/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/cryfs/template b/srcpkgs/cryfs/template index 87912c2b7fe7..6d8f855a80af 100644 --- a/srcpkgs/cryfs/template +++ b/srcpkgs/cryfs/template @@ -1,10 +1,10 @@ # Template file for 'cryfs' pkgname=cryfs version=0.10.2 -revision=2 +revision=3 create_wrksrc=yes build_style=cmake -configure_args="-DCRYFS_UPDATE_CHECKS=off -DCMAKE_BUILD_TYPE=None +configure_args="-DCRYFS_UPDATE_CHECKS=off -DBoost_USE_STATIC_LIBS=OFF -DCMAKE_CXX_STANDARD_LIBRARIES=-lfmt" hostmakedepends="pkg-config python3" makedepends="boost-devel fuse-devel libcurl-devel libgomp-devel crypto++-devel From 58c88407e18253ac9d27fe208e1dc6843ca59b01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20N=C3=A9ri?= Date: Wed, 28 Jul 2021 22:15:51 +0000 Subject: [PATCH 047/824] tailscale: update to 1.12.1. --- srcpkgs/tailscale/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/tailscale/template b/srcpkgs/tailscale/template index 598429ea085e..e715ba313352 100644 --- a/srcpkgs/tailscale/template +++ b/srcpkgs/tailscale/template @@ -1,6 +1,6 @@ # Template file for 'tailscale' pkgname=tailscale -version=1.10.0 +version=1.12.1 revision=1 build_style=go go_import_path="tailscale.com" @@ -14,7 +14,7 @@ maintainer="Noel Cower " license="BSD-3-Clause" homepage="https://tailscale.com" distfiles="https://github.com/tailscale/tailscale/archive/v${version}.tar.gz" -checksum=8345fc01fd07d3fa325817104b373bbdd54568ef807135e9d5eafa5321fa7f87 +checksum=9a94e6073f5e171c9ba6c3f5ca291bdae688c8e26fb586c3df4302204af77e86 post_install() { vlicense LICENSE From 1031b03e01d8e1b82244b88cbd317895651c2c3c Mon Sep 17 00:00:00 2001 From: Duncaen Date: Fri, 30 Jul 2021 16:56:57 +0200 Subject: [PATCH 048/824] knot-resolver: update to 5.4.0. --- srcpkgs/knot-resolver/template | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/srcpkgs/knot-resolver/template b/srcpkgs/knot-resolver/template index b4a39a09a30c..b07a400a3a02 100644 --- a/srcpkgs/knot-resolver/template +++ b/srcpkgs/knot-resolver/template @@ -1,6 +1,6 @@ # Template file for 'knot-resolver' pkgname=knot-resolver -version=5.3.2 +version=5.4.0 revision=1 build_style=meson configure_args=" @@ -8,17 +8,18 @@ configure_args=" -Dgroup=_knot_resolver -Duser=_knot_resolver -Dkeyfile_default=/var/lib/knot-resolver/root.keys - -Droot_hints=/var/lib/knot-resolver/root.hints" + -Droot_hints=/var/lib/knot-resolver/root.hints + -Dkres_gen_test=false" hostmakedepends="meson pkg-config protobuf-c" makedepends="LuaJIT-devel fstrm-devel gnutls-devel libedit-devel libknot-devel - libuv-devel lmdb-devel protobuf-c-devel" + libuv-devel lmdb-devel protobuf-c-devel nghttp2-devel libcap-ng-devel libcap-ng-devel" checkdepends="cmocka-devel" short_desc="Full caching DNS resolver implementation" maintainer="Duncaen " license="GPL-3.0-or-later" homepage="https://www.knot-resolver.cz/" distfiles="https://secure.nic.cz/files/knot-resolver/knot-resolver-${version}.tar.xz" -checksum=8b6f447d5fe93422d4c129a2d4004a977369c3aa6e55258ead1cbd488bc01436 +checksum=534af671b98433b23b57039acc9d7d3c100a4888a8cf9aeba36161774ca0815e system_accounts="_knot_resolver" _knot_resolver_homedir="/var/cache/knot-resolver" From f9e2bddbcb5f3cc2ad3366c55ae9017e8b6854a8 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Sat, 31 Jul 2021 14:31:05 +0200 Subject: [PATCH 049/824] monit: update to 5.28.1. --- srcpkgs/monit/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/monit/template b/srcpkgs/monit/template index e401ff3d8733..06c060661d38 100644 --- a/srcpkgs/monit/template +++ b/srcpkgs/monit/template @@ -1,6 +1,6 @@ # Template file for 'monit' pkgname=monit -version=5.28.0 +version=5.28.1 revision=1 build_style=gnu-configure configure_args=" @@ -16,7 +16,7 @@ license="AGPL-3.0-only" homepage="https://mmonit.com/monit/" changelog="https://mmonit.com/monit/changes/" distfiles="https://mmonit.com/monit/dist/${pkgname}-${version}.tar.gz" -checksum=9fc6287fd9570b25a85c5d5bf988ee8bd4c54d0e9e01ff04cc4b9398a159849c +checksum=57d8885f66e58a0a4ca6a967f2bb7e8c15ed988a25b5ca6ba6733f919ef07a5c pre_configure() { ./bootstrap From 26708d26b89093c61ec10887f0c38382fcf16ddd Mon Sep 17 00:00:00 2001 From: Andrew Benson Date: Sat, 31 Jul 2021 16:49:34 -0500 Subject: [PATCH 050/824] hivex: update to 1.3.20. --- srcpkgs/hivex/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/hivex/template b/srcpkgs/hivex/template index dca5542d4485..1ed578d92e17 100644 --- a/srcpkgs/hivex/template +++ b/srcpkgs/hivex/template @@ -1,7 +1,7 @@ # Template file for 'hivex' pkgname=hivex -version=1.3.19 -revision=6 +version=1.3.20 +revision=1 build_style=gnu-configure configure_args="--disable-ocaml" # currently ocaml is broken hostmakedepends="python3 perl ruby ocaml ocaml-findlib perl-IO-stringy" @@ -12,5 +12,5 @@ maintainer="Andrea Brancaleoni " license="LGPL-2.1-or-later" homepage="http://libguestfs.org" distfiles="http://libguestfs.org/download/${pkgname}/${pkgname}-${version}.tar.gz" -checksum=5102cc5149767229dbfb436ae7b47dd85b90e0215445e42c2809cbe32e54f762 +checksum=f523c37bb064a4bab7db5224902c34eee4f9fab2d9b81cf615b32c0b8509d32d nocross=yes From 1f2aa9d964d19080e49d9a4a4ca41e91269fb554 Mon Sep 17 00:00:00 2001 From: q66 Date: Sat, 31 Jul 2021 22:40:39 +0200 Subject: [PATCH 051/824] webkit2gtk: add more BE fixes --- .../patches/be-imagebufferbackend.patch | 214 ++++++++++++++++++ .../webkit2gtk/patches/be-typedarray.patch | 48 ++++ 2 files changed, 262 insertions(+) create mode 100644 srcpkgs/webkit2gtk/patches/be-imagebufferbackend.patch diff --git a/srcpkgs/webkit2gtk/patches/be-imagebufferbackend.patch b/srcpkgs/webkit2gtk/patches/be-imagebufferbackend.patch new file mode 100644 index 000000000000..27055015de3e --- /dev/null +++ b/srcpkgs/webkit2gtk/patches/be-imagebufferbackend.patch @@ -0,0 +1,214 @@ +From 1e7d7e7361189d40ace22d6ff2e2139a4e6759f0 Mon Sep 17 00:00:00 2001 +From: q66 +Date: Sat, 31 Jul 2021 22:31:52 +0200 +Subject: [PATCH 2/2] some big endian rendering fixes + +Source: Jacek Piszczek +--- + .../platform/graphics/ImageBufferBackend.cpp | 109 ++++++++++++++++++ + .../platform/graphics/ImageBufferBackend.h | 3 + + 2 files changed, 112 insertions(+) + +diff --git a/Source/WebCore/platform/graphics/ImageBufferBackend.cpp b/Source/WebCore/platform/graphics/ImageBufferBackend.cpp +index 9394e7bf..e704be6b 100644 +--- a/Source/WebCore/platform/graphics/ImageBufferBackend.cpp ++++ b/Source/WebCore/platform/graphics/ImageBufferBackend.cpp +@@ -110,7 +110,11 @@ Vector ImageBufferBackend::toBGRAData(void* data) const + + static inline void copyPremultipliedToPremultiplied(PixelFormat srcPixelFormat, const uint8_t* srcPixel, PixelFormat destPixelFormat, uint8_t* destPixel) + { ++#if CPU(BIG_ENDIAN) ++ uint8_t alpha = srcPixel[srcPixelFormat == PixelFormat::ARGB8 ? 0 : 3]; ++#else + uint8_t alpha = srcPixel[3]; ++#endif + if (!alpha) { + reinterpret_cast(destPixel)[0] = 0; + return; +@@ -121,21 +125,73 @@ static inline void copyPremultipliedToPremultiplied(PixelFormat srcPixelFormat, + return; + } + ++#if CPU(BIG_ENDIAN) ++ // Swap pixel channels ARGB <-> RGBA. ++ if (destPixelFormat == PixelFormat::ARGB8) ++ { ++ destPixel[0] = srcPixel[3]; ++ destPixel[1] = srcPixel[0]; ++ destPixel[2] = srcPixel[1]; ++ destPixel[3] = srcPixel[2]; ++ } ++ else ++ { ++ destPixel[0] = srcPixel[1]; ++ destPixel[1] = srcPixel[2]; ++ destPixel[2] = srcPixel[3]; ++ destPixel[3] = srcPixel[0]; ++ } ++#else + // Swap pixel channels BGRA <-> RGBA. + destPixel[0] = srcPixel[2]; + destPixel[1] = srcPixel[1]; + destPixel[2] = srcPixel[0]; + destPixel[3] = srcPixel[3]; ++#endif + } + + static inline void copyPremultipliedToUnpremultiplied(PixelFormat srcPixelFormat, const uint8_t* srcPixel, PixelFormat destPixelFormat, uint8_t* destPixel) + { ++#if CPU(BIG_ENDIAN) ++ uint8_t alpha = srcPixel[srcPixelFormat == PixelFormat::ARGB8 ? 0 : 3]; ++#else + uint8_t alpha = srcPixel[3]; ++#endif ++ + if (!alpha || alpha == 255) { + copyPremultipliedToPremultiplied(srcPixelFormat, srcPixel, destPixelFormat, destPixel); + return; + } + ++#if CPU(BIG_ENDIAN) ++ if (srcPixelFormat == destPixelFormat) { ++ if (srcPixelFormat == PixelFormat::ARGB8) { ++ destPixel[0] = alpha; ++ destPixel[1] = (srcPixel[1] * 255) / alpha; ++ destPixel[2] = (srcPixel[2] * 255) / alpha; ++ destPixel[3] = (srcPixel[3] * 255) / alpha; ++ return; ++ } ++ destPixel[0] = (srcPixel[0] * 255) / alpha; ++ destPixel[1] = (srcPixel[1] * 255) / alpha; ++ destPixel[2] = (srcPixel[2] * 255) / alpha; ++ destPixel[3] = alpha; ++ return; ++ } ++ ++ if (srcPixelFormat == PixelFormat::ARGB8) { ++ destPixel[0] = (srcPixel[1] * 255) / alpha; ++ destPixel[1] = (srcPixel[2] * 255) / alpha; ++ destPixel[2] = (srcPixel[3] * 255) / alpha; ++ destPixel[3] = alpha; ++ } ++ else { ++ destPixel[0] = alpha; ++ destPixel[1] = (srcPixel[0] * 255) / alpha; ++ destPixel[2] = (srcPixel[1] * 255) / alpha; ++ destPixel[3] = (srcPixel[2] * 255) / alpha; ++ } ++#else + if (srcPixelFormat == destPixelFormat) { + destPixel[0] = (srcPixel[0] * 255) / alpha; + destPixel[1] = (srcPixel[1] * 255) / alpha; +@@ -149,16 +205,51 @@ static inline void copyPremultipliedToUnpremultiplied(PixelFormat srcPixelFormat + destPixel[1] = (srcPixel[1] * 255) / alpha; + destPixel[2] = (srcPixel[0] * 255) / alpha; + destPixel[3] = alpha; ++#endif + } + + static inline void copyUnpremultipliedToPremultiplied(PixelFormat srcPixelFormat, const uint8_t* srcPixel, PixelFormat destPixelFormat, uint8_t* destPixel) + { ++#if CPU(BIG_ENDIAN) ++ uint8_t alpha = srcPixel[srcPixelFormat == PixelFormat::ARGB8 ? 0 : 3]; ++#else + uint8_t alpha = srcPixel[3]; ++#endif ++ + if (!alpha || alpha == 255) { + copyPremultipliedToPremultiplied(srcPixelFormat, srcPixel, destPixelFormat, destPixel); + return; + } + ++#if CPU(BIG_ENDIAN) ++ if (srcPixelFormat == destPixelFormat) { ++ if (srcPixelFormat == PixelFormat::ARGB8) { ++ destPixel[0] = alpha; ++ destPixel[1] = (srcPixel[1] * alpha + 254) / 255; ++ destPixel[2] = (srcPixel[2] * alpha + 254) / 255; ++ destPixel[3] = (srcPixel[3] * alpha + 254) / 255; ++ return; ++ } ++ destPixel[0] = (srcPixel[0] * alpha + 254) / 255; ++ destPixel[1] = (srcPixel[1] * alpha + 254) / 255; ++ destPixel[2] = (srcPixel[2] * alpha + 254) / 255; ++ destPixel[3] = alpha; ++ return; ++ } ++ ++ if (srcPixelFormat == PixelFormat::ARGB8) { ++ destPixel[0] = (srcPixel[1] * alpha + 254) / 255; ++ destPixel[1] = (srcPixel[2] * alpha + 254) / 255; ++ destPixel[2] = (srcPixel[3] * alpha + 254) / 255; ++ destPixel[3] = alpha; ++ return; ++ } ++ ++ destPixel[0] = alpha; ++ destPixel[1] = (srcPixel[0] * alpha + 254) / 255; ++ destPixel[2] = (srcPixel[1] * alpha + 254) / 255; ++ destPixel[3] = (srcPixel[2] * alpha + 254) / 255; ++#else + if (srcPixelFormat == destPixelFormat) { + destPixel[0] = (srcPixel[0] * alpha + 254) / 255; + destPixel[1] = (srcPixel[1] * alpha + 254) / 255; +@@ -172,6 +263,7 @@ static inline void copyUnpremultipliedToPremultiplied(PixelFormat srcPixelFormat + destPixel[1] = (srcPixel[1] * alpha + 254) / 255; + destPixel[2] = (srcPixel[0] * alpha + 254) / 255; + destPixel[3] = alpha; ++#endif + } + + static inline void copyUnpremultipliedToUnpremultiplied(PixelFormat srcPixelFormat, const uint8_t* srcPixel, PixelFormat destPixelFormat, uint8_t* destPixel) +@@ -181,11 +273,27 @@ static inline void copyUnpremultipliedToUnpremultiplied(PixelFormat srcPixelForm + return; + } + ++#if CPU(BIG_ENDIAN) ++ // Swap pixel channels ARGB <-> RGBA. ++ if (destPixelFormat == PixelFormat::ARGB8) { ++ destPixel[0] = srcPixel[3]; ++ destPixel[1] = srcPixel[0]; ++ destPixel[2] = srcPixel[1]; ++ destPixel[3] = srcPixel[2]; ++ } ++ else { ++ destPixel[0] = srcPixel[1]; ++ destPixel[1] = srcPixel[2]; ++ destPixel[2] = srcPixel[3]; ++ destPixel[3] = srcPixel[0]; ++ } ++#else + // Swap pixel channels BGRA <-> RGBA. + destPixel[0] = srcPixel[2]; + destPixel[1] = srcPixel[1]; + destPixel[2] = srcPixel[0]; + destPixel[3] = srcPixel[3]; ++#endif + } + + template +@@ -207,6 +315,7 @@ void ImageBufferBackend::copyImagePixels( + AlphaPremultiplication destAlphaFormat, PixelFormat destPixelFormat, unsigned destBytesPerRow, uint8_t* destRows, const IntSize& size) const + { + // We don't currently support getting or putting pixel data with deep color buffers. ++ // BGRA8 is actually ARGB8 on BIG_ENDIAN. + ASSERT(srcPixelFormat == PixelFormat::RGBA8 || srcPixelFormat == PixelFormat::BGRA8); + ASSERT(destPixelFormat == PixelFormat::RGBA8 || destPixelFormat == PixelFormat::BGRA8); + +diff --git a/Source/WebCore/platform/graphics/ImageBufferBackend.h b/Source/WebCore/platform/graphics/ImageBufferBackend.h +index 31ce9775..4c52fa52 100644 +--- a/Source/WebCore/platform/graphics/ImageBufferBackend.h ++++ b/Source/WebCore/platform/graphics/ImageBufferBackend.h +@@ -58,6 +58,9 @@ enum class PreserveResolution : uint8_t { + enum class PixelFormat : uint8_t { + RGBA8, + BGRA8, ++#if CPU(BIG_ENDIAN) ++ ARGB8 = BGRA8, // BGRA will actually be ARGB on BIG_ENDIAN ++#endif + RGB10, + RGB10A8, + }; +-- +2.31.1 + diff --git a/srcpkgs/webkit2gtk/patches/be-typedarray.patch b/srcpkgs/webkit2gtk/patches/be-typedarray.patch index 12011525f3ed..e11d62d50acf 100644 --- a/srcpkgs/webkit2gtk/patches/be-typedarray.patch +++ b/srcpkgs/webkit2gtk/patches/be-typedarray.patch @@ -211,3 +211,51 @@ index 6cd7126..24708f7 100644 template inline T flipBytesIfLittleEndian(T value, bool littleEndian) { +diff --git a/Source/JavaScriptCore/llint/LLIntOfflineAsmConfig.h b/Source/JavaScriptCore/llint/LLIntOfflineAsmConfig.h +index 33be4058..1a6d69fd 100644 +--- a/Source/JavaScriptCore/llint/LLIntOfflineAsmConfig.h ++++ b/Source/JavaScriptCore/llint/LLIntOfflineAsmConfig.h +@@ -179,3 +179,9 @@ + #else + #define OFFLINE_ASM_HAVE_FAST_TLS 0 + #endif ++ ++#if CPU(BIG_ENDIAN) ++#define OFFLINE_ASM_BIG_ENDIAN 1 ++#else ++#define OFFLINE_ASM_BIG_ENDIAN 0 ++#endif +diff --git a/Source/JavaScriptCore/llint/LowLevelInterpreter32_64.asm b/Source/JavaScriptCore/llint/LowLevelInterpreter32_64.asm +index 20c0c40b..10c58846 100644 +--- a/Source/JavaScriptCore/llint/LowLevelInterpreter32_64.asm ++++ b/Source/JavaScriptCore/llint/LowLevelInterpreter32_64.asm +@@ -1667,7 +1667,11 @@ llintOpWithMetadata(op_get_by_val, OpGetByVal, macro (size, get, dispatch, metad + + .opGetByValNotDouble: + subi ArrayStorageShape, t2 +- bia t2, SlowPutArrayStorageShape - ArrayStorageShape, .opGetByValNotIndexedStorage ++ if BIG_ENDIAN ++ bia t2, SlowPutArrayStorageShape - ArrayStorageShape, .opGetByValSlow ++ else ++ bia t2, SlowPutArrayStorageShape - ArrayStorageShape, .opGetByValNotIndexedStorage ++ end + biaeq t1, -sizeof IndexingHeader + IndexingHeader::u.lengths.vectorLength[t3], .opGetByValSlow + loadi ArrayStorage::m_vector + TagOffset[t3, t1, 8], t2 + loadi ArrayStorage::m_vector + PayloadOffset[t3, t1, 8], t1 +diff --git a/Source/JavaScriptCore/llint/LowLevelInterpreter64.asm b/Source/JavaScriptCore/llint/LowLevelInterpreter64.asm +index 27e76d2f..bfb2a46e 100644 +--- a/Source/JavaScriptCore/llint/LowLevelInterpreter64.asm ++++ b/Source/JavaScriptCore/llint/LowLevelInterpreter64.asm +@@ -1721,7 +1721,11 @@ llintOpWithMetadata(op_get_by_val, OpGetByVal, macro (size, get, dispatch, metad + + .opGetByValNotDouble: + subi ArrayStorageShape, t2 +- bia t2, SlowPutArrayStorageShape - ArrayStorageShape, .opGetByValNotIndexedStorage ++ if BIG_ENDIAN ++ bia t2, SlowPutArrayStorageShape - ArrayStorageShape, .opGetByValSlow ++ else ++ bia t2, SlowPutArrayStorageShape - ArrayStorageShape, .opGetByValNotIndexedStorage ++ end + biaeq t1, -sizeof IndexingHeader + IndexingHeader::u.lengths.vectorLength[t3], .opGetByValSlow + get(m_dst, t0) + loadq ArrayStorage::m_vector[t3, t1, 8], t2 From fe9051867433b91e17128ac090c3f6fa8cb642aa Mon Sep 17 00:00:00 2001 From: John Date: Thu, 29 Jul 2021 20:23:57 +0200 Subject: [PATCH 052/824] bluedevil: update to 5.22.4. --- srcpkgs/bluedevil/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/bluedevil/template b/srcpkgs/bluedevil/template index e696669a3cba..c10b2b2e89d0 100644 --- a/srcpkgs/bluedevil/template +++ b/srcpkgs/bluedevil/template @@ -1,6 +1,6 @@ # Template file for 'bluedevil' pkgname=bluedevil -version=5.22.3 +version=5.22.4 revision=1 build_style=cmake configure_args="-DBUILD_TESTING=OFF" @@ -12,7 +12,7 @@ maintainer="John " license="GPL-2.0-or-later, LGPL-2.1-or-later" homepage="https://invent.kde.org/plasma/bluedevil" distfiles="${KDE_SITE}/plasma/${version}/${pkgname}-${version}.tar.xz" -checksum=95b8c00cbc7b0eda9af8e9d934384148a1e25a329d529fb0d6b0cac00623f8e1 +checksum=40f19b3b66737f4dabd49f05450d91fc850d27e9b4abdeb112c7d9e70d997881 if [ "$CROSS_BUILD" ]; then hostmakedepends+=" kpackage-devel kconfig-devel kcoreaddons-devel" From 4182e1a5ba8b0c7219cb689e7ff2e240efc14f04 Mon Sep 17 00:00:00 2001 From: John Date: Thu, 29 Jul 2021 20:23:59 +0200 Subject: [PATCH 053/824] breeze-gtk: update to 5.22.4. --- srcpkgs/breeze-gtk/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/breeze-gtk/template b/srcpkgs/breeze-gtk/template index 8318f83f05bb..fd529e18cd51 100644 --- a/srcpkgs/breeze-gtk/template +++ b/srcpkgs/breeze-gtk/template @@ -1,6 +1,6 @@ # Template file for 'breeze-gtk' pkgname=breeze-gtk -version=5.22.3 +version=5.22.4 revision=1 build_style=cmake hostmakedepends="extra-cmake-modules sassc python3 python3-cairo" @@ -10,7 +10,7 @@ maintainer="John " license="LGPL-2.1-or-later" homepage="https://invent.kde.org/plasma/breeze-gtk" distfiles="${KDE_SITE}/plasma/${version}/${pkgname}-${version}.tar.xz" -checksum=cff20c1605a09a85966a5d03f323fd8ad6b94828c347b68cbc874d896e0c7dbf +checksum=8b69b4e74594b49e3cee62fbffab875442f6b9d0d6432972b800c82eb2de87dc if [ "$CROSS_BUILD" ]; then hostmakedepends+=" qt5-devel" From 297a08aceddc5530b360214508f304572c515c81 Mon Sep 17 00:00:00 2001 From: John Date: Thu, 29 Jul 2021 20:24:06 +0200 Subject: [PATCH 054/824] breeze: update to 5.22.4. --- srcpkgs/breeze/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/breeze/template b/srcpkgs/breeze/template index af4ae3d5be8a..8bbecf811d11 100644 --- a/srcpkgs/breeze/template +++ b/srcpkgs/breeze/template @@ -1,6 +1,6 @@ # Template file for 'breeze' pkgname=breeze -version=5.22.3 +version=5.22.4 revision=1 build_style=cmake configure_args="-DBUILD_TESTING=OFF" @@ -14,7 +14,7 @@ maintainer="John " license="GPL-2.0-or-later" homepage="https://invent.kde.org/plasma/breeze" distfiles="${KDE_SITE}/plasma/${version}/${pkgname}-${version}.tar.xz" -checksum=2b8c20e9bea767ed796e0ba5adee30812c73591c000bbf79855d504303f120e4 +checksum=7d792b7f97e6d5854d81b4098edefd62a8e5b309e471ab39ada679a52ecf9fac if [ "$CROSS_BUILD" ]; then hostmakedepends+=" kpackage-devel kconfig-devel kcoreaddons-devel plasma-framework" From 065852826ab37f6dc77c4459158ad107978be922 Mon Sep 17 00:00:00 2001 From: John Date: Thu, 29 Jul 2021 20:24:07 +0200 Subject: [PATCH 055/824] kactivitymanagerd: update to 5.22.4. --- srcpkgs/kactivitymanagerd/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/kactivitymanagerd/template b/srcpkgs/kactivitymanagerd/template index a897424b124c..d9205c7a2330 100644 --- a/srcpkgs/kactivitymanagerd/template +++ b/srcpkgs/kactivitymanagerd/template @@ -1,6 +1,6 @@ # Template file for 'kactivitymanagerd' pkgname=kactivitymanagerd -version=5.22.3 +version=5.22.4 revision=1 build_style=cmake build_helper="qemu" @@ -13,4 +13,4 @@ maintainer="John " license="GPL-2.0-or-later" homepage="https://invent.kde.org/plasma/kactivitymanagerd" distfiles="${KDE_SITE}/plasma/${version}/${pkgname}-${version}.tar.xz" -checksum=5d47666f5d82771e7cf7d81e6063a912ecf44001199a25470b246e0244d250c4 +checksum=db87d0eb15a81117e31937078b095939e23c375fd939fe0ac1d4edec31ada0ce From 1810152e1f56df634ec6ae3d7e0febe0c9d5bad1 Mon Sep 17 00:00:00 2001 From: John Date: Thu, 29 Jul 2021 20:24:09 +0200 Subject: [PATCH 056/824] kde-cli-tools: update to 5.22.4. --- srcpkgs/kde-cli-tools/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/kde-cli-tools/template b/srcpkgs/kde-cli-tools/template index 1642e3e66ec9..937dfcf16ce2 100644 --- a/srcpkgs/kde-cli-tools/template +++ b/srcpkgs/kde-cli-tools/template @@ -1,6 +1,6 @@ # Template file for 'kde-cli-tools' pkgname=kde-cli-tools -version=5.22.3 +version=5.22.4 revision=1 build_style=cmake configure_args="-DBUILD_TESTING=OFF" @@ -14,7 +14,7 @@ maintainer="John " license="LGPL-2.1-or-later, GPL-2.0-or-later" homepage="https://invent.kde.org/plasma/kde-cli-tools" distfiles="${KDE_SITE}/plasma/${version}/${pkgname}-${version}.tar.xz" -checksum=040f75a3ec3cda88090edbade9b4e2c333a0bdc979e65b50f85d5cd05c31acf0 +checksum=44e2e379ef8e3d09cc8ec4db5564dec3d42a48dfb690c4ae9438189cd4ba08ce post_install() { ln -sf ../lib/libexec/kf5/kdesu ${DESTDIR}/usr/bin From 820bddb8cc52202608785b2db5aabdd0f930d862 Mon Sep 17 00:00:00 2001 From: John Date: Thu, 29 Jul 2021 20:24:10 +0200 Subject: [PATCH 057/824] kde-gtk-config5: update to 5.22.4. --- srcpkgs/kde-gtk-config5/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/kde-gtk-config5/template b/srcpkgs/kde-gtk-config5/template index 2930fef7e503..0f300600be07 100644 --- a/srcpkgs/kde-gtk-config5/template +++ b/srcpkgs/kde-gtk-config5/template @@ -1,6 +1,6 @@ # Template file for 'kde-gtk-config5' pkgname=kde-gtk-config5 -version=5.22.3 +version=5.22.4 revision=1 wrksrc="${pkgname%5}-${version}" build_style=cmake @@ -15,7 +15,7 @@ maintainer="John " license="GPL-2.0-or-later, LGPL-2.1-or-later" homepage="https://invent.kde.org/plasma/kde-gtk-config" distfiles="${KDE_SITE}/plasma/${version}/${pkgname%5}-${version}.tar.xz" -checksum=c84bcdc88397e5db71285c6dca50ff495aa0b853c1ab3657aba4ca71170601d7 +checksum=a8df53067f2392e6c8e0d7a234771374d832a91c0fdfed1b3bd197797f5ea634 if [ "$CROSS_BUILD" ]; then hostmakedepends+=" kcoreaddons" From c18bf9893294ea60ca77fd5f8091a254873fd1d3 Mon Sep 17 00:00:00 2001 From: John Date: Thu, 29 Jul 2021 20:24:12 +0200 Subject: [PATCH 058/824] kdecoration: update to 5.22.4. --- srcpkgs/kdecoration/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/kdecoration/template b/srcpkgs/kdecoration/template index e1b046b3444e..35834b0744e3 100644 --- a/srcpkgs/kdecoration/template +++ b/srcpkgs/kdecoration/template @@ -1,6 +1,6 @@ # Template file for 'kdecoration' pkgname=kdecoration -version=5.22.3 +version=5.22.4 revision=1 build_style=cmake configure_args="-DBUILD_TESTING=OFF" @@ -11,7 +11,7 @@ maintainer="John " license="LGPL-2.1-or-later" homepage="https://invent.kde.org/plasma/kdecoration" distfiles="${KDE_SITE}/plasma/${version}/${pkgname}-${version}.tar.xz" -checksum=b760c5e5a6baf927589f2c1e38937a7963f0df17831747a12583f933227efead +checksum=90e9bfeb2bd6afdd86ef8b18370a04d3e2e01841def635d25b349551a7a68031 kdecoration-devel_package() { short_desc+=" - development" From 0a88170a2ae49b69e48816588f695e6dd2820336 Mon Sep 17 00:00:00 2001 From: John Date: Thu, 29 Jul 2021 20:24:13 +0200 Subject: [PATCH 059/824] kdeplasma-addons5: update to 5.22.4. --- srcpkgs/kdeplasma-addons5/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/kdeplasma-addons5/template b/srcpkgs/kdeplasma-addons5/template index e8d8d27d3870..d6709e9e961e 100644 --- a/srcpkgs/kdeplasma-addons5/template +++ b/srcpkgs/kdeplasma-addons5/template @@ -1,6 +1,6 @@ # Template file for 'kdeplasma-addons5' pkgname=kdeplasma-addons5 -version=5.22.3 +version=5.22.4 revision=1 wrksrc="${pkgname%5}-${version}" build_style=cmake @@ -14,7 +14,7 @@ maintainer="John " license="GPL-2.0-or-later, LGPL-2.1-or-later" homepage="https://invent.kde.org/plasma/kdeplasma-addons" distfiles="${KDE_SITE}/plasma/${version}/${pkgname%5}-${version}.tar.xz" -checksum=d0a62c1d8a4d2fd66028520f7bfc07e532f966366f754d435a0a52a9d3a6a3c1 +checksum=607206ef5153602433413a34202075dbb518299db094b0ad3b50b20f70258eba if [ "$CROSS_BUILD" ]; then hostmakedepends+=" kpackage-devel kconfig-devel kcoreaddons-devel plasma-framework" From 2b7dd6ecc4075a5601f02cc9c4a89e87a50f782b Mon Sep 17 00:00:00 2001 From: John Date: Thu, 29 Jul 2021 20:24:14 +0200 Subject: [PATCH 060/824] kgamma5: update to 5.22.4. --- srcpkgs/kgamma5/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/kgamma5/template b/srcpkgs/kgamma5/template index ccc47bd5060d..5408fa7c7f46 100644 --- a/srcpkgs/kgamma5/template +++ b/srcpkgs/kgamma5/template @@ -1,6 +1,6 @@ # Template file for 'kgamma5' pkgname=kgamma5 -version=5.22.3 +version=5.22.4 revision=1 build_style=cmake configure_args="-DBUILD_TESTING=OFF" @@ -11,7 +11,7 @@ maintainer="John " license="GPL-2.0-or-later" homepage="https://invent.kde.org/plasma/kgamma5" distfiles="${KDE_SITE}/plasma/${version}/${pkgname}-${version}.tar.xz" -checksum=4c27add40650c326f820bd013045b9b813b1cc4efb00fcf187bbc8bbc854f2ec +checksum=b4b59897426f941a2681aaf0b41b932c1da0e00efd9e7df8b919c730404cfd39 if [ "$CROSS_BUILD" ]; then hostmakedepends+=" qt5-devel kdoctools" From e17b6f51d05bb5c53761e6fdd7ef65297d51d172 Mon Sep 17 00:00:00 2001 From: John Date: Thu, 29 Jul 2021 20:24:16 +0200 Subject: [PATCH 061/824] khotkeys: update to 5.22.4. --- srcpkgs/khotkeys/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/khotkeys/template b/srcpkgs/khotkeys/template index af4d8153d24a..6615183f1d95 100644 --- a/srcpkgs/khotkeys/template +++ b/srcpkgs/khotkeys/template @@ -1,6 +1,6 @@ # Template file for 'khotkeys' pkgname=khotkeys -version=5.22.3 +version=5.22.4 revision=1 build_style=cmake configure_args="-DBUILD_TESTING=OFF" @@ -12,7 +12,7 @@ maintainer="John " license="GPL-2.0-only, LGPL-2.0-or-later" homepage="https://invent.kde.org/plasma/khotkeys" distfiles="${KDE_SITE}/plasma/${version}/${pkgname}-${version}.tar.xz" -checksum=854edb9feca05ac891e13a6cbfadd9eecede38e0121fb767b44b732bc0b4e000 +checksum=e8e191cbfc5b9b59e428aa3d08e2f8482b6d4b7e4dd26f37b4a7fa9b57eea1d2 if [ "$CROSS_BUILD" ]; then configure_args+=" -DDESKTOPTOJSON_EXECUTABLE=/usr/bin/desktoptojson" From 3e67029160dfb48ed668c2e1601783bf89816da0 Mon Sep 17 00:00:00 2001 From: John Date: Thu, 29 Jul 2021 20:24:18 +0200 Subject: [PATCH 062/824] kinfocenter: update to 5.22.4. --- srcpkgs/kinfocenter/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/kinfocenter/template b/srcpkgs/kinfocenter/template index 4321316b2dc5..076a0a3c97eb 100644 --- a/srcpkgs/kinfocenter/template +++ b/srcpkgs/kinfocenter/template @@ -1,6 +1,6 @@ # Template file for 'kinfocenter' pkgname=kinfocenter -version=5.22.3 +version=5.22.4 revision=1 build_style=cmake configure_args="-DBUILD_TESTING=OFF" @@ -14,7 +14,7 @@ maintainer="John " license="GPL-2.0-or-later, LGPL-2.1-or-later, GFDL-1.2-only" homepage="https://invent.kde.org/plasma/kinfocenter" distfiles="${KDE_SITE}/plasma/${version}/${pkgname}-${version}.tar.xz" -checksum=6b3009206f0a44c4f93bfa89c1ad6a5ef8387de8d06e3e7e29adb59458846be2 +checksum=7cff6a49506f9dce828c486be0a473893533d37b0e801b5d580e763764f96e93 if [ "$CROSS_BUILD" ]; then hostmakedepends+=" kpackage-devel kconfig-devel kcoreaddons-devel kdoctools-devel" From 32235fde4742bf035d801c9746f69e0209552901 Mon Sep 17 00:00:00 2001 From: John Date: Thu, 29 Jul 2021 20:24:19 +0200 Subject: [PATCH 063/824] kmenuedit: update to 5.22.4. --- srcpkgs/kmenuedit/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/kmenuedit/template b/srcpkgs/kmenuedit/template index f5b19b2f56e9..a5cb94248ad0 100644 --- a/srcpkgs/kmenuedit/template +++ b/srcpkgs/kmenuedit/template @@ -1,6 +1,6 @@ # Template file for 'kmenuedit' pkgname=kmenuedit -version=5.22.3 +version=5.22.4 revision=1 build_style=cmake configure_args="-DBUILD_TESTING=OFF" @@ -13,4 +13,4 @@ maintainer="John " license="GPL-2.0-or-later" homepage="https://invent.kde.org/plasma/kmenuedit" distfiles="${KDE_SITE}/plasma/${version}/${pkgname}-${version}.tar.xz" -checksum=bd8330bdf10e453ed13ee5c055ec496b0c6b090113a68fd5a97ef4bf2be8bbd1 +checksum=0b243bc8bb2cba4eebff55e7a01be5c7790da1fafd88d17bad808e5ffc44d2a0 From 79997e03280ecf8d42125336f8a84daf9dc5f43a Mon Sep 17 00:00:00 2001 From: John Date: Thu, 29 Jul 2021 20:24:21 +0200 Subject: [PATCH 064/824] kscreen: update to 5.22.4. --- srcpkgs/kscreen/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/kscreen/template b/srcpkgs/kscreen/template index f202558398ca..0de26ae4a40d 100644 --- a/srcpkgs/kscreen/template +++ b/srcpkgs/kscreen/template @@ -1,6 +1,6 @@ # Template file for 'kscreen' pkgname=kscreen -version=5.22.3 +version=5.22.4 revision=1 build_style=cmake configure_args="-DBUILD_TESTING=OFF" @@ -14,7 +14,7 @@ maintainer="John " license="GPL-2.0-or-later, LGPL-2.1-or-later" homepage="https://invent.kde.org/plasma/kscreen" distfiles="${KDE_SITE}/plasma/${version}/${pkgname}-${version}.tar.xz" -checksum=56be75468c690b52b8ce01ee77b0d475c60c07460f2b17bc1b58439b072d5125 +checksum=27f8d52b52c3cee0b9def5bf2fc85916e29495b4b1e1d14dfd99f452ae3a7642 if [ "$CROSS_BUILD" ]; then hostmakedepends+=" kpackage-devel kconfig-devel kcoreaddons-devel plasma-framework" From f6294bce6eb9994211ce9e182650009f9aa11342 Mon Sep 17 00:00:00 2001 From: John Date: Thu, 29 Jul 2021 20:24:22 +0200 Subject: [PATCH 065/824] kscreenlocker: update to 5.22.4. --- srcpkgs/kscreenlocker/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/kscreenlocker/template b/srcpkgs/kscreenlocker/template index f09268c68706..9636fbaeeb61 100644 --- a/srcpkgs/kscreenlocker/template +++ b/srcpkgs/kscreenlocker/template @@ -1,6 +1,6 @@ # Template file for 'kscreenlocker' pkgname=kscreenlocker -version=5.22.3 +version=5.22.4 revision=1 build_style=cmake configure_args="-DBUILD_TESTING=OFF" @@ -14,7 +14,7 @@ maintainer="John " license="GPL-2.0-or-later" homepage="https://invent.kde.org/plasma/kscreenlocker" distfiles="${KDE_SITE}/plasma/${version}/${pkgname}-${version}.tar.xz" -checksum=d71992dbd57a1c7f3051a5b98898d791e9ae2db128b63843332d9e68f75d3285 +checksum=328570e8f08fc2a92fb4ce67e57e53ecf4cc6b28a0507ba031e340748632ec44 if [ "$CROSS_BUILD" ]; then hostmakedepends+=" wayland-devel" From 18e1026487399c3a7a2ce79ebd323fa7e9dff88a Mon Sep 17 00:00:00 2001 From: John Date: Thu, 29 Jul 2021 20:24:24 +0200 Subject: [PATCH 066/824] ksshaskpass: update to 5.22.4. --- srcpkgs/ksshaskpass/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/ksshaskpass/template b/srcpkgs/ksshaskpass/template index db7e67d19c05..a8904623a597 100644 --- a/srcpkgs/ksshaskpass/template +++ b/srcpkgs/ksshaskpass/template @@ -1,6 +1,6 @@ # Template file for 'ksshaskpass' pkgname=ksshaskpass -version=5.22.3 +version=5.22.4 revision=1 build_style=cmake configure_args="-DBUILD_TESTING=OFF" @@ -12,5 +12,5 @@ maintainer="John " license="GPL-2.0-or-later" homepage="https://invent.kde.org/plasma/ksshaskpass" distfiles="${KDE_SITE}/plasma/${version}/${pkgname}-${version}.tar.xz" -checksum=d935bccdd20c18eefee7ce4f25d0c56a3ffe491839c58f79f5d7fb81e4f8f6ed +checksum=cea4f3e8fd496cc92701b562e1dedcf1a8b174cdc71d4106f2322cdcc3cfc205 alternatives="ssh-askpass:/usr/libexec/ssh-askpass:/usr/bin/ksshaskpass" From 6fc37d84520d82cfe038da0104f5bf686f0dd5cc Mon Sep 17 00:00:00 2001 From: John Date: Thu, 29 Jul 2021 20:24:25 +0200 Subject: [PATCH 067/824] ksystemstats: update to 5.22.4. --- srcpkgs/ksystemstats/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/ksystemstats/template b/srcpkgs/ksystemstats/template index 805e94c6e2d1..9ac886b6ffd3 100644 --- a/srcpkgs/ksystemstats/template +++ b/srcpkgs/ksystemstats/template @@ -1,6 +1,6 @@ # Template file for 'ksystemstats' pkgname=ksystemstats -version=5.22.3 +version=5.22.4 revision=1 build_style=cmake hostmakedepends="extra-cmake-modules qt5-qmake gettext @@ -12,4 +12,4 @@ maintainer="John " license="GPL-2.0-only OR GPL-3.0-only, LGPL-2.1-only OR LGPL-3-only" homepage="https://invent.kde.org/plasma/ksystemstats" distfiles="${KDE_SITE}/plasma/${version}/${pkgname}-${version}.tar.xz" -checksum=6adaec9e1d54fce3d990a67b6460edb1f36b5a4c3633a3b8b5fdd68c2ca3295c +checksum=6fefe801205558d823d09877ad561eb8c9685d2da3d4b4349b0b9f0d121a5fb5 From 5063d1ccd837452ece28451f0576a3e1f5732dd6 Mon Sep 17 00:00:00 2001 From: John Date: Thu, 29 Jul 2021 20:24:27 +0200 Subject: [PATCH 068/824] kwallet-pam: update to 5.22.4. --- srcpkgs/kwallet-pam/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/kwallet-pam/template b/srcpkgs/kwallet-pam/template index a05672a75a86..0cb96dd25730 100644 --- a/srcpkgs/kwallet-pam/template +++ b/srcpkgs/kwallet-pam/template @@ -1,6 +1,6 @@ # Template file for 'kwallet-pam' pkgname=kwallet-pam -version=5.22.3 +version=5.22.4 revision=1 build_style=cmake hostmakedepends="qt5-qmake qt5-host-tools extra-cmake-modules" @@ -11,4 +11,4 @@ maintainer="John " license="LGPL-2.1-or-later" homepage="https://invent.kde.org/plasma/kwallet-pam" distfiles="${KDE_SITE}/plasma/${version}/${pkgname}-${version}.tar.xz" -checksum=af217af41ea10eb65e9ed171d84328b04f4e3ab6a791b69af61064fc72e14d74 +checksum=984b805808640771795524a7e1a3862edc0f05925d3d19a37643efb9e5cb59d2 From 4420f4e96772b059ca1c048c75a707ecb999faa2 Mon Sep 17 00:00:00 2001 From: John Date: Thu, 29 Jul 2021 20:24:28 +0200 Subject: [PATCH 069/824] kwayland-integration: update to 5.22.4. --- srcpkgs/kwayland-integration/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/kwayland-integration/template b/srcpkgs/kwayland-integration/template index 6e6ba14d63dd..98ebb198a89d 100644 --- a/srcpkgs/kwayland-integration/template +++ b/srcpkgs/kwayland-integration/template @@ -1,6 +1,6 @@ # Template file for 'kwayland-integration' pkgname=kwayland-integration -version=5.22.3 +version=5.22.4 revision=1 build_style=cmake configure_args="-DBUILD_TESTING=OFF" @@ -11,4 +11,4 @@ maintainer="John " license="LGPL-2.1-or-later" homepage="https://invent.kde.org/plasma/kwayland-integration" distfiles="${KDE_SITE}/plasma/${version}/${pkgname}-${version}.tar.xz" -checksum=3f5a3069026d4e71fd4c7ac47265862cc61550e8a72380e529343079c942ca24 +checksum=cb068ad16d5275e4875c8d53230e7974003733e7fc2db944522922bac700d49e From 4b5d44cc010f11f556c0d2f986e13840f8e58d92 Mon Sep 17 00:00:00 2001 From: John Date: Thu, 29 Jul 2021 20:24:29 +0200 Subject: [PATCH 070/824] kwayland-server: update to 5.22.4. --- srcpkgs/kwayland-server/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/kwayland-server/template b/srcpkgs/kwayland-server/template index 340e2d82c6da..9f8a624a91f2 100644 --- a/srcpkgs/kwayland-server/template +++ b/srcpkgs/kwayland-server/template @@ -1,6 +1,6 @@ # Template file for 'kwayland-server' pkgname=kwayland-server -version=5.22.3 +version=5.22.4 revision=1 build_style=cmake build_helper="qemu" @@ -13,7 +13,7 @@ maintainer="John " license="GPL-3.0-or-later" homepage="https://invent.kde.org/plasma/kwayland-server" distfiles="${KDE_SITE}/plasma/${version}/${pkgname}-${version}.tar.xz" -checksum=d6b04984a3a1940d448b1cf78bbb895889718a7ed86222f14fb2b424a465bd30 +checksum=da167417221610d521fefbe4ae1322aa20e7d6ac782cadcb61972f915589767c kwayland-server-devel_package() { depends="${sourcepkg}>=${version}_${revision}" From 873c60b97358cc9c08bbdf7e8362b80ad29a3db1 Mon Sep 17 00:00:00 2001 From: John Date: Thu, 29 Jul 2021 20:24:32 +0200 Subject: [PATCH 071/824] kwin: update to 5.22.4. --- srcpkgs/kwin/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/kwin/template b/srcpkgs/kwin/template index 25696bec47df..860a20f4e894 100644 --- a/srcpkgs/kwin/template +++ b/srcpkgs/kwin/template @@ -1,6 +1,6 @@ # Template file for 'kwin' pkgname=kwin -version=5.22.3 +version=5.22.4 revision=1 build_style=cmake configure_args="-DBUILD_TESTING=OFF @@ -18,7 +18,7 @@ maintainer="John " license="GPL-2.0-or-later" homepage="https://invent.kde.org/plasma/kwin" distfiles="${KDE_SITE}/plasma/${version}/${pkgname}-${version}.tar.xz" -checksum=bc995b6c74ebfad98819cb595f2622ecae24e5a23964e9e646da5418ee016d0e +checksum=b02a1c4c1f85d11f1206d364ffdcf242ba658046cb80751f0d769e15151aa3f4 build_options="pipewire" build_options_default="pipewire" From 9730118279df11c3ad8b96453db3aa6c302ce905 Mon Sep 17 00:00:00 2001 From: John Date: Thu, 29 Jul 2021 20:24:33 +0200 Subject: [PATCH 072/824] kwrited: update to 5.22.4. --- srcpkgs/kwrited/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/kwrited/template b/srcpkgs/kwrited/template index 2cce32e3793e..9f68371bd25c 100644 --- a/srcpkgs/kwrited/template +++ b/srcpkgs/kwrited/template @@ -1,6 +1,6 @@ # Template file for 'kwrited' pkgname=kwrited -version=5.22.3 +version=5.22.4 revision=1 build_style=cmake configure_args="-DBUILD_TESTING=OFF" @@ -11,4 +11,4 @@ maintainer="John " license="GPL-2.0-or-later" homepage="https://invent.kde.org/plasma/kwrited" distfiles="${KDE_SITE}/plasma/${version}/${pkgname}-${version}.tar.xz" -checksum=56daefff0fe0bdff3801393904be93325d63a9291acbcf0d571b8e4884ac7018 +checksum=9158fb7dc963e01c356cf5572910d72e2914a749e3dd46956898a35d1c5e73e5 From 55f428cce7515cc770eea2afbd4eb38ab16f5b24 Mon Sep 17 00:00:00 2001 From: John Date: Thu, 29 Jul 2021 20:24:34 +0200 Subject: [PATCH 073/824] layer-shell-qt: update to 5.22.4. --- srcpkgs/layer-shell-qt/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/layer-shell-qt/template b/srcpkgs/layer-shell-qt/template index c862b593e21c..76afd6ef29f4 100644 --- a/srcpkgs/layer-shell-qt/template +++ b/srcpkgs/layer-shell-qt/template @@ -1,6 +1,6 @@ # Template file for 'layer-shell-qt' pkgname=layer-shell-qt -version=5.22.3 +version=5.22.4 revision=1 build_style=cmake confiugre_args="-DWaylandScanner_EXECUTABLE=/usr/bin/wayland-scanner" @@ -13,7 +13,7 @@ maintainer="John " license="GPL-3.0-or-later" homepage="https://invent.kde.org/plasma/layer-shell-qt" distfiles="${KDE_SITE}/plasma/${version}/${pkgname}-${version}.tar.xz" -checksum=d85ec7f7aa8a90fe454a4087cfebf17d1827ecf8871abd814f2e05621086ce4a +checksum=1528e64b441f2c67c71f87785485644376391489fdef9a9de0c0034517993886 layer-shell-qt-devel_package() { depends="${sourcepkg}>=${version}_${revision}" From 84946bf3d38186226c8b81344d95766f85ba6524 Mon Sep 17 00:00:00 2001 From: John Date: Thu, 29 Jul 2021 20:24:36 +0200 Subject: [PATCH 074/824] libkscreen: update to 5.22.4. --- srcpkgs/libkscreen/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/libkscreen/template b/srcpkgs/libkscreen/template index c230b0a355d2..7f2793c1273e 100644 --- a/srcpkgs/libkscreen/template +++ b/srcpkgs/libkscreen/template @@ -1,6 +1,6 @@ # Template file for 'libkscreen' pkgname=libkscreen -version=5.22.3 +version=5.22.4 revision=1 build_style=cmake configure_args="-DBUILD_TESTING=OFF" @@ -11,7 +11,7 @@ maintainer="John " license="LGPL-2.1-or-later" homepage="https://invent.kde.org/plasma/libkscreen" distfiles="${KDE_SITE}/plasma/${version}/${pkgname}-${version}.tar.xz" -checksum=01d03c3ab827a67e2bea55778e6e4e9d61639bf04208061219066a44d7ef10f2 +checksum=a211b9b900ced93f506936bfb1e28ec19aa52ebec4cb08e8a15e382114fc557c libkscreen-devel_package() { short_desc+=" - development" From 5085c2ec9257a08225b717d1e269ab37869da23b Mon Sep 17 00:00:00 2001 From: John Date: Thu, 29 Jul 2021 20:24:37 +0200 Subject: [PATCH 075/824] libksysguard: update to 5.22.4. --- srcpkgs/libksysguard/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/libksysguard/template b/srcpkgs/libksysguard/template index e9c424286e90..1c825b988d51 100644 --- a/srcpkgs/libksysguard/template +++ b/srcpkgs/libksysguard/template @@ -1,6 +1,6 @@ # Template file for 'libksysguard' pkgname=libksysguard -version=5.22.3 +version=5.22.4 revision=1 build_style=cmake hostmakedepends="extra-cmake-modules gettext kauth qt5-host-tools qt5-qmake" @@ -12,7 +12,7 @@ maintainer="John " license="LGPL-2.1-or-later" homepage="https://invent.kde.org/plasma/libksysguard" distfiles="${KDE_SITE}/plasma/${version}/${pkgname}-${version}.tar.xz" -checksum=50b6f881483f3c66843a8506f66cd5bec190b7b980cf9d2ed84c774edea8596a +checksum=80b1fb5ba0a2482700d46ecfb3e915380c120c09edc276333fee997ff4330692 build_options="webengine" From 71de4a03f8957eac88eba1c4ae5a951c6d14dca1 Mon Sep 17 00:00:00 2001 From: John Date: Thu, 29 Jul 2021 20:24:39 +0200 Subject: [PATCH 076/824] milou: update to 5.22.4. --- srcpkgs/milou/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/milou/template b/srcpkgs/milou/template index 2b7dd627c36f..305cc7cccd9e 100644 --- a/srcpkgs/milou/template +++ b/srcpkgs/milou/template @@ -1,6 +1,6 @@ # Template file for 'milou' pkgname=milou -version=5.22.3 +version=5.22.4 revision=1 build_style=cmake configure_args="-DBUILD_TESTING=OFF" @@ -12,7 +12,7 @@ maintainer="John " license="GPL-2.0-or-later, LPGL-2.1-or-later" homepage="https://invent.kde.org/plasma/milou" distfiles="${KDE_SITE}/plasma/${version}/${pkgname}-${version}.tar.xz" -checksum=3901b6e320c5f0618b112d27ec6e31854aeb80d9fd94ef37e826e461ad3e9e61 +checksum=7aa04f355c7a9ac6ee089a17aa34d0607b230c9b09a3e99a57317f3fe44aca85 if [ "$CROSS_BUILD" ]; then hostmakedepends+=" kpackage-devel kconfig-devel kcoreaddons-devel plasma-framework" From 3dcb3abae554c9a06305c53bc35c5385856e3e5c Mon Sep 17 00:00:00 2001 From: John Date: Thu, 29 Jul 2021 20:24:41 +0200 Subject: [PATCH 077/824] oxygen: update to 5.22.4. --- srcpkgs/oxygen/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/oxygen/template b/srcpkgs/oxygen/template index 1b36efc1f38a..5e101a4a4e4f 100644 --- a/srcpkgs/oxygen/template +++ b/srcpkgs/oxygen/template @@ -1,6 +1,6 @@ # Template file for 'oxygen' pkgname=oxygen -version=5.22.3 +version=5.22.4 revision=1 build_style=cmake configure_args="-DBUILD_TESTING=OFF" @@ -13,4 +13,4 @@ maintainer="John " license="LGPL-2.1-or-later, GPL-2.0-or-later" homepage="https://invent.kde.org/plasma/oxygen" distfiles="${KDE_SITE}/plasma/${version}/${pkgname}-${version}.tar.xz" -checksum=a51ec2a3f51a27885f707aa087a7165a2aef3ac284353eafeaaeccef6211e4ba +checksum=fcdf1aafde0748e81b82410fbc4ddb01f15f7a57ec17ef17e05d80e8339db0dc From 825dc137b137b77093966e2cbd14c5073dd73cb3 Mon Sep 17 00:00:00 2001 From: John Date: Thu, 29 Jul 2021 20:24:42 +0200 Subject: [PATCH 078/824] plasma-browser-integration: update to 5.22.4. --- srcpkgs/plasma-browser-integration/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/plasma-browser-integration/template b/srcpkgs/plasma-browser-integration/template index b482e38a0c71..89163820425e 100644 --- a/srcpkgs/plasma-browser-integration/template +++ b/srcpkgs/plasma-browser-integration/template @@ -1,6 +1,6 @@ # Template file for 'plasma-browser-integration' pkgname=plasma-browser-integration -version=5.22.3 +version=5.22.4 revision=1 build_style=cmake configure_args="-DBUILD_TESTING=OFF" @@ -13,7 +13,7 @@ maintainer="1is7ac3 " license="GPL-3.0-or-later" homepage="https://invent.kde.org/plasma/plasma-browser-integration" distfiles="${KDE_SITE}/plasma/${version}/${pkgname}-${version}.tar.xz" -checksum=baf3839e5f40395761e515e1837ba5bc685bf62b794767a821e9a9db99ffb79a +checksum=0b22ec790f9a5ab1afad4ba1828fdaa57729d33e838c0e215d12a877ce5d7808 if [ "${CROSS_BUILD}" ]; then configure_args+=" -DDESKTOPTOJSON_EXECUTABLE=/usr/bin/desktoptojson" From ee40aaeb90ea53724c7294666882c40e99722dbd Mon Sep 17 00:00:00 2001 From: John Date: Thu, 29 Jul 2021 20:24:46 +0200 Subject: [PATCH 079/824] plasma-desktop: update to 5.22.4. --- srcpkgs/plasma-desktop/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/plasma-desktop/template b/srcpkgs/plasma-desktop/template index e0f2a9eb0bd8..cb1f29dc714d 100644 --- a/srcpkgs/plasma-desktop/template +++ b/srcpkgs/plasma-desktop/template @@ -1,6 +1,6 @@ # Template file for 'plasma-desktop' pkgname=plasma-desktop -version=5.22.3 +version=5.22.4 revision=1 build_style=cmake configure_args="-DBUILD_TESTING=OFF @@ -18,6 +18,6 @@ maintainer="John " license="GPL-2.0-or-later, LGPL-2.0-or-later, LGPL-2.1-or-later, GFDL-1.2" homepage="https://invent.kde.org/plasma/plasma-desktop" distfiles="${KDE_SITE}/plasma/${version}/${pkgname}-${version}.tar.xz" -checksum=bd5b838572517859e7fda51f39ed599799e3b758b3edddc3865dd6b63a37d610 +checksum=728e9f8ec670f4f0370c9cc86ede317c682f95f3655bddcf8bb06a38192d4230 replaces="user-manager>=0" python_version=3 From 17e9e849ea0e6d943d92397aeb10d3a896950175 Mon Sep 17 00:00:00 2001 From: John Date: Thu, 29 Jul 2021 20:24:47 +0200 Subject: [PATCH 080/824] plasma-disks: update to 5.22.4. --- srcpkgs/plasma-disks/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/plasma-disks/template b/srcpkgs/plasma-disks/template index 1b099314dd10..2070048c11e1 100644 --- a/srcpkgs/plasma-disks/template +++ b/srcpkgs/plasma-disks/template @@ -1,6 +1,6 @@ # Template file for 'plasma-disks' pkgname=plasma-disks -version=5.22.3 +version=5.22.4 revision=1 build_style=cmake configure_args="-DBUILD_TESTING=OFF" @@ -13,4 +13,4 @@ maintainer="John " license="GPL-2.0-or-later" homepage="https://invent.kde.org/plasma/plasma-disks" distfiles="${KDE_SITE}/plasma/${version}/${pkgname}-${version}.tar.xz" -checksum=14106642d667a6b10e02587279ffd937a2e74b4fec89156d95831c31daab66a8 +checksum=57f915c51e07741d7084fe729a337da4a465a58deefbefd297d0e1a9cca87909 From 521bfe3f92aea3574ca1e0b1a0ffc0c87447dd00 Mon Sep 17 00:00:00 2001 From: John Date: Thu, 29 Jul 2021 20:24:49 +0200 Subject: [PATCH 081/824] plasma-firewall: update to 5.22.4. --- srcpkgs/plasma-firewall/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/plasma-firewall/template b/srcpkgs/plasma-firewall/template index 4a976e299038..d86aa3f5e567 100644 --- a/srcpkgs/plasma-firewall/template +++ b/srcpkgs/plasma-firewall/template @@ -1,6 +1,6 @@ # Template file for 'plasma-firewall' pkgname=plasma-firewall -version=5.22.3 +version=5.22.4 revision=1 build_style=cmake hostmakedepends="qt5-qmake qt5-host-tools kcmutils kauth kcoreaddons gettext" @@ -10,4 +10,4 @@ maintainer="John " license="GPL-2.0-only OR GPL-3.0-only" homepage="https://invent.kde.org/network/plasma-firewall" distfiles="${KDE_SITE}/plasma/${version}/${pkgname}-${version}.tar.xz" -checksum=0d44b4acef8dd88b9be131b215b7a385b71884022f94b9c61c293c8357056024 +checksum=21dd972abbca56ae7760acbe39b50d5e39d2057e987a8dcdd2a4c142dafd35b0 From d8dfb12795b9285894034050838d4a72a3ace9ba Mon Sep 17 00:00:00 2001 From: John Date: Thu, 29 Jul 2021 20:24:50 +0200 Subject: [PATCH 082/824] plasma-integration: update to 5.22.4. --- srcpkgs/plasma-integration/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/plasma-integration/template b/srcpkgs/plasma-integration/template index 6d6ba8a6771b..63144055607a 100644 --- a/srcpkgs/plasma-integration/template +++ b/srcpkgs/plasma-integration/template @@ -1,6 +1,6 @@ # Template file for 'plasma-integration' pkgname=plasma-integration -version=5.22.3 +version=5.22.4 revision=1 build_style=cmake configure_args="-DBUILD_TESTING=OFF" @@ -14,4 +14,4 @@ maintainer="John " license="LGPL-2.0-or-later" homepage="https://invent.kde.org/plasma/plasma-integration" distfiles="${KDE_SITE}/plasma/${version}/${pkgname}-${version}.tar.xz" -checksum=18f254cd1de0f7f21aae364f93bdef5e195f3595eb616bd63fe10efb41e0ba0b +checksum=e08b0c8030ef465d44de4f460d71970f15c7697c7d3095afa9d07b2d41a45467 From 0f0aaa92d4b504cde54e6fd1bfe958af1effc927 Mon Sep 17 00:00:00 2001 From: John Date: Thu, 29 Jul 2021 20:24:52 +0200 Subject: [PATCH 083/824] plasma-nm: update to 5.22.4. --- srcpkgs/plasma-nm/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/plasma-nm/template b/srcpkgs/plasma-nm/template index f09a1d9842d6..a039cddfd026 100644 --- a/srcpkgs/plasma-nm/template +++ b/srcpkgs/plasma-nm/template @@ -1,6 +1,6 @@ # Template file for 'plasma-nm' pkgname=plasma-nm -version=5.22.3 +version=5.22.4 revision=1 build_style=cmake configure_args="-DBUILD_TESTING=OFF" @@ -15,7 +15,7 @@ maintainer="John " license="LGPL-2.1-or-later" homepage="https://invent.kde.org/plasma/plasma-nm" distfiles="${KDE_SITE}/plasma/${version}/${pkgname}-${version}.tar.xz" -checksum=3d66e0fd5e8747890c9e3dabde790b962686b3f88be305aec42d0aa38a24b8c6 +checksum=c8043d33023aae1087a8d35800575ee9df710f35ec996fb9fc7ecc8f35576eb3 if [ "$CROSS_BUILD" ]; then hostmakedepends+=" kpackage-devel kconfig-devel kcoreaddons-devel plasma-framework" From 5b7986e96346b51e8d4174a9dfc70257e3d0a6ec Mon Sep 17 00:00:00 2001 From: John Date: Thu, 29 Jul 2021 20:24:53 +0200 Subject: [PATCH 084/824] plasma-pa: update to 5.22.4. --- srcpkgs/plasma-pa/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/plasma-pa/template b/srcpkgs/plasma-pa/template index d3f6d65fb009..4617693b8cdb 100644 --- a/srcpkgs/plasma-pa/template +++ b/srcpkgs/plasma-pa/template @@ -1,6 +1,6 @@ # Template file for 'plasma-pa' pkgname=plasma-pa -version=5.22.3 +version=5.22.4 revision=1 build_style=cmake configure_args="-DBUILD_TESTING=OFF" @@ -13,7 +13,7 @@ maintainer="John " license="LGPL-2.1-or-later" homepage="https://invent.kde.org/plasma/plasma-pa" distfiles="${KDE_SITE}/plasma/${version}/${pkgname}-${version}.tar.xz" -checksum=0ad82a275abfb7fe2519e5d3591064db4e62c725a24089a7a21e15eb70428aa0 +checksum=8a5b5b212c0f08e2c5e9f0ee7f5d62b0adf6008b69d337cede3ca18b800700dc if [ "$CROSS_BUILD" ]; then hostmakedepends+=" kpackage-devel kconfig-devel kcoreaddons-devel" From 700491832bd8de34062a175405b5ffef4f65220f Mon Sep 17 00:00:00 2001 From: John Date: Thu, 29 Jul 2021 20:24:55 +0200 Subject: [PATCH 085/824] plasma-sdk: update to 5.22.4. --- srcpkgs/plasma-sdk/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/plasma-sdk/template b/srcpkgs/plasma-sdk/template index 9293ebff9373..af714465c0b8 100644 --- a/srcpkgs/plasma-sdk/template +++ b/srcpkgs/plasma-sdk/template @@ -1,6 +1,6 @@ # Template file for 'plasma-sdk' pkgname=plasma-sdk -version=5.22.3 +version=5.22.4 revision=1 build_style=cmake configure_args="-DBUILD_TESTING=OFF" @@ -13,7 +13,7 @@ maintainer="John " license="GPL-2.0-or-later, LGPL-2.1-or-later" homepage="https://invent.kde.org/plasma/plasma-sdk" distfiles="${KDE_SITE}/plasma/${version}/${pkgname}-${version}.tar.xz" -checksum=d26ad80dcb1ec504327339ccdb550600589461bafe9517b050538ac54b8dc742 +checksum=0e5accaaf28de37240c95597d432d2ca941ee5f379eb0553c9bc08e7d61f305b if [ "$CROSS_BUILD" ]; then hostmakedepends+=" kpackage-devel kconfig-devel kcoreaddons-devel plasma-framework" From 13fd1f8b3ab81f3a914635556bd5d57fe08d0c9f Mon Sep 17 00:00:00 2001 From: John Date: Thu, 29 Jul 2021 20:24:56 +0200 Subject: [PATCH 086/824] plasma-systemmonitor: update to 5.22.4. --- srcpkgs/plasma-systemmonitor/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/plasma-systemmonitor/template b/srcpkgs/plasma-systemmonitor/template index 3c6eed9d92d3..0d7c9db2b951 100644 --- a/srcpkgs/plasma-systemmonitor/template +++ b/srcpkgs/plasma-systemmonitor/template @@ -1,6 +1,6 @@ # Template file for 'plasma-systemmonitor' pkgname=plasma-systemmonitor -version=5.22.3 +version=5.22.4 revision=1 build_style=cmake hostmakedepends="extra-cmake-modules gettext qt5-host-tools qt5-qmake @@ -12,4 +12,4 @@ maintainer="John " license="GPL-2.0-only OR GPL-3.0-only, LGPL-2.1-only OR LGPL-3.0-only" homepage="https://invent.kde.org/plasma/plasma-systemmonitor" distfiles="${KDE_SITE}/plasma/${version}/${pkgname}-${version}.tar.xz" -checksum=c9984f0e88a39590ca464e3f3806a3be03c52217a2d045fa72b200b25991e4d3 +checksum=8b0d43e91d8ba368fed96d63b34aee7f401a9c0cc47533b363bca365a69c86be From 6963498c213b686efecea6ff90f5bf17994a7acf Mon Sep 17 00:00:00 2001 From: John Date: Thu, 29 Jul 2021 20:24:58 +0200 Subject: [PATCH 087/824] plasma-thunderbolt: update to 5.22.4. --- srcpkgs/plasma-thunderbolt/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/plasma-thunderbolt/template b/srcpkgs/plasma-thunderbolt/template index e377165f57f4..ad765127a0b0 100644 --- a/srcpkgs/plasma-thunderbolt/template +++ b/srcpkgs/plasma-thunderbolt/template @@ -1,6 +1,6 @@ # Template file for 'plasma-thunderbolt' pkgname=plasma-thunderbolt -version=5.22.3 +version=5.22.4 revision=1 build_style=cmake hostmakedepends="extra-cmake-modules kcoreaddons kcmutils @@ -12,7 +12,7 @@ maintainer="John " license="GPL-3.0-or-later" homepage="https://invent.kde.org/plasma/plasma-thunderbolt" distfiles="${KDE_SITE}/plasma/${version}/${pkgname}-${version}.tar.xz" -checksum=3fdf30c05bb383e8b5096e2d1c30ced07df9580549bd95d3dbff31f589b3bbb8 +checksum=e974f54db5fe13731aa8c68976e8eb59ec0ba53ce0d4e1633fd3c152d586b1b0 do_check() { : # Requires running dbus and bolt services From 75173d470aff372c2a12b990fcfa08d7358e7720 Mon Sep 17 00:00:00 2001 From: John Date: Thu, 29 Jul 2021 20:24:59 +0200 Subject: [PATCH 088/824] plasma-vault: update to 5.22.4. --- srcpkgs/plasma-vault/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/plasma-vault/template b/srcpkgs/plasma-vault/template index b1c90df102bb..af2b590df791 100644 --- a/srcpkgs/plasma-vault/template +++ b/srcpkgs/plasma-vault/template @@ -1,6 +1,6 @@ # Template file for 'plasma-vault' pkgname=plasma-vault -version=5.22.3 +version=5.22.4 revision=1 build_style=cmake hostmakedepends="extra-cmake-modules kcoreaddons qt5-qmake qt5-host-tools @@ -11,7 +11,7 @@ maintainer="Giuseppe Fierro " license="GPL-2.0-or-later, LGPL-2.0-or-later, LGPL-2.1-or-later" homepage="https://github.com/KDE/plasma-vault" distfiles="${KDE_SITE}/plasma/${version}/${pkgname}-${version}.tar.xz" -checksum=d31adbc94dd0a313c48486611ac25c0796506a4e6273b874936e99af575d6d8f +checksum=6938ca9a0a17cbd4a903b967b7c06be765d22bae3e8bcebf35a367a415a2cbdc if [ "$CROSS_BUILD" ]; then hostmakedepends+=" kpackage-devel kconfig-devel kcoreaddons-devel plasma-framework" From 1b19a5acce520117cdc1efa3a75860e7fe3e40fe Mon Sep 17 00:00:00 2001 From: John Date: Thu, 29 Jul 2021 20:25:08 +0200 Subject: [PATCH 089/824] plasma-workspace-wallpapers: update to 5.22.4. --- srcpkgs/plasma-workspace-wallpapers/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/plasma-workspace-wallpapers/template b/srcpkgs/plasma-workspace-wallpapers/template index 3c9d3370994b..527ffb7856d8 100644 --- a/srcpkgs/plasma-workspace-wallpapers/template +++ b/srcpkgs/plasma-workspace-wallpapers/template @@ -1,6 +1,6 @@ # Template file for 'plasma-workspace-wallpapers' pkgname=plasma-workspace-wallpapers -version=5.22.3 +version=5.22.4 revision=1 build_style=cmake configure_args="-DBUILD_TESTING=OFF" @@ -10,4 +10,4 @@ maintainer="John " license="GPL-2.0-or-later" homepage="https://invent.kde.org/plasma/plasma-workspace-wallpapers" distfiles="${KDE_SITE}/plasma/${version}/${pkgname}-${version}.tar.xz" -checksum=e3e2ee7bc6cf46c8976644c15a7fc5bb96354c07840fca8a2da3fc9ddd375e75 +checksum=d9da4dfea96c4aa1a7a9683f887573433777354691850ada62ed54c4221e7f29 From 62e4fe155ea27782c39682c8cdeac0377a343e67 Mon Sep 17 00:00:00 2001 From: John Date: Thu, 29 Jul 2021 20:25:11 +0200 Subject: [PATCH 090/824] plasma-workspace: update to 5.22.4. --- srcpkgs/plasma-workspace/template | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/srcpkgs/plasma-workspace/template b/srcpkgs/plasma-workspace/template index fa84666b06fb..9157efd47628 100644 --- a/srcpkgs/plasma-workspace/template +++ b/srcpkgs/plasma-workspace/template @@ -1,11 +1,11 @@ # Template file for 'plasma-workspace' pkgname=plasma-workspace -version=5.22.3 -revision=2 +version=5.22.4 +revision=1 build_style=cmake configure_args="-DBUILD_TESTING=OFF -DWaylandScanner_EXECUTABLE=/usr/bin/wayland-scanner - DKF5_HOST_TOOLING=/usr/lib/cmake" + -DKF5_HOST_TOOLING=/usr/lib/cmake" hostmakedepends="extra-cmake-modules iso-codes pkg-config kdoctools kcoreaddons qt5-wayland plasma-wayland-protocols gettext wayland-devel kcmutils kpackage-devel kconfig-devel kcoreaddons-devel plasma-framework" @@ -23,7 +23,7 @@ maintainer="John " license="GPL-2.0-or-later, GFDL-1.2-or-later, LGPL-2.1-or-later" homepage="https://invent.kde.org/plasma/plasma-workspace" distfiles="${KDE_SITE}/plasma/${version}/${pkgname}-${version}.tar.xz" -checksum=d95c0a1557a112aabcf502656b7554e88130dfcae0515c0014669304faa5a4d6 +checksum=af16b7151d87151a197b8fba41092f14895c0e64bfab05f562f831e18c6120ba build_options="pipewire" build_options_default="pipewire" From b9bddaf4fc50f89a4abe42162a3d75a9f4353e09 Mon Sep 17 00:00:00 2001 From: John Date: Thu, 29 Jul 2021 20:25:12 +0200 Subject: [PATCH 091/824] polkit-kde-agent: update to 5.22.4. --- srcpkgs/polkit-kde-agent/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/polkit-kde-agent/template b/srcpkgs/polkit-kde-agent/template index 1345b747a3a6..20411de08e7d 100644 --- a/srcpkgs/polkit-kde-agent/template +++ b/srcpkgs/polkit-kde-agent/template @@ -1,6 +1,6 @@ # Template file for 'polkit-kde-agent' pkgname=polkit-kde-agent -version=5.22.3 +version=5.22.4 revision=1 wrksrc="${pkgname}-1-${version}" build_style=cmake @@ -13,4 +13,4 @@ maintainer="John " license="GPL-2.0-or-later" homepage="https://commits.kde.org/polkit-kde-agent" distfiles="${KDE_SITE}/plasma/${version}/${pkgname}-1-${version}.tar.xz" -checksum=9c49d885df54a8edf931b859f677c5126b82cf4436d17d64d831d5151fce4d9a +checksum=e2836b462261351cd920a61473c5812a9d2770db20a1cbd22dca248d89cdb95f From 958ad12c4c1086f4c9261f620cbb5701fba03821 Mon Sep 17 00:00:00 2001 From: John Date: Thu, 29 Jul 2021 20:25:15 +0200 Subject: [PATCH 092/824] powerdevil: update to 5.22.4. --- srcpkgs/powerdevil/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/powerdevil/template b/srcpkgs/powerdevil/template index b15853ea561a..a3b7ffbe5279 100644 --- a/srcpkgs/powerdevil/template +++ b/srcpkgs/powerdevil/template @@ -1,6 +1,6 @@ # Template file for 'powerdevil' pkgname=powerdevil -version=5.22.3 +version=5.22.4 revision=1 build_style=cmake configure_args="-DBUILD_TESTING=OFF" @@ -13,4 +13,4 @@ maintainer="John " license="GPL-2.0-or-later" homepage="https://invent.kde.org/plasma/powerdevil" distfiles="${KDE_SITE}/plasma/${version}/${pkgname}-${version}.tar.xz" -checksum=64ed0741308c4e488e9fc049bde5a7c391ef7e8c12cdb055456f9c3b3deaffc4 +checksum=d5d01e5017306aff215e6ba3be21c940b7771a599e92445f8526406fb63e829c From 355ae4cb66d20393c952b25861521ce849dce34c Mon Sep 17 00:00:00 2001 From: John Date: Thu, 29 Jul 2021 20:25:16 +0200 Subject: [PATCH 093/824] sddm-kcm: update to 5.22.4. --- srcpkgs/sddm-kcm/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/sddm-kcm/template b/srcpkgs/sddm-kcm/template index 4220c71bc897..25dc389f8fcc 100644 --- a/srcpkgs/sddm-kcm/template +++ b/srcpkgs/sddm-kcm/template @@ -1,6 +1,6 @@ # Template file for 'sddm-kcm' pkgname=sddm-kcm -version=5.22.3 +version=5.22.4 revision=1 build_style=cmake configure_args="-DBUILD_TESTING=OFF" @@ -14,4 +14,4 @@ maintainer="John " license="GPL-2.0-or-later" homepage="https://invent.kde.org/plasma/sddm-kcm" distfiles="${KDE_SITE}/plasma/${version}/${pkgname}-${version}.tar.xz" -checksum=f705397b66dae8c3ddeb0787d9831c0c8beae6347b7c00070597de327110e4b2 +checksum=e4845375ded8d8b1279a340f8c9feed573c301cf1c2b7f9fd2b5288444c34022 From 1689a7936293ec4f122162aad2a822be190dedf8 Mon Sep 17 00:00:00 2001 From: John Date: Thu, 29 Jul 2021 20:25:17 +0200 Subject: [PATCH 094/824] systemsettings: update to 5.22.4. --- srcpkgs/systemsettings/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/systemsettings/template b/srcpkgs/systemsettings/template index 3bbaac521054..28975e3f28d1 100644 --- a/srcpkgs/systemsettings/template +++ b/srcpkgs/systemsettings/template @@ -1,6 +1,6 @@ # Template file for 'systemsettings' pkgname=systemsettings -version=5.22.3 +version=5.22.4 revision=1 build_style=cmake configure_args="-DBUILD_TESTING=OFF" @@ -14,4 +14,4 @@ maintainer="John " license="GPL-2.0-or-later, GFDL-1.2-only" homepage="https://invent.kde.org/plasma/systemsettings" distfiles="${KDE_SITE}/plasma/${version}/${pkgname}-${version}.tar.xz" -checksum=7817cbfd957221d1d638c087d60f93a93db6000cbe7240fd85885b32774ae941 +checksum=10ed28d66aa7419210013f8a71cf43acdf82155cc47f6a1c9caa41a37480e2aa From 759bf77cc98e1609c69ab8930be71ab4a8bd5cfe Mon Sep 17 00:00:00 2001 From: John Date: Thu, 29 Jul 2021 20:25:19 +0200 Subject: [PATCH 095/824] xdg-desktop-portal-kde: update to 5.22.4. --- srcpkgs/xdg-desktop-portal-kde/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/xdg-desktop-portal-kde/template b/srcpkgs/xdg-desktop-portal-kde/template index cc8ba08a4391..4e5bcc423bed 100644 --- a/srcpkgs/xdg-desktop-portal-kde/template +++ b/srcpkgs/xdg-desktop-portal-kde/template @@ -1,6 +1,6 @@ # Template file for 'xdg-desktop-portal-kde' pkgname=xdg-desktop-portal-kde -version=5.22.3 +version=5.22.4 revision=1 build_style=cmake configure_args="-DWaylandScanner_EXECUTABLE=/usr/bin/wayland-scanner" @@ -13,4 +13,4 @@ maintainer="John " license="GPL-3.0-or-later" homepage="https://phabricator.kde.org/source/xdg-desktop-portal-kde/" distfiles="${KDE_SITE}/plasma/${version}/${pkgname}-${version}.tar.xz" -checksum=b8285db377708f90e8f9471d8cc2e4d3141248099e8af8a408498c7b37b7ecbd +checksum=f5fc9eb06d63d7a4c057b2c6cb496c66e7491e5a4a4a0846a10c18be8ce1b4f6 From 578e8752ad5822e14608fd754cb628aa2f8623d5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 31 Jul 2021 17:39:09 -0400 Subject: [PATCH 096/824] python3-aioredis: update to 2.0.0. --- srcpkgs/python3-aioredis/template | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/srcpkgs/python3-aioredis/template b/srcpkgs/python3-aioredis/template index 90337771ace5..ff8b0aa36fb4 100644 --- a/srcpkgs/python3-aioredis/template +++ b/srcpkgs/python3-aioredis/template @@ -1,17 +1,19 @@ # Template file for 'python3-aioredis' pkgname=python3-aioredis -version=1.3.1 -revision=2 -wrksrc="${pkgname#*-}-${version}" +version=2.0.0 +revision=1 +wrksrc="aioredis-py-${version}" build_style=python3-module hostmakedepends="python3-setuptools" -depends="python3-async-timeout python3-hiredis" +depends="python3-async-timeout python3-typing_extensions python3-hiredis" short_desc="Asynchronous Redis client for Python" maintainer="Andrew J. Hesford " license="MIT" homepage="https://github.com/aio-libs/aioredis" distfiles="${homepage}/archive/v${version}.tar.gz" -checksum=f8feabb973e446bb1315b203469e48014e0bd15c79bb4c87036092ee2037da06 +checksum=16c351d24029deb991cf56ea9dfd8faccaeac60080149d57b5983a93145ad7cc +# checks require a locally running redis server +make_check="no" post_install() { vlicense LICENSE From 87dd6c58f9b89ed34e4dc2a90e39cc711167ff61 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 31 Jul 2021 17:39:49 -0400 Subject: [PATCH 097/824] python3-flit_core: update to 3.3.0. --- srcpkgs/python3-flit_core/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-flit_core/template b/srcpkgs/python3-flit_core/template index e2f665255b93..e13d6285244a 100644 --- a/srcpkgs/python3-flit_core/template +++ b/srcpkgs/python3-flit_core/template @@ -1,6 +1,6 @@ # Template file for 'python3-flit_core' pkgname=python3-flit_core -version=3.2.0 +version=3.3.0 revision=1 wrksrc="flit-${version}" build_wrksrc="flit_core" @@ -13,7 +13,7 @@ license="BSD-3-Clause" homepage="https://flit.readthedocs.io" changelog="https://flit.readthedocs.io/en/latest/history.html" distfiles="${PYPI_SITE}/f/flit/flit-${version}.tar.gz" -checksum=592464c9268bbacec9bc67b5a3ae62e6e090aeec1563e69501df338a1728e551 +checksum=65fbe22aaa7f880b776b20814bd80b0afbf91d1f95b17235b608aa256325ce57 post_install() { vlicense ../LICENSE From 191519639e496b89c0a9632d5b8c738054f61aa6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 31 Jul 2021 17:44:39 -0400 Subject: [PATCH 098/824] python3-pip: update to 21.2.2. --- .../patches/no-versioned-pip.patch | 19 ++++++++++--------- srcpkgs/python3-pip/template | 4 ++-- 2 files changed, 12 insertions(+), 11 deletions(-) diff --git a/srcpkgs/python3-pip/patches/no-versioned-pip.patch b/srcpkgs/python3-pip/patches/no-versioned-pip.patch index d6d446b21572..b07a3022fe14 100644 --- a/srcpkgs/python3-pip/patches/no-versioned-pip.patch +++ b/srcpkgs/python3-pip/patches/no-versioned-pip.patch @@ -1,11 +1,12 @@ --- a/setup.py +++ b/setup.py -@@ -70,8 +70,6 @@ - entry_points={ - "console_scripts": [ -- "pip=pip._internal.cli.main:main", - "pip{}=pip._internal.cli.main:main".format(sys.version_info[0]), -- "pip{}.{}=pip._internal.cli.main:main".format(*sys.version_info[:2]), - ], - }, - zip_safe=False, +@@ -67,9 +67,7 @@ + }, + entry_points={ + "console_scripts": [ +- "pip=pip._internal.cli.main:main", + "pip{}=pip._internal.cli.main:main".format(sys.version_info[0]), +- "pip{}.{}=pip._internal.cli.main:main".format(*sys.version_info[:2]), + ], + }, + zip_safe=False, diff --git a/srcpkgs/python3-pip/template b/srcpkgs/python3-pip/template index d9de3bb50c45..3e800139d4da 100644 --- a/srcpkgs/python3-pip/template +++ b/srcpkgs/python3-pip/template @@ -1,6 +1,6 @@ # Template file for 'python3-pip' pkgname=python3-pip -version=21.2.1 +version=21.2.2 revision=1 wrksrc="pip-${version}" build_style=python3-module @@ -12,7 +12,7 @@ license="MIT" homepage="https://pip.pypa.io/" changelog="https://raw.githubusercontent.com/pypa/pip/master/NEWS.rst" distfiles="${PYPI_SITE}/p/pip/pip-${version}.tar.gz" -checksum=303a82aaa24cdc01f7ebbd1afc7d1b871a4aa0a88bb5bedef1fa86a3ee44ca0a +checksum=38e9250dfb0d7fa842492bede9259d4b3289a936ce454f7c58f059f28a94c01d # Tests have unpackaged dependencies make_check=no From 4ecf8b8a4e5f6791b0d38896c37b426c8c8a8fa8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 31 Jul 2021 17:55:47 -0400 Subject: [PATCH 099/824] python3-tifffile: update to 2021.7.30. --- srcpkgs/python3-tifffile/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-tifffile/template b/srcpkgs/python3-tifffile/template index f541afcdfddf..0e9e467e1564 100644 --- a/srcpkgs/python3-tifffile/template +++ b/srcpkgs/python3-tifffile/template @@ -1,6 +1,6 @@ # Template file for 'python3-tifffile' pkgname=python3-tifffile -version=2021.7.2 +version=2021.7.30 revision=1 wrksrc="${pkgname#python3-}-${version}" build_style=python3-module @@ -12,7 +12,7 @@ license="BSD-3-Clause" homepage="https://github.com/cgohlke/tifffile" changelog="https://raw.githubusercontent.com/cgohlke/tifffile/master/CHANGES.rst" distfiles="${homepage}/archive/v${version}.tar.gz" -checksum=394c6dc5ff40c3b8248d4b11be70cf0821d9c5762655d68d04489cd08b97786d +checksum=86a659791205281b5b75f21b608f28d1c8d669911693796dbe1524494056ec9c # Tests require unpackaged fsspec make_check=no From 98de8e3b3105dd94ab6c3c2fe071e3503547d031 Mon Sep 17 00:00:00 2001 From: FollieHiyuki Date: Wed, 28 Jul 2021 20:04:41 +0300 Subject: [PATCH 100/824] qutebrowser: update to 2.3.1 Closes: #32236 [via git-merge-pr] --- srcpkgs/qutebrowser/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/qutebrowser/template b/srcpkgs/qutebrowser/template index 7d3ae4effa4b..ba66ebb1b62d 100644 --- a/srcpkgs/qutebrowser/template +++ b/srcpkgs/qutebrowser/template @@ -1,6 +1,6 @@ # Template file for 'qutebrowser' pkgname=qutebrowser -version=2.3.0 +version=2.3.1 revision=1 build_style=python3-module hostmakedepends="python3-setuptools asciidoc" @@ -12,7 +12,7 @@ license="GPL-3.0-or-later" homepage="https://qutebrowser.org/" changelog="https://raw.githubusercontent.com/qutebrowser/qutebrowser/master/doc/changelog.asciidoc" distfiles="https://github.com/qutebrowser/qutebrowser/releases/download/v${version}/qutebrowser-${version}.tar.gz" -checksum=10ad01f07b9ce75fc86cb300e69208cba3d219a5d92687efc13a2a0a5a36df25 +checksum=407aab542c0fab00de5adb4c9ec1457de498ea5c53417a72bffd7f9a7825c616 nostrip=yes # testing requires unpackaged plugins: # pytest-bdd, pytest-benchmark, pytest-instafail, pytest-rerunfailures From 755ebf64fa93f646b9444906272f0b944b3a8713 Mon Sep 17 00:00:00 2001 From: John Date: Sun, 1 Aug 2021 03:03:31 +0200 Subject: [PATCH 101/824] kubernetes: fix build --- srcpkgs/kubernetes/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kubernetes/template b/srcpkgs/kubernetes/template index 08d2f27b3859..d94a2a3afbb0 100644 --- a/srcpkgs/kubernetes/template +++ b/srcpkgs/kubernetes/template @@ -21,7 +21,7 @@ conf_files="/etc/kubernetes/*" do_build() { make hack/generate-docs.sh - find "_output/local/bin/linux/" -type f -executable | grep "kubectl" | egrep -v "gen|test" | while read line + find "_output/local/bin/linux/" -type f -executable | grep "kubectl$" | egrep -v "gen|test" | while read line do $line completion bash > completion.bash $line completion zsh > completion.zsh From f1352aeba3d93eb58235e06091768ced9dee31d0 Mon Sep 17 00:00:00 2001 From: Helmut Pozimski Date: Sun, 1 Aug 2021 09:45:54 +0200 Subject: [PATCH 102/824] wine: update to 6.14. --- srcpkgs/wine/patches/musl-ns_name_skip.patch | 4 ++-- srcpkgs/wine/template | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/srcpkgs/wine/patches/musl-ns_name_skip.patch b/srcpkgs/wine/patches/musl-ns_name_skip.patch index 0fc85f2461f7..30be01e169b2 100644 --- a/srcpkgs/wine/patches/musl-ns_name_skip.patch +++ b/srcpkgs/wine/patches/musl-ns_name_skip.patch @@ -1,7 +1,7 @@ diff --git a/dlls/dnsapi/libresolv.c b/dlls/dnsapi/libresolv.c index ac52147..0f8c2ef 100644 ---- a/wine-6.13/dlls/dnsapi/libresolv.c -+++ b/wine-6.13/dlls/dnsapi/libresolv.c +--- a/wine-6.14/dlls/dnsapi/libresolv.c ++++ b/wine-6.14/dlls/dnsapi/libresolv.c @@ -57,6 +57,43 @@ WINE_DEFAULT_DEBUG_CHANNEL(dnsapi); diff --git a/srcpkgs/wine/template b/srcpkgs/wine/template index 24d2505627d2..bb2fa789c7e7 100644 --- a/srcpkgs/wine/template +++ b/srcpkgs/wine/template @@ -1,6 +1,6 @@ # Template file for 'wine' pkgname=wine -version=6.13 +version=6.14 revision=1 _pkgver=${version/r/-r} create_wrksrc=yes @@ -13,8 +13,8 @@ license="LGPL-2.1-or-later" homepage="http://www.winehq.org/" distfiles="https://dl.winehq.org/wine/source/${version%.*}.x/wine-${_pkgver}.tar.xz https://github.com/wine-staging/wine-staging/archive/v${_pkgver}.tar.gz" -checksum="e03a21a011d45d2ae9f222040fb7690b97156376e7431f861f20073eaf24f28a - 884e698cc07ba11f7189145508941a6400384d53005e148655f321070ee1e8c4" +checksum="64b471939943bc08e351027db6fbc2465c139650a3bffeb91657ff0ee8c25202 + 4792d3d083af6f9b9b9239df7c3b0e344ebe0cf947b689bde97a67bf37d116e4" build_options="mingw staging" build_options_default="mingw" From 82d9b2bf941dcc859ac3414cb5ceac4768e7f4e9 Mon Sep 17 00:00:00 2001 From: Helmut Pozimski Date: Sun, 1 Aug 2021 09:47:38 +0200 Subject: [PATCH 103/824] wine-mono: update to 6.3.0. --- srcpkgs/wine-mono/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/wine-mono/template b/srcpkgs/wine-mono/template index 675b1a3ab50e..4b9873e09451 100644 --- a/srcpkgs/wine-mono/template +++ b/srcpkgs/wine-mono/template @@ -1,6 +1,6 @@ # Template file for 'wine-mono' pkgname=wine-mono -version=6.2.0 +version=6.3.0 revision=1 build_style=fetch short_desc="Mono built for running .NET applications with WINE" @@ -8,7 +8,7 @@ maintainer="Orphaned " license="MIT, GPL-3.0-or-later, LGPL-2.0-or-later" homepage="https://wiki.winehq.org/Mono" distfiles="http://dl.winehq.org/wine/wine-mono/${version}/${pkgname}-${version}-x86.msi" -checksum=cd8d53513d8357b2876a66bab089654ef9941f42ef690fb555c6493f5381dbca +checksum=a5f02d32a0283692a4a625f541cfbbb451883128474c5c80362385317cd099f0 do_install() { # The actual installation within WINE occurs at runtime in whatever From 3436c69dd25a5964cdf9b666e9d1a2653b5be4fd Mon Sep 17 00:00:00 2001 From: Helmut Pozimski Date: Sun, 1 Aug 2021 09:50:34 +0200 Subject: [PATCH 104/824] linux5.4: update to 5.4.137. --- srcpkgs/linux5.4/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/linux5.4/template b/srcpkgs/linux5.4/template index 4fd63332b5c9..807b6b49c848 100644 --- a/srcpkgs/linux5.4/template +++ b/srcpkgs/linux5.4/template @@ -1,6 +1,6 @@ # Template file for 'linux5.4' pkgname=linux5.4 -version=5.4.136 +version=5.4.137 revision=1 wrksrc="linux-${version}" short_desc="Linux kernel and modules (${version%.*} series)" @@ -8,7 +8,7 @@ maintainer="Helmut Pozimski " license="GPL-2.0-only" homepage="https://www.kernel.org" distfiles="https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-${version}.tar.xz" -checksum=4322dd36bf86b82d410fb2d4df196d1f3b78819aa9dd78b555703bcbf49bad16 +checksum=f09e5e366ce5d8bde887cda229ef17138fd1653706a702221f934f99aaa31f7c python_version=3 nodebug=yes # -dbg package is generated below manually From 846a9d9602b827a11a539dfe9463d80cd019cd80 Mon Sep 17 00:00:00 2001 From: Helmut Pozimski Date: Sun, 1 Aug 2021 09:53:39 +0200 Subject: [PATCH 105/824] linux4.19: update to 4.19.200. --- srcpkgs/linux4.19/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/linux4.19/template b/srcpkgs/linux4.19/template index a6e4f5a686b2..1962af9c6030 100644 --- a/srcpkgs/linux4.19/template +++ b/srcpkgs/linux4.19/template @@ -1,6 +1,6 @@ # Template file for 'linux4.19' pkgname=linux4.19 -version=4.19.199 +version=4.19.200 revision=1 wrksrc="linux-${version}" short_desc="Linux kernel and modules (${version%.*} series)" @@ -8,7 +8,7 @@ maintainer="Helmut Pozimski " license="GPL-2.0-only" homepage="https://www.kernel.org" distfiles="https://cdn.kernel.org/pub/linux/kernel/v4.x/linux-${version}.tar.xz" -checksum=3d7babf8d0c6d855b7fd94e831c745e88921798b2366e21e3dece63162e42a9a +checksum=307409d9c6b46eeb64d327ddd5ffe7c7e9a50fc1b4719caed670674d83e6081b python_version=3 nodebug=yes # -dbg package is generated below manually From 658962505a222a3e828777a850caddd32900e62c Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Sun, 1 Aug 2021 16:46:12 +0200 Subject: [PATCH 106/824] python3-pyinfra: update to 1.4.11. --- srcpkgs/python3-pyinfra/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-pyinfra/template b/srcpkgs/python3-pyinfra/template index c2c7a3539eba..b7c5bebb3e56 100644 --- a/srcpkgs/python3-pyinfra/template +++ b/srcpkgs/python3-pyinfra/template @@ -1,6 +1,6 @@ # Template file for 'python3-pyinfra' pkgname=python3-pyinfra -version=1.4.10 +version=1.4.11 revision=1 wrksrc="pyinfra-${version}" build_style=python3-module @@ -13,7 +13,7 @@ maintainer="Leah Neukirchen " license="MIT" homepage="https://pyinfra.com/" distfiles="https://github.com/Fizzadar/pyinfra/archive/v${version}.tar.gz" -checksum=f685b3a6bd98a40e3e22fe757d1b1ab5a5f0f9c3d29c2141c6fcaa1b30bb2ee0 +checksum=809c54e78e89517a9736ab1f82f896c881f8d050a4aec366fc4962198b224bda post_extract() { vsed -i -e '/configparser/d' setup.py # is in Python 3.8 From 7b2ab0e7fb9c1022d0ac7c15a0d13dde9ac0cc17 Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Sun, 1 Aug 2021 16:48:08 +0200 Subject: [PATCH 107/824] sleuthkit: update to 4.11.0. --- srcpkgs/sleuthkit/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/sleuthkit/template b/srcpkgs/sleuthkit/template index f7d3ebf142f5..d95af662dcc0 100644 --- a/srcpkgs/sleuthkit/template +++ b/srcpkgs/sleuthkit/template @@ -1,6 +1,6 @@ # Template file for 'sleuthkit' pkgname=sleuthkit -version=4.10.2 +version=4.11.0 revision=1 wrksrc="${pkgname}-${pkgname}-${version}" build_style=gnu-configure @@ -14,7 +14,7 @@ license="GPL-2.0-only, IPL-1.0, CPL-1.0" homepage="https://www.sleuthkit.org/" changelog="https://github.com/sleuthkit/sleuthkit/releases" distfiles="https://github.com/sleuthkit/sleuthkit/archive/sleuthkit-${version}.tar.gz" -checksum=da9a336c37e03b78bd912acf243953254a3215f0b3646f9d2c526f4b502e6f11 +checksum=f0c0e7a72135c6033a40f87514808e8d0d81716a719a29face3980897037bf95 post_extract() { sed -i 's:sys/fcntl.h:fcntl.h:g' tsk/fs/tsk_fs_i.h From 63599059d0f13b19b36b3e4805974fc86f7c3d33 Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Sun, 1 Aug 2021 16:50:43 +0200 Subject: [PATCH 108/824] sbcl: update to 2.1.7. --- srcpkgs/sbcl/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/sbcl/template b/srcpkgs/sbcl/template index 0921a40dba22..4bd23c7bdd0d 100644 --- a/srcpkgs/sbcl/template +++ b/srcpkgs/sbcl/template @@ -1,6 +1,6 @@ # Template file for 'sbcl' pkgname=sbcl -version=2.1.6 +version=2.1.7 revision=1 archs="i686 x86_64* armv7l aarch64 ppc64le*" hostmakedepends="iana-etc" @@ -12,7 +12,7 @@ license="custom:BSD+public_domain" homepage="http://www.sbcl.org/" changelog="http://www.sbcl.org/news.html" distfiles="${SOURCEFORGE_SITE}/${pkgname}/${pkgname}-${version}-source.tar.bz2" -checksum=8b210c5dd20a466ca438bc7f628812640d0b4acdfad20bec168a6a5dabc1cdef +checksum=12606f153832ae2003d2162a6b3a851a5e8969ccbbf7538d2b0fb32d17ea1dc6 nocross=yes nopie=yes @@ -20,7 +20,7 @@ _bootstrap_lisp="bash ../sbcl-*-linux/run-sbcl.sh --no-sysinit --no-userinit --d case "$XBPS_TARGET_MACHINE" in x86_64) distfiles+=" ${SOURCEFORGE_SITE}/${pkgname}/${pkgname}-${version}-x86-64-linux-binary.tar.bz2" - checksum+=" d120765fe5148de7cec23f0b20d9bbf92b03d7f4429d1754a95898c43323e367" + checksum+=" 4a09d891c2b5a0214bf6ddb348c53abfb540f192d552adb03a22271961a9b458" ;; i686) distfiles+=" ${SOURCEFORGE_SITE}/${pkgname}/${pkgname}-1.4.3-x86-linux-binary.tar.bz2" From 6b47f1aff805e83d69d7cd981bd71989db748ede Mon Sep 17 00:00:00 2001 From: Andrea Brancaleoni Date: Sun, 1 Aug 2021 16:59:09 +0200 Subject: [PATCH 109/824] hugo: update to 0.86.1. --- srcpkgs/hugo/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/hugo/template b/srcpkgs/hugo/template index ee9312836ce1..03cdeb450eae 100644 --- a/srcpkgs/hugo/template +++ b/srcpkgs/hugo/template @@ -1,6 +1,6 @@ # Template file for 'hugo' pkgname=hugo -version=0.85.0 +version=0.86.1 revision=1 build_style=go go_import_path="github.com/gohugoio/hugo" @@ -10,7 +10,7 @@ maintainer="Andrea Brancaleoni " license="Apache-2.0" homepage="https://gohugo.io" distfiles="https://github.com/gohugoio/hugo/archive/v${version}.tar.gz" -checksum=9f1c983fe649f0d602481c848ebf863c9d3b3bc9c0e6a237c35e96e33a1b5d24 +checksum=9e4b65249c890945b542d1e2737bdc3cb2240cc9ad081670ae5a65543002f90a post_install() { vdoc README.md From 80539eb4856eb564986a59837ab587b18236fc8e Mon Sep 17 00:00:00 2001 From: Andrea Brancaleoni Date: Sun, 1 Aug 2021 17:03:26 +0200 Subject: [PATCH 110/824] freeplane: update to 1.9.7. --- srcpkgs/freeplane/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/freeplane/template b/srcpkgs/freeplane/template index 52a4365845f2..353e5a9f77cb 100644 --- a/srcpkgs/freeplane/template +++ b/srcpkgs/freeplane/template @@ -1,6 +1,6 @@ # Template file for 'freeplane' pkgname=freeplane -version=1.8.11 +version=1.9.7 revision=1 hostmakedepends="apache-ant openjdk8 unzip gradle" depends="virtual?java-runtime" @@ -9,7 +9,7 @@ maintainer="Andrea Brancaleoni " license="GPL-2.0-or-later" homepage="http://freeplane.sourceforge.net/" distfiles="$SOURCEFORGE_SITE/$pkgname/$pkgname%20stable/${pkgname}_src-$version.tar.gz" -checksum=7cb3abeda6a073262b63603852d3f3fe2cdb34e917435e9648209efa9c3b1e21 +checksum=09b6892e8c801344fa6f4b60b88a5804586fec53eb7a6bf27ef2a3ff384909b5 make_dirs=" /usr/share/freeplane/fwdir/condperm/ 755 root root From 4c15a7022daffc1de7e98bb12ef93d4bfe196f71 Mon Sep 17 00:00:00 2001 From: Daniel Lewan Date: Sun, 1 Aug 2021 19:54:29 +0200 Subject: [PATCH 111/824] shfmt: update to 3.3.1. Closes: #32290 [via git-merge-pr] --- srcpkgs/shfmt/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/shfmt/template b/srcpkgs/shfmt/template index f465792f603b..a4e953367ced 100644 --- a/srcpkgs/shfmt/template +++ b/srcpkgs/shfmt/template @@ -1,6 +1,6 @@ # Template file for 'shfmt' pkgname=shfmt -version=3.3.0 +version=3.3.1 revision=1 wrksrc="sh-${version}" build_style=go @@ -12,7 +12,7 @@ maintainer="Daniel Lewan " license="BSD-3-Clause" homepage="https://github.com/mvdan/sh" distfiles="https://github.com/mvdan/sh/archive/v${version}.tar.gz" -checksum=9bcdbbfd2f6afc4e885838683396483edcd87ef7eb80faa7def6ff0a10e3be4a +checksum=c3acf5503e42f481ff3ec133007f85438a2df378981446456937a56dde758a52 post_install() { scdoc < cmd/shfmt/shfmt.1.scd > shfmt.1 From 8180bbd08443aa4acd6a15c5c6408239afb27112 Mon Sep 17 00:00:00 2001 From: tibequadorian Date: Sun, 1 Aug 2021 13:30:05 +0200 Subject: [PATCH 112/824] sfeed: update to 0.9.25. Closes: #32287 [via git-merge-pr] --- srcpkgs/sfeed/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/sfeed/template b/srcpkgs/sfeed/template index d9e55ffb62bb..9f3d23098319 100644 --- a/srcpkgs/sfeed/template +++ b/srcpkgs/sfeed/template @@ -1,6 +1,6 @@ # Template file for 'sfeed' pkgname=sfeed -version=0.9.24 +version=0.9.25 revision=1 build_style=gnu-makefile make_install_args="MANPREFIX=/usr/share/man" @@ -10,7 +10,7 @@ maintainer="Rubén Santos " license="ISC" homepage="https://git.codemadness.org/sfeed" distfiles="https://codemadness.org/releases/sfeed/sfeed-${version}.tar.gz" -checksum=0d45e2fc62c5bc29b6cfe08eb7f2f08b50039ce38b0bdc3028fb85ff63681060 +checksum=a3d4a95bd660b6df4b7adaaecc7438fdb8ddd390b5d7e13fd14c2aeae1e2220a post_install() { vlicense LICENSE From 7b14cce382cf4eba02064a324ce758999122e407 Mon Sep 17 00:00:00 2001 From: mobinmob Date: Sun, 1 Aug 2021 00:44:56 +0300 Subject: [PATCH 113/824] mousepad: update to 0.5.6. Also: - replace gtksourceview-devel with gtksourceview4-devel in makedepends. Closes: #32277 [via git-merge-pr] --- srcpkgs/mousepad/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/mousepad/template b/srcpkgs/mousepad/template index 0e1c2fda7f85..2325cfd80d99 100644 --- a/srcpkgs/mousepad/template +++ b/srcpkgs/mousepad/template @@ -1,11 +1,11 @@ # Template file for 'mousepad' pkgname=mousepad -version=0.5.5 +version=0.5.6 revision=1 build_style=gnu-configure configure_args="--with-locales-dir=/usr/share/locale" hostmakedepends="glib-devel intltool pkg-config" -makedepends="gtksourceview-devel gspell-devel" +makedepends="gtksourceview4-devel gspell-devel" depends="desktop-file-utils hicolor-icon-theme" short_desc="Simple text editor for Xfce based on Leafpad" maintainer="mobinmob " @@ -13,4 +13,4 @@ license="GPL-2.0-or-later" homepage="https://xfce.org/" changelog="https://gitlab.xfce.org/apps/mousepad/-/raw/master/NEWS" distfiles="https://archive.xfce.org/src/apps/${pkgname}/${version%.*}/${pkgname}-${version}.tar.bz2" -checksum=40c35f00e0e10df50a59bd0dbba9007d2fb5574ed8a2aa73b0fc5ef40e64abe1 +checksum=42559863b01d89bd21136beea0a1461530377fabc6553bdfe14399d55596350f From 01f6ee69649b02cfe46f5d7850d3f3a8d9b62e80 Mon Sep 17 00:00:00 2001 From: Daniel Lewan Date: Sat, 31 Jul 2021 19:23:50 +0200 Subject: [PATCH 114/824] s: update to 0.5.16. Closes: #32271 [via git-merge-pr] --- srcpkgs/s/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/s/template b/srcpkgs/s/template index 7ec0a5f572bb..195fc1eb9cde 100644 --- a/srcpkgs/s/template +++ b/srcpkgs/s/template @@ -1,7 +1,7 @@ # Template file for 's' pkgname=s -version=0.5.15 -revision=3 +version=0.5.16 +revision=1 build_style=go go_import_path=github.com/zquestz/s hostmakedepends="git" @@ -10,7 +10,7 @@ maintainer="Daniel Lewan " license="MIT" homepage="https://github.com/zquestz/s" distfiles="https://github.com/zquestz/s/archive/v${version}.tar.gz" -checksum=d697da32c050d026983a9696d14dace8926838eef9f491937a4f14215b674c6a +checksum=08b7082ff900c7ec61905d954b7025dc6f780c23c81f2f13e200b2bbd7a2ef9c post_install() { vlicense LICENSE From 0af2b4c515fbd6e58113fadf2f0c6091f569416b Mon Sep 17 00:00:00 2001 From: mobinmob Date: Fri, 30 Jul 2021 20:50:40 +0300 Subject: [PATCH 115/824] python3-distro: update to 1.6.0. Also: - add checkdepends to enable tests. Closes: #32260 [via git-merge-pr] --- srcpkgs/python3-distro/template | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/srcpkgs/python3-distro/template b/srcpkgs/python3-distro/template index 077fda2b81e1..1c73d2e4d95b 100644 --- a/srcpkgs/python3-distro/template +++ b/srcpkgs/python3-distro/template @@ -1,15 +1,16 @@ # Template file for 'python3-distro' pkgname=python3-distro -version=1.5.0 -revision=2 +version=1.6.0 +revision=1 wrksrc=distro-${version} build_style=python3-module hostmakedepends="python3-setuptools" makedepends="python3-devel" depends="python3" +checkdepends="python3-unittest-mixins python3-pytest" short_desc="OS platform information API" maintainer="mobinmob " license="Apache-2.0" homepage="https://github.com/nir0s/distro" distfiles="${PYPI_SITE}/d/distro/distro-${version}.tar.gz" -checksum=0e58756ae38fbd8fc3020d54badb8eae17c5b9dcbed388b17bb55b8a5928df92 +checksum=83f5e5a09f9c5f68f60173de572930effbcc0287bb84fdc4426cb4168c088424 From dc8f929dfbc90fd31717cc1df8be050610a9b99e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjam=C3=ADn=20Albi=C3=B1ana?= Date: Thu, 29 Jul 2021 18:06:38 +0200 Subject: [PATCH 116/824] tickr: update to 0.7.1. Closes: #32247 [via git-merge-pr] --- srcpkgs/tickr/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/tickr/template b/srcpkgs/tickr/template index 285e2419fccf..da7e7f4fdcbb 100644 --- a/srcpkgs/tickr/template +++ b/srcpkgs/tickr/template @@ -1,6 +1,6 @@ # Template file for 'tickr' pkgname=tickr -version=0.7.0 +version=0.7.1 revision=1 build_style=gnu-configure hostmakedepends="pkg-config" @@ -10,7 +10,7 @@ maintainer="Benjamín Albiñana " license="GPL-3.0-or-later" homepage="https://www.open-tickr.net/" distfiles="https://www.open-tickr.net/src/${pkgname}-${version}.tar.gz" -checksum=37dd2d970cd9bf9b0ebc5e6cbf6605ea460008f577a43a7500e506e9dffcd802 +checksum=391529a115b820d5c2cac7b466facc4722b7f90e02ab0acd7350a8e97adcee58 case "$XBPS_TARGET_MACHINE" in arm*|ppc64|ppc) configure_args+=" LIBS=-lm" ;; From 70d8435c0f0c224e1dc9ba096cd928faf0dc51e8 Mon Sep 17 00:00:00 2001 From: dkwo Date: Wed, 28 Jul 2021 17:47:34 +0200 Subject: [PATCH 117/824] python3-pyrsistent: update to 0.18 --- srcpkgs/python3-pyrsistent/template | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/srcpkgs/python3-pyrsistent/template b/srcpkgs/python3-pyrsistent/template index c278114af2c8..d5e33af8358f 100644 --- a/srcpkgs/python3-pyrsistent/template +++ b/srcpkgs/python3-pyrsistent/template @@ -1,7 +1,7 @@ # Template file for 'python3-pyrsistent' pkgname=python3-pyrsistent -version=0.17.3 -revision=2 +version=0.18.0 +revision=1 wrksrc="pyrsistent-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-devel" @@ -12,10 +12,10 @@ maintainer="dkwo " license="MIT" homepage="https://github.com/tobgu/pyrsistent/" distfiles="${PYPI_SITE}/p/pyrsistent/pyrsistent-${version}.tar.gz" -checksum=2e636185d9eb976a18a8a8e96efce62f2905fea90041958d8cc2a189756ebf3e +checksum=773c781216f8c2900b42a7b638d5b517bb134ae1acbebe4d1e8f1f41ea60eb4b post_install() { - vlicense LICENCE.mit LICENSE + vlicense LICENSE.mit LICENSE } python3-rsistent_package() { From 7ba6e9a9a3934f9cb326e7c7060693c2f6cbb422 Mon Sep 17 00:00:00 2001 From: dkwo Date: Wed, 28 Jul 2021 17:50:00 +0200 Subject: [PATCH 118/824] python3-jupyterlab_server: update to 2.6.1 --- srcpkgs/python3-jupyterlab_server/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-jupyterlab_server/template b/srcpkgs/python3-jupyterlab_server/template index b02f650fb8db..469924e5f875 100644 --- a/srcpkgs/python3-jupyterlab_server/template +++ b/srcpkgs/python3-jupyterlab_server/template @@ -1,6 +1,6 @@ # Template file for 'python3-jupyterlab_server' pkgname=python3-jupyterlab_server -version=2.6.0 +version=2.6.1 revision=1 wrksrc="jupyterlab_server-${version}" build_style=python3-module @@ -11,7 +11,7 @@ maintainer="dkwo " license="BSD-3-Clause" homepage="https://jupyter.org" distfiles="https://github.com/jupyterlab/jupyterlab_server/archive/refs/tags/v${version}.tar.gz" -checksum=244d540075f132bebe054484235a0aee8a18696dedfb11cb4fd9c1bec7f6aeb1 +checksum=d10ecc867065820079f926d59239a7294a525693832bc6276bdd0f432946bc76 # Tests require unpackaged dependencies make_check=no From 30aa5752c8009815df56229c6523a3d59fbf99b0 Mon Sep 17 00:00:00 2001 From: dkwo Date: Wed, 28 Jul 2021 17:51:27 +0200 Subject: [PATCH 119/824] python3-jupyter_server: update to 1.10.1 --- srcpkgs/python3-jupyter_server/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-jupyter_server/template b/srcpkgs/python3-jupyter_server/template index e522350de61f..563bb01d2e57 100644 --- a/srcpkgs/python3-jupyter_server/template +++ b/srcpkgs/python3-jupyter_server/template @@ -1,6 +1,6 @@ # Template file for 'python3-jupyter_server' pkgname=python3-jupyter_server -version=1.8.0 +version=1.10.1 revision=1 wrksrc="jupyter_server-${version}" build_style=python3-module @@ -14,7 +14,7 @@ maintainer="dkwo " license="BSD-3-Clause" homepage="https://jupyter.org" distfiles="${PYPI_SITE}/j/jupyter-server/jupyter_server-${version}.tar.gz" -checksum=8f0c75e0a577536125ad62a442ebb7cf02746f1a69d907e8a273c6225d281237 +checksum=fe6b589bd8d8fe08f608e90ce7da1e6bbfd020d99897453b45149a7853e9188f # Tarball defines no tests make_check=no From 4d9261d3aa412f7f31e5f61ecb288d1304ff3be7 Mon Sep 17 00:00:00 2001 From: dkwo Date: Wed, 28 Jul 2021 17:52:59 +0200 Subject: [PATCH 120/824] python3-json5: update to 0.9.6 --- srcpkgs/python3-json5/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-json5/template b/srcpkgs/python3-json5/template index 93e359df6d13..ccf9ed82f29a 100644 --- a/srcpkgs/python3-json5/template +++ b/srcpkgs/python3-json5/template @@ -1,6 +1,6 @@ # Template file for 'python3-json5' pkgname=python3-json5 -version=0.9.5 +version=0.9.6 revision=1 wrksrc=pyjson5-${version} build_style=python3-module @@ -11,4 +11,4 @@ maintainer="dkwo " license="Apache-2.0" homepage="https://github.com/dpranke/pyjson5" distfiles="${homepage}/archive/refs/tags/v${version}.tar.gz" -checksum=4631b8a6c61704b7942fe9d16a1e95f2b26a2bdcc38a1fdc3b5c984f2e861045 +checksum=eeb5e7d77b095dbfeae2e00c7df80ac8064994b33c5c36982f504c5c17c77a8c From 05d3902453902619fb1bc887e99df60858368a95 Mon Sep 17 00:00:00 2001 From: dkwo Date: Wed, 28 Jul 2021 17:54:15 +0200 Subject: [PATCH 121/824] python3-anyio: update to 3.3.0 --- srcpkgs/python3-anyio/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/python3-anyio/template b/srcpkgs/python3-anyio/template index 6609672c134d..bec1109131d8 100644 --- a/srcpkgs/python3-anyio/template +++ b/srcpkgs/python3-anyio/template @@ -1,6 +1,6 @@ # Template file for 'python3-anyio' pkgname=python3-anyio -version=3.2.0 +version=3.3.0 revision=1 wrksrc=anyio-${version} build_style=python3-module @@ -11,8 +11,8 @@ maintainer="dkwo " license="MIT" homepage="https://github.com/agronholm/anyio" distfiles="${PYPI_SITE}/a/anyio/anyio-${version}.tar.gz" -checksum=41c4be842c284222b197a625d76a7ab85adf9d52788f563172fe180c2744b6c1 -# Tests require unpackaged "trustme" +checksum=ae57a67583e5ff8b4af47666ff5651c3732d45fd26c929253748e796af860374 +# Tests not supported make_check=no post_install() { From 8b968948196d1d8b308d59f1750d5d37c2e78087 Mon Sep 17 00:00:00 2001 From: dkwo Date: Wed, 28 Jul 2021 17:55:45 +0200 Subject: [PATCH 122/824] jupyterlab: update to 3.1.0, add deps Closes: #32235 [via git-merge-pr] --- srcpkgs/jupyterlab/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/jupyterlab/template b/srcpkgs/jupyterlab/template index 2bb8940372c3..adc3be121904 100644 --- a/srcpkgs/jupyterlab/template +++ b/srcpkgs/jupyterlab/template @@ -1,16 +1,16 @@ # Template file for 'jupyterlab' pkgname=jupyterlab -version=3.0.16 +version=3.1.0 revision=1 build_style=python3-module hostmakedepends="python3-setuptools" -depends="python3-jupyterlab_server nodejs python3-nbclassic" +depends="python3-jupyterlab_server nodejs python3-nbclassic python3-requests-unixsocket" short_desc="JupyterLab computational environment" maintainer="dkwo " license="custom:jupyterlab" homepage="https://jupyter.org" distfiles="https://github.com/jupyterlab/jupyterlab/archive/refs/tags/v${version}.tar.gz" -checksum=edc3f0c895cc3e0020551d933223dec93e779a2d25de26d26e90bc3e8e56339d +checksum=bf4b279f110972c5ce585ede1f76165f0d7b06bd81acaab04ad56e9f0b5fafb4 # Tests require unpackaged dependencies make_check=no From be6ed42fb8fe6b2747a97b5c28883ef55109a610 Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Mon, 2 Aug 2021 14:22:05 +0200 Subject: [PATCH 123/824] xeyes: update to 1.2.0. --- srcpkgs/xeyes/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/xeyes/template b/srcpkgs/xeyes/template index 1ea4c63d37bc..64ff5042d9d0 100644 --- a/srcpkgs/xeyes/template +++ b/srcpkgs/xeyes/template @@ -1,6 +1,6 @@ # Template file for 'xeyes' pkgname=xeyes -version=1.1.2 +version=1.2.0 revision=1 build_style=gnu-configure hostmakedepends="pkg-config xorg-util-macros" @@ -10,7 +10,7 @@ maintainer="Leah Neukirchen " license="X11" homepage="http://www.x.org/archive/X11R6.8.1/doc/xeyes.1.html" distfiles="${XORG_SITE}/app/${pkgname}-${version}.tar.bz2" -checksum=57bcec0d2d167af9e5d44d0dbd74c6d7c0f0591cd0608952b23c749fdd910553 +checksum=f8a17e23146bef1ab345a1e303c6749e42aaa7bcf4f25428afad41770721b6db post_install() { vlicense COPYING From 3d2469e246a4bd6ac2e471958f16eea5764877b3 Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Mon, 2 Aug 2021 14:28:00 +0200 Subject: [PATCH 124/824] re2c: update to 2.2. --- srcpkgs/re2c/template | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/srcpkgs/re2c/template b/srcpkgs/re2c/template index 882547d3f3c5..f994982e0dfb 100644 --- a/srcpkgs/re2c/template +++ b/srcpkgs/re2c/template @@ -1,12 +1,14 @@ # Template file for 're2c' pkgname=re2c -version=2.1.1 +version=2.2 revision=1 build_style=gnu-configure hostmakedepends="bison" +checkdepends="python3" short_desc="Tool for generating fast C-based recognizers" maintainer="Leah Neukirchen " license="Public Domain" homepage="http://re2c.org/" +changelog="http://re2c.org/releases/changelog/changelog.html" distfiles="https://github.com/skvadrik/${pkgname}/releases/download/${version}/${pkgname}-${version}.tar.xz" -checksum=036ee264fafd5423141ebd628890775aa9447a4c4068a6307385d7366fe711f8 +checksum=0fc45e4130a8a555d68e230d1795de0216dfe99096b61b28e67c86dfd7d86bda From 7b6e26ca542d6d307a6fb85785b648104bc21568 Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Mon, 2 Aug 2021 16:34:37 +0200 Subject: [PATCH 125/824] xwd: update to 1.0.8. Adopt. --- srcpkgs/xwd/template | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/srcpkgs/xwd/template b/srcpkgs/xwd/template index b0e1ebe6cd22..a046b128e92e 100644 --- a/srcpkgs/xwd/template +++ b/srcpkgs/xwd/template @@ -1,16 +1,16 @@ -# Template build file for 'xwd'. +# Template file for 'xwd' pkgname=xwd -version=1.0.7 +version=1.0.8 revision=1 build_style=gnu-configure hostmakedepends="pkg-config" makedepends="libX11-devel libxkbfile-devel" short_desc="Dump an image of an X window" -homepage="http://xorg.freedesktop.org" +maintainer="Leah Neukirchen " license="MIT" -maintainer="Orphaned " +homepage="http://xorg.freedesktop.org" distfiles="${XORG_SITE}/app/$pkgname-$version.tar.bz2" -checksum=cd6815b8b9e0b98e284d3d732fb12162159cb9dcee4f45a7d4c0bd8b308a6794 +checksum=fbaa2b34163714fe7be22b60920ea4683f63b355babb1781aec2e452a033031b post_install() { vlicense COPYING From 2942652d4ce85856fcccb6318d23f139cea783a5 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Mon, 2 Aug 2021 16:31:23 +0200 Subject: [PATCH 126/824] icdiff: update to 2.0.3. --- srcpkgs/icdiff/template | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/srcpkgs/icdiff/template b/srcpkgs/icdiff/template index c357948e27c2..3af6dfdcd074 100644 --- a/srcpkgs/icdiff/template +++ b/srcpkgs/icdiff/template @@ -1,22 +1,27 @@ # Template file for 'icdiff' pkgname=icdiff -version=2.0.0 +version=2.0.3 revision=1 wrksrc="${pkgname}-release-${version}" build_style=python3-module hostmakedepends="python3-setuptools" depends="python3 python3-setuptools" +checkdepends="flake8" short_desc="Side-by-side highlighted command line diffs" maintainer="Duncaen " license="Python-2.0" homepage="http://www.jefftk.com/icdiff" changelog="https://github.com/jeffkaufman/icdiff/raw/master/ChangeLog" distfiles="https://github.com/jeffkaufman/icdiff/archive/release-${version}.tar.gz" -checksum=bce07ff4995aafe9de274ca0a322e56275dc264948b125457d2cc73dd7e9eee2 +checksum=23e9502895999a929e1d3559403205846742f7cf8a22c5d7f3c4db910ba12321 replaces="python3-icdiff>=0" provides="python3-icdiff-${version}_${revision}" +do_check() { + ./test.sh python3 +} + post_install() { vlicense LICENSE } From a6391eb478911a2ce0fc6cb915fe85bc5c1ac403 Mon Sep 17 00:00:00 2001 From: Helmut Pozimski Date: Mon, 2 Aug 2021 19:58:04 +0200 Subject: [PATCH 127/824] libvirt: update to 7.6.0. --- srcpkgs/libvirt/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/libvirt/template b/srcpkgs/libvirt/template index cfe7e2150eaf..3e139e9a4313 100644 --- a/srcpkgs/libvirt/template +++ b/srcpkgs/libvirt/template @@ -1,6 +1,6 @@ # Template file for 'libvirt' pkgname=libvirt -version=7.5.0 +version=7.6.0 revision=1 build_style=meson configure_args="-Dqemu_user=libvirt -Dqemu_group=libvirt -Drunstatedir=/run" @@ -19,7 +19,7 @@ license="LGPL-2.1-or-later" homepage="https://libvirt.org" changelog="https://libvirt.org/news.html" distfiles="https://libvirt.org/sources/${pkgname}-${version}.tar.xz" -checksum=90107b49032c2f3022c84076c649135187fbc70c8efd16427c6c4b6d613c2895 +checksum=8f967106d00aabb3cd692724bdd4a9c09e71cb2245053b98193690ee01766141 # FIX https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=701649 system_accounts="libvirt" From 6ed854b7128a7db84bce534376afae41923dc784 Mon Sep 17 00:00:00 2001 From: Helmut Pozimski Date: Mon, 2 Aug 2021 20:00:31 +0200 Subject: [PATCH 128/824] libvirt-python3: update to 7.6.0. --- srcpkgs/libvirt-python3/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/libvirt-python3/template b/srcpkgs/libvirt-python3/template index 0be82e73d963..55a2d9c23b05 100644 --- a/srcpkgs/libvirt-python3/template +++ b/srcpkgs/libvirt-python3/template @@ -1,6 +1,6 @@ # Template file for 'libvirt-python3' pkgname=libvirt-python3 -version=7.5.0 +version=7.6.0 revision=1 wrksrc="libvirt-python-${version}" build_style=python3-module @@ -12,4 +12,4 @@ maintainer="Helmut Pozimski " license="LGPL-2.1-or-later" homepage="https://pypi.org/project/libvirt-python/" distfiles="https://libvirt.org/sources/python/libvirt-python-${version}.tar.gz" -checksum=002ff458a8eca1caf5d45dffe68b44a6d0ce115496373872355de0d589c578d9 +checksum=d8f9d4efdc79ad6b44bc43e49d6fa56d119895ba6c0bb000c6514ce84f19a13e From 62a3709b1bc9e11d1d999f042cbc590ab2b6d695 Mon Sep 17 00:00:00 2001 From: Helmut Pozimski Date: Mon, 2 Aug 2021 20:04:19 +0200 Subject: [PATCH 129/824] xeyes: add libXi-devel to makedepends --- srcpkgs/xeyes/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/xeyes/template b/srcpkgs/xeyes/template index 64ff5042d9d0..479f602b22f0 100644 --- a/srcpkgs/xeyes/template +++ b/srcpkgs/xeyes/template @@ -4,7 +4,7 @@ version=1.2.0 revision=1 build_style=gnu-configure hostmakedepends="pkg-config xorg-util-macros" -makedepends="libXmu-devel libXt-devel libXrender-devel" +makedepends="libXmu-devel libXt-devel libXrender-devel libXi-devel" short_desc="Follow the mouse" maintainer="Leah Neukirchen " license="X11" From 7f3c99b517e78f6f95b15adbc1421942c842bb18 Mon Sep 17 00:00:00 2001 From: John Date: Mon, 2 Aug 2021 19:37:54 +0200 Subject: [PATCH 130/824] tg_owt: rebuild to fix a segfault I'm not sure what exactly caused it or what causes it, the segfault did not happen in gdb, instead telegram just exited normally --- srcpkgs/tg_owt/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/tg_owt/template b/srcpkgs/tg_owt/template index 95396e46d25e..9d7b80cd5418 100644 --- a/srcpkgs/tg_owt/template +++ b/srcpkgs/tg_owt/template @@ -1,7 +1,7 @@ # Template file for 'tg_owt' pkgname=tg_owt version=0.0.0.20210627 -revision=1 +revision=2 _commit=91d836dc84a16584c6ac52b36c04c0de504d9c34 _libyuv_commit=ad890067f661dc747a975bc55ba3767fe30d4452 _libvpx_commit=5b63f0f821e94f8072eb483014cfc33b05978bb9 From 4e76ca0b13e87610b180d5b31312f19bd610a3b6 Mon Sep 17 00:00:00 2001 From: John Date: Mon, 2 Aug 2021 20:01:58 +0200 Subject: [PATCH 131/824] telegram-desktop: update to 2.9.0. closes #32111 --- .../0003-remove-redundant-extern-c.patch | 28 ------------------- srcpkgs/telegram-desktop/template | 4 +-- 2 files changed, 2 insertions(+), 30 deletions(-) delete mode 100644 srcpkgs/telegram-desktop/patches/0003-remove-redundant-extern-c.patch diff --git a/srcpkgs/telegram-desktop/patches/0003-remove-redundant-extern-c.patch b/srcpkgs/telegram-desktop/patches/0003-remove-redundant-extern-c.patch deleted file mode 100644 index 0bb89b65c7ff..000000000000 --- a/srcpkgs/telegram-desktop/patches/0003-remove-redundant-extern-c.patch +++ /dev/null @@ -1,28 +0,0 @@ -https://github.com/desktop-app/lib_webview/pull/9 - -From 75e924934eee8624020befbef1f3cb5b865d3b86 Mon Sep 17 00:00:00 2001 -From: Vitaly Lipatov -Date: Fri, 9 Jul 2021 16:56:50 +0300 -Subject: [PATCH] webview_linux_webkit_gtk.h: there are already exists extern C - in the included headers - ---- - webview/platform/linux/webview_linux_webkit_gtk.h | 2 -- - 1 file changed, 2 deletions(-) - -diff --git a/webview/platform/linux/webview_linux_webkit_gtk.h b/webview/platform/linux/webview_linux_webkit_gtk.h -index 8d180c1..e894c75 100644 ---- a/Telegram/lib_webview/webview/platform/linux/webview_linux_webkit_gtk.h -+++ b/Telegram/lib_webview/webview/platform/linux/webview_linux_webkit_gtk.h -@@ -6,11 +6,9 @@ - // - #pragma once - --extern "C" { - #include - #include - #include --} // extern "C" - - namespace Webview::WebkitGtk { - diff --git a/srcpkgs/telegram-desktop/template b/srcpkgs/telegram-desktop/template index ca30e932a5ad..3b5cd9fcdadf 100644 --- a/srcpkgs/telegram-desktop/template +++ b/srcpkgs/telegram-desktop/template @@ -1,6 +1,6 @@ # Template file for 'telegram-desktop' pkgname=telegram-desktop -version=2.8.10 +version=2.9.0 revision=1 wrksrc="tdesktop-${version}-full" build_style=cmake @@ -27,7 +27,7 @@ license="GPL-3.0-or-later, OpenSSL" homepage="https://desktop.telegram.org/" changelog="https://github.com/telegramdesktop/tdesktop/blob/v${version}/changelog.txt" distfiles="https://github.com/telegramdesktop/tdesktop/releases/download/v${version}/tdesktop-${version}-full.tar.gz" -checksum=60a81f447ee9a46982d66a85672041bba496d728c042865a65e4950e1b631013 +checksum=e908b8f479cf1f41892848f3cda1a7b46fca2339ce8980268dd204ff7ba8b6f5 build_options="spellcheck" build_options_default="spellcheck" From 42950e423afdf403db04b4df9ec0588f75b3ef00 Mon Sep 17 00:00:00 2001 From: q66 Date: Mon, 2 Aug 2021 22:05:48 +0200 Subject: [PATCH 132/824] musl: backport patches to fix pthread_cond_wait with PI mutex https://github.com/pulseaudio/pulseaudio/blob/master/src/pulsecore/mutex-posix.c#L55 https://github.com/pulseaudio/pulseaudio/blob/master/src/pulse/thread-mainloop.c#L118 https://github.com/pulseaudio/pulseaudio/commit/413a8f8917256ef44a58fc8519bcc93644423373 pulseaudio uses a prio-inheriting mutex since the above revision that is paised with a condition variable; the behavior of this was broken in musl until the above patches, which would result in pulseaudio deadlocking with gstreamer pulsesink (most often with webkit) and possibly other things. Fixes https://github.com/void-linux/void-packages/issues/15631 --- .../musl/patches/fix-pi-mutex-cond-1.patch | 56 +++++++++++++++++++ .../musl/patches/fix-pi-mutex-cond-2.patch | 48 ++++++++++++++++ .../musl/patches/fix-pi-mutex-cond-3.patch | 28 ++++++++++ srcpkgs/musl/template | 2 +- 4 files changed, 133 insertions(+), 1 deletion(-) create mode 100644 srcpkgs/musl/patches/fix-pi-mutex-cond-1.patch create mode 100644 srcpkgs/musl/patches/fix-pi-mutex-cond-2.patch create mode 100644 srcpkgs/musl/patches/fix-pi-mutex-cond-3.patch diff --git a/srcpkgs/musl/patches/fix-pi-mutex-cond-1.patch b/srcpkgs/musl/patches/fix-pi-mutex-cond-1.patch new file mode 100644 index 000000000000..39af72b0c5f9 --- /dev/null +++ b/srcpkgs/musl/patches/fix-pi-mutex-cond-1.patch @@ -0,0 +1,56 @@ +From 2d0bbe6c788938d1332609c014eeebc1dff966ac Mon Sep 17 00:00:00 2001 +From: Rich Felker +Date: Mon, 26 Oct 2020 15:56:25 -0400 +Subject: fix pthread_cond_wait paired with with priority-inheritance mutex + +pthread_cond_wait arranged for requeued waiters to wake when the mutex +is unlocked by temporarily adjusting the mutex's waiter count. commit +54ca677983d47529bab8752315ac1a2b49888870 broke this when introducing +PI mutexes by repurposing the waiter count field of the mutex +structure. since then, for PI mutexes, the waiter count adjustment was +misinterpreted by the mutex locking code as indicating that the mutex +is non a non-recoverable state. + +it would be possible to special-case PI mutexes here, but instead just +drop all adjustment of the waiters count, and instead use the lock +word waiters bit for all mutex types. since the mutex is either held +by the caller or in unrecoverable state at the time the bit is set, it +will necessarily still be set at the time of any subsequent valid +unlock operation, and this will produce the desired effect of waking +the next waiter. + +if waiter counts are entirely dropped at some point in the future this +code should still work without modification. +--- + src/thread/pthread_cond_timedwait.c | 11 +++++------ + 1 file changed, 5 insertions(+), 6 deletions(-) + +(limited to 'src/thread/pthread_cond_timedwait.c') + +diff --git a/src/thread/pthread_cond_timedwait.c b/src/thread/pthread_cond_timedwait.c +index d1501240..f5f37af1 100644 +--- a/src/thread/pthread_cond_timedwait.c ++++ b/src/thread/pthread_cond_timedwait.c +@@ -146,14 +146,13 @@ relock: + + if (oldstate == WAITING) goto done; + +- if (!node.next) a_inc(&m->_m_waiters); +- + /* Unlock the barrier that's holding back the next waiter, and + * either wake it or requeue it to the mutex. */ +- if (node.prev) +- unlock_requeue(&node.prev->barrier, &m->_m_lock, m->_m_type & 128); +- else +- a_dec(&m->_m_waiters); ++ if (node.prev) { ++ int val = m->_m_lock; ++ if (val>0) a_cas(&m->_m_lock, val, val|0x80000000); ++ unlock_requeue(&node.prev->barrier, &m->_m_lock, m->_m_type & (8|128)); ++ } + + /* Since a signal was consumed, cancellation is not permitted. */ + if (e == ECANCELED) e = 0; +-- +cgit v1.2.1 + diff --git a/srcpkgs/musl/patches/fix-pi-mutex-cond-2.patch b/srcpkgs/musl/patches/fix-pi-mutex-cond-2.patch new file mode 100644 index 000000000000..b356e38b61f8 --- /dev/null +++ b/srcpkgs/musl/patches/fix-pi-mutex-cond-2.patch @@ -0,0 +1,48 @@ +From 27b2fc9d6db956359727a66c262f1e69995660aa Mon Sep 17 00:00:00 2001 +From: Rich Felker +Date: Fri, 30 Oct 2020 11:21:06 -0400 +Subject: fix missing-wake regression in pthread_cond_wait + +the reasoning in commit 2d0bbe6c788938d1332609c014eeebc1dff966ac was +not entirely correct. while it's true that setting the waiters flag +ensures that the next unlock will perform a wake, it's possible that +the wake is consumed by a mutex waiter that has no relationship with +the condvar wait queue being processed, which then takes the mutex. +when that thread subsequently unlocks, it sees no waiters, and leaves +the rest of the condvar queue stuck. + +bring back the waiter count adjustment, but skip it for PI mutexes, +for which a successful lock-after-waiting always sets the waiters bit. +if future changes are made to bring this same waiters-bit contract to +all lock types, this can be reverted. +--- + src/thread/pthread_cond_timedwait.c | 5 +++++ + 1 file changed, 5 insertions(+) + +(limited to 'src/thread/pthread_cond_timedwait.c') + +diff --git a/src/thread/pthread_cond_timedwait.c b/src/thread/pthread_cond_timedwait.c +index f5f37af1..a0cd4904 100644 +--- a/src/thread/pthread_cond_timedwait.c ++++ b/src/thread/pthread_cond_timedwait.c +@@ -146,12 +146,17 @@ relock: + + if (oldstate == WAITING) goto done; + ++ if (!node.next && !(m->_m_type & 8)) ++ a_inc(&m->_m_waiters); ++ + /* Unlock the barrier that's holding back the next waiter, and + * either wake it or requeue it to the mutex. */ + if (node.prev) { + int val = m->_m_lock; + if (val>0) a_cas(&m->_m_lock, val, val|0x80000000); + unlock_requeue(&node.prev->barrier, &m->_m_lock, m->_m_type & (8|128)); ++ } else if (!!(m->_m_type & 8)) { ++ a_dec(&m->_m_waiters); + } + + /* Since a signal was consumed, cancellation is not permitted. */ +-- +cgit v1.2.1 + diff --git a/srcpkgs/musl/patches/fix-pi-mutex-cond-3.patch b/srcpkgs/musl/patches/fix-pi-mutex-cond-3.patch new file mode 100644 index 000000000000..2cc943f26f6a --- /dev/null +++ b/srcpkgs/musl/patches/fix-pi-mutex-cond-3.patch @@ -0,0 +1,28 @@ +From d91a6cf6e369a79587c5665fce9635e5634ca201 Mon Sep 17 00:00:00 2001 +From: Rich Felker +Date: Fri, 30 Oct 2020 16:50:08 -0400 +Subject: fix erroneous pthread_cond_wait mutex waiter count logic due to typo + +introduced in commit 27b2fc9d6db956359727a66c262f1e69995660aa. +--- + src/thread/pthread_cond_timedwait.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +(limited to 'src/thread/pthread_cond_timedwait.c') + +diff --git a/src/thread/pthread_cond_timedwait.c b/src/thread/pthread_cond_timedwait.c +index a0cd4904..6b761455 100644 +--- a/src/thread/pthread_cond_timedwait.c ++++ b/src/thread/pthread_cond_timedwait.c +@@ -155,7 +155,7 @@ relock: + int val = m->_m_lock; + if (val>0) a_cas(&m->_m_lock, val, val|0x80000000); + unlock_requeue(&node.prev->barrier, &m->_m_lock, m->_m_type & (8|128)); +- } else if (!!(m->_m_type & 8)) { ++ } else if (!(m->_m_type & 8)) { + a_dec(&m->_m_waiters); + } + +-- +cgit v1.2.1 + diff --git a/srcpkgs/musl/template b/srcpkgs/musl/template index a429ccaf999a..d30c99a563a0 100644 --- a/srcpkgs/musl/template +++ b/srcpkgs/musl/template @@ -2,7 +2,7 @@ pkgname=musl reverts="1.2.0_1" version=1.1.24 -revision=8 +revision=9 archs="*-musl" bootstrap=yes build_style=gnu-configure From 526a182d9bdef4401c176e47ace0133356d2732a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89rico=20Nogueira?= Date: Sat, 31 Jul 2021 02:14:55 -0300 Subject: [PATCH 133/824] bcc: (actually) update to 0.21.0. The unversioned file name means we can accidentally fool the distfiles cache, so the package was built with the wrong distfiles. We avoid this issue in the future by renaming the file to one that contains the version. --- srcpkgs/bcc/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/bcc/template b/srcpkgs/bcc/template index 5fdf8be098b3..5a3e66c86c5d 100644 --- a/srcpkgs/bcc/template +++ b/srcpkgs/bcc/template @@ -1,7 +1,7 @@ # Template file for 'bcc' pkgname=bcc version=0.21.0 -revision=1 +revision=2 wrksrc="bcc" build_style=cmake configure_args="-DREVISION=${version}" @@ -12,8 +12,8 @@ short_desc="BPF-based Linux IO analysis, networking, monitoring, and more" maintainer="Leah Neukirchen " license="Apache-2.0" homepage="https://github.com/iovisor/bcc" -distfiles="https://github.com/iovisor/bcc/releases/download/v${version}/bcc-src-with-submodule.tar.gz" -checksum=93edc925675262aa509f5eaf146f2fc7dfa3e01d1b0336a5de01ee6d72fa493b +distfiles="https://github.com/iovisor/bcc/releases/download/v${version}/bcc-src-with-submodule.tar.gz>bcc-${version}.tar.gz" +checksum=5323e2a505f6868976d973a234202332ec25dc36f0bf7c118c23fc24f6147215 python_version="3" if [ "$XBPS_TARGET_NO_ATOMIC8" ]; then From 2b855e52fcc047dd9eb994688931c0f2b913da81 Mon Sep 17 00:00:00 2001 From: Frank Steinborn Date: Sat, 31 Jul 2021 10:53:58 +0200 Subject: [PATCH 134/824] scrot: update to 1.6. --- srcpkgs/scrot/template | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/srcpkgs/scrot/template b/srcpkgs/scrot/template index fe8ae3006c5a..7565f4303e7e 100644 --- a/srcpkgs/scrot/template +++ b/srcpkgs/scrot/template @@ -1,17 +1,17 @@ # Template file for 'scrot' pkgname=scrot -version=1.5 +version=1.6 revision=1 build_style=gnu-configure make_install_args="docsdir=/usr/share/doc/scrot" -hostmakedepends="automake autoconf-archive" -makedepends="libXcomposite-devel libXcursor-devel giblib-devel imlib2-devel" +hostmakedepends="automake autoconf-archive pkg-config" +makedepends="libXcomposite-devel libXcursor-devel imlib2-devel libXext-devel" short_desc="Simple command-line screenshot utility for X" maintainer="Frank Steinborn " license="MIT" homepage="https://github.com/resurrecting-open-source-projects/scrot" distfiles="https://github.com/resurrecting-open-source-projects/scrot/archive/${version}.tar.gz" -checksum=87afba3998aac097f13231f3b0452c21188bf4b5cc6ac0747693a1da1a0ae40f +checksum=5d53df3e86220b8aca21be03a39b542905f2a8a0ccd950fdce7fc48a32c09050 pre_configure() { ./autogen.sh From bb8b54a3e3efc51480c6dab404451e2738b38c77 Mon Sep 17 00:00:00 2001 From: Frank Steinborn Date: Sat, 31 Jul 2021 10:52:54 +0200 Subject: [PATCH 135/824] libmbim: update to 1.26.0. --- srcpkgs/libmbim/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/libmbim/template b/srcpkgs/libmbim/template index 28ded1e2b78e..daabc077e556 100644 --- a/srcpkgs/libmbim/template +++ b/srcpkgs/libmbim/template @@ -1,6 +1,6 @@ # Template file for 'libmbim' pkgname=libmbim -version=1.24.8 +version=1.26.0 revision=1 build_style=gnu-configure build_helper=gir @@ -12,7 +12,7 @@ maintainer="Frank Steinborn " license="GPL-2.0-or-later, LGPL-2.1-or-later" homepage="https://www.freedesktop.org/wiki/Software/libmbim/" distfiles="${FREEDESKTOP_SITE}/${pkgname}/${pkgname}-${version}.tar.xz" -checksum=02590736163fff10e5732191fccc1b9920969616ddc59613a003052a116a3c25 +checksum=1e1f0926b22c77210442129eca689722ecf324ab9c9abf421a5c989f46e813cf build_options="gir" build_options_default="gir" From e9d8d473ecad40e9d28c0997d691a108f5e995ae Mon Sep 17 00:00:00 2001 From: Frank Steinborn Date: Sun, 25 Jul 2021 11:15:46 +0200 Subject: [PATCH 136/824] New package: shiori-1.5.0 --- srcpkgs/shiori/files/shiori/run | 4 ++++ srcpkgs/shiori/template | 23 +++++++++++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 srcpkgs/shiori/files/shiori/run create mode 100644 srcpkgs/shiori/template diff --git a/srcpkgs/shiori/files/shiori/run b/srcpkgs/shiori/files/shiori/run new file mode 100644 index 000000000000..0cd56601f58d --- /dev/null +++ b/srcpkgs/shiori/files/shiori/run @@ -0,0 +1,4 @@ +#!/bin/sh + +[ -r ./conf ] && . ./conf +exec chpst -u _shiori shiori serve ${OPTS="--address 127.0.0.1 --port 8080"} diff --git a/srcpkgs/shiori/template b/srcpkgs/shiori/template new file mode 100644 index 000000000000..9a7ec9528226 --- /dev/null +++ b/srcpkgs/shiori/template @@ -0,0 +1,23 @@ +# Template file for 'shiori' +pkgname=shiori +version=1.5.0 +revision=1 +build_style=go +go_import_path=github.com/go-shiori/shiori +short_desc="Simple bookmark manager built with Go" +maintainer="Frank Steinborn " +license="MIT" +homepage="https://github.com/go-shiori/shiori" +distfiles="${homepage}/archive/refs/tags/v${version}.tar.gz" +checksum=c2ebc0f009feb22f891c7ab0fa7b8c0d71e1cfc34a974c7503a702ec07d8e9ee + +system_accounts="_shiori" +_shiori_homedir="/var/lib/shiori" +_shiori_descr="shiori bookmark manager" + +make_dirs="/var/lib/shiori 0700 _shiori _shiori" + +post_install() { + vsv shiori + vlicense LICENSE +} From 18c5ca6f8beb6a38f6c33af60e1951a29e92fc5e Mon Sep 17 00:00:00 2001 From: q66 Date: Mon, 2 Aug 2021 23:20:05 +0200 Subject: [PATCH 137/824] bcc: use an updated libbpf to fix build on 32-bit systems --- srcpkgs/bcc/template | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/srcpkgs/bcc/template b/srcpkgs/bcc/template index 5a3e66c86c5d..c2b7a65c19fd 100644 --- a/srcpkgs/bcc/template +++ b/srcpkgs/bcc/template @@ -1,7 +1,7 @@ # Template file for 'bcc' pkgname=bcc version=0.21.0 -revision=2 +revision=3 wrksrc="bcc" build_style=cmake configure_args="-DREVISION=${version}" @@ -12,8 +12,12 @@ short_desc="BPF-based Linux IO analysis, networking, monitoring, and more" maintainer="Leah Neukirchen " license="Apache-2.0" homepage="https://github.com/iovisor/bcc" -distfiles="https://github.com/iovisor/bcc/releases/download/v${version}/bcc-src-with-submodule.tar.gz>bcc-${version}.tar.gz" -checksum=5323e2a505f6868976d973a234202332ec25dc36f0bf7c118c23fc24f6147215 +# use a newer libbpf to fix compile issues on various targets +# you should be able to drop this for the next update +distfiles="https://github.com/iovisor/bcc/releases/download/v${version}/bcc-src-with-submodule.tar.gz>bcc-${version}.tar.gz + https://github.com/libbpf/libbpf/archive/506a544834573905ada61da8e00f54b04f0caf43.tar.gz" +checksum="5323e2a505f6868976d973a234202332ec25dc36f0bf7c118c23fc24f6147215 + e1db8edc20997270a7d7c4d6e5d881abb941828601f113866ebb4073168c1f87" python_version="3" if [ "$XBPS_TARGET_NO_ATOMIC8" ]; then @@ -23,6 +27,9 @@ fi post_extract() { sed -i '/tests/d' CMakeLists.txt # break on musl sed -i 's///' examples/cpp/KModRetExample.cc + # use a newer libbpf with fixes + rm -rf src/cc/libbpf + mv ../libbpf* src/cc/libbpf } bcc-tools_package() { short_desc+=" - tools" From 12f79a6f3336a2e177c02964fcd245bafd8d1e34 Mon Sep 17 00:00:00 2001 From: amak Date: Sat, 15 Aug 2020 20:57:51 +1000 Subject: [PATCH 138/824] New package : python3-RPi.GPIO-0.7.0 --- srcpkgs/python3-RPi.GPIO/template | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 srcpkgs/python3-RPi.GPIO/template diff --git a/srcpkgs/python3-RPi.GPIO/template b/srcpkgs/python3-RPi.GPIO/template new file mode 100644 index 000000000000..204eba16181f --- /dev/null +++ b/srcpkgs/python3-RPi.GPIO/template @@ -0,0 +1,24 @@ +# Template file for 'python3-RPi.GPIO' +pkgname=python3-RPi.GPIO +version=0.7.0 +revision=1 +archs="armv[67]l* aarch64*" +wrksrc="${pkgname#*-}-${version}" +build_style=python3-module +hostmakedepends="python3-setuptools" +makedepends="python3-devel" +depends="python3" +short_desc="Module to control Raspberry Pi GPIO channels" +maintainer="amak " +license="MIT" +homepage="https://sourceforge.net/projects/raspberry-gpio-python" +distfiles="${SOURCEFORGE_SITE}/project/raspberry-gpio-python/RPi.GPIO-${version}.tar.gz" +checksum=7424bc6c205466764f30f666c18187a0824077daf20b295c42f08aea2cb87d3f + +# needed for gcc 10 +# fixed upstream in commit 8a0a65 +CFLAGS="-fcommon" + +post_install() { + vlicense LICENCE.txt +} From 8822f15cbcd902c3e5ec7c755817dd77e5b40227 Mon Sep 17 00:00:00 2001 From: Pulux Date: Tue, 27 Jul 2021 08:38:10 +0200 Subject: [PATCH 139/824] sslh: add patch to work with libconfig 1.7.3 --- .../backport-fix-for-libconfig-1.7.3.patch | 712 ++++++++++++++++++ srcpkgs/sslh/template | 2 +- 2 files changed, 713 insertions(+), 1 deletion(-) create mode 100644 srcpkgs/sslh/patches/backport-fix-for-libconfig-1.7.3.patch diff --git a/srcpkgs/sslh/patches/backport-fix-for-libconfig-1.7.3.patch b/srcpkgs/sslh/patches/backport-fix-for-libconfig-1.7.3.patch new file mode 100644 index 000000000000..837e9c28249b --- /dev/null +++ b/srcpkgs/sslh/patches/backport-fix-for-libconfig-1.7.3.patch @@ -0,0 +1,712 @@ +From: yrutschle +Date: Wed, 23 Jun 2021 11:48:59 +0200 +Subject: fix for libconfig 1.7.3 + + +diff --git a/sslh-conf.c b/sslh-conf.c +index 2fd0eaf..530ef6b 100644 +--- a/sslh-conf.c ++++ b/sslh-conf.c +@@ -1,5 +1,5 @@ + /* Generated by conf2struct (https://www.rutschle.net/tech/conf2struct/README) +- * on Wed Jul 29 22:51:16 2020. ++ * on Wed Jun 23 11:46:45 2021. + + # conf2struct: generate libconf parsers that read to structs + # Copyright (C) 2018-2019 Yves Rutschle +@@ -48,6 +48,18 @@ + /* This gets included in the output .c file */ + + ++/* Libconfig 1.4.9 is still used by major distributions ++ * (e.g. CentOS7) and had a different name for ++ * config_setting_lookup */ ++#if LIBCONFIG_VER_MAJOR == 1 ++#if LIBCONFIG_VER_MINOR == 4 ++#if LIBCONFIG_VER_REVISION == 9 ++#define config_setting_lookup config_lookup_from ++#endif ++#endif ++#endif ++ ++ + /* config_type, lookup_fns, type2str are related, keep them together */ + typedef enum { + CFG_BOOL, +@@ -114,6 +126,14 @@ typedef int config_t; + return 0; \ + } + ++enum { ++ CONFIG_TYPE_INT, ++ CONFIG_TYPE_BOOL, ++ CONFIG_TYPE_INT64, ++ CONFIG_TYPE_FLOAT, ++ CONFIG_TYPE_STRING ++}; ++ + make_config_setting_lookup(bool); + make_config_setting_lookup(int); + make_config_setting_lookup(int64); +@@ -122,10 +142,14 @@ make_config_setting_lookup(string); + + make_config_setting_get(bool, int); + make_config_setting_get(int, int); +-make_config_setting_get(int64, int); ++make_config_setting_get(int64, long long int); + make_config_setting_get(float, double); + make_config_setting_get(string, char*); + ++config_setting_t* config_root_setting(config_t* c) { ++ return NULL; ++} ++ + config_setting_t* config_lookup(config_t* c, const char* b) { + return NULL; + } +@@ -134,10 +158,38 @@ void config_init(config_t* c) { + return; + } + ++char* config_setting_name(config_setting_t* c) { ++ return NULL; ++} ++ ++int config_setting_is_list(config_setting_t* c) { ++ return 0; ++} ++ ++int config_setting_is_array(config_setting_t* c) { ++ return 0; ++} ++ ++int config_setting_is_scalar(config_setting_t* c) { ++ return 0; ++} ++ ++int config_setting_index(const config_setting_t *setting) { ++ return 0; ++} ++ + config_setting_t* config_setting_lookup(config_setting_t* a, char* b) { + return NULL; + } + ++int config_setting_remove(config_setting_t* cfg, char* name) { ++ return 0; ++} ++ ++int config_setting_type(config_setting_t* s) { ++ return -1; ++} ++ + int config_setting_length(config_setting_t* a) { + return 0; + } +@@ -159,13 +211,30 @@ char* config_error_text(config_t* c) { + } + #endif + ++/* This is the same as config_setting_lookup_string() except ++it allocates a new string which belongs to the caller */ ++static int myconfig_setting_lookup_stringcpy( ++ const config_setting_t* setting, ++ const char* name, ++ char** value) ++{ ++ const char* str; ++ *value = NULL; ++ if (config_setting_lookup_string(setting, name, &str) == CONFIG_TRUE) { ++ asprintf(value, "%s", str); ++ return CONFIG_TRUE; ++ } else { ++ return CONFIG_FALSE; ++ } ++} ++ + typedef int (*lookup_fn)(const config_setting_t*, const char*, void*); + lookup_fn lookup_fns[] = { + (lookup_fn)config_setting_lookup_bool, + (lookup_fn)config_setting_lookup_int, + (lookup_fn)config_setting_lookup_int64, + (lookup_fn)config_setting_lookup_float, +- (lookup_fn)config_setting_lookup_string, ++ (lookup_fn)myconfig_setting_lookup_stringcpy, + NULL, /* CFG_GROUP */ + NULL, /* CFG_ARRAY */ + NULL, /* CFG_LIST */ +@@ -380,6 +449,7 @@ struct arg_file* sslhcfg_conffile; + struct arg_str* sslhcfg_chroot; + struct arg_str* sslhcfg_syslog_facility; + struct arg_str* sslhcfg_on_timeout; ++ struct arg_str* sslhcfg_prefix; + struct arg_str* sslhcfg_listen; + struct arg_str* sslhcfg_ssh; + struct arg_str* sslhcfg_tls; +@@ -392,7 +462,7 @@ struct arg_file* sslhcfg_conffile; + struct arg_str* sslhcfg_anyprot; + struct arg_end* sslhcfg_end; + +- ++ + static struct config_desc table_sslhcfg_protocols[] = { + + +@@ -460,6 +530,22 @@ static struct config_desc table_sslhcfg_protocols[] = { + /* default_val*/ .default_val.def_string = NULL + }, + ++ { ++ /* name */ "is_udp", ++ /* type */ CFG_BOOL, ++ /* sub_group*/ NULL, ++ /* arg_cl */ NULL, ++ /* base_addr */ NULL, ++ /* offset */ offsetof(struct sslhcfg_protocols_item, is_udp), ++ /* offset_len */ 0, ++ /* offset_present */ 0, ++ /* size */ sizeof(int), ++ /* array_type */ -1, ++ /* mandatory */ 0, ++ /* optional */ 0, ++ /* default_val*/ .default_val.def_bool = 0 ++ }, ++ + { + /* name */ "fork", + /* type */ CFG_BOOL, +@@ -492,6 +578,22 @@ static struct config_desc table_sslhcfg_protocols[] = { + /* default_val*/ .default_val.def_bool = 0 + }, + ++ { ++ /* name */ "transparent", ++ /* type */ CFG_BOOL, ++ /* sub_group*/ NULL, ++ /* arg_cl */ NULL, ++ /* base_addr */ NULL, ++ /* offset */ offsetof(struct sslhcfg_protocols_item, transparent), ++ /* offset_len */ 0, ++ /* offset_present */ 0, ++ /* size */ sizeof(int), ++ /* array_type */ -1, ++ /* mandatory */ 0, ++ /* optional */ 0, ++ /* default_val*/ .default_val.def_bool = 0 ++ }, ++ + { + /* name */ "log_level", + /* type */ CFG_INT, +@@ -589,7 +691,7 @@ static struct config_desc table_sslhcfg_protocols[] = { + }, + { 0 } + }; +- ++ + static struct config_desc table_sslhcfg_listen[] = { + + +@@ -625,6 +727,22 @@ static struct config_desc table_sslhcfg_listen[] = { + /* default_val*/ .default_val.def_string = NULL + }, + ++ { ++ /* name */ "is_udp", ++ /* type */ CFG_BOOL, ++ /* sub_group*/ NULL, ++ /* arg_cl */ NULL, ++ /* base_addr */ NULL, ++ /* offset */ offsetof(struct sslhcfg_listen_item, is_udp), ++ /* offset_len */ 0, ++ /* offset_present */ 0, ++ /* size */ sizeof(int), ++ /* array_type */ -1, ++ /* mandatory */ 0, ++ /* optional */ 0, ++ /* default_val*/ .default_val.def_bool = 0 ++ }, ++ + { + /* name */ "keepalive", + /* type */ CFG_BOOL, +@@ -642,7 +760,7 @@ static struct config_desc table_sslhcfg_listen[] = { + }, + { 0 } + }; +- ++ + static struct config_desc table_sslhcfg[] = { + + +@@ -822,6 +940,22 @@ static struct config_desc table_sslhcfg[] = { + /* default_val*/ .default_val.def_string = "ssh" + }, + ++ { ++ /* name */ "prefix", ++ /* type */ CFG_STRING, ++ /* sub_group*/ NULL, ++ /* arg_cl */ & sslhcfg_prefix, ++ /* base_addr */ NULL, ++ /* offset */ offsetof(struct sslhcfg_item, prefix), ++ /* offset_len */ 0, ++ /* offset_present */ 0, ++ /* size */ sizeof(char*), ++ /* array_type */ -1, ++ /* mandatory */ 0, ++ /* optional */ 0, ++ /* default_val*/ .default_val.def_string = "" ++ }, ++ + { + /* name */ "listen", + /* type */ CFG_LIST, +@@ -859,7 +993,7 @@ static struct compound_cl_target sslhcfg_anyprot_targets [] = { + { & table_sslhcfg_protocols[0], 0, .value.def_string = "anyprot" }, + { & table_sslhcfg_protocols[1], 1, .value.def_string = "0" }, + { & table_sslhcfg_protocols[2], 2, .value.def_string = "0" }, +- { & table_sslhcfg_protocols[6], 0, .value.def_int = 1 }, ++ { & table_sslhcfg_protocols[8], 0, .value.def_int = 1 }, + { 0 } + }; + +@@ -867,7 +1001,7 @@ static struct compound_cl_target sslhcfg_socks5_targets [] = { + { & table_sslhcfg_protocols[0], 0, .value.def_string = "socks5" }, + { & table_sslhcfg_protocols[1], 1, .value.def_string = "0" }, + { & table_sslhcfg_protocols[2], 2, .value.def_string = "0" }, +- { & table_sslhcfg_protocols[6], 0, .value.def_int = 1 }, ++ { & table_sslhcfg_protocols[8], 0, .value.def_int = 1 }, + { 0 } + }; + +@@ -875,7 +1009,7 @@ static struct compound_cl_target sslhcfg_adb_targets [] = { + { & table_sslhcfg_protocols[0], 0, .value.def_string = "adb" }, + { & table_sslhcfg_protocols[1], 1, .value.def_string = "0" }, + { & table_sslhcfg_protocols[2], 2, .value.def_string = "0" }, +- { & table_sslhcfg_protocols[6], 0, .value.def_int = 1 }, ++ { & table_sslhcfg_protocols[8], 0, .value.def_int = 1 }, + { 0 } + }; + +@@ -883,7 +1017,7 @@ static struct compound_cl_target sslhcfg_http_targets [] = { + { & table_sslhcfg_protocols[0], 0, .value.def_string = "http" }, + { & table_sslhcfg_protocols[1], 1, .value.def_string = "0" }, + { & table_sslhcfg_protocols[2], 2, .value.def_string = "0" }, +- { & table_sslhcfg_protocols[6], 0, .value.def_int = 1 }, ++ { & table_sslhcfg_protocols[8], 0, .value.def_int = 1 }, + { 0 } + }; + +@@ -891,7 +1025,7 @@ static struct compound_cl_target sslhcfg_xmpp_targets [] = { + { & table_sslhcfg_protocols[0], 0, .value.def_string = "xmpp" }, + { & table_sslhcfg_protocols[1], 1, .value.def_string = "0" }, + { & table_sslhcfg_protocols[2], 2, .value.def_string = "0" }, +- { & table_sslhcfg_protocols[6], 0, .value.def_int = 1 }, ++ { & table_sslhcfg_protocols[8], 0, .value.def_int = 1 }, + { 0 } + }; + +@@ -899,8 +1033,8 @@ static struct compound_cl_target sslhcfg_tinc_targets [] = { + { & table_sslhcfg_protocols[0], 0, .value.def_string = "tinc" }, + { & table_sslhcfg_protocols[1], 1, .value.def_string = "0" }, + { & table_sslhcfg_protocols[2], 2, .value.def_string = "0" }, +- { & table_sslhcfg_protocols[6], 0, .value.def_int = 1 }, +- { & table_sslhcfg_protocols[5], 0, .value.def_bool = 1 }, ++ { & table_sslhcfg_protocols[8], 0, .value.def_int = 1 }, ++ { & table_sslhcfg_protocols[6], 0, .value.def_bool = 1 }, + { 0 } + }; + +@@ -908,8 +1042,8 @@ static struct compound_cl_target sslhcfg_openvpn_targets [] = { + { & table_sslhcfg_protocols[0], 0, .value.def_string = "openvpn" }, + { & table_sslhcfg_protocols[1], 1, .value.def_string = "0" }, + { & table_sslhcfg_protocols[2], 2, .value.def_string = "0" }, +- { & table_sslhcfg_protocols[6], 0, .value.def_int = 1 }, +- { & table_sslhcfg_protocols[5], 0, .value.def_bool = 1 }, ++ { & table_sslhcfg_protocols[8], 0, .value.def_int = 1 }, ++ { & table_sslhcfg_protocols[6], 0, .value.def_bool = 1 }, + { 0 } + }; + +@@ -917,8 +1051,8 @@ static struct compound_cl_target sslhcfg_tls_targets [] = { + { & table_sslhcfg_protocols[0], 0, .value.def_string = "tls" }, + { & table_sslhcfg_protocols[1], 1, .value.def_string = "0" }, + { & table_sslhcfg_protocols[2], 2, .value.def_string = "0" }, +- { & table_sslhcfg_protocols[6], 0, .value.def_int = 1 }, +- { & table_sslhcfg_protocols[5], 0, .value.def_bool = 1 }, ++ { & table_sslhcfg_protocols[8], 0, .value.def_int = 1 }, ++ { & table_sslhcfg_protocols[6], 0, .value.def_bool = 1 }, + { 0 } + }; + +@@ -926,9 +1060,9 @@ static struct compound_cl_target sslhcfg_ssh_targets [] = { + { & table_sslhcfg_protocols[0], 0, .value.def_string = "ssh" }, + { & table_sslhcfg_protocols[1], 1, .value.def_string = "0" }, + { & table_sslhcfg_protocols[2], 2, .value.def_string = "0" }, +- { & table_sslhcfg_protocols[4], 0, .value.def_bool = 1 }, +- { & table_sslhcfg_protocols[6], 0, .value.def_int = 1 }, + { & table_sslhcfg_protocols[5], 0, .value.def_bool = 1 }, ++ { & table_sslhcfg_protocols[8], 0, .value.def_int = 1 }, ++ { & table_sslhcfg_protocols[6], 0, .value.def_bool = 1 }, + { 0 } + }; + +@@ -942,7 +1076,7 @@ static struct compound_cl_arg compound_cl_args[] = { + { /* arg: listen */ + .regex = "(.+):(\\w+)", + .arg_cl = & sslhcfg_listen, +- .base_entry = & table_sslhcfg [11], ++ .base_entry = & table_sslhcfg [12], + .targets = sslhcfg_listen_targets, + + +@@ -954,7 +1088,7 @@ static struct compound_cl_arg compound_cl_args[] = { + { /* arg: ssh */ + .regex = "(.+):(\\w+)", + .arg_cl = & sslhcfg_ssh, +- .base_entry = & table_sslhcfg [12], ++ .base_entry = & table_sslhcfg [13], + .targets = sslhcfg_ssh_targets, + + +@@ -966,7 +1100,7 @@ static struct compound_cl_arg compound_cl_args[] = { + { /* arg: tls */ + .regex = "(.+):(\\w+)", + .arg_cl = & sslhcfg_tls, +- .base_entry = & table_sslhcfg [12], ++ .base_entry = & table_sslhcfg [13], + .targets = sslhcfg_tls_targets, + + +@@ -978,7 +1112,7 @@ static struct compound_cl_arg compound_cl_args[] = { + { /* arg: openvpn */ + .regex = "(.+):(\\w+)", + .arg_cl = & sslhcfg_openvpn, +- .base_entry = & table_sslhcfg [12], ++ .base_entry = & table_sslhcfg [13], + .targets = sslhcfg_openvpn_targets, + + +@@ -990,7 +1124,7 @@ static struct compound_cl_arg compound_cl_args[] = { + { /* arg: tinc */ + .regex = "(.+):(\\w+)", + .arg_cl = & sslhcfg_tinc, +- .base_entry = & table_sslhcfg [12], ++ .base_entry = & table_sslhcfg [13], + .targets = sslhcfg_tinc_targets, + + +@@ -1002,7 +1136,7 @@ static struct compound_cl_arg compound_cl_args[] = { + { /* arg: xmpp */ + .regex = "(.+):(\\w+)", + .arg_cl = & sslhcfg_xmpp, +- .base_entry = & table_sslhcfg [12], ++ .base_entry = & table_sslhcfg [13], + .targets = sslhcfg_xmpp_targets, + + +@@ -1014,7 +1148,7 @@ static struct compound_cl_arg compound_cl_args[] = { + { /* arg: http */ + .regex = "(.+):(\\w+)", + .arg_cl = & sslhcfg_http, +- .base_entry = & table_sslhcfg [12], ++ .base_entry = & table_sslhcfg [13], + .targets = sslhcfg_http_targets, + + +@@ -1026,7 +1160,7 @@ static struct compound_cl_arg compound_cl_args[] = { + { /* arg: adb */ + .regex = "(.+):(\\w+)", + .arg_cl = & sslhcfg_adb, +- .base_entry = & table_sslhcfg [12], ++ .base_entry = & table_sslhcfg [13], + .targets = sslhcfg_adb_targets, + + +@@ -1038,7 +1172,7 @@ static struct compound_cl_arg compound_cl_args[] = { + { /* arg: socks5 */ + .regex = "(.+):(\\w+)", + .arg_cl = & sslhcfg_socks5, +- .base_entry = & table_sslhcfg [12], ++ .base_entry = & table_sslhcfg [13], + .targets = sslhcfg_socks5_targets, + + +@@ -1050,7 +1184,7 @@ static struct compound_cl_arg compound_cl_args[] = { + { /* arg: anyprot */ + .regex = "(.+):(\\w+)", + .arg_cl = & sslhcfg_anyprot, +- .base_entry = & table_sslhcfg [12], ++ .base_entry = & table_sslhcfg [13], + .targets = sslhcfg_anyprot_targets, + + +@@ -1108,7 +1242,7 @@ static void print_setting(config_type type, void* val) + + /* Changes all dashes to underscores in a string of + * vice-versa */ +-void strswap_ud(const char target, char* str) ++static void strswap_ud(const char target, char* str) + { + char* c; + for (c = str; *c; c++) +@@ -1118,7 +1252,7 @@ void strswap_ud(const char target, char* str) + + /* Same as config_setting_lookup() but looks up with dash or + * underscore so `my_setting` and `my-setting` match the same */ +-config_setting_t* config_setting_lookup_ud(config_setting_t* cfg, struct config_desc* desc) ++static config_setting_t* config_setting_lookup_ud(config_setting_t* cfg, struct config_desc* desc) + { + config_setting_t* setting; + char name[strlen(desc->name)+1];; +@@ -1134,7 +1268,7 @@ config_setting_t* config_setting_lookup_ud(config_setting_t* cfg, struct config_ + return setting; + } + +-int lookup_typed_ud(config_setting_t* cfg, void* target, struct config_desc *desc) ++static int lookup_typed_ud(config_setting_t* cfg, void* target, struct config_desc *desc) + { + lookup_fn lookup_fn = lookup_fns[desc->type]; + char name[strlen(desc->name)+1];; +@@ -1148,6 +1282,22 @@ int lookup_typed_ud(config_setting_t* cfg, void* target, struct config_desc *des + return lookup_fn(cfg, name, ((char*)target) + desc->offset); + } + ++/* Removes a setting, trying both underscores and dashes as ++* name (so deleting 'my-setting' deletes both 'my_setting' ++* and 'my-setting') */ ++static int setting_delete_ud(config_setting_t* cfg, struct config_desc *desc) ++{ ++ char name[strlen(desc->name)+1];; ++ strcpy(name, desc->name); ++ ++ strswap_ud('_', name); ++ if (config_setting_remove(cfg, name) == CONFIG_TRUE) ++ return CONFIG_TRUE; ++ ++ strswap_ud('-', name); ++ return config_setting_remove(cfg, name); ++} ++ + /* When traversing configuration, allocate memory for plural + * types, init for scalars */ + static void read_block_init(void* target, config_setting_t* cfg, struct config_desc* desc) +@@ -1232,6 +1382,7 @@ static int read_block_setval(void* target, + TRACE_READ(("[%d] = ", i)); + print_setting(desc->array_type, (char*)block + desc->size *i); TRACE_READ(("\n")); + } ++ setting_delete_ud(cfg, desc); + } + break; + +@@ -1253,6 +1404,7 @@ static int read_block_setval(void* target, + return 0; + } + print_setting(desc->type, (((char*)target) + desc->offset)); ++ setting_delete_ud(cfg, desc); + in_cfg = 1; + } else { + TRACE_READ((" not in config file")); +@@ -1544,6 +1696,86 @@ static int c2s_parse_file(const char* filename, config_t* c, char**errmsg) + return 1; + } + ++/* Allocates a new string that represents the setting value, which must be a scalar */ ++static void scalar_to_string(char** strp, config_setting_t* s) ++{ ++ switch(config_setting_type(s)) { ++ case CONFIG_TYPE_INT: ++ asprintf(strp, "%d\n", config_setting_get_int(s)); ++ break; ++ ++ case CONFIG_TYPE_BOOL: ++ asprintf(strp, "%s\n", config_setting_get_bool(s) ? "[true]" : "[false]" ); ++ break; ++ ++ case CONFIG_TYPE_INT64: ++ asprintf(strp, "%lld\n", config_setting_get_int64(s)); ++ break; ++ ++ case CONFIG_TYPE_FLOAT: ++ asprintf(strp, "%lf\n", config_setting_get_float(s)); ++ break; ++ ++ case CONFIG_TYPE_STRING: ++ asprintf(strp, "%s\n", config_setting_get_string(s)); ++ break; ++ ++ default: /* This means a bug */ ++ fprintf(stderr, "Unexpected type %d\n", config_setting_type(s)); ++ exit(1); ++ } ++} ++ ++/* Typesets all the settings in a configuration as a ++* newly-allocated string. The string management is caller's ++* responsability. ++* Returns the number of scalars in the configuration */ ++static int cfg_as_string(config_setting_t* parent, const char* path, char** strp) ++{ ++ int i, len, res = 0; ++ config_setting_t* child; ++ char* subpath, *value, *old; ++ const char* name; ++ ++ len = config_setting_length(parent); ++ for (i = 0; i < len; i++) { ++ child = config_setting_get_elem(parent, i); ++ name = config_setting_name(child); ++ if (!name) name = ""; ++ ++ if(config_setting_is_list(parent) || ++ config_setting_is_array(parent)) { ++ asprintf(&subpath, "%s[%d]%s", path, config_setting_index(child), name); ++ } else { ++ asprintf(&subpath, "%s/%s", path, name); ++ } ++ ++ if (config_setting_is_scalar(child)) { ++ scalar_to_string(&value, child); ++ ++ /* Add value to the output string */ ++ if (*strp) { ++ asprintf(&old, "%s", *strp); ++ free(*strp); ++ } else { ++ asprintf(&old, "%s", ""); ++ } ++ asprintf(strp, "%s%s:%s", old, subpath, value); ++ free(value); ++ free(old); ++ ++ res++; /* At least one scalar was found */ ++ } else { ++ /* It's an aggregate -- descend into it */ ++ res += cfg_as_string(child, subpath, strp); ++ } ++ ++ free(subpath); ++ } ++ return res; ++} ++ ++ + /* 0: success + <0: error */ + int sslhcfg_cl_parse(int argc, char* argv[], struct sslhcfg_item* cfg) +@@ -1567,6 +1799,7 @@ int sslhcfg_cl_parse(int argc, char* argv[], struct sslhcfg_item* cfg) + sslhcfg_chroot = arg_strn("C", "chroot", "", 0, 1, "Root to change to after set-up"), + sslhcfg_syslog_facility = arg_strn(NULL, "syslog-facility", "", 0, 1, "Facility to syslog to"), + sslhcfg_on_timeout = arg_strn(NULL, "on-timeout", "", 0, 1, "Target to connect to when timing out"), ++ sslhcfg_prefix = arg_strn(NULL, "prefix", "", 0, 1, "Reserved for testing"), + sslhcfg_listen = arg_strn("p", "listen", "", 0, 10, "Listen on host:port"), + sslhcfg_ssh = arg_strn(NULL, "ssh", "", 0, 10, "Set up ssh target"), + sslhcfg_tls = arg_strn(NULL, "tls", "", 0, 10, "Set up TLS/SSL target"), +@@ -1592,14 +1825,14 @@ int sslhcfg_cl_parse(int argc, char* argv[], struct sslhcfg_item* cfg) + + + config_init(&c); +- if (sslhcfg_conffile->count) { ++ if (sslhcfg_conffile && sslhcfg_conffile->count) { + if (!c2s_parse_file(sslhcfg_conffile->filename[0], &c, &errmsg)) { + fprintf(stderr, "%s\n", errmsg); + return -1; + } + } + +- s = config_lookup(&c, "/"); ++ s = config_root_setting(&c); + + res = read_block(s, cfg, table_sslhcfg, &errmsg); + if (!res) { +@@ -1613,6 +1846,11 @@ int sslhcfg_cl_parse(int argc, char* argv[], struct sslhcfg_item* cfg) + return -1; + } + ++ errmsg = NULL; ++ res = cfg_as_string(s, "", &errmsg); ++ if (res) ++ fprintf(stderr, "Unknown settings:\n%s\n", errmsg); ++ + return 0; + } + +@@ -1645,12 +1883,18 @@ static void sslhcfg_protocols_fprint( + fprintf(out, " "); + fprintf(out, "\n"); + indent(out, depth); ++ fprintf(out, "is_udp: %d", sslhcfg_protocols->is_udp); ++ fprintf(out, "\n"); ++ indent(out, depth); + fprintf(out, "fork: %d", sslhcfg_protocols->fork); + fprintf(out, "\n"); + indent(out, depth); + fprintf(out, "tfo_ok: %d", sslhcfg_protocols->tfo_ok); + fprintf(out, "\n"); + indent(out, depth); ++ fprintf(out, "transparent: %d", sslhcfg_protocols->transparent); ++ fprintf(out, "\n"); ++ indent(out, depth); + fprintf(out, "log_level: %d", sslhcfg_protocols->log_level); + fprintf(out, "\n"); + indent(out, depth); +@@ -1694,6 +1938,9 @@ static void sslhcfg_listen_fprint( + fprintf(out, "port: %s", sslhcfg_listen->port); + fprintf(out, "\n"); + indent(out, depth); ++ fprintf(out, "is_udp: %d", sslhcfg_listen->is_udp); ++ fprintf(out, "\n"); ++ indent(out, depth); + fprintf(out, "keepalive: %d", sslhcfg_listen->keepalive); + fprintf(out, "\n"); + } +@@ -1743,6 +1990,9 @@ void sslhcfg_fprint( + indent(out, depth); + fprintf(out, "on_timeout: %s", sslhcfg->on_timeout); + fprintf(out, "\n"); ++ indent(out, depth); ++ fprintf(out, "prefix: %s", sslhcfg->prefix); ++ fprintf(out, "\n"); + + indent(out, depth); + fprintf(out, "listen [%zu]:\n", sslhcfg->listen_len); +diff --git a/sslh-conf.h b/sslh-conf.h +index 9f48cf7..fbcc1c6 100644 +--- a/sslh-conf.h ++++ b/sslh-conf.h +@@ -1,5 +1,5 @@ + /* Generated by conf2struct (https://www.rutschle.net/tech/conf2struct/README) +- * on Wed Jul 29 22:51:16 2020. ++ * on Wed Jun 23 11:46:45 2021. + + # conf2struct: generate libconf parsers that read to structs + # Copyright (C) 2018-2019 Yves Rutschle +@@ -43,6 +43,7 @@ + struct sslhcfg_listen_item { + char* host; + char* port; ++ int is_udp; + int keepalive; + }; + +@@ -52,8 +53,10 @@ struct sslhcfg_protocols_item { + char* port; + int service_is_present; + char* service; ++ int is_udp; + int fork; + int tfo_ok; ++ int transparent; + int log_level; + int keepalive; + size_t sni_hostnames_len; +@@ -84,6 +87,7 @@ struct sslhcfg_item { + char* chroot; + char* syslog_facility; + char* on_timeout; ++ char* prefix; + size_t listen_len; + struct sslhcfg_listen_item* listen; + size_t protocols_len; +diff --git a/sslh-fork.c b/sslh-fork.c diff --git a/srcpkgs/sslh/template b/srcpkgs/sslh/template index 55b6b53cee66..c2862bf62014 100644 --- a/srcpkgs/sslh/template +++ b/srcpkgs/sslh/template @@ -1,7 +1,7 @@ # Template file for 'sslh' pkgname=sslh version=1.21c -revision=1 +revision=2 hostmakedepends="perl" makedepends="pcre-devel libconfig-devel libcap-devel" short_desc="Applicative Protocol Multiplexer" From 5c81bc718b3870c4d24fa28614ee7b5d00d21866 Mon Sep 17 00:00:00 2001 From: Arda Demir Date: Mon, 2 Aug 2021 12:38:13 +0300 Subject: [PATCH 140/824] perl-Test-Needs: update to 0.002009. --- srcpkgs/perl-Test-Needs/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/perl-Test-Needs/template b/srcpkgs/perl-Test-Needs/template index 7c9efeb266ed..290fe6eec91e 100644 --- a/srcpkgs/perl-Test-Needs/template +++ b/srcpkgs/perl-Test-Needs/template @@ -1,7 +1,7 @@ # Template file for 'perl-Test-Needs' pkgname=perl-Test-Needs -version=0.002006 -revision=2 +version=0.002009 +revision=1 wrksrc="${pkgname/perl-/}-${version}" build_style=perl-module hostmakedepends="perl" @@ -12,4 +12,4 @@ maintainer="Orphaned " license="Artistic-1.0-Perl, GPL-1.0-or-later" homepage="https://metacpan.org/release/Test-Needs" distfiles="${CPAN_SITE}/Test/Test-Needs-${version}.tar.gz" -checksum=77f9fff0c96c5e09f34d0416b3533c3319f7cd0bb1f7fe8f8072ad59f433f0e5 +checksum=571c21193ad16195df58b06b268798796a391b398c443271721d2cc0fb7c4ac3 From bfed1bb164fed35c7e5233389f5a0ad79860a502 Mon Sep 17 00:00:00 2001 From: Arda Demir Date: Mon, 2 Aug 2021 12:24:26 +0300 Subject: [PATCH 141/824] perl-URI: update to 5.09. --- srcpkgs/perl-URI/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/perl-URI/template b/srcpkgs/perl-URI/template index be6c064720eb..8b6024657d6a 100644 --- a/srcpkgs/perl-URI/template +++ b/srcpkgs/perl-URI/template @@ -1,16 +1,16 @@ # Template file for 'perl-URI' pkgname=perl-URI -version=5.07 +version=5.09 revision=1 wrksrc="URI-$version" build_style=perl-module hostmakedepends="perl" makedepends="${hostmakedepends}" depends="${hostmakedepends}" -checkdepends="perl-Test-Needs" +checkdepends="perl-Test-Needs perl-Business-ISBN" short_desc="Perl Uniform Resource Identifiers class (URI, RFC 2396)" maintainer="Orphaned " license="Artistic-1.0-Perl, GPL-1.0-or-later" homepage="https://metacpan.org/release/URI" distfiles="${CPAN_SITE}/URI/URI-${version}.tar.gz" -checksum=eeb6ed2ae212434e2021e29f7556f4024169421a5d8b001a89e65982944131ea +checksum=03e63ada499d2645c435a57551f041f3943970492baa3b3338246dab6f1fae0a From 74fb046938787094372ec43b172c780cc43fe513 Mon Sep 17 00:00:00 2001 From: tibequadorian Date: Sun, 1 Aug 2021 13:32:02 +0200 Subject: [PATCH 142/824] sfeed_curses: update to 0.9.13. --- srcpkgs/sfeed_curses/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/sfeed_curses/template b/srcpkgs/sfeed_curses/template index bb9401729c71..148f3d67f824 100644 --- a/srcpkgs/sfeed_curses/template +++ b/srcpkgs/sfeed_curses/template @@ -1,6 +1,6 @@ # Template file for 'sfeed_curses' pkgname=sfeed_curses -version=0.9.12 +version=0.9.13 revision=1 build_style=gnu-makefile make_use_env=compliant @@ -12,7 +12,7 @@ maintainer="Jaume Devesa " license="ISC" homepage="https://git.codemadness.org/sfeed_curses" distfiles="https://codemadness.org/releases/sfeed_curses/${pkgname}-${version}.tar.gz" -checksum=d08a481c6a4f74cac3e16bda6c5373fe4ce068afa11a09d75b727e07b739d581 +checksum=49f467dd6c511b2e4dbbb198beada51cccee0026ba4dc8b88bd46f833ea74130 post_install() { vlicense LICENSE From abd3eb5932a75b982333318bc931cfac3b22b2a4 Mon Sep 17 00:00:00 2001 From: Matthias von Faber Date: Sun, 1 Aug 2021 09:57:54 +0200 Subject: [PATCH 143/824] mkvtoolnix: update to 60.0.0 --- srcpkgs/mkvtoolnix/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/mkvtoolnix/template b/srcpkgs/mkvtoolnix/template index 5b86cbf85393..0875991a872f 100644 --- a/srcpkgs/mkvtoolnix/template +++ b/srcpkgs/mkvtoolnix/template @@ -1,6 +1,6 @@ # Template file for 'mkvtoolnix' pkgname=mkvtoolnix -version=59.0.0 +version=60.0.0 revision=1 build_style=gnu-configure build_helper=qmake @@ -17,7 +17,7 @@ license="GPL-2.0-only" homepage="https://mkvtoolnix.download" changelog="https://mkvtoolnix.download/doc/NEWS.md" distfiles="https://mkvtoolnix.download/sources/${pkgname}-${version}.tar.xz" -checksum=e92e6af241a34d2339c1909b3fc57acab8e6e94d51fee8c287975bc63cfc8453 +checksum=a12437790440589721e7cd8b476cb832ade6ad9f1759533ee8fe91bd9cfa74c4 if [ "$CROSS_BUILD" ]; then configure_args+=" --with-boost=${XBPS_CROSS_BASE}/usr" From 8492465cca7202e829fd4fa2094305176d4b82f6 Mon Sep 17 00:00:00 2001 From: Mate GABRI Date: Sun, 1 Aug 2021 16:10:52 +1000 Subject: [PATCH 144/824] saml2aws: update to 2.32.0 --- srcpkgs/saml2aws/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/saml2aws/template b/srcpkgs/saml2aws/template index 708abb75f5d2..bef14573ec5b 100644 --- a/srcpkgs/saml2aws/template +++ b/srcpkgs/saml2aws/template @@ -1,6 +1,6 @@ # Template file for 'saml2aws' pkgname=saml2aws -version=2.31.0 +version=2.32.0 revision=1 build_style=go go_import_path=github.com/versent/saml2aws/v2 @@ -13,7 +13,7 @@ maintainer="Mate GABRI " license="MIT" homepage="https://github.com/Versent/saml2aws" distfiles="https://github.com/Versent/saml2aws/archive/v${version}.tar.gz" -checksum=b271d1da7ae57eb082da969abb6ae38c55a3f50e126af4afbe4b77bdefc0174b +checksum=db74d1fa2d2ce22f18d4c2d1d7fae64ad018302eac4803b837de1c083970c771 post_install() { vlicense LICENSE.md From ee2e4b417df573312513c4b029ffe0ded5424a16 Mon Sep 17 00:00:00 2001 From: glaulher Date: Sat, 31 Jul 2021 14:49:30 -0300 Subject: [PATCH 145/824] imlib2: update to 1.7.2. --- srcpkgs/imlib2/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/imlib2/template b/srcpkgs/imlib2/template index c25e300a103a..61cb15a40ce4 100644 --- a/srcpkgs/imlib2/template +++ b/srcpkgs/imlib2/template @@ -1,6 +1,6 @@ # Template file for 'imlib2' pkgname=imlib2 -version=1.7.1 +version=1.7.2 revision=1 build_style=gnu-configure configure_args="--disable-static --sysconfdir=/etc/imlib2 --enable-visibility-hiding" @@ -12,7 +12,7 @@ maintainer="Orphaned " license="Imlib2" homepage="https://sourceforge.net/projects/enlightenment/" distfiles="${SOURCEFORGE_SITE}/enlightenment/imlib2-src/imlib2-${version}.tar.gz" -checksum=af30cf36e956febf18f9d33a81a4b43fea8f761ce74a67715d2ad157bb92c090 +checksum=c15eb370225e3e3c64a6421c3f153a4117958e0a3b395e06926568b4090aa425 post_install() { vlicense COPYING From d79d51133a7795c30ce91c1193d7a69ef5acb05a Mon Sep 17 00:00:00 2001 From: HadetTheUndying Date: Mon, 2 Aug 2021 11:47:58 -0500 Subject: [PATCH 146/824] protonvpn-cli: update to 2.2.11. --- srcpkgs/protonvpn-cli/template | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/srcpkgs/protonvpn-cli/template b/srcpkgs/protonvpn-cli/template index 04425cc36211..c9a3c784ace6 100644 --- a/srcpkgs/protonvpn-cli/template +++ b/srcpkgs/protonvpn-cli/template @@ -1,8 +1,8 @@ # Template file for 'protonvpn-cli' pkgname=protonvpn-cli -version=2.2.6 +version=2.2.11 revision=1 -wrksrc="linux-cli-${version}" +wrksrc="linux-cli-community-${version}" build_style=python3-module hostmakedepends="python3-setuptools" makedepends="python3-devel" @@ -11,5 +11,6 @@ short_desc="Linux command-line client for ProtonVPN written in Python" maintainer="svenper " license="GPL-3.0-or-later" homepage="https://github.com/ProtonVPN/linux-cli" -distfiles="https://github.com/ProtonVPN/linux-cli/archive/v${version}.tar.gz" -checksum=01ff05c9e6c174c7879553310d15bd0bcaf31e62be8c7f9a8c01b434a7c2612e +distfiles="https://github.com/ProtonVPN/linux-cli-community/archive/refs/tags/v${version}.tar.gz" +checksum=2fc643762e9156928b706c31a7826427a7ca12c7ae4cdfb656746cd2de3af66b +make_check=no # Package Defines No Checks From 4c65424e746058006221c2cf1b1e804eb9f29745 Mon Sep 17 00:00:00 2001 From: Arjan Mossel Date: Mon, 2 Aug 2021 13:45:28 +0200 Subject: [PATCH 147/824] dbeaver: update to 21.1.4. --- srcpkgs/dbeaver/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/dbeaver/template b/srcpkgs/dbeaver/template index 6e47ac8aeead..b5ae64ae7d74 100644 --- a/srcpkgs/dbeaver/template +++ b/srcpkgs/dbeaver/template @@ -1,6 +1,6 @@ # Template file for 'dbeaver' pkgname=dbeaver -version=21.1.3 +version=21.1.4 revision=1 # the build downloads binaries linked to glibc archs="x86_64" @@ -11,7 +11,7 @@ maintainer="Kyle Nusbaum " license="Apache-2.0" homepage="https://dbeaver.io" distfiles="https://github.com/dbeaver/dbeaver/archive/${version}.tar.gz" -checksum=2f90677603d1f485bfb2bee73700830fa7c626a5c35822f17a5732c75def6837 +checksum=45a984fd562d28b0712e25a0ccb5d0f927f8e411bffa54b5b49cd8c08e5490be nopie=true do_build() { From 7709c4a46e3bd26c0c3dca7c3eef66779e95a56f Mon Sep 17 00:00:00 2001 From: Gadzhi Kharkharov Date: Fri, 30 Jul 2021 11:55:26 +0300 Subject: [PATCH 148/824] emptty: update to 0.6.0. --- srcpkgs/emptty/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/emptty/template b/srcpkgs/emptty/template index d24aaabc145c..093f55147690 100644 --- a/srcpkgs/emptty/template +++ b/srcpkgs/emptty/template @@ -1,6 +1,6 @@ # Template file for 'emptty' pkgname=emptty -version=0.5.2 +version=0.6.0 revision=1 build_style=go go_import_path=github.com/tvrzna/emptty @@ -10,7 +10,7 @@ maintainer="xXR01I1Xx " license="MIT" homepage="https://github.com/tvrzna/emptty" distfiles="${homepage}/archive/v${version}.tar.gz" -checksum=469e69b28035e8225f4d41f4e5a002607a5ea5e3ac796a64ef53b22d279c8419 +checksum=17c2c2e105d0481f42d5635d9eacbe3d46ce33274c8d25359924760e66f88a80 conf_files="/etc/emptty/conf /etc/pam.d/emptty" post_install() { From 76259b34714cd32f6b3af9126e82866244143fc4 Mon Sep 17 00:00:00 2001 From: AluminumTank Date: Fri, 30 Jul 2021 20:14:00 -0400 Subject: [PATCH 149/824] synapse: update to 1.39.0 --- srcpkgs/synapse/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/synapse/template b/srcpkgs/synapse/template index e6286f96998b..b45f32817bdf 100644 --- a/srcpkgs/synapse/template +++ b/srcpkgs/synapse/template @@ -1,6 +1,6 @@ # Template file for 'synapse' pkgname=synapse -version=1.38.0 +version=1.39.0 revision=1 build_style=python3-module hostmakedepends="python3-setuptools" @@ -19,7 +19,7 @@ license="Apache-2.0" homepage="https://github.com/matrix-org/synapse" changelog="https://raw.githubusercontent.com/matrix-org/synapse/develop/CHANGES.md" distfiles="https://github.com/matrix-org/synapse/archive/v${version}.tar.gz" -checksum=229ef51c0adcdf11a42e1b8d0ce0a6dda73b338970aa54db30ee5469d043f97b +checksum=36b5949f3a989a52efb8ba7d9ca0f71cd13eea1a1cd0048756e2309c143dec53 system_accounts="synapse" synapse_homedir="/var/lib/synapse" From eebd0dd6ef328be609125345f6b68d78a8da8753 Mon Sep 17 00:00:00 2001 From: FollieHiyuki Date: Sat, 24 Jul 2021 18:35:41 +0300 Subject: [PATCH 150/824] btrfs-progs: update to 5.13.1 --- ...973527a87a27b2cd9a41c8347fd4bdb74016.patch | 56 ------------------- srcpkgs/btrfs-progs/template | 6 +- 2 files changed, 3 insertions(+), 59 deletions(-) delete mode 100644 srcpkgs/btrfs-progs/patches/6134973527a87a27b2cd9a41c8347fd4bdb74016.patch diff --git a/srcpkgs/btrfs-progs/patches/6134973527a87a27b2cd9a41c8347fd4bdb74016.patch b/srcpkgs/btrfs-progs/patches/6134973527a87a27b2cd9a41c8347fd4bdb74016.patch deleted file mode 100644 index 22ba4b27683c..000000000000 --- a/srcpkgs/btrfs-progs/patches/6134973527a87a27b2cd9a41c8347fd4bdb74016.patch +++ /dev/null @@ -1,56 +0,0 @@ -From 6134973527a87a27b2cd9a41c8347fd4bdb74016 Mon Sep 17 00:00:00 2001 -From: David Sterba -Date: Mon, 7 Jun 2021 17:38:46 +0200 -Subject: [PATCH] btrfs-progs: zoned: make it work without kernel support - -There's a report that a system with 4.19 kernel fails boot because -device scan exits with error. This is because zoned support is compiled -in btrfs-progs but not in kernel. - -To make new progs and old kernels work, do a fallback when the zoned -ioctl is not available, as if it were a non-zoned device. There is no -other option, but this is safe at least for the device scan that would -not error out. Any unaligned writes to a zoned device will fail as -expected. - -Issue: #376 -Signed-off-by: David Sterba ---- - kernel-shared/zoned.c | 17 +++++++++++++---- - 1 file changed, 13 insertions(+), 4 deletions(-) - -diff --git a/kernel-shared/zoned.c b/kernel-shared/zoned.c -index 2a6892b3c..dc850cd22 100644 ---- a/kernel-shared/zoned.c -+++ b/kernel-shared/zoned.c -@@ -488,9 +488,14 @@ size_t btrfs_sb_io(int fd, void *buf, off_t offset, int rw) - /* Do not call ioctl(BLKGETZONESZ) on a regular file. */ - if ((stat_buf.st_mode & S_IFMT) == S_IFBLK) { - ret = ioctl(fd, BLKGETZONESZ, &zone_size_sector); -- if (ret) { -- error("zoned: ioctl BLKGETZONESZ failed (%m)"); -- exit(1); -+ if (ret < 0) { -+ if (errno == ENOTTY) { -+ /* No kernel support, assuming non-zoned device */ -+ zone_size_sector = 0; -+ } else { -+ error("zoned: ioctl BLKGETZONESZ failed: %m"); -+ exit(1); -+ } - } - } else { - zone_size_sector = 0; -@@ -528,7 +533,11 @@ size_t btrfs_sb_io(int fd, void *buf, off_t offset, int rw) - - ret = ioctl(fd, BLKREPORTZONE, rep); - if (ret) { -- error("zoned: ioctl BLKREPORTZONE failed (%m)"); -+ if (errno == ENOTTY) { -+ error("zoned: BLKREPORTZONE failed but BLKGETZONESZ works: %m"); -+ exit(1); -+ } -+ error("zoned: ioctl BLKREPORTZONE failed: %m"); - exit(1); - } - if (rep->nr_zones != 2) { diff --git a/srcpkgs/btrfs-progs/template b/srcpkgs/btrfs-progs/template index eeca5301f9fe..ef62f0b7ccba 100644 --- a/srcpkgs/btrfs-progs/template +++ b/srcpkgs/btrfs-progs/template @@ -1,7 +1,7 @@ # Template file for 'btrfs-progs' pkgname=btrfs-progs -version=5.12.1 -revision=2 +version=5.13.1 +revision=1 wrksrc="${pkgname}-v${version}" build_style=gnu-configure make_check_target=test @@ -16,7 +16,7 @@ license="GPL-2.0-only, LGPL-2.1-or-later" homepage="https://btrfs.wiki.kernel.org/index.php/Main_Page" changelog="https://raw.githubusercontent.com/kdave/btrfs-progs/master/CHANGES" distfiles="${KERNEL_SITE}/kernel/people/kdave/${pkgname}/${pkgname}-v${version}.tar.xz" -checksum=950846fea454fb4b1c39f0fa454983644572df91df5c06047b335bf2d5473759 +checksum=3d7e5a01e68fbaf485c5f1da15c6b8a7d1455fb57b6e75a706f8e2bb37f4f399 # Most of the tests depend on `mount` and `fallocate` commands, which are not # presented in chroot-util-linux make_check=no From bb937e8516359f896d906a54eb5f189974ee367a Mon Sep 17 00:00:00 2001 From: UsernameRandomlyGenerated Date: Wed, 21 Jul 2021 14:11:56 +0200 Subject: [PATCH 151/824] rpi-imager: update to 1.6.2. --- srcpkgs/rpi-imager/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/rpi-imager/template b/srcpkgs/rpi-imager/template index e48f0312e162..1566aac51f5a 100644 --- a/srcpkgs/rpi-imager/template +++ b/srcpkgs/rpi-imager/template @@ -1,6 +1,6 @@ # Template file for 'rpi-imager' pkgname=rpi-imager -version=1.6.1 +version=1.6.2 revision=1 build_style=cmake hostmakedepends="qt5-host-tools qt5-qmake" @@ -11,8 +11,8 @@ short_desc="Raspberry Pi Imaging Utility" maintainer="Adam Gausmann " license="Apache-2.0" homepage="https://github.com/raspberrypi/rpi-imager" -distfiles="https://github.com/raspberrypi/rpi-imager/archive/${version}.tar.gz" -checksum="166d4926ab5a21f9a83096eff67a9a72f1a7f55702a36cb448cccf5f3b075509" +distfiles="https://github.com/raspberrypi/rpi-imager/archive/v${version}.tar.gz" +checksum=32f7fcd732ed8b707e862f51311c846b13a9dfb805cc6d901c601e2e5c2ec2d7 pre_configure() { ln -sf /bin/true $XBPS_WRAPPERDIR/lsblk From 8158b933384153d954c94578c8d3c4a0f600ad96 Mon Sep 17 00:00:00 2001 From: Spencer Burris Date: Wed, 21 Jul 2021 11:59:41 -0700 Subject: [PATCH 152/824] zola: update to 0.14.0 --- srcpkgs/zola/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/zola/template b/srcpkgs/zola/template index 545f91da5006..153648a0ac40 100644 --- a/srcpkgs/zola/template +++ b/srcpkgs/zola/template @@ -1,6 +1,6 @@ # Template file for 'zola' pkgname=zola -version=0.13.0 +version=0.14.0 revision=1 build_style=cargo hostmakedepends="pkg-config" @@ -11,7 +11,7 @@ license="MIT" homepage="https://github.com/getzola/zola" changelog="https://github.com/getzola/zola/raw/master/CHANGELOG.md" distfiles="https://github.com/getzola/zola/archive/v${version}.tar.gz" -checksum=84c20cf5c851a465266c5cc343623752102c53929f6da31b2a4ce747a87c5c23 +checksum=15dfdcfbf35123c62551d515eb1c9f6e5235a8b502f9abfdb09746a163de1404 case "$XBPS_TARGET_MACHINE" in x86_64*|i686*|arm*|aarch64*) ;; From da39ce8d105103e65958ba2d1f541472f2f0de1b Mon Sep 17 00:00:00 2001 From: Arda Demir Date: Mon, 2 Aug 2021 17:52:41 +0300 Subject: [PATCH 153/824] dialog: update to 1.3.20210621. --- srcpkgs/dialog/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/dialog/template b/srcpkgs/dialog/template index 8e00e4c5579f..187eaa0437cf 100644 --- a/srcpkgs/dialog/template +++ b/srcpkgs/dialog/template @@ -1,6 +1,6 @@ # Template file for 'dialog' pkgname=dialog -version=1.3.20210530 +version=1.3.20210621 revision=1 _distver=${version%.*} _date=${version##*.} @@ -14,7 +14,7 @@ license="LGPL-2.1-only" homepage="https://invisible-island.net/dialog/" changelog="https://invisible-island.net/dialog/CHANGES" distfiles="https://invisible-mirror.net/archives/${pkgname}/${pkgname}-${_distver}-${_date}.tgz" -checksum=1f62df6a48dac087b98452119e4cdfcaa3447b3eb5746b241e5632e1d57bfc4b +checksum=c3af22ccfcd9baca384062108dd9354e86990929ee270c239eef69518c5da7c8 post_install() { rm -r ${DESTDIR}/usr/lib From a286d255e4c156b37ca823fe5d3db29b062e363f Mon Sep 17 00:00:00 2001 From: Imran Khan Date: Thu, 29 Jul 2021 16:04:06 +0600 Subject: [PATCH 154/824] crun: update to 0.21. --- srcpkgs/crun/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/crun/template b/srcpkgs/crun/template index c318bb54a9e4..8aa2382eb9a0 100644 --- a/srcpkgs/crun/template +++ b/srcpkgs/crun/template @@ -1,6 +1,6 @@ # Template file for 'crun' pkgname=crun -version=0.20.1 +version=0.21 revision=1 build_style=gnu-configure configure_args="--disable-systemd" @@ -11,7 +11,7 @@ maintainer="Imran Khan " license="GPL-2.0-or-later, LGPL-2.1-or-later" homepage="https://github.com/containers/crun" distfiles="https://github.com/containers/crun/releases/download/${version}/crun-${version}.tar.gz" -checksum=84a31b25169d92b59a2611fe256a2cc48b05edd9aee8eab4e3dabb60d88f5a23 +checksum=018c805c88a15cbd8341d00badd00c92de256bc585c46336be78f1ff9a5a3cf2 if [ "$XBPS_TARGET_LIBC" = "musl" ]; then makedepends+=" argp-standalone" From f45e582f9ae21b82224ec627bbc3355d06d28f4c Mon Sep 17 00:00:00 2001 From: Anthony Iliopoulos Date: Thu, 29 Jul 2021 19:51:53 +0000 Subject: [PATCH 155/824] strace: update to 5.13. --- srcpkgs/strace/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/strace/template b/srcpkgs/strace/template index 117a1cc98219..1408f4073099 100644 --- a/srcpkgs/strace/template +++ b/srcpkgs/strace/template @@ -1,7 +1,7 @@ # Template file for 'strace' pkgname=strace -version=5.12 -revision=2 +version=5.13 +revision=1 build_style=gnu-configure configure_args="--enable-silent-rules $(vopt_with libunwind)" makedepends="$(vopt_if libunwind libunwind-devel)" @@ -11,7 +11,7 @@ license="LGPL-2.1-or-later" homepage="https://strace.io/" changelog="https://raw.githubusercontent.com/strace/strace/master/NEWS" distfiles="https://github.com/strace/strace/releases/download/v${version}/strace-${version}.tar.xz" -checksum=29171edf9d252f89c988a4c340dfdec662f458cb8c63d85431d64bab5911e7c4 +checksum=5acc34888b9d510ad6ac915d4a8df08f51cf1ae920ea24649f6a4bb984d0b656 build_options="static libunwind" build_options_default="libunwind" From 8e78b7ffc1c6c47e04198edbd95ab57e2d8cf8af Mon Sep 17 00:00:00 2001 From: Arda Demir Date: Sun, 1 Aug 2021 11:52:23 +0300 Subject: [PATCH 156/824] vc: update to 1.4.2. --- ...9a67bd5b7523da7678eb5b37f42c0e2759b7.patch | 31 +++++++++++++++++++ srcpkgs/vc/template | 4 +-- 2 files changed, 33 insertions(+), 2 deletions(-) create mode 100644 srcpkgs/vc/patches/dea29a67bd5b7523da7678eb5b37f42c0e2759b7.patch diff --git a/srcpkgs/vc/patches/dea29a67bd5b7523da7678eb5b37f42c0e2759b7.patch b/srcpkgs/vc/patches/dea29a67bd5b7523da7678eb5b37f42c0e2759b7.patch new file mode 100644 index 000000000000..4fc361225049 --- /dev/null +++ b/srcpkgs/vc/patches/dea29a67bd5b7523da7678eb5b37f42c0e2759b7.patch @@ -0,0 +1,31 @@ +From dea29a67bd5b7523da7678eb5b37f42c0e2759b7 Mon Sep 17 00:00:00 2001 +From: Bernhard Manfred Gruber +Date: Fri, 25 Jun 2021 14:24:23 +0200 +Subject: [PATCH] support GCC standard libraries which do not define + __GLIBC_PREREQ + +--- + Vc/global.h | 7 ++++++- + 1 file changed, 6 insertions(+), 1 deletion(-) + +diff --git a/Vc/global.h b/Vc/global.h +index 6f85b3ce2..d19dc45c2 100644 +--- a/Vc/global.h ++++ b/Vc/global.h +@@ -132,10 +132,15 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + #endif + + #ifdef Vc_GCC +-# if Vc_GCC >= 0x70000 && defined __i386__ && (!defined __GLIBC_PREREQ || !__GLIBC_PREREQ(2,26)) ++# if Vc_GCC >= 0x70000 && defined __i386__ + // GCC 7 changed alignof(max_align_t) to 16. glibc 2.26 followed with malloc in 2.26. + // 1. If GCC >= 7 and libc is not glibc max_align_t and malloc mismatch + // 2. If GCC >= 7 and libc is glibc < 2.26 max_align_t and malloc mismatch ++# ifdef __GLIBC_PREREQ ++# if __GLIBC_PREREQ(2,26) ++# define Vc_HAVE_STD_MAX_ALIGN_T 1 ++# endif ++# endif + # elif Vc_GCC >= 0x40900 + # define Vc_HAVE_STD_MAX_ALIGN_T 1 + # else diff --git a/srcpkgs/vc/template b/srcpkgs/vc/template index 9b2a89373446..63a77967b37c 100644 --- a/srcpkgs/vc/template +++ b/srcpkgs/vc/template @@ -1,6 +1,6 @@ # Template file for 'vc' pkgname=vc -version=1.4.1 +version=1.4.2 revision=1 wrksrc="Vc-${version}" build_style=cmake @@ -10,7 +10,7 @@ maintainer="Orphaned " license="BSD-3-Clause" homepage="https://github.com/VcDevel/Vc" distfiles="${homepage}/releases/download/${version}/Vc-${version}.tar.gz" -checksum=68e609a735326dc3625e98bd85258e1329fb2a26ce17f32c432723b750a4119f +checksum=50d3f151e40b0718666935aa71d299d6370fafa67411f0a9e249fbce3e6e3952 post_install() { vlicense LICENSE From 87f90aaaaaf0b8aeb77de6a9434f98868f0dbb15 Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Tue, 3 Aug 2021 10:43:50 +0200 Subject: [PATCH 157/824] neatvi: update to 09. --- srcpkgs/neatvi/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/neatvi/template b/srcpkgs/neatvi/template index 43da90697848..0c45112f40a8 100644 --- a/srcpkgs/neatvi/template +++ b/srcpkgs/neatvi/template @@ -1,6 +1,6 @@ # Template file for 'neatvi' pkgname=neatvi -version=08 +version=09 revision=1 build_style=gnu-makefile short_desc="Small ex/vi editor" @@ -8,7 +8,7 @@ maintainer="Leah Neukirchen " license="ISC" homepage="http://litcave.rudi.ir/" distfiles="https://github.com/litcave/${pkgname}/archive/${version}.tar.gz" -checksum=a861714d97e5b2d28698b7b7e13e393bb94a381def68d260a0e2908ee3d48591 +checksum=86ccff8e58a483e3d5cfcb71bec510726f2608cae7519ae9e97244b242af359f alternatives=" vi:ex:/usr/bin/neatex From a63d20a6891426469e0c2f5f553a07cc0fa8dda8 Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Tue, 3 Aug 2021 10:44:49 +0200 Subject: [PATCH 158/824] skaffold: update to 1.29.0. --- srcpkgs/skaffold/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/skaffold/template b/srcpkgs/skaffold/template index 5c975d99ff39..663f97e1f5f0 100644 --- a/srcpkgs/skaffold/template +++ b/srcpkgs/skaffold/template @@ -1,6 +1,6 @@ # Template file for 'skaffold' pkgname=skaffold -version=1.28.1 +version=1.29.0 revision=1 build_style=go go_import_path=github.com/GoogleContainerTools/skaffold @@ -12,4 +12,4 @@ license="Apache-2.0" homepage="https://skaffold.dev/" changelog="https://github.com/GoogleContainerTools/skaffold/releases" distfiles="https://github.com/GoogleContainerTools/skaffold/archive/v${version}.tar.gz" -checksum=4d96d820d48934b3c12415697146ec30318e235f3a35d4fc68024cda30b655ef +checksum=f12b1f608e8f7095bc5976c40c0c80417ee0a24ae7752012f51074539f311046 From 751bab7ffff3012dcf4bd87f8b0f86263a5c8ce0 Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Tue, 3 Aug 2021 10:45:35 +0200 Subject: [PATCH 159/824] byacc: update to 20210802. --- srcpkgs/byacc/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/byacc/template b/srcpkgs/byacc/template index 9864444d2fda..db54998f0f25 100644 --- a/srcpkgs/byacc/template +++ b/srcpkgs/byacc/template @@ -1,6 +1,6 @@ # Template file for 'byacc' pkgname=byacc -version=20210619 +version=20210802 revision=1 build_style=gnu-configure configure_args="--program-transform=s,^,b," @@ -9,7 +9,7 @@ maintainer="Leah Neukirchen " license="Public Domain" homepage="http://invisible-island.net/byacc/" distfiles="ftp://ftp.invisible-island.net/${pkgname}/${pkgname}-${version}.tgz" -checksum=acdd6080dcf935732a08ec8e8c4c161c666cd56d8c490739c6dbb6267a498c0e +checksum=2949c67ed13bd67917f0c9bcc85c76d99a3090d21105ea7672a87a3502e3ccf6 alternatives=" yacc:yacc:/usr/bin/byacc From 12130e2bf2e4e0c2a624fec021272bf4552c7a5c Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Tue, 3 Aug 2021 10:46:11 +0200 Subject: [PATCH 160/824] minify: update to 2.9.21. --- srcpkgs/minify/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/minify/template b/srcpkgs/minify/template index 1e7fd575868f..8933f760cd3d 100644 --- a/srcpkgs/minify/template +++ b/srcpkgs/minify/template @@ -1,6 +1,6 @@ # Template file for 'minify' pkgname=minify -version=2.9.20 +version=2.9.21 revision=1 build_style=go go_import_path="github.com/tdewolff/minify/v2" @@ -11,7 +11,7 @@ maintainer="Leah Neukirchen " license="MIT" homepage="https://github.com/tdewolff/minify" distfiles="https://github.com/tdewolff/minify/archive/v${version}.tar.gz" -checksum=8c32a04b258cc0a90a63e7109624b74f7d538aa217709b2d3e4287344cf47d95 +checksum=6bb6a4a7853f538ab54893727fa217dd992b74698754abcf07a12b0227a22265 post_install() { vlicense LICENSE From ce36ce06f777aba0413bf268523fe8d0064a37b9 Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Tue, 3 Aug 2021 10:49:15 +0200 Subject: [PATCH 161/824] stress-ng: update to 0.13.00. --- srcpkgs/stress-ng/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/stress-ng/template b/srcpkgs/stress-ng/template index 0d4f3b18bcce..6ce5d88bafd2 100644 --- a/srcpkgs/stress-ng/template +++ b/srcpkgs/stress-ng/template @@ -1,6 +1,6 @@ # Template file for 'stress-ng' pkgname=stress-ng -version=0.12.12 +version=0.13.00 revision=1 build_style=gnu-makefile make_use_env=1 @@ -9,4 +9,4 @@ maintainer="Leah Neukirchen " license="GPL-2.0-or-later" homepage="http://kernel.ubuntu.com/~cking/stress-ng/" distfiles="http://kernel.ubuntu.com/~cking/tarballs/stress-ng/${pkgname}-${version}.tar.xz" -checksum=f27af50f6f2308e707fef927674bdd209a046b116734281b792aeca35a4e4499 +checksum=1cefe4a3057c1522b146e62f61b80ce6e2e99da2d85ebe25bc03fc45228e58cd From d946fa51e2e5208dc9fc3c82854cb07cbd6a7d86 Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Tue, 3 Aug 2021 10:53:16 +0200 Subject: [PATCH 162/824] crawl: update to 0.27.0. --- srcpkgs/crawl/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/crawl/template b/srcpkgs/crawl/template index b83def6d5f92..d59f52e7d40e 100644 --- a/srcpkgs/crawl/template +++ b/srcpkgs/crawl/template @@ -1,6 +1,6 @@ # Template file for 'crawl' pkgname=crawl -version=0.26.1 +version=0.27.0 revision=1 build_wrksrc="crawl-ref/source" make_build_args="prefix=/usr bin_prefix=bin" @@ -11,7 +11,7 @@ maintainer="Leah Neukirchen " license="GPL-2.0-or-later" homepage="http://crawl.develz.org/" distfiles="https://github.com/crawl/crawl/archive/${version}.tar.gz" -checksum=c8c6abbefa7f21383ea77cd017033050471e06c60ea4deebd033f5198bc39596 +checksum=94b1a42bf5814b508e40358b0ba54eda18932b00192d77a802e07cdd939cb545 nocross=yes post_extract() { From 66e60f98d0f9acec997eed53e4db6c10dc8e5ec2 Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Tue, 3 Aug 2021 10:55:47 +0200 Subject: [PATCH 163/824] crawl-tiles: update to 0.27.0. --- srcpkgs/crawl-tiles/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/crawl-tiles/template b/srcpkgs/crawl-tiles/template index 04da01f33962..0b8d831ee873 100644 --- a/srcpkgs/crawl-tiles/template +++ b/srcpkgs/crawl-tiles/template @@ -1,6 +1,6 @@ # Template file for 'crawl-tiles' pkgname=crawl-tiles -version=0.26.1 +version=0.27.0 revision=1 wrksrc="crawl-${version}" build_wrksrc="crawl-ref/source" @@ -16,7 +16,7 @@ maintainer="Leah Neukirchen " license="GPL-2.0-or-later" homepage="http://crawl.develz.org/" distfiles="https://github.com/crawl/crawl/archive/${version}.tar.gz" -checksum=c8c6abbefa7f21383ea77cd017033050471e06c60ea4deebd033f5198bc39596 +checksum=94b1a42bf5814b508e40358b0ba54eda18932b00192d77a802e07cdd939cb545 nocross=yes post_extract() { From 7a7362867fee3361e82a713d53f421d620ce8f40 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 3 Aug 2021 14:52:47 +0200 Subject: [PATCH 164/824] syncthing: update to 1.18.1. --- srcpkgs/syncthing/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/syncthing/template b/srcpkgs/syncthing/template index e8041622c0ea..9cbb2273b8a5 100644 --- a/srcpkgs/syncthing/template +++ b/srcpkgs/syncthing/template @@ -1,6 +1,6 @@ # Template file for 'syncthing' pkgname=syncthing -version=1.18.0 +version=1.18.1 revision=1 build_style=go go_import_path="github.com/syncthing/syncthing" @@ -17,7 +17,7 @@ license="MPL-2.0" homepage="http://syncthing.net/" changelog="https://github.com/syncthing/syncthing/releases" distfiles="https://github.com/syncthing/${pkgname}/archive/v${version}.tar.gz" -checksum=f3f102d3c0448baf762c814d2952eec90dc56347f87e27346ecd36a5e2c9515d +checksum=808a373c3fed3eae7631bbf1edbced14abb050240b1a0ff6caff0980af7f0f01 pre_build() { GOARCH= go generate \ From 5054eeb32fd32539b2841303467316c079f219b3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 2 Aug 2021 16:41:20 -0400 Subject: [PATCH 165/824] python3-scipy: update to 1.7.1. --- srcpkgs/python3-scipy/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-scipy/template b/srcpkgs/python3-scipy/template index 9ed11b2ad473..58bda9b40ef1 100644 --- a/srcpkgs/python3-scipy/template +++ b/srcpkgs/python3-scipy/template @@ -1,6 +1,6 @@ # Template file for 'python3-scipy' pkgname=python3-scipy -version=1.7.0 +version=1.7.1 revision=1 wrksrc="scipy-${version}" build_style=python3-module @@ -16,7 +16,7 @@ maintainer="Andrew J. Hesford " license="BSD-3-Clause" homepage="https://scipy.org/scipylib/" distfiles="https://github.com/scipy/scipy/releases/download/v${version}/scipy-${version}.tar.xz" -checksum=0564d1091b8db03418356f0839cc4bf73b9bf7cd1089586eb690208e1f44bb8d +checksum=fdfe1d1eb1569846e331bd8d72106a8c446dafb2192c00adbb5376b02a0a1104 build_options="openblas" From bbfb3428f692c64c9023ba0ae2c4273dd3e4013e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 2 Aug 2021 16:42:34 -0400 Subject: [PATCH 166/824] python3-ipython: update to 7.26.0. --- srcpkgs/python3-ipython/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-ipython/template b/srcpkgs/python3-ipython/template index 8c7ca89135aa..b749c3f698d6 100644 --- a/srcpkgs/python3-ipython/template +++ b/srcpkgs/python3-ipython/template @@ -1,6 +1,6 @@ # Template file for 'python3-ipython' pkgname=python3-ipython -version=7.25.0 +version=7.26.0 revision=1 wrksrc="ipython-${version}" build_style=python3-module @@ -16,7 +16,7 @@ maintainer="Andrew J. Hesford " license="BSD-3-Clause" homepage="https://ipython.org/" distfiles="${PYPI_SITE}/i/ipython/ipython-${version}.tar.gz" -checksum=54bbd1fe3882457aaf28ae060a5ccdef97f212a741754e420028d4ec5c2291dc +checksum=0cff04bb042800129348701f7bd68a430a844e8fb193979c08f6c99f28bb735e conflicts="python-ipython<=5.8.0_2" post_install() { From 9f8c9e8acad8cde2c0f61481fee1ea36ef7afc3c Mon Sep 17 00:00:00 2001 From: Helmut Pozimski Date: Tue, 3 Aug 2021 17:42:05 +0200 Subject: [PATCH 167/824] warzone2100: update to 4.1.2. --- srcpkgs/warzone2100/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/warzone2100/template b/srcpkgs/warzone2100/template index 8bb9fde4f69a..d878605ff26a 100644 --- a/srcpkgs/warzone2100/template +++ b/srcpkgs/warzone2100/template @@ -1,6 +1,6 @@ # Template file for 'warzone2100' pkgname=warzone2100 -version=4.1.1 +version=4.1.2 revision=1 wrksrc="warzone2100" build_style=cmake @@ -15,7 +15,7 @@ maintainer="Helmut Pozimski " license="GPL-2.0-or-later" homepage="http://wz2100.net" distfiles="https://github.com/Warzone2100/${pkgname}/releases/download/${version}/${pkgname}_src.tar.xz" -checksum=0a732ddc5cada530c0b626d4dd5db88ba12f59173d52402ebc2f629e0a6108cf +checksum=34964a97452a5b57ed3993ce8365cbf47fcdbd08b7529b1582c02db5b9862240 nocross="fails to detect SDL2 when cross-compiling" if [ "$XBPS_TARGET_NO_ATOMIC8" ]; then From 1b02a7875d62626de377db501d29e03a5460e3d3 Mon Sep 17 00:00:00 2001 From: Arjan Mossel Date: Tue, 3 Aug 2021 18:02:07 +0200 Subject: [PATCH 168/824] restic: update to 0.12.1. --- srcpkgs/restic/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/restic/template b/srcpkgs/restic/template index a0d55c41cae9..90f1e689db15 100644 --- a/srcpkgs/restic/template +++ b/srcpkgs/restic/template @@ -1,6 +1,6 @@ # Template file for 'restic' pkgname=restic -version=0.12.0 +version=0.12.1 revision=1 build_style=go go_import_path=github.com/restic/restic @@ -12,7 +12,7 @@ license="BSD-2-Clause" homepage="https://restic.net/" changelog="https://raw.githubusercontent.com/restic/restic/master/CHANGELOG.md" distfiles="https://github.com/restic/restic/releases/download/v${version}/restic-${version}.tar.gz" -checksum=39b615a36a5082209a049cce188f0654c6435f0bc4178b7663672334594f10fe +checksum=a9c88d5288ce04a6cc78afcda7590d3124966dab3daa9908de9b3e492e2925fb post_install() { vlicense LICENSE From b22b739d19e707b0801065ca0c813a3f4ea9bbe5 Mon Sep 17 00:00:00 2001 From: Isaac Freund Date: Tue, 3 Aug 2021 13:50:11 +0200 Subject: [PATCH 169/824] vips: update to 8.11.2. --- srcpkgs/vips/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/vips/template b/srcpkgs/vips/template index 56049e393414..7c8f8290598a 100644 --- a/srcpkgs/vips/template +++ b/srcpkgs/vips/template @@ -1,6 +1,6 @@ # Template file for 'vips' pkgname=vips -version=8.11.0 +version=8.11.2 revision=1 build_style=gnu-configure build_helper=gir @@ -43,7 +43,7 @@ maintainer="Isaac Freund " license="LGPL-2.1-or-later" homepage="https://libvips.github.io/libvips/" distfiles="https://github.com/libvips/libvips/releases/download/v${version}/vips-${version}.tar.gz" -checksum=6351dfb99836274a0d74d8054506bf6dc9a8c38bacf208a9c566889dd1ebba0b +checksum=bb5ab776ee4c61ae94b4496c63ef523ca7367ebceabcba78ceb1bf97b1d36e06 python_version=3 build_options="gir hdf5" From b6a3541047198e846495fe5800601ce71d5a9307 Mon Sep 17 00:00:00 2001 From: Alex Lohr Date: Tue, 3 Aug 2021 13:06:35 +0200 Subject: [PATCH 170/824] google-chrome: update to 92.0.4515.131 --- srcpkgs/google-chrome/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/google-chrome/template b/srcpkgs/google-chrome/template index 403f32f96ff4..ecba40893775 100644 --- a/srcpkgs/google-chrome/template +++ b/srcpkgs/google-chrome/template @@ -1,6 +1,6 @@ # Template file for 'google-chrome' pkgname=google-chrome -version=92.0.4515.107.1 +version=92.0.4515.131.1 revision=1 _chromeVersion="${version%.*}" _chromeRevision="${version##*.}" @@ -21,7 +21,7 @@ _chromeUrl="${_baseUrl}/${_filename}" _licenseUrl="https://www.google.com/intl/en/chrome/terms/" distfiles="$_chromeUrl" -checksum=52b75a439ab7ab51f1bd302ac6b425191f8cab4332ea4e2dfa3ec4e42447cf6d +checksum=6fcc67888aac64047247931d16958973e66291a00f3c204b2af510fcf661d313 do_extract() { mkdir -p ${DESTDIR} From 4f0f4ff21a2e9fccb65935d9dc8d6b34491db428 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 3 Aug 2021 18:23:21 +0200 Subject: [PATCH 171/824] knot: update to 3.1.0. --- common/shlibs | 4 ++-- srcpkgs/knot/template | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/common/shlibs b/common/shlibs index da24f1de5810..f768a637aed5 100644 --- a/common/shlibs +++ b/common/shlibs @@ -3678,9 +3678,9 @@ libmhash.so.2 mhash-0.9.9.9_1 librlottie.so.0 rlottie-0.0.20160709_1 libfstrm.so.0 fstrm-0.5.0_1 libfreecell-solver.so.0 libfreecell-solver-5.10.0_1 -libknot.so.11 libknot-3.0.0_1 +libknot.so.12 libknot-3.1.0_1 libdnssec.so.8 libknot-3.0.0_1 -libzscanner.so.3 libknot-2.8.2_1 +libzscanner.so.4 libknot-3.1.0_1 libkres.so.9 knot-resolver-4.0.0_1 libnsl.so.2 libnsl-1.2.0_1 libbcc.so.0 bcc-0.10.0_1 diff --git a/srcpkgs/knot/template b/srcpkgs/knot/template index 30e14c63e4c8..2188e92dac8b 100644 --- a/srcpkgs/knot/template +++ b/srcpkgs/knot/template @@ -1,6 +1,6 @@ # Template file for 'knot' pkgname=knot -version=3.0.8 +version=3.1.0 revision=1 build_style=gnu-configure configure_args=" @@ -18,7 +18,7 @@ maintainer="Duncaen " license="GPL-3.0-or-later" homepage="https://www.knot-dns.cz/" distfiles="https://secure.nic.cz/files/knot-dns/knot-${version}.tar.xz" -checksum=df723949c19ebecf9a7118894c3127e292eb09dc7274b5ce9b527409f42edfb0 +checksum=54323712e3cbc3d4c70a15777818fd2ff0de30cebb6c22e2946372b15b2653ed system_accounts="_knot" _knot_homedir="/var/lib/knot" From c705c309f06982619f4cf87eee6131b5aee801f4 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 3 Aug 2021 18:23:57 +0200 Subject: [PATCH 172/824] knot-resolver: rebuild against knot-3.1.0_1 --- srcpkgs/knot-resolver/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/knot-resolver/template b/srcpkgs/knot-resolver/template index b07a400a3a02..4015c0373adc 100644 --- a/srcpkgs/knot-resolver/template +++ b/srcpkgs/knot-resolver/template @@ -1,7 +1,7 @@ # Template file for 'knot-resolver' pkgname=knot-resolver version=5.4.0 -revision=1 +revision=2 build_style=meson configure_args=" -Dclient=enabled From 3af8ef01c784b1ec70b76589ed95c856e1b1e17a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20W=C3=B3jcik?= Date: Tue, 3 Aug 2021 20:36:16 +0200 Subject: [PATCH 173/824] firefox-i18n: update to 90.0.1. --- srcpkgs/firefox-i18n/template | 194 +++++++++++++++++----------------- 1 file changed, 97 insertions(+), 97 deletions(-) diff --git a/srcpkgs/firefox-i18n/template b/srcpkgs/firefox-i18n/template index 7621cc56f091..d1526dfa7ba1 100644 --- a/srcpkgs/firefox-i18n/template +++ b/srcpkgs/firefox-i18n/template @@ -1,6 +1,6 @@ # Template file for 'firefox-i18n' pkgname=firefox-i18n -version=90.0 +version=90.0.1 revision=1 build_style=meta short_desc="Firefox language packs" @@ -140,99 +140,99 @@ _pkgtmpl() { } } -checksum="6a847f99a28bfbd69c80c905b12da89ac6cf3ba11b5a8910923331259d2ce20c - e389578012f1737807f86b91a667c00b1e8aa1f97f5396f99541d869d9e8d9ca - 0959a202ac994df39c12968fba79882862da9443c51d733fc686b093f4cbb002 - d754b4c4b07f00dcdf66c1165596e9929dfb410c337c16c5a3d39e58a6bb8ce9 - 2fc600b9d8ede173de21fc0cecf885f90d989d889833385120b6ef68068da4a1 - d240023fe4d5cf7df3fb6fca7f5db5fd0acc3682f280648c12ebd5d16cf5e263 - 6b0eba7e19fc7e3a91c8aeb57c2f960bdbaca2e2f53c0cccb3a8e64ac3042aba - 29e3abdb69600bd5113b85db771e6c091f74461d56bb47303af12f1c43750667 - baae42ddfa4001ac75d503d8099fb49e1e7c9b52c9f0b1aae8db1d6a9f7f2d91 - c9b03150b23971a5640cfbcfbd2af3defcb5d67d565d762bfb240275d25824df - 8a2007fc267c3e6790281ec52a0694f789ca0ac95968b9ab662c11b096f03aca - d2e80267a2c8184bcb1a08c7b937aa24a0b2d0d3083b145bfe02c6c73be49ca6 - 00419f454f44af8f3422a9f3308a8fe7af0b266c53998b815fc0350bcbfbd560 - e53ec85e4c531794c95e9d518ec10ddad42e1df0a6cda78e3f70de0bf60cce34 - 8705fe76cc395d9e0a13dbc3812a58fd7463a95216fb9a632f5cf045f03c1350 - 8d5c197ba6598bb8c138f5e00cb5e2717ac2796857b065c2c5a56be7e9e9e217 - 7bbe55d91af9ad45b16078118f85ca52b0a8d65b4d60719dc1920bd9a9ddad96 - 42ac88d57d14568bfbb0fa98baa4ec002f24ff7d4c4107db4112f5940e7e333c - ce610b3f39162b7dd70beb674083c066cdcfe6632ed5b56421dc31da9a253029 - ca66e6d3f1b03d91bb47ca921a55c6c2abc881798a8eca86f11a8a06a611cbda - 2f983279220a58b50a81e23385b7eb7c59834abca7a5b260c95ffdb954317810 - 71d8db8f80a279b537ef34a2bcaebab00bcc164d9dc39c4733a9c639e2f9759e - cca6d9330db52580ea5b98ef4bd9af45a5d48f49125f2ee305d53930f2bc4a25 - 2b1c764f279e6a356b9d916c03420ea14a13ae9b0346026addf11a38b4e37179 - 087e71fb9210509b1cb24d66fa17bacf6950e99a09feebb04d29a36c2b41e2e6 - f85a6008fff28eb6886f8ca6b7fe8295694f7420d660b647263771568c51c27a - 9b287dedaa945f45ab4e035f715dca684ee7326e137c4cb09365143652f4fbb3 - 26e69023046df3bf520250f01f8a56cc12973588f7425d3dd7ab2f423dcac5b8 - d7b8cbde5b38daa5efaa97bb1339f04514e40cd450b915ad08b1d6772225820e - f4b73815c37364b127f907188513821134d56c11946976b7ae39075fb39656f9 - 48d7c9a6516a616aa0d520b8c02f51c59eda4c096ff39a8f43e410b35c11aba7 - 9a020f5a56df7d22dd6f4de2aec8d6f3aa66fca63c57077aeebda5c35f2d1e44 - 9ef5583f6fcf03f1e87718d40b29018e9e64a6d42c9f0521d82eadffe59f4114 - c5e7d5d787a11cb2ca24fbba9219b193fe00132ced43eb80fcd263a81658c1d9 - 555162a321adabddd8df8f7aa71ced3254803c0f4cee544fb693b0e6ca03d62e - 7a65b020f9ecad3338691b296053b2870b9f6fa1afa28e49470fe33e579eca6d - 187f924d0218d3c2efeb979fa85f308b9b2bb3ad69dcd44777701583291d4289 - b6f7096d623972c453a05c030b6afbd3bf097036b71138b458226d1b2c5581b2 - e3de3a816ab6eae4f330963cdfe52af2fcb5535450cacd7f50923931e5da68b5 - 491becad650258ad42b79bcd21c63bd9f07861d26d64584753c756741dfea5f1 - 377e94a7cf76f10f8f69818cde5c64024c3be6898136167b4e2d56f49fba493c - 50be198cbfac1a470787cd9a1efb9ec040cfac792bfef9d5d2414ebb12323506 - 6755b4f1b5de1aa8dff67f2c80b27ec7c801a1ad1b189a530981de22d9aa6d1c - 56a145776fecc4bfbfe3d110be4b397d5c07e5fc15b5d446f76f453eac54a136 - da333297b9b5f96c3974d9ed0ae5ab032a193f330f91682bfbc0b01f9569ab77 - 64bdec55f42f64a08f5f9a86de045bea085902eadf3f0103694bbc47d0a51ee0 - fbc25c307627b0e4a66c4e13b3090acc8aa2fb502368c4f35a38eac5bd586e4d - fccc7bfa4d1c2962c8a3d065691ccf5a5958ce61346a9f1b5dfdcf8960d0aa85 - bbecfa079679f85c6b222b17bbc30145e386577138ebf11c92af6e25303041ae - 9847e1ae7cad612c2ab25f055805affeaa1f0c357b3248434ff69d2160cd30ca - a654300b2e9f386b1c9d0764155604dc840c9b07cc70702a4b351aeecdfcc6c0 - f7c0bf57ba386af117b20e86e08194d1b6351dd739fe3fa44aa156055e22a389 - ddba6d70ed9c87fc5972a977037692276d37a7a0f8191fc0f8d5a57316d848e8 - 7f849a6f5cf815dae4ec6d5660bb0e5c5e2da99d43153270c15d1b3b972b852e - 9b3f1cc5440325988bbcde602130382050cfe4283f0819008d7a303b6b8669d7 - 9ec42d3a0559b072cd95c7588d18888527ce6fd4239313278d2dffeee1709bfc - 9f40539aa73ac097cba4230e5ea08aad2ec1b667b6b0eb03e4c0d5702433a2de - 3cc578d753e77e97a4496ede0fc4f930a3261fd70c378ecee3b227e99bff0512 - 4ac708be12069c8747f52a54cc864776634f08aaf83312195f01ddd15373895f - 752090681af9d3cc5771b407d83f9684b792029df3b02e9af9dfa9298a70d215 - 9e3a12b09243fa2cdf579afdcb18c024d6f8522dfa1a94f70cd7bc7646588fed - eb3e4795e3d9e6d263f7defb41e1bf182b69694baa5210de4e36339d2b4a7907 - c0d9f167956b364b661fa531dbc6fcc49e979e2487e7b9dcc2a18568a46997d6 - 0f783cdf2c3af210baafc68c11a05d8f18da4eb559730407696b118a65647da5 - e8339950ca45ba30f59172f776c03a13ab91952a4d88462c421f773bd87fe736 - e3e34c053cd92c55c5cf3dedfebe067f49340d31059e6e04c19885196d644246 - 46f6755afe5c692579025f1c089a3a6dc98e04a261d254df4ca177d74341bad3 - 09a6e858e29bb1825c5ff07aa6d630339a674d164a5bceb3cba1488adf325db5 - 3d1fece4fa6022b6a68e2b2feb3c36e07ee518844795889ac6d44f302e00f9c7 - 11598b4f9a8e4775f8c0ff5ac126fa17f3b23f6dfbbe8cc8c66b3d7de9b556b4 - 5c52c08f2e04e85ae0c957e0087f0b39ac1f152549ee6e9fd33125d9c11b15e7 - 2a1aa6575372dfd351d762100a2c8751f9cd3960b1435a365c8d6df6ecc70234 - fa2c7956764deaae789a7e853423129fca228e0dfcc5e4258b2f32d39674140a - 1f579263ed4a8ef21f67a62453ed1f5f592d959518db73458287532311d703e6 - 826f7778d2c69e1a09eb5bc2b4d83878f078539039d5d723c1afaa643841829b - 11d015cff3c3f51a58d2377c462a3b15a0e6fc7dcdf8c23c2be72510bc9955b3 - b4c1dda9a5143d00568ccf651cc5cf4f5ed79d1fec309d6cd42489474656322e - 2c9270b201f5f34fb6749e544ee44c7776d6faf95076affdfdd18d3244e3b1d1 - 0283a19da938ea4cd75323c1b273c2edb754a7b06d51ab236651da27631bde14 - 57a09ec1440b8d86d11e7dd287718080c908f22f371dd109aaaef2391c070eb8 - 1a85ae8363c844c8afd3252a332bf2603e6ced2279e7f99a4da7d4a4f6005867 - ef4631a82196a199d97a9af3555d25776471a9ce5974e98d2a6a1f39861db931 - b0b347920ac0b33d12cf6db5e417de40ef1893467a40132166d1d026667dae6d - fe9d74f540dcc3fbaffb688fc52c6d8fd7baeac41eba863e4f44e1df611325b8 - 34cdc2ca797647f215be2253793e22b900982f5f671d5bb5aa43dc7658fcc03e - 1c31a101cf95564f4127b5a82e31ff3ffbd00d63150221e372460e7f4d6ca7f6 - 2c4ad4d64ed930ce5ba5ded5ce02e36deda40cca38401a952b47787ff33f73c3 - 4b7349a40591164e49ef14186aebfc67f568498c2490de719658adf6d56d267c - 96a9ea57610668310b1e5df044da22da58804e49f86cbd680a716daaf8c12018 - 27ac4999a85a5db37f5a7b9f57077ef486dc87d1c6b6b629f3f481ad8029efa1 - 187ef59014be6dbfe38d4c7154d12657e9364412b7a08f6d10e276d581eb886c - ebff39e1a8c0b4c794943839e8e571973bb7c73cde2c00a5e8af88b0b6e016d7 - 0246b5614df11b4b15a5ef389ca0df1a397082f337fdff014ea61f7d872904e3 - 478f5ef7f9555cfe84c79f9f52577045a74491f6612a9ee4f5542f922b39c351 - ec3bb98ef5c3213932588b14ab3bb5c954945c844f38503f5cf02d4564f4f41f - e0695aced062822baeddeaedff8c2714cadf2195646cf114c2dbe5acdcbb56b7" +checksum="be357100c3fbdc0e0568985f0966d7080f6d489668300e9cb912bce70f7b8293 + 71667a2ea1a9f7f1fa8d7c1a61206cb2a84e61e5a3995f8ad039f4431dc9ca30 + a628f511eefdb40474f8b5c27fc8e25e0dcece7395552f68da444dc511d1fa25 + 67426fc4cdfdb18d97c4f0bfc54cd7a54341bc82177d977d798af8a8f33a6883 + ea6d961aec4c22758cab21aa42ce9544a20c333f320d7dce26707ad29df67ee2 + 9abb4464f9a0335a2d78b9f951309ce88f4727b0b15aa127d1bf983f034ccc76 + d2b67203c26292632b27b19c894d1980b1bf6e5540153360351ee70cf4545fd9 + ff0b5045589e866527df3240dd1207c14d4b11aa3764c9d7d8d4a92ef125bb21 + 17068cd81a7a223da2debab9da6fe4ca84463570931952c8269f2607b14e96fa + ae8b28dfa5d73fed65c21a4c392eaa165fd608610d91ba8ec03c33036c47709f + 423cbcc21ac9a21985deeea320dbac657696edc097769dc66b87ce5a20cb0b31 + 75eb76024a29b35ef5e7672d71769463b39b533ce018ce20da2097bb9744c8c8 + 0fa00a2a922b630594e0b94c8da46f7c5884bdf138dd6cca6dc8eb828bd1e2d7 + 34bd621a31da5e7ba2f887bea936e6c0ebceb4229badfd1fa1478776b2140d14 + bdd083ef2797c6cfbfb898ec1416f7f4cc5a5874bd4cc59ee857c82fda7df258 + 0e47f9c1891802657f00bb9c1d591fa5856da9af118e1e5b6cffcb59d94d496b + e92252b9a1a3459f0da78556b24a64b181a3b2817cf3a8f0be8341b73c871ea4 + cc60e2252d84fb8440284a0e856f8a902220dfc63d0e8b126b2f42c55306b21b + 49891d321639b35e151203bd232fd9e72f0c9683d1bea6f1a7c401d7a3a04a76 + df3545107af7b4bc032ef4c9fc7d3c435fb93054901abdb6fc4939d47aa764c6 + 4d6dada6f645dbc618d8376ee60a8eeecf437bd18ea0785595d1e201a8e8c5be + 3172dea2525652c8094bde33f4f38983dbbe434ea27310e419c8f6e50a51975a + cb25c27b81cd6760356a638e10816777cd9695e56ed95300018d35a7f53f0a77 + dbd688b662c519a1a3cc51067b76cd7640951d4b2fa99c8fd6a423ee58f9cf09 + 53e4198abf07adf3ccd626e6a34f532a80b60692182fc01d7bc3e420c119f7d2 + 2bc5e3b5b1ceb1126737ccd5c9c6e26dab77276d748ec4a0761d105515580151 + 9f7c502604bbd252a3ab256e8397e8757931310c57421577b7da511cd27c18af + c115f32dc9c7b7d24a23defeaf78653ca7265428ef402994250d135905252b1c + b9efc308fe8cac9a6015cf40b41e20207d9485bc8ba4a62773212594ce797f84 + 53295a0504e883b7b0cf6a7522ad61f58cbd23229ac0e7387366f4e57293f08b + 83147e937209d97e8f980da4e12a09ba920665767dfe9f272abb2c485f00e904 + b2bd15e6782afa19c681d6083f6d528463d6ef74d55b7ccebe44e6ffbe2730f5 + 89b2f2538528542a89d5eeb845ee97896ece7407ca9038ea4e7e1f0b0f548158 + e0a764400e86782734add3fa848726634212abb71e4e7f33553268a310344b72 + 16ce9e331f413623de20099d2f2874d735744a587a9a5db95ca95f1960600a12 + 04c2b912864dd90aaef379b09017f1273e25d7e1723bce748a7d0fc03d0c0663 + 89c0276d64185f10b442e2e31dadf2ce3bd8d09db95644467f325aad22f49a69 + e0ab2286ef9518ffcf9595c79918ff505d096d057d6372f6cfc9c2740727611c + 77e2c1b72e73ed8c23390bc67fdd68602cb3bba74e3d91a7f74522eb933acb8c + befaca21c9c962a62c1f568e7d2d68aefad4d63d8bbf985bd5ca761dcad898c8 + e133796f92b7a634e3353226aa2ea44f311cca6b0affcc89ec9308c71cd018ad + 60e99cf8302b5e277bbb5866e0fe56d357a006a5cfbd68c5acbbf82ceef24920 + 5ad2ddac27a739798c15542450507b2485806607334c018d58583c2a0fb77f3f + 2548b8d17504cd11c742d810b74c4ec4d17c3da57250bb8a178488924fb14f95 + ec33239e16abbe551cfa1c9908249cc2c333a16c3c1950ad2041ee9feb75ad77 + d7de6154454ff6d087ccd0a4a6471d2cf1f4b73b3821493db3ece8c1a461c037 + f4ed4ad50029e687a7b97c71fbfa6f16557b97c52a236f750c69dbcf8459ebc8 + 0afa21ba8c5ff99ecee2d6c8f348e4e82a7f1f7d13bf8b3fe0c505cad5513d62 + 97e36627e7bc58b6139b30e31b3e9e50dd8e67bad514fc058d6170559273197c + db8a0b2d753f2591e9dbc0f1c71516e35ed0ee839a46596e4a7d5b4b8e002672 + a7a442bd6142272b7734479eb946219dd7fbf2be9986d55c045b01ac13988539 + d98ead55c776fee847fa259472b5a80254fb8e49c8e1df695da1ae0e46ec61da + fbebbd39b2d84c663425c8e5b40bbdf8cb4df13d3a8db5fef07ed19fe6f790b8 + c37af09b2ca5fbdb025b115c7dbb5c68717f57a29b3d5403bcd7daf3e4d51818 + a8fe814f81cda0fe2b819c1185b0d131f5fdab6156b396cdcc4d1b323d0a0660 + a6e78737ca0ed0cde75e9b7bc18d85edb11493433f0de05294efbe1742a75b27 + c55b7f41c14c3ac0a8226351b72bfa5ce05f0648bf0bce96826363875132a121 + b7b76bcc2ffbc5aee2327982544957ee4ce49872587367ec17368fd4f7ff58ec + 85c146b304153f0587669ce9d31299465e3b109be97f35c7698e77ea04d46ebc + 0b09874b5d687b71929042ce95184bebc5ed026332e4d347c1ecde3f451f4a5c + 480681ce041ef2c217091e8ec0e4c7a95e5d2fabb1c2e7a6c6bc47fb98dba980 + 8130ab6e8d3d5a644dba2ac67df0cb2124f29afc08c59fc8eb4222901a42ac50 + 36b1fbe2166c83d58d8c955678204bee18a41a8f4e3ccd5a8f12b3b3b5f6e4e1 + 1d8e864cbe155f1470bd360b4cad611e336036a5044060f673bf04305f40f03b + 932bbdec41615f61a54495ff1d50b228a5be7702071e24159ce92dc4f237470a + 09095e1472079ff4c8ba251b0cd247be56bfe3f72dcd86866182ec1797607a9f + 76be304b42b5fbdefb4301f30884b7b0bae96259bc25d08dd2b4f63ea5d27185 + 6258fb53ab87bce22906957ffe71e4dd69fbc7b7bca23cf1d82098647d82a334 + 379e9ca71f8a40f4cb81d70ddfea3ec433451a8216ebe13d1773f6e7743e7aae + a1a2e9a6733297e4c000f67b49fc79385525fd99df35c48b0670ae7ef071f0b1 + b90bdc875b93f6d78c1ec113b94a895e142d28836b27a57b44cc86e2f6b6dc88 + 18ea08e9f1f81555e5771e86bdd6652be4465a1c39b6d07895ed54de56eafc9a + a66bc6dc460cf0e4c891a02192faff10fa772a64f3d260bec2d9e49487f4cde9 + a995381bff3f42b0f67d2e7d6f12871d7ae7e58869ce345f590ae80ccc174709 + cde46c5c7007ab3ba895d5e9b30ac6270837f5b48f393f9f752a24e03532a48b + dc363a23c014d1a8bf24afa1e6cae0d0cba6bb6e0c3f933816f8debc38c622d2 + 2ee0f2492f81a12840d2c99a00ac1e3666f514d2654042e54f8c8e5bd211797c + 6113eb31e48de4d7fdb439d9dbe319408e7dcbe3c55fbbf1a7c4c5449394b324 + 92df223930d3e39657f7705b6a75369b0b9ecc5988e5fabc4895b39a9718dbed + b95a4d34d8c426e04ad6023cb2b9319c519576f4a851b82c03a1992f58f026bc + 760dd2be7d150ecf5ceabee59f55da9be5cd2a0fc7eaf20f7afa92dfa3189273 + 5ab7c5a16857b53a333198656335672593f8d9b2920693420d90d1df0e7e13b0 + 68499f57731c926e8601cb138b0e03e0d8bdcd88757701b3bea46652d439245e + 41d4ef32a4833f1ef9f849fafdf32ccd1833adab0696324658a64e38d54625a2 + 2ba6ea3e31364158af51554efdd13c4efdc5c665d868ef140274eac27c2e38c9 + c506b5af14c6ce5a46d5bd9b4e0875dae548202f1f3f1cca967322805e61545a + f7b8b33efd41b69d9905f3da2277ca66a4f212efe99619f3eeb19d14ae835061 + e5fa0feb89a3418608812debf1445d952ab65d53d94d5ec4e9680224d0ba50d7 + e78dc38e67d3416e8319491399e432c7025b134ce7b195847e3de38d66f63852 + 9c6915607b0181f95ca43fd4266c6c4ede04010549c368f5bac6798b5dd70ea7 + 57ca390e904ad5e292e819b1fa3fdb35652c8b5196d1f52dd65a33b2a254914c + 9028546203eedd44ec1dd08e33c0ab40be27988100f08c3e47b2a025b6b20cb0 + 8993f2b916a162e2e05be1e0b91d0f1e663a462e4363a3a867992c03ef7bc122 + 57bc6916b472fb843052794574b39a96b7f48698d88104522f9fc6a6b9f9e8bc + 42d64b7a6a7f5cc5e76e78108066fff648681a574c3e2b6c34fea704e76c2499 + 3c9a52ca9f25a5040314b42f3cf14dd4be83b065ccda29e6998d21e85b0fb9cc" From eb18dda697776e74fb93e4d0903ea24a6dff83fa Mon Sep 17 00:00:00 2001 From: Gadzhi Kharkharov Date: Mon, 2 Aug 2021 09:09:50 +0300 Subject: [PATCH 174/824] khal: update to 0.10.4. --- srcpkgs/khal/template | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/srcpkgs/khal/template b/srcpkgs/khal/template index 00e615ba7c78..37c3a880b2a5 100644 --- a/srcpkgs/khal/template +++ b/srcpkgs/khal/template @@ -1,6 +1,6 @@ # Template file for 'khal' pkgname=khal -version=0.10.3 +version=0.10.4 revision=1 build_style=python3-module hostmakedepends="python3-setuptools" @@ -13,7 +13,8 @@ maintainer="Anachron " license="MIT" homepage="http://lostpackets.de/khal/" distfiles="${PYPI_SITE}/k/khal/khal-${version}.tar.gz" -checksum=2fdd8fc14fe597e5a7d6e9c63c7868d960b4ed021b563c684a71f07090eda432 +checksum=3fdb980a9a61c0206d7a82b16f77b408a4f341a2b866b9c9fcf6a641850d129f +make_check=ci-skip pre_build() { vsed -i setup.py \ From c953a74395992461d1273e5463849a873109a39c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89rico=20Nogueira?= Date: Tue, 3 Aug 2021 18:29:40 -0300 Subject: [PATCH 175/824] util-linux: backport sulogin(8) fix. sulogin wasn't actually logging in, making single user mode useless. Reported by kciN on IRC. --- .../patches/0001-sulogin-fix-getpasswd.patch | 26 +++++++++++++++++++ srcpkgs/util-linux/template | 2 +- 2 files changed, 27 insertions(+), 1 deletion(-) create mode 100644 srcpkgs/util-linux/patches/0001-sulogin-fix-getpasswd.patch diff --git a/srcpkgs/util-linux/patches/0001-sulogin-fix-getpasswd.patch b/srcpkgs/util-linux/patches/0001-sulogin-fix-getpasswd.patch new file mode 100644 index 000000000000..d9dba317a592 --- /dev/null +++ b/srcpkgs/util-linux/patches/0001-sulogin-fix-getpasswd.patch @@ -0,0 +1,26 @@ +From 3c466f7c353beb3076a2be8fb2931b9951430128 Mon Sep 17 00:00:00 2001 +From: Karel Zak +Date: Thu, 29 Jul 2021 21:28:00 +0200 +Subject: [PATCH 1/6] sulogin: fix getpasswd() + +Fixes: https://github.com/karelzak/util-linux/issues/1400 +Signed-off-by: Karel Zak +--- + login-utils/sulogin.c | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/login-utils/sulogin.c b/login-utils/sulogin.c +index 3016ef483..4d48943ad 100644 +--- a/login-utils/sulogin.c ++++ b/login-utils/sulogin.c +@@ -621,6 +621,7 @@ static char *getpasswd(struct console *con) + cp = &con->cp; + tty = con->tio; + ++ ret = pass; + tty.c_iflag &= ~(IUCLC|IXON|IXOFF|IXANY); + tty.c_lflag &= ~(ECHO|ECHOE|ECHOK|ECHONL|TOSTOP|ISIG); + tc = (tcsetattr(fd, TCSAFLUSH, &tty) == 0); +-- +2.32.0 + diff --git a/srcpkgs/util-linux/template b/srcpkgs/util-linux/template index 41bffc545884..37fca0298c83 100644 --- a/srcpkgs/util-linux/template +++ b/srcpkgs/util-linux/template @@ -2,7 +2,7 @@ # Keep this package sync with util-linux-common pkgname=util-linux version=2.37.1 -revision=2 +revision=3 build_style=gnu-configure configure_args="--exec-prefix=\${prefix} --enable-libuuid --disable-makeinstall-chown --enable-libblkid --enable-fsck --disable-rpath --enable-fs-paths-extra=/usr/sbin:/usr/bin From aa3de6857265bff30ec3dba020c880763fba7b18 Mon Sep 17 00:00:00 2001 From: Michal Vasilek Date: Sat, 31 Jul 2021 19:57:01 +0200 Subject: [PATCH 176/824] python3-astroid: update to 2.6.5, adopt --- srcpkgs/python3-astroid/template | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/srcpkgs/python3-astroid/template b/srcpkgs/python3-astroid/template index a8fb9a7017fc..4c9f405e5f9e 100644 --- a/srcpkgs/python3-astroid/template +++ b/srcpkgs/python3-astroid/template @@ -1,18 +1,16 @@ # Template file for 'python3-astroid' pkgname=python3-astroid -version=2.5.3 +version=2.6.5 revision=1 wrksrc="astroid-${version}" build_style=python3-module hostmakedepends="python3-setuptools" -depends="python3-six python3-lazy-object-proxy python3-wrapt - python3-typed-ast" -checkdepends="$depends python3-attrs python3-pytest python3-wcwidth - python3-py python3-pluggy python3-more-itertools python3-parsing" +depends="python3-lazy-object-proxy python3-wrapt" +checkdepends="$depends python3-pytest python3-numpy" short_desc="Abstract syntax tree for Python3" -maintainer="Alessio Sergi " +maintainer="Michal Vasilek " license="GPL-2.0-or-later, LGPL-2.1-or-later" homepage="https://github.com/PyCQA/astroid" changelog="https://raw.githubusercontent.com/PyCQA/astroid/master/ChangeLog" -distfiles="${PYPI_SITE}/a/astroid/astroid-${version}.tar.gz" -checksum=ad63b8552c70939568966811a088ef0bc880f99a24a00834abd0e3681b514f91 +distfiles="https://github.com/PyCQA/astroid/archive/refs/tags/v$version.tar.gz" +checksum=4e22e703abc1220e6ec4a41740f5d8a51a5484a1b24d61cd4495f995ef2296a7 From 041a71e4789318e861d934139d62ee4da01420d0 Mon Sep 17 00:00:00 2001 From: Michal Vasilek Date: Sun, 1 Aug 2021 00:10:46 +0200 Subject: [PATCH 177/824] pylint: update to 2.9.6, adopt --- srcpkgs/pylint/patches/fix-tests.patch | 13 +++++++++++++ srcpkgs/pylint/template | 24 ++++++++---------------- 2 files changed, 21 insertions(+), 16 deletions(-) create mode 100644 srcpkgs/pylint/patches/fix-tests.patch diff --git a/srcpkgs/pylint/patches/fix-tests.patch b/srcpkgs/pylint/patches/fix-tests.patch new file mode 100644 index 000000000000..9eda4571cc33 --- /dev/null +++ b/srcpkgs/pylint/patches/fix-tests.patch @@ -0,0 +1,13 @@ +https://github.com/PyCQA/pylint/pull/4781 + +--- a/tests/lint/unittest_lint.py ++++ b/tests/lint/unittest_lint.py +@@ -643,7 +643,7 @@ def test_pylint_home(): + assert config.PYLINT_HOME == pylintd + finally: + try: +- os.remove(pylintd) ++ rmtree(pylintd) + except FileNotFoundError: + pass + finally: diff --git a/srcpkgs/pylint/template b/srcpkgs/pylint/template index e2c275d029dd..7b1b6e4fed21 100644 --- a/srcpkgs/pylint/template +++ b/srcpkgs/pylint/template @@ -1,34 +1,26 @@ # Template file for 'pylint' pkgname=pylint -version=2.7.4 +version=2.9.6 revision=1 -wrksrc="pylint-${version}" build_style=python3-module +make_check_args="--deselect=tests/benchmark/test_baseline_benchmarks.py" hostmakedepends="python3-setuptools" -depends="python3-astroid python3-six python3-isort python3-mccabe python3-toml" -checkdepends="python3-astroid python3-isort python3-mccabe python3-pytest python3-toml" +depends="python3-astroid python3-isort python3-mccabe python3-toml" +checkdepends="$depends python3-pytest python3-tkinter python3-six" short_desc="Python code static checker" -maintainer="Orphaned " +maintainer="Michal Vasilek " license="GPL-2.0-or-later" -homepage="http://www.pylint.org/" +homepage="https://www.pylint.org/" changelog="https://raw.githubusercontent.com/PyCQA/pylint/master/ChangeLog" -distfiles="${PYPI_SITE}/p/pylint/pylint-${version}.tar.gz" -checksum=bd38914c7731cdc518634a8d3c5585951302b6e2b6de60fbb3f7a0220e21eeee -make_check=no +distfiles="https://github.com/PyCQA/pylint/archive/refs/tags/v$version.tar.gz" +checksum=e6335c810ee3ff4b59e3990db49cf0d1e263e122b766853755436d88133c9496 post_install() { - # no tests - rm -rf ${DESTDIR}/usr/lib/python*/site-packages/pylint/test - # install example config and emacs files vsconf examples/pylintrc vsconf examples/pylintrc_camelcase vsconf elisp/pylint.el vsconf elisp/pylint-flymake.el - - for f in man/*; do - vman "$f" - done } python3-pylint_package() { From b589ff1e465f2798060023dc68e788763d988774 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89rico=20Nogueira?= Date: Wed, 21 Jul 2021 17:04:17 -0300 Subject: [PATCH 178/824] New package: linux-base-2021.07.21 Base package to be used as dependency for linux and linux-lts. This way they can share the same code and users who want to stick with a given kernel version can just install that one and linux-base instead of needing the linux or linux-lts meta and ignorepkg dances. --- srcpkgs/linux-base/template | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 srcpkgs/linux-base/template diff --git a/srcpkgs/linux-base/template b/srcpkgs/linux-base/template new file mode 100644 index 000000000000..249f21fa27f2 --- /dev/null +++ b/srcpkgs/linux-base/template @@ -0,0 +1,18 @@ +# Template file for 'linux-base' +pkgname=linux-base +version=2021.07.21 +revision=1 +build_style=meta +short_desc="Linux kernel base dependencies" +maintainer="Érico Nogueira " +license="Public Domain" +homepage="https://voidlinux.org/" + +case "$XBPS_TARGET_MACHINE" in + i686*|x86_64*) + depends="linux-firmware-amd linux-firmware-intel linux-firmware-nvidia linux-firmware-network dracut" + ;; + ppc*|armv7l*|aarch64*) + depends="linux-firmware-amd linux-firmware-nvidia linux-firmware-network dracut" + ;; +esac From b6dc0b0edea9c0a2863c38b3c8524b76ce9f4030 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89rico=20Nogueira?= Date: Wed, 21 Jul 2021 17:06:31 -0300 Subject: [PATCH 179/824] linux: update to 5.13. Also move to using linux-base. --- srcpkgs/linux/template | 21 +++------------------ 1 file changed, 3 insertions(+), 18 deletions(-) diff --git a/srcpkgs/linux/template b/srcpkgs/linux/template index 33463643fc20..50ff91aef896 100644 --- a/srcpkgs/linux/template +++ b/srcpkgs/linux/template @@ -1,30 +1,15 @@ # Template file for 'linux' pkgname=linux -version=5.12 +version=5.13 revision=1 build_style=meta +depends="linux${version} linux-base" short_desc="Linux kernel meta package" maintainer="Leah Neukirchen " license="Public Domain" homepage="http://www.voidlinux.org/" -case "$XBPS_TARGET_MACHINE" in - i686*|x86_64*) - depends="linux${version} linux-firmware-amd linux-firmware-intel linux-firmware-nvidia linux-firmware-network dracut" - _depends_headers="linux${version}-headers" - ;; - ppc*|armv7l*|aarch64*) - depends="linux${version} linux-firmware-amd linux-firmware-nvidia linux-firmware-network dracut" - _depends_headers="linux${version}-headers" - ;; - arm*) - depends="linux${version}" - _depends_headers="linux${version}-headers" - ;; - *) ;; -esac - linux-headers_package() { short_desc="Linux kernel headers meta package" - depends="${_depends_headers}" + depends="linux${version}-headers" } From 64b3e1c06829131862063aa92a77d33874c2b2f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89rico=20Nogueira?= Date: Wed, 21 Jul 2021 17:06:46 -0300 Subject: [PATCH 180/824] linux-lts: update to 5.10. Also move to using linux-base and xlint. --- srcpkgs/linux-lts/template | 22 ++++++---------------- 1 file changed, 6 insertions(+), 16 deletions(-) diff --git a/srcpkgs/linux-lts/template b/srcpkgs/linux-lts/template index ce6aace3950b..cf200e66935f 100644 --- a/srcpkgs/linux-lts/template +++ b/srcpkgs/linux-lts/template @@ -1,25 +1,15 @@ # Template file for 'linux-lts' pkgname=linux-lts -version=4.14 -revision=2 +version=5.10 +revision=1 build_style=meta -homepage="http://www.voidlinux.org/" +depends="linux${version} linux-base" short_desc="Linux LTS (Long Term Support) kernel meta package" maintainer="Leah Neukirchen " -license="Public domain" - -case "$XBPS_TARGET_MACHINE" in - i686*|x86_64*) - depends="linux${version} linux-firmware-amd linux-firmware-intel linux-firmware-nvidia linux-firmware-network dracut" - _depends_headers="linux${version}-headers" - ;; - arm*|aarch64*) - depends="linux${version}" - _depends_headers="linux${version}-headers" - ;; -esac +license="Public Domain" +homepage="http://www.voidlinux.org/" linux-lts-headers_package() { short_desc="Linux longterm support kernel headers meta package" - depends="${_depends_headers}" + depends="linux${version}-headers" } From a524266ac3a6da955dac28ceb353dccc712f1815 Mon Sep 17 00:00:00 2001 From: Nathaniel Barragan Date: Tue, 3 Aug 2021 19:43:30 -0700 Subject: [PATCH 181/824] cc65: update to 2.19. --- srcpkgs/cc65/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/cc65/template b/srcpkgs/cc65/template index bb31b4ad323a..751b37451020 100644 --- a/srcpkgs/cc65/template +++ b/srcpkgs/cc65/template @@ -1,6 +1,6 @@ # Template file for 'cc65' pkgname=cc65 -version=2.18 +version=2.19 revision=1 build_style="gnu-makefile" make_use_env=yes @@ -9,7 +9,7 @@ maintainer="Nathaniel Barragan " license="Zlib" homepage="https://cc65.github.io/" distfiles="https://github.com/cc65/cc65/archive/V${version}.tar.gz" -checksum=d14a22fb87c7bcbecd8a83d5362d5d317b19c6ce2433421f2512f28293a6eaab +checksum=157b8051aed7f534e5093471e734e7a95e509c577324099c3c81324ed9d0de77 nocross="Build process runs the built binary" disable_parallel_build=yes From 20a66d1bdf525bee71cad5c20b7fb8f86a6f60af Mon Sep 17 00:00:00 2001 From: Anton Afanasyev <1157248+2asoft@users.noreply.github.com> Date: Wed, 28 Jul 2021 13:08:46 -0700 Subject: [PATCH 182/824] CLion: update to 2021.2. --- srcpkgs/CLion/template | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/srcpkgs/CLion/template b/srcpkgs/CLion/template index 241daec8743e..f2ab575cea34 100644 --- a/srcpkgs/CLion/template +++ b/srcpkgs/CLion/template @@ -1,6 +1,6 @@ # Template file for 'CLion' pkgname=CLion -version=2021.1.3 +version=2021.2 revision=1 archs="i686 x86_64" wrksrc="clion-${version}" @@ -10,7 +10,7 @@ maintainer="Anton Afanasyev " license="custom:Commercial" homepage="https://www.jetbrains.com/clion" distfiles="https://download.jetbrains.com/cpp/CLion-${version}.tar.gz" -checksum=bf2f627bab06fa94b32f205f15a67659a7bb38e078847cb6e3f811098dc13897 +checksum=2cabf03c825f15cb9216a936aa20c2caef8a0c3624556292b60f9a25ca22a146 repository=nonfree restricted=yes nopie=yes @@ -28,8 +28,19 @@ post_extract() { # Remove files for other CPU architectures rm -rf bin/fsnotifier-arm rm -rf lib/pty4j-native/linux/aarch64 + rm -rf lib/pty4j-native/linux/arm rm -rf lib/pty4j-native/linux/mips64el rm -rf lib/pty4j-native/linux/ppc64le + rm -rf plugins/cwm-plugin/quiche-native/darwin-aarch64 + rm -rf plugins/cwm-plugin/quiche-native/darwin-x86-64 + rm -rf plugins/cwm-plugin/quiche-native/win32-x86-64 + rm -rf plugins/performanceTesting/bin/libyjpagent.dylib + rm -rf plugins/performanceTesting/bin/yjpagent.dll + rm -rf plugins/performanceTesting/bin/yjpagent64.dll + rm -rf plugins/python-ce/helpers/pydev/pydevd_attach_to_process/attach_amd64.dll + rm -rf plugins/python-ce/helpers/pydev/pydevd_attach_to_process/attach_x86.dll + rm -rf plugins/python-ce/helpers/pydev/pydevd_attach_to_process/attach_x86.dylib + rm -rf plugins/python-ce/helpers/pydev/pydevd_attach_to_process/attach_x86_64.dylib case "$XBPS_TARGET_MACHINE" in x86_64) @@ -37,6 +48,7 @@ post_extract() { rm -rf bin/clion.vmoptions rm -rf bin/libyjpagent-linux.so rm -rf lib/pty4j-native/linux/x86 + rm -rf plugins/performanceTesting/bin/libyjpagent.so rm -rf plugins/python-ce/helpers/pydev/pydevd_attach_to_process/attach_linux_x86.so ;; i686) @@ -44,6 +56,7 @@ post_extract() { rm -rf bin/clion64.vmoptions rm -rf bin/libyjpagent-linux64.so rm -rf lib/pty4j-native/linux/x86-64 + rm -rf plugins/performanceTesting/bin/libyjpagent64.so rm -rf plugins/python-ce/helpers/pydev/pydevd_attach_to_process/attach_linux_amd64.so ;; esac From d8a2549a152025edfce521d6f568458bf2e59fad Mon Sep 17 00:00:00 2001 From: Arda Demir Date: Wed, 4 Aug 2021 09:26:08 +0300 Subject: [PATCH 183/824] bmake: update to 20210704. --- srcpkgs/bmake/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/bmake/template b/srcpkgs/bmake/template index ec5ad3933afd..17f5dc72ad89 100644 --- a/srcpkgs/bmake/template +++ b/srcpkgs/bmake/template @@ -1,6 +1,6 @@ # Template file for 'bmake' pkgname=bmake -version=20210621 +version=20210704 revision=1 create_wrksrc=yes short_desc="Portable version of the NetBSD make build tool" @@ -8,7 +8,7 @@ maintainer="Orphaned " license="BSD-3-Clause" homepage="http://www.crufty.net/help/sjg/bmake.html" distfiles="http://www.crufty.net/ftp/pub/sjg/bmake-${version}.tar.gz" -checksum=aa97b2f602fd31a71336ce97c54a1c74c2b3437fb24100830c1fff15cbd9ff3e +checksum=3efe8e1b11c52c9a396787df1d383a20de725115055dab4fdba04f8557315c36 python_version=3 do_configure() { From b5d6157d8c38272c5b02af4cbce71f77edbcc34a Mon Sep 17 00:00:00 2001 From: Arda Demir Date: Wed, 4 Aug 2021 09:35:29 +0300 Subject: [PATCH 184/824] help2man: update to 1.48.3. --- srcpkgs/help2man/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/help2man/template b/srcpkgs/help2man/template index e28126e3126f..eafd273b8571 100644 --- a/srcpkgs/help2man/template +++ b/srcpkgs/help2man/template @@ -1,6 +1,6 @@ # Template file for 'help2man' pkgname=help2man -version=1.48.2 +version=1.48.3 revision=1 build_style=gnu-configure hostmakedepends="perl-Locale-gettext" @@ -10,5 +10,5 @@ maintainer="Orphaned " license="GPL-3.0-or-later" homepage="https://www.gnu.org/software/help2man" distfiles="${GNU_SITE}/${pkgname}/${pkgname}-${version}.tar.xz" -checksum=20cb36111df91d61741a20680912ab0e4c59da479c3fb05837c6f0a8cb7cb467 +checksum=8361ff3c643fbd391064e97e5f54592ca28b880eaffbf566a68e0ad800d1a8ac lib32disabled=yes From 07fef5810a29deb931d78733432358866c11d501 Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Wed, 4 Aug 2021 15:48:40 +0200 Subject: [PATCH 185/824] apk-tools: update to 2.12.7. --- srcpkgs/apk-tools/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/apk-tools/template b/srcpkgs/apk-tools/template index c6d522451779..b218b76a2e37 100644 --- a/srcpkgs/apk-tools/template +++ b/srcpkgs/apk-tools/template @@ -1,6 +1,6 @@ # Template file for 'apk-tools' pkgname=apk-tools -version=2.12.6 +version=2.12.7 revision=1 build_style=gnu-makefile # Link libapk statically @@ -12,7 +12,7 @@ maintainer="Leah Neukirchen " license="GPL-2.0-only" homepage="http://git.alpinelinux.org/cgit/apk-tools" distfiles="http://git.alpinelinux.org/cgit/${pkgname}/snapshot/${pkgname}-${version}.tar.bz2" -checksum=371b15e07e450ca117ef75dea58353721d67f09b3af4f328d5858ba7b2a13777 +checksum=269831b60d0008d3f4420293971ebbe951b04ee72f8359f2cc3ee89e649b1705 CFLAGS="-Wno-error" do_install() { From 1e02f8dfbc517088661a976aca9b70376df9463e Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Wed, 4 Aug 2021 17:25:52 +0200 Subject: [PATCH 186/824] erlang: update to 24.0.5. --- srcpkgs/erlang/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/erlang/template b/srcpkgs/erlang/template index f04c2e32dd0c..53573c6592a2 100644 --- a/srcpkgs/erlang/template +++ b/srcpkgs/erlang/template @@ -1,6 +1,6 @@ # Template file for 'erlang' pkgname=erlang -version=24.0.4 +version=24.0.5 revision=1 create_wrksrc=yes build_wrksrc="otp-OTP-${version}" @@ -14,7 +14,7 @@ license="Apache-2.0" homepage="http://www.erlang.org/" changelog="https://github.com/erlang/otp/releases" distfiles="https://github.com/erlang/otp/archive/OTP-${version}.tar.gz" -checksum=5af12fb9c8fd7f29b2b4136ed9a451a7218132430641ca4ebf1495f85a732b9b +checksum=dd189cf94bf86c610a66f5d9f1a49b8d95a7ce1a7534d216e97e8fade271e624 subpackages="erlang-doc" if [ -z "$CROSS_BUILD" ]; then From a5d45ab414757f79ea0be705957c0b445d189add Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Wed, 4 Aug 2021 17:26:13 +0200 Subject: [PATCH 187/824] linux5.13: update to 5.13.8. Use classic timestamp in KBUILD_BUILD_TIMESTAMP. --- srcpkgs/linux5.13/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/linux5.13/template b/srcpkgs/linux5.13/template index be7bd8b88dff..43a3f6aa16a6 100644 --- a/srcpkgs/linux5.13/template +++ b/srcpkgs/linux5.13/template @@ -1,6 +1,6 @@ # Template file for 'linux5.13' pkgname=linux5.13 -version=5.13.6 +version=5.13.8 revision=1 wrksrc="linux-${version%.*}" short_desc="Linux kernel and modules (${version%.*} series)" @@ -10,7 +10,7 @@ homepage="https://www.kernel.org" distfiles="https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-${version%.*}.tar.xz https://cdn.kernel.org/pub/linux/kernel/v5.x/patch-${version}.xz" checksum="3f6baa97f37518439f51df2e4f3d65a822ca5ff016aa8e60d2cc53b95a6c89d9 - e83b798bfe22bc9d5e8115cd2bbff24cdf5fd0de1b423a3342985445b02668a8" + dfbaaf312cd69021fbe8ab597460aa961b8d2944efca35caa26b36fce43e616d" skip_extraction="patch-${version}.xz" python_version=3 @@ -44,7 +44,7 @@ mutable_files=" /usr/lib/modules/${_kernver}/modules.devname" # reproducible build -export KBUILD_BUILD_TIMESTAMP=${SOURCE_DATE_EPOCH:-0} +export KBUILD_BUILD_TIMESTAMP=$(LC_ALL=C date -ud @${SOURCE_DATE_EPOCH:-0}) export KBUILD_BUILD_USER=voidlinux export KBUILD_BUILD_HOST=voidlinux From 4dc9936a2e1cca6b2e19d6cfb750c6a05cf95b66 Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Wed, 4 Aug 2021 17:28:18 +0200 Subject: [PATCH 188/824] linux5.10: update to 5.10.56. Use classic timestamp in KBUILD_BUILD_TIMESTAMP. --- srcpkgs/linux5.10/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/linux5.10/template b/srcpkgs/linux5.10/template index 2832c9d04add..6242d17550e8 100644 --- a/srcpkgs/linux5.10/template +++ b/srcpkgs/linux5.10/template @@ -1,6 +1,6 @@ # Template file for 'linux5.10' pkgname=linux5.10 -version=5.10.54 +version=5.10.56 revision=1 wrksrc="linux-${version}" short_desc="Linux kernel and modules (${version%.*} series)" @@ -8,7 +8,7 @@ maintainer="Leah Neukirchen " license="GPL-2.0-only" homepage="https://www.kernel.org" distfiles="https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-${version}.tar.xz" -checksum=bf50c63261847187eca4a1793e5df5c1355b21697409589f6ca03e32b629be44 +checksum=4d6a0d5f9c50fa44890e0b61e1fb63f6efe6be448ceddfe1ad7c0cbd2890ec6b python_version=3 # XXX Restrict archs until a proper -dotconfig is available in FILESDIR. @@ -41,7 +41,7 @@ mutable_files=" /usr/lib/modules/${_kernver}/modules.devname" # reproducible build -export KBUILD_BUILD_TIMESTAMP=${SOURCE_DATE_EPOCH:-0} +export KBUILD_BUILD_TIMESTAMP=$(LC_ALL=C date -ud @${SOURCE_DATE_EPOCH:-0}) export KBUILD_BUILD_USER=voidlinux export KBUILD_BUILD_HOST=voidlinux From 5230843f9f369e1c35f3f2617cbeadbe55c37f8e Mon Sep 17 00:00:00 2001 From: Michael Aldridge Date: Wed, 4 Aug 2021 13:09:36 -0500 Subject: [PATCH 189/824] New package: sftpgo-2.1.0 --- srcpkgs/sftpgo/template | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 srcpkgs/sftpgo/template diff --git a/srcpkgs/sftpgo/template b/srcpkgs/sftpgo/template new file mode 100644 index 000000000000..fda2729bd65c --- /dev/null +++ b/srcpkgs/sftpgo/template @@ -0,0 +1,16 @@ +# Template file for 'sftpgo' +pkgname=sftpgo +version=2.1.0 +revision=1 +build_style=go +go_import_path=github.com/drakkan/sftpgo +short_desc="Fully featured and highly configurable SFTP server" +maintainer="Michael Aldridge " +license="AGPL-3.0" +homepage="https://github.com/drakkan/sftpgo" +distfiles="https://github.com/drakkan/sftpgo/archive/refs/tags/v$version.tar.gz" +checksum=d04d75f1baee9d4510e40240e1b24b075430244abda8f7daef5922f5f3ca7fa9 + +post_install() { + vlicense LICENSE +} From d94728b669adf92dc8599479aa827850ac210405 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Wed, 4 Aug 2021 20:56:10 +0200 Subject: [PATCH 190/824] icdiff: update to 2.0.4. --- srcpkgs/icdiff/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/icdiff/template b/srcpkgs/icdiff/template index 3af6dfdcd074..381de5c102b5 100644 --- a/srcpkgs/icdiff/template +++ b/srcpkgs/icdiff/template @@ -1,6 +1,6 @@ # Template file for 'icdiff' pkgname=icdiff -version=2.0.3 +version=2.0.4 revision=1 wrksrc="${pkgname}-release-${version}" build_style=python3-module @@ -13,7 +13,7 @@ license="Python-2.0" homepage="http://www.jefftk.com/icdiff" changelog="https://github.com/jeffkaufman/icdiff/raw/master/ChangeLog" distfiles="https://github.com/jeffkaufman/icdiff/archive/release-${version}.tar.gz" -checksum=23e9502895999a929e1d3559403205846742f7cf8a22c5d7f3c4db910ba12321 +checksum=ec21632b64159990a1bcedc8b25f96b476e7a6d9e18b75422420c0ae9b694eac replaces="python3-icdiff>=0" provides="python3-icdiff-${version}_${revision}" From 5a818992ea80ead45c200f5be0d3eaea66d0d287 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Wed, 4 Aug 2021 20:57:32 +0200 Subject: [PATCH 191/824] prosody: update to 0.11.10. Fixes CVE-2021-37601. --- srcpkgs/prosody/template | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/srcpkgs/prosody/template b/srcpkgs/prosody/template index 7d0ac6a3946d..33502549bd51 100644 --- a/srcpkgs/prosody/template +++ b/srcpkgs/prosody/template @@ -1,6 +1,6 @@ # Template file for 'prosody' pkgname=prosody -version=0.11.9 +version=0.11.10 revision=1 build_style=configure configure_args=" @@ -26,8 +26,9 @@ short_desc="Lightweight and extensible Jabber/XMPP server written in Lua" maintainer="Duncaen " license="MIT" homepage="https://prosody.im/" +changelog="https://blog.prosody.im/prosody-${version}-released/" distfiles="https://prosody.im/downloads/source/${pkgname}-${version}.tar.gz" -checksum=ccc032aea49d858635fb93644db276de6812be83073a8d80e9b4508095deff09 +checksum=c6d714e6d4a6ddd1db1266b205d9d8a3ed91818f42755c9268ffb18359d204e1 system_accounts="prosody" prosody_homedir="/var/lib/prosody" From 52ed770d2b8e2290f6fb3c3534b6f662c9e3b581 Mon Sep 17 00:00:00 2001 From: Bartek Stalewski Date: Tue, 3 Aug 2021 10:37:50 +0200 Subject: [PATCH 192/824] fail2ban: update to version 0.11.2 --- srcpkgs/fail2ban/template | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/srcpkgs/fail2ban/template b/srcpkgs/fail2ban/template index 2b8fe877a8be..4abc63302393 100644 --- a/srcpkgs/fail2ban/template +++ b/srcpkgs/fail2ban/template @@ -1,21 +1,23 @@ # Template file for 'fail2ban' pkgname=fail2ban -version=0.11.1 -revision=2 +version=0.11.2 +revision=1 build_style=python3-module hostmakedepends="pkg-config python3" depends="python3" short_desc="Authentication failure monitor system" maintainer="necrophcodr " license="GPL-2.0-only" -homepage="http://www.fail2ban.org/" -distfiles="https://github.com/${pkgname}/${pkgname}/archive/${version}.tar.gz" -checksum=71d2a52b66bb0f87ac3812246bdd3819ec561913cd44afd39130a342f043aa6d +homepage="https://www.fail2ban.org/" +changelog="https://raw.githubusercontent.com/fail2ban/fail2ban/master/ChangeLog" +distfiles="https://github.com/fail2ban/fail2ban/archive/${version}.tar.gz" +checksum=383108e5f8644cefb288537950923b7520f642e7e114efb843f6e7ea9268b1e0 conf_files=" /etc/fail2ban/fail2ban.conf /etc/fail2ban/jail.conf /etc/fail2ban/action.d/*.conf /etc/fail2ban/filter.d/*.conf" +make_dirs="/var/lib/fail2ban 0700 root root" pre_build() { ./fail2ban-2to3 From adc05833a68047f4608d678f41997bce7058f0b0 Mon Sep 17 00:00:00 2001 From: Michal Vasilek Date: Tue, 25 May 2021 00:28:46 +0200 Subject: [PATCH 193/824] New package: python3-smartypants-2.0.1 --- srcpkgs/python3-smartypants/template | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 srcpkgs/python3-smartypants/template diff --git a/srcpkgs/python3-smartypants/template b/srcpkgs/python3-smartypants/template new file mode 100644 index 000000000000..728196e7100c --- /dev/null +++ b/srcpkgs/python3-smartypants/template @@ -0,0 +1,19 @@ +# Template file for 'python3-smartypants' +pkgname=python3-smartypants +version=2.0.1 +revision=1 +wrksrc="smartypants.py-$version" +build_style=python3-module +hostmakedepends="python3-setuptools" +depends="python3" +checkdepends="python3-docutils" +short_desc="Python with the SmartyPants" +maintainer="Michal Vasilek " +license="BSD-3-Clause" +homepage="https://github.com/leohemsted/smartypants.py/" +distfiles="https://github.com/leohemsted/smartypants.py/archive/refs/tags/v$version.tar.gz" +checksum=b98191911ff3b4144ef8ad53e776a2d0ad24bd508a905c6ce523597c40022773 + +post_install() { + vlicense COPYING +} From eb7520cc8138b52fdb76d726d62ad9b34d26a453 Mon Sep 17 00:00:00 2001 From: Michal Vasilek Date: Tue, 25 May 2021 00:28:53 +0200 Subject: [PATCH 194/824] New package: python3-typogrify-2.0.7 --- srcpkgs/python3-typogrify/template | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 srcpkgs/python3-typogrify/template diff --git a/srcpkgs/python3-typogrify/template b/srcpkgs/python3-typogrify/template new file mode 100644 index 000000000000..f168a9cad689 --- /dev/null +++ b/srcpkgs/python3-typogrify/template @@ -0,0 +1,19 @@ +# Template file for 'python3-typogrify' +pkgname=python3-typogrify +version=2.0.7 +revision=1 +wrksrc="typogrify-$version" +build_style=python3-module +hostmakedepends="python3-setuptools" +depends="python3-smartypants" +short_desc="Filters to enhance web typography" +maintainer="Michal Vasilek " +license="BSD-3-Clause" +homepage="https://github.com/mintchaos/typogrify" +distfiles="https://github.com/mintchaos/typogrify/archive/refs/tags/$version.tar.gz" +checksum=d5081966c1c1423157e240d5cfe7435b56ca30be57ff8c7fe6f90f6cc42295ee +make_check=no # conflicting dependencies + +post_install() { + vlicense LICENSE.txt +} From baecb2ac5562176dc002099a13e34a5f6c6373af Mon Sep 17 00:00:00 2001 From: Michal Vasilek Date: Tue, 25 May 2021 00:29:00 +0200 Subject: [PATCH 195/824] New package: gi-docgen-2021.6 --- srcpkgs/gi-docgen/template | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 srcpkgs/gi-docgen/template diff --git a/srcpkgs/gi-docgen/template b/srcpkgs/gi-docgen/template new file mode 100644 index 000000000000..ff1c217d297e --- /dev/null +++ b/srcpkgs/gi-docgen/template @@ -0,0 +1,14 @@ +# Template file for 'gi-docgen' +pkgname=gi-docgen +version=2021.6 +revision=1 +build_style=python3-module +hostmakedepends="python3-setuptools" +depends="python3-Pygments python3-typogrify python3-Jinja2 python3-toml" +short_desc="Documentation generator for GObject-based libraries" +maintainer="Michal Vasilek " +license="Apache-2.0, GPL-3.0-or-later" +homepage="https://gnome.pages.gitlab.gnome.org/gi-docgen/" +distfiles="https://gitlab.gnome.org/GNOME/gi-docgen/-/archive/$version/gi-docgen-$version.tar.gz" +checksum=d43cc51cb0c614f8906469bf313dbd23337f355a3281ecd4324980be773cdff1 +make_check=no # no tests, but check fails From 775f1e9500d13aa060d8aa56828bf5d09a157a52 Mon Sep 17 00:00:00 2001 From: Michal Vasilek Date: Wed, 7 Jul 2021 17:08:00 +0200 Subject: [PATCH 196/824] sysprof: update to 3.40.1. --- srcpkgs/sysprof/patches/build.patch | 10 -- srcpkgs/sysprof/patches/musl.patch | 157 ---------------------------- srcpkgs/sysprof/template | 12 +-- 3 files changed, 4 insertions(+), 175 deletions(-) delete mode 100644 srcpkgs/sysprof/patches/build.patch delete mode 100644 srcpkgs/sysprof/patches/musl.patch diff --git a/srcpkgs/sysprof/patches/build.patch b/srcpkgs/sysprof/patches/build.patch deleted file mode 100644 index 4d99d6bc3f32..000000000000 --- a/srcpkgs/sysprof/patches/build.patch +++ /dev/null @@ -1,10 +0,0 @@ ---- a/src/libsysprof-capture/sysprof-capture-condition.c -+++ b/src/libsysprof-capture/sysprof-capture-condition.c -@@ -269,6 +269,7 @@ sysprof_capture_condition_copy (const SysprofCaptureCondition *self) - } - - sysprof_assert_not_reached (); -+ return NULL; - } - - static void diff --git a/srcpkgs/sysprof/patches/musl.patch b/srcpkgs/sysprof/patches/musl.patch deleted file mode 100644 index abaac692fb37..000000000000 --- a/srcpkgs/sysprof/patches/musl.patch +++ /dev/null @@ -1,157 +0,0 @@ -From 1d2de32e97bf5569cc33ee9a90c873e1bbd2b1e6 Mon Sep 17 00:00:00 2001 -From: q66 -Date: Sun, 6 Sep 2020 18:21:37 +0200 -Subject: [PATCH] fix build on musl - ---- - .../sysprof-capture-cursor.c | 1 + - .../sysprof-capture-reader.c | 1 + - src/libsysprof-capture/sysprof-capture-util.c | 1 + - .../sysprof-capture-writer-cat.c | 1 + - src/libsysprof-capture/sysprof-collector.c | 1 + - src/libsysprof-capture/sysprof-compat.h | 28 +++++++++++++++++++ - src/libsysprof-capture/sysprof-platform.c | 1 + - 7 files changed, 34 insertions(+) - create mode 100644 src/libsysprof-capture/sysprof-compat.h - -diff --git src/libsysprof-capture/sysprof-capture-cursor.c src/libsysprof-capture/sysprof-capture-cursor.c -index 24563f0..bb77a60 100644 ---- a/src/libsysprof-capture/sysprof-capture-cursor.c -+++ b/src/libsysprof-capture/sysprof-capture-cursor.c -@@ -59,6 +59,7 @@ - #include - #include - -+#include "sysprof-compat.h" - #include "sysprof-capture-condition.h" - #include "sysprof-capture-cursor.h" - #include "sysprof-capture-reader.h" -diff --git src/libsysprof-capture/sysprof-capture-reader.c src/libsysprof-capture/sysprof-capture-reader.c -index 67c6b28..252d006 100644 ---- a/src/libsysprof-capture/sysprof-capture-reader.c -+++ b/src/libsysprof-capture/sysprof-capture-reader.c -@@ -68,6 +68,7 @@ - #include - #include - -+#include "sysprof-compat.h" - #include "sysprof-capture-reader.h" - #include "sysprof-capture-util-private.h" - #include "sysprof-capture-writer.h" -diff --git src/libsysprof-capture/sysprof-capture-util.c src/libsysprof-capture/sysprof-capture-util.c -index 0bbea06..0e5f7e7 100644 ---- a/src/libsysprof-capture/sysprof-capture-util.c -+++ b/src/libsysprof-capture/sysprof-capture-util.c -@@ -56,6 +56,7 @@ - - #include "config.h" - -+#include - #include - #include - #include -diff --git src/libsysprof-capture/sysprof-capture-writer-cat.c src/libsysprof-capture/sysprof-capture-writer-cat.c -index 66171b9..9febbbb 100644 ---- a/src/libsysprof-capture/sysprof-capture-writer-cat.c -+++ b/src/libsysprof-capture/sysprof-capture-writer-cat.c -@@ -63,6 +63,7 @@ - #include - #include - -+#include "sysprof-compat.h" - #include "sysprof-capture.h" - #include "sysprof-macros-internal.h" - -diff --git src/libsysprof-capture/sysprof-collector.c src/libsysprof-capture/sysprof-collector.c -index 1d7a0d6..7af6c96 100644 ---- a/src/libsysprof-capture/sysprof-collector.c -+++ b/src/libsysprof-capture/sysprof-collector.c -@@ -73,6 +73,7 @@ - - #include "mapped-ring-buffer.h" - -+#include "sysprof-compat.h" - #include "sysprof-capture-util-private.h" - #include "sysprof-collector.h" - #include "sysprof-macros-internal.h" -diff --git src/libsysprof-capture/sysprof-compat.h src/libsysprof-capture/sysprof-compat.h -new file mode 100644 -index 0000000..ae9bf10 ---- /dev/null -+++ b/src/libsysprof-capture/sysprof-compat.h -@@ -0,0 +1,28 @@ -+/* added by q66 @ void to fix build on musl */ -+ -+#pragma once -+ -+#ifndef __GLIBC__ -+ -+#include -+#include -+ -+/* from glibc */ -+#ifndef TEMP_FAILURE_RETRY -+# define TEMP_FAILURE_RETRY(expression) \ -+ (__extension__ \ -+ ({ long int __result; \ -+ do __result = (long int) (expression); \ -+ while (__result == -1L && errno == EINTR); \ -+ __result; })) -+#endif -+ -+static inline void *reallocarray(void *p, size_t nmemb, size_t sz) { -+ if (sz && (nmemb > ((size_t)-1 / sz))) { -+ errno = ENOMEM; -+ return NULL; -+ } -+ return realloc(p, nmemb * sz); -+} -+ -+#endif -diff --git src/libsysprof-capture/sysprof-platform.c src/libsysprof-capture/sysprof-platform.c -index a80ab89..05bd590 100644 ---- a/src/libsysprof-capture/sysprof-platform.c -+++ b/src/libsysprof-capture/sysprof-platform.c -@@ -60,6 +60,7 @@ - #include - #include - -+#include "sysprof-compat.h" - #include "sysprof-capture-util-private.h" - #include "sysprof-platform.h" - --- -2.28.0 - -From here onward, blame sgn -Index: meson.build -=================================================================== ---- a/meson.build -+++ b/meson.build -@@ -69,6 +69,7 @@ config_h.set('LOCALEDIR', 'PACKAGE_LOCAL - config_h.set('HAVE_EXECINFO_H', cc.has_header('execinfo.h')) - - config_h.set('HAVE_STRLCPY', cc.has_function('strlcpy')) -+config_h.set('HAVE_REALLOCARRAY', cc.has_function('reallocarray')) - - if get_option('libunwind') - libunwind_dep = dependency('libunwind-generic', required: false) -Index: src/libsysprof-capture/sysprof-compat.h -=================================================================== ---- a/src/libsysprof-capture/sysprof-compat.h 2021-02-05 23:39:58.352258624 +0100 -+++ b/src/libsysprof-capture/sysprof-compat.h 2021-02-05 23:47:07.662841454 +0100 -@@ -17,6 +17,7 @@ - __result; })) - #endif - -+#ifndef HAVE_REALLOCARRAY - static inline void *reallocarray(void *p, size_t nmemb, size_t sz) { - if (sz && (nmemb > ((size_t)-1 / sz))) { - errno = ENOMEM; -@@ -24,5 +25,5 @@ - } - return realloc(p, nmemb * sz); - } -- -+#endif - #endif diff --git a/srcpkgs/sysprof/template b/srcpkgs/sysprof/template index eae51ea7356b..2e24cd7de548 100644 --- a/srcpkgs/sysprof/template +++ b/srcpkgs/sysprof/template @@ -1,27 +1,23 @@ # Template file for 'sysprof' pkgname=sysprof -version=3.38.0 +version=3.40.1 revision=1 build_style=meson configure_args="-Denable_gtk=true -Dsystemdunitdir=deleteme" hostmakedepends="gettext pkg-config itstool glib-devel" -makedepends="gtk+3-devel libdazzle-devel polkit-devel glib-devel elogind-devel" +makedepends="gtk+3-devel libdazzle-devel polkit-devel glib-devel elogind-devel json-glib-devel" short_desc="System-wide profiler for Linux" maintainer="Enno Boland " license="GPL-2.0-or-later, GPL-3.0-or-later" -homepage="http://sysprof.com/" +homepage="https://gitlab.gnome.org/GNOME/sysprof" distfiles="${GNOME_SITE}/${pkgname}/${version%.*}/${pkgname}-${version}.tar.xz" -checksum=8bcd728dc2f74e6f589410370dfb1b8801468bb3cc1803aa240735a7cff241ce +checksum=c25000d6a20e8c4d314f5c861a1f70d7c3e2027117437fd9198fa811b9fc7437 # for ITS rules if [ "$CROSS_BUILD" ]; then hostmakedepends+=" polkit-devel" fi -pre_build() { - export SHELL=/bin/bash -} - post_install() { rm -rf ${DESTDIR}/usr/deleteme } From 1584f6641ac5a455f978b45a9ca7a26d00514b0a Mon Sep 17 00:00:00 2001 From: Michal Vasilek Date: Tue, 1 Jun 2021 23:48:13 +0200 Subject: [PATCH 197/824] gtk4: update to 4.2.1, split docs, enable sysprof --- srcpkgs/gtk4-doc | 1 + srcpkgs/gtk4/patches/fix-sysprof.patch | 23 ++++++++++++++++ srcpkgs/gtk4/template | 36 +++++++++++++++++++------- 3 files changed, 50 insertions(+), 10 deletions(-) create mode 120000 srcpkgs/gtk4-doc create mode 100644 srcpkgs/gtk4/patches/fix-sysprof.patch diff --git a/srcpkgs/gtk4-doc b/srcpkgs/gtk4-doc new file mode 120000 index 000000000000..870d493d73bf --- /dev/null +++ b/srcpkgs/gtk4-doc @@ -0,0 +1 @@ +gtk4 \ No newline at end of file diff --git a/srcpkgs/gtk4/patches/fix-sysprof.patch b/srcpkgs/gtk4/patches/fix-sysprof.patch new file mode 100644 index 000000000000..76a86d16cc80 --- /dev/null +++ b/srcpkgs/gtk4/patches/fix-sysprof.patch @@ -0,0 +1,23 @@ +--- a/gtk/meson.build ++++ b/gtk/meson.build +@@ -1001,6 +1001,7 @@ gtk_deps = [ + epoxy_dep, + libm, + graphene_dep, ++ libsysprof_dep, + ] + + if harfbuzz_dep.found() and pangoft_dep.found() +diff --git a/tools/meson.build b/tools/meson.build +index 1811b69..804e37f 100644 +--- a/tools/meson.build ++++ b/tools/meson.build +@@ -30,7 +30,7 @@ gtk_tools = [ + 'gtk-builder-tool-enumerate.c', + 'gtk-builder-tool-preview.c'], [libgtk_dep] ], + ['gtk4-update-icon-cache', ['updateiconcache.c'] + extra_update_icon_cache_objs, [ libgtk_static_dep ] ], +- ['gtk4-encode-symbolic-svg', ['encodesymbolic.c'], [ libgtk_static_dep ] ], ++ ['gtk4-encode-symbolic-svg', ['encodesymbolic.c'], [ libgtk_static_dep, libsysprof_dep ] ], + ] + + if os_unix diff --git a/srcpkgs/gtk4/template b/srcpkgs/gtk4/template index 450d393b09c0..6441fdf8e85c 100644 --- a/srcpkgs/gtk4/template +++ b/srcpkgs/gtk4/template @@ -1,42 +1,58 @@ # Template file for 'gtk4' pkgname=gtk4 -version=4.2.0 +version=4.2.1 revision=1 wrksrc="gtk-${version}" build_style=meson build_helper="gir" -configure_args="-Dman-pages=true -Dbuild-tests=false -Dmedia=all +configure_args="-Dman-pages=true -Dbuild-tests=false -Dgtk_doc=true -Dbroadway-backend=$(vopt_if broadway true false) -Dx11-backend=$(vopt_if x11 true false) -Dwayland-backend=$(vopt_if wayland true false) -Dintrospection=$(vopt_if gir enabled disabled) - -Dprint-backends=$(vopt_if cups 'cups,file' file) -Dcolord=$(vopt_if colord enabled disabled) -Dcloudproviders=$(vopt_if cloudproviders enabled disabled) - -Dvulkan=$(vopt_if vulkan enabled disabled)" -hostmakedepends="gettext-devel glib-devel gtk-doc gtk-update-icon-cache perl - pkg-config sassc gettext + -Dvulkan=$(vopt_if vulkan enabled disabled) + -Dsysprof=$(vopt_if sysprof enabled disabled)" +hostmakedepends="gettext-devel glib-devel gi-docgen gtk-update-icon-cache perl + pkg-config sassc gettext libxslt docbook-xsl $(vopt_if wayland 'wayland-devel wayland-protocols')" makedepends="at-spi2-atk-devel gdk-pixbuf-devel libepoxy-devel pango-devel iso-codes graphene-devel gst-plugins-bad1-devel ffmpeg-devel $(vopt_if colord 'colord-devel') $(vopt_if cups 'cups-devel') $(vopt_if wayland 'libxkbcommon-devel wayland-devel wayland-protocols MesaLib-devel') $(vopt_if x11 'libXcursor-devel libXdamage-devel libXext-devel libXinerama-devel libXi-devel libXrandr-devel libXcomposite-devel') - $(vopt_if cloudproviders 'libcloudproviders-devel') $(vopt_if vulkan 'vulkan-loader Vulkan-Headers')" + $(vopt_if cloudproviders 'libcloudproviders-devel') $(vopt_if vulkan 'vulkan-loader Vulkan-Headers') + $(vopt_if sysprof 'sysprof-devel json-glib-devel polkit-devel')" depends="gtk-update-icon-cache shared-mime-info $(vopt_if x11 'dbus-x11')" short_desc="GIMP ToolKit (v4)" maintainer="Enno Boland " license="LGPL-2.1-or-later" homepage="https://www.gtk.org/" distfiles="${GNOME_SITE}/gtk/${version%.*}/gtk-${version}.tar.xz" -checksum=e975f286e911666a79b6bcf486e6f99b0bd9d2b4cc348d19bce487a0b1c97072 +checksum=023169775de43f0a1fde066fbc19d78545ea6a7562c1915abde9b8ae4a7309e6 # Package build options -build_options="broadway cloudproviders colord cups gir vulkan wayland x11" +build_options="broadway cloudproviders colord cups gir vulkan wayland x11 sysprof" desc_option_broadway="Enable support for the HTML5 Broadway backend" desc_option_cloudproviders="Enable integration with cloudproviders, such as Nextcloud" +desc_option_sysprof="Enable support for sysprof profiling" -build_options_default="colord cups broadway wayland x11 cloudproviders vulkan gir" +build_options_default="broadway cloudproviders colord cups gir vulkan wayland x11 sysprof" + +pre_build() { + # help gi-docgen find gi files on cross + if [ -n "$CROSS_BUILD" ]; then + export XDG_DATA_DIRS=/usr/$XBPS_CROSS_TRIPLET/usr/share/ + fi +} + +gtk4-doc_package() { + short_desc+=" - documentation" + pkg_install() { + vmove usr/share/doc + } +} gtk4-devel_package() { depends="${makedepends} ${sourcepkg}>=${version}_${revision}" From 9b48a4f0c5e0ccbf17074cbab54691352179009c Mon Sep 17 00:00:00 2001 From: Arjan Mossel Date: Tue, 3 Aug 2021 20:56:22 +0200 Subject: [PATCH 198/824] electrum: update to 4.1.5. --- srcpkgs/electrum/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/electrum/template b/srcpkgs/electrum/template index 92f21f07ef4d..91200e0c3402 100644 --- a/srcpkgs/electrum/template +++ b/srcpkgs/electrum/template @@ -1,6 +1,6 @@ # Template file for 'electrum' pkgname=electrum -version=4.1.4 +version=4.1.5 revision=1 build_style=python3-module hostmakedepends="python3-setuptools python3-PyQt5-devel-tools" @@ -20,7 +20,7 @@ maintainer="Charles E. Lehner " license="MIT" homepage="https://electrum.org/" distfiles="https://github.com/spesmilo/electrum/archive/${version}.tar.gz" -checksum=31f3a794565c3360f129b97d9a3962f8cc978f79d1b0f69d0929e00ce2bfc0d8 +checksum=74bf1ff3675d62f45ffe9178679b963f57ee6be0fc0d0a807e559967db714bd2 post_install() { sed -i -e 's|electrum %u|electrum|' \ From b14cef1cd92d5a3253b5e42bd43d46ba1e5c9c3a Mon Sep 17 00:00:00 2001 From: Michal Vasilek Date: Sun, 18 Jul 2021 11:01:29 +0200 Subject: [PATCH 199/824] libinput: update to 1.18.1. --- srcpkgs/libinput/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/libinput/template b/srcpkgs/libinput/template index 6361bb405ee7..ef558a68d6a5 100644 --- a/srcpkgs/libinput/template +++ b/srcpkgs/libinput/template @@ -1,6 +1,6 @@ # Template file for 'libinput' pkgname=libinput -version=1.17.3 +version=1.18.1 revision=1 build_style=meson configure_args="$(vopt_bool debug_gui debug-gui) -Ddocumentation=false -Dtests=false" @@ -13,7 +13,7 @@ maintainer="bra1nwave " license="MIT" homepage="https://www.freedesktop.org/wiki/Software/libinput" distfiles="${FREEDESKTOP_SITE}/${pkgname}/${pkgname}-${version}.tar.xz" -checksum=0d010e0bf601b5d3a06b3c4d77d67751cf554f3e6448e57aa046ea9ee8f818ac +checksum=9ca14021fbc2523bc0610582c51f368321592040b6ca63becc2fa1ea11f1a7cb build_options="debug_gui" desc_option_debug_gui="Build with debug GUI (GTK+3)" From fdc57786c3644bdc6ab6ba5cb566fd0b49bd0951 Mon Sep 17 00:00:00 2001 From: "Alex Xu (Hello71)" Date: Thu, 5 Aug 2021 11:10:15 -0400 Subject: [PATCH 200/824] shotcut: remove qt5-webkit-devel dep shotcut does not use webkit since https://github.com/mltframework/shotcut/commit/a44fe75a4dc7410668935cd0d3470994f5997571. no revbump because this is purely build-time change. --- srcpkgs/shotcut/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/shotcut/template b/srcpkgs/shotcut/template index 5ad51345b231..d0e7d67586f9 100644 --- a/srcpkgs/shotcut/template +++ b/srcpkgs/shotcut/template @@ -7,8 +7,8 @@ configure_args="SHOTCUT_VERSION=VOID-$version DEFINES+=SHOTCUT_NOUPGRADE" hostmakedepends="pkg-config qt5-tools qt5-qmake qt5-host-tools" makedepends="gstreamer1-devel lame-devel libvpx-devel mlt7-devel mlt7-python3 qt5-declarative-devel qt5-graphicaleffects qt5-multimedia-devel - qt5-quickcontrols2-devel qt5-webkit-devel qt5-websockets-devel - qt5-x11extras-devel x264-devel" + qt5-quickcontrols2-devel qt5-websockets-devel qt5-x11extras-devel + x264-devel" depends="frei0r-plugins qt5-graphicaleffects qt5-quickcontrols" short_desc="Free, open source, cross-platform video editor" maintainer="John " From 57b2e19a9775e63efac22754aae3125e0db87bd0 Mon Sep 17 00:00:00 2001 From: mobinmob Date: Thu, 5 Aug 2021 19:56:44 +0300 Subject: [PATCH 201/824] notcurses: update to 2.3.13. --- srcpkgs/notcurses/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/notcurses/template b/srcpkgs/notcurses/template index 4b3563f65ffc..0023919a6ace 100644 --- a/srcpkgs/notcurses/template +++ b/srcpkgs/notcurses/template @@ -1,6 +1,6 @@ # Template file for 'notcurses' pkgname=notcurses -version=2.3.12 +version=2.3.13 revision=1 build_style=cmake configure_args="-DUSE_STATIC=ON $(vopt_bool man USE_PANDOC)" @@ -14,7 +14,7 @@ license="Apache-2.0" homepage="https://nick-black.com/dankwiki/index.php/Notcurses" changelog="https://raw.githubusercontent.com/dankamongmen/notcurses/master/NEWS.md" distfiles="https://github.com/dankamongmen/notcurses/archive/v${version}.tar.gz" -checksum=ce042908fac11f7df1f9eaa610e46e9c615f53ab036b7c27ae2396292512407b +checksum=c5eb822ea5b98028acd4a8dd21b155f893d928e4a30a8309eea0c406403af4e8 build_options="man" desc_option_man="Use pandoc for manpages" From 0460665ab43b95d2d95e960995315ad6742f4610 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89rico=20Nogueira?= Date: Thu, 5 Aug 2021 09:27:02 -0300 Subject: [PATCH 202/824] nvidia: fix proton errors. Proton sometimes errors out with: The NVIDIA driver was unable to open 'libnvidia-glvkspirv.so.470.57.02'. This library is required at run time. This is caused by an out of date glibc cache, so we now run ldconfig in INSTALL. This solution was pointed out by mvf. Unfortunately, this isn't the entirely correct solution: ldconfig should always be run after package installations that touch /usr/lib, to avoid similar issues. Until there's a simple solution for it (maybe general purpose XBPS hooks), this is the best we can do. Fixes: #32222 --- srcpkgs/nvidia/INSTALL | 3 +++ srcpkgs/nvidia/template | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 srcpkgs/nvidia/INSTALL diff --git a/srcpkgs/nvidia/INSTALL b/srcpkgs/nvidia/INSTALL new file mode 100644 index 000000000000..2461dca609f6 --- /dev/null +++ b/srcpkgs/nvidia/INSTALL @@ -0,0 +1,3 @@ +case "${ACTION}" in +post) ldconfig -X || : ;; +esac diff --git a/srcpkgs/nvidia/template b/srcpkgs/nvidia/template index 2ebd8c1b5e49..9c022ef65649 100644 --- a/srcpkgs/nvidia/template +++ b/srcpkgs/nvidia/template @@ -4,7 +4,7 @@ _desc="NVIDIA drivers for linux" pkgname=nvidia version=470.57.02 -revision=1 +revision=2 maintainer="Andrew Benson " license="custom:NVIDIA Proprietary" homepage="https://www.nvidia.com" From f6b8a366742d1dd5b1441a4b7c20de270d56765a Mon Sep 17 00:00:00 2001 From: mobinmob Date: Thu, 5 Aug 2021 20:01:56 +0300 Subject: [PATCH 203/824] font-awesome5: update to 5.15.4. Also: - add changelog. Closes: #32339 [via git-merge-pr] --- srcpkgs/font-awesome5/template | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/srcpkgs/font-awesome5/template b/srcpkgs/font-awesome5/template index c4fcf1d5d3f4..890f74cc8be0 100644 --- a/srcpkgs/font-awesome5/template +++ b/srcpkgs/font-awesome5/template @@ -1,6 +1,6 @@ # Template file for 'font-awesome5' pkgname=font-awesome5 -version=5.15.3 +version=5.15.4 revision=1 wrksrc="Font-Awesome-${version}" depends="font-util" @@ -8,8 +8,9 @@ short_desc="Iconic font (version 5)" maintainer="mobinmob " license="OFL-1.1" homepage="https://fontawesome.com" +changelog="https://raw.githubusercontent.com/FortAwesome/Font-Awesome/master/CHANGELOG.md" distfiles="https://github.com/FortAwesome/Font-Awesome/archive/${version}.tar.gz" -checksum=3159331c378de00ae69d6c35d7b00f8d9610eafd6acc4c5c28319c08e9158a31 +checksum=82c301594a566277ba3cf41e037fc03ae101727d3e5d682d09e322a53937b5ed conflicts="font-awesome>=0" font_dirs="/usr/share/fonts/OTF" From cffe7b20ded28ae8e17c9a516a4806804da3d525 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C2=A9TwT?= Date: Fri, 6 Aug 2021 00:55:17 +0700 Subject: [PATCH 204/824] zoom: update to 5.7.28991.0726_1 --- srcpkgs/zoom/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/zoom/template b/srcpkgs/zoom/template index ef5b208e2db3..71628a6c079a 100644 --- a/srcpkgs/zoom/template +++ b/srcpkgs/zoom/template @@ -1,6 +1,6 @@ # Template file for 'zoom' pkgname=zoom -version=5.7.26030.0627 +version=5.7.28991.0726 revision=1 archs="x86_64" wrksrc=zoom @@ -13,7 +13,7 @@ maintainer="Daniel Santana " license="custom:Proprietary" homepage="https://zoom.us/" distfiles="https://cdn.zoom.us/prod/${version}/zoom_x86_64.rpm" -checksum=75b87639bebf3eaeb2de4c1ea3f47a9b76f6bcad1312a842dd4e9d40071024fa +checksum=003c35abc2dea55d3f27c28dca627ddfff69cdc2fe03dcaf1dda021770cc6cd9 repository=nonfree noshlibprovides=yes noverifyrdeps=yes From 31e39b774927db23b617ebc30c1a6c33bdae4791 Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Thu, 5 Aug 2021 12:49:42 +0200 Subject: [PATCH 205/824] ipset: update to 7.15. --- srcpkgs/ipset/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/ipset/template b/srcpkgs/ipset/template index 51150121385d..77c85ff074f7 100644 --- a/srcpkgs/ipset/template +++ b/srcpkgs/ipset/template @@ -1,6 +1,6 @@ # Template file for 'ipset' pkgname=ipset -version=7.14 +version=7.15 revision=1 build_style=gnu-configure configure_args="--with-kmod=no PKG_CONFIG=pkg-config" From 0f9a42818c53870137cfc6378cb25d9dffc47197 Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Thu, 5 Aug 2021 21:36:27 +0200 Subject: [PATCH 206/824] extrace: update to 0.8. --- srcpkgs/extrace/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/extrace/template b/srcpkgs/extrace/template index da7cf1f1bfb5..e3b98977791f 100644 --- a/srcpkgs/extrace/template +++ b/srcpkgs/extrace/template @@ -1,7 +1,7 @@ # Template file for 'extrace' pkgname=extrace -version=0.7 -revision=3 +version=0.8 +revision=1 build_style=gnu-makefile depends="libcap-progs" short_desc="Trace exec(2) calls system-wide" @@ -9,7 +9,7 @@ maintainer="Leah Neukirchen " license="GPL-2.0-or-later, BSD-2-Clause" homepage="https://github.com/leahneukirchen/extrace" distfiles="https://github.com/leahneukirchen/extrace/archive/v${version}.tar.gz" -checksum=62e6623d4891494a307f9f7247b8581794232d4d26617009eae763a48280abcf +checksum=d83e48551b168c5d78815e4e9e93c02d7dea8c8aa2518a25a0876cdec7c858eb post_install() { vlicense LICENSE From 8008a848bc7a8836c1385d51ec0968e9b2893f17 Mon Sep 17 00:00:00 2001 From: George Matsumura Date: Mon, 12 Jul 2021 04:17:31 -0600 Subject: [PATCH 207/824] arcan: add arcan_sdl subpackage arcan_sdl allows the running of arcan nested within a different display server. --- srcpkgs/arcan/template | 13 +++++++++++-- srcpkgs/arcan_sdl | 1 + 2 files changed, 12 insertions(+), 2 deletions(-) create mode 120000 srcpkgs/arcan_sdl diff --git a/srcpkgs/arcan/template b/srcpkgs/arcan/template index f436db94479c..31bf6e62eec5 100644 --- a/srcpkgs/arcan/template +++ b/srcpkgs/arcan/template @@ -1,17 +1,18 @@ # Template file for 'arcan' pkgname=arcan version=0.6.0.1 -revision=1 +revision=2 build_wrksrc=src build_style=cmake make_cmd=make configure_args="-DDISTR_TAG='Void Linux' -DVIDEO_PLATFORM=egl-dri + -DHYBRID_SDL=On $(vopt_if luajit '-DDISABLE_JIT=OFF' '-DDISABLE_JIT=ON')" hostmakedepends="pkg-config $(vopt_if wayland wayland-devel)" makedepends="MesaLib-devel ffmpeg-devel file-devel freetype-devel liblzma-devel libopenal-devel libusb-devel libvncserver-devel libxkbcommon-devel sqlite-devel - vlc-devel + vlc-devel SDL2-devel $(vopt_if tts 'libespeak-ng-devel') $(vopt_if luajit 'LuaJIT-devel' 'lua51-devel') $(vopt_if tesseract 'tesseract-ocr-devel leptonica-devel') @@ -74,3 +75,11 @@ arcan-devel_package() { vmove usr/include } } + +arcan_sdl_package() { + short_desc+=" - SDL platform server binary" + depends="${sourcepkg}>=${version}_${revision}" + pkg_install() { + vmove usr/bin/arcan_sdl + } +} diff --git a/srcpkgs/arcan_sdl b/srcpkgs/arcan_sdl new file mode 120000 index 000000000000..fb6a95edcfe5 --- /dev/null +++ b/srcpkgs/arcan_sdl @@ -0,0 +1 @@ +arcan \ No newline at end of file From 44489c0572dd28b893cbbd7b8f01344fffb42c9d Mon Sep 17 00:00:00 2001 From: mobinmob Date: Thu, 5 Aug 2021 21:28:11 +0300 Subject: [PATCH 208/824] papirus-icon-theme: update to 20210802. --- srcpkgs/papirus-icon-theme/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/papirus-icon-theme/template b/srcpkgs/papirus-icon-theme/template index e02791536387..fb3c0b000924 100644 --- a/srcpkgs/papirus-icon-theme/template +++ b/srcpkgs/papirus-icon-theme/template @@ -1,13 +1,13 @@ # Template file for 'papirus-icon-theme' pkgname=papirus-icon-theme -version=20210701 +version=20210802 revision=1 short_desc="SVG icon theme for Linux, based on Paper Icon Set" maintainer="Giuseppe Fierro " license="GPL-3.0-or-later" homepage="https://github.com/PapirusDevelopmentTeam/papirus-icon-theme" distfiles="https://github.com/PapirusDevelopmentTeam/${pkgname}/archive/${version}.tar.gz" -checksum=1cb7bc70ba63adda3721b546f213cec6ffbad55ed0f725d0975bba34735d8b62 +checksum=fc5f230c626ecbfad73d391360e9db16191621327c92573125b35f7c62f16aa5 do_install() { vmkdir usr/share/icons From bedb3f4adaf05a24eb610988b81300221ca49c02 Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Thu, 5 Aug 2021 21:45:16 +0200 Subject: [PATCH 209/824] ipset: fix checksum. --- srcpkgs/ipset/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/ipset/template b/srcpkgs/ipset/template index 77c85ff074f7..8c204026e90c 100644 --- a/srcpkgs/ipset/template +++ b/srcpkgs/ipset/template @@ -12,7 +12,7 @@ license="GPL-2.0-only" homepage="https://ipset.netfilter.org/" changelog="https://ipset.netfilter.org/changelog.html" distfiles="https://ipset.netfilter.org/ipset-${version}.tar.bz2" -checksum=27031c36d355907031cce41e65553e99bb013d762fcd55392f63d7e84760f900 +checksum=0a5545aaadb640142c1f888d366a78ddf8724799967fa20686a70053bd621751 libipset_package() { short_desc+=" - library files" From cabb68f88c11f25e2fd64ef07094b48fcde2bdef Mon Sep 17 00:00:00 2001 From: Michal Vasilek Date: Thu, 5 Aug 2021 22:51:37 +0200 Subject: [PATCH 210/824] New package: abcmidi-2021.06.27 --- srcpkgs/abcmidi/template | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 srcpkgs/abcmidi/template diff --git a/srcpkgs/abcmidi/template b/srcpkgs/abcmidi/template new file mode 100644 index 000000000000..c5dd100bfbc3 --- /dev/null +++ b/srcpkgs/abcmidi/template @@ -0,0 +1,12 @@ +# Template file for 'abcmidi' +pkgname=abcmidi +version=2021.06.27 +revision=1 +wrksrc=${pkgname} +build_style=gnu-configure +short_desc="Utilites for working with ABC files" +maintainer="Michal Vasilek " +license="GPL-2.0-or-later" +homepage="https://ifdo.ca/~seymour/runabc/top.html" +distfiles="https://ifdo.ca/~seymour/runabc/abcMIDI-${version}.zip" +checksum=08ecbdda0ab81551f4d319e2db71f81f566b21adba252d8793c70a137bc0dd38 From 5894e93b0d0bfca141bc90ee284e4f8aae9b2840 Mon Sep 17 00:00:00 2001 From: Wes Roberts Date: Thu, 5 Aug 2021 18:12:44 -0400 Subject: [PATCH 211/824] timeshift: fix compatibility with util-linux 2.37.1. Timeshift will only start in "Live USB Mode". Upstream issues: https://github.com/teejee2008/timeshift/issues/425 https://github.com/teejee2008/timeshift/issues/753 https://github.com/teejee2008/timeshift/issues/755 --- srcpkgs/timeshift/patches/d437358a.patch | 23 +++++++++++++++++++++++ srcpkgs/timeshift/template | 2 +- 2 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 srcpkgs/timeshift/patches/d437358a.patch diff --git a/srcpkgs/timeshift/patches/d437358a.patch b/srcpkgs/timeshift/patches/d437358a.patch new file mode 100644 index 000000000000..edc82d772a75 --- /dev/null +++ b/srcpkgs/timeshift/patches/d437358a.patch @@ -0,0 +1,23 @@ +commit d437358ac3debf7625aefda4d0bd387a91b69df5 +Author: Tony George +Date: Sun Jun 6 12:04:07 2021 +0530 + + Fix for #425, #753, #755 + +diff --git a/src/Utility/Device.vala b/src/Utility/Device.vala +index 18f09de..b276055 100755 +--- a/src/Utility/Device.vala ++++ b/src/Utility/Device.vala +@@ -428,10 +428,10 @@ public class Device : GLib.Object{ + + try{ + if (lsblk_is_ancient){ +- rex = new Regex("""NAME="(.*)" KNAME="(.*)" LABEL="(.*)" UUID="(.*)" TYPE="(.*)" FSTYPE="(.*)" SIZE="(.*)" MOUNTPOINT="(.*)" MODEL="(.*)" RO="([0-9]+)" RM="([0-9]+)" MAJ:MIN="([0-9:]+)""""); ++ rex = new Regex("""NAME="(.*)" KNAME="(.*)" LABEL="(.*)" UUID="(.*)" TYPE="(.*)" FSTYPE="(.*)" SIZE="(.*)" MOUNTPOINT="(.*)" MODEL="(.*)" RO="([0-9]+)" RM="([0-9]+)" MAJ[_:]MIN="([0-9:]+)""""); + } + else{ +- rex = new Regex("""NAME="(.*)" KNAME="(.*)" LABEL="(.*)" UUID="(.*)" TYPE="(.*)" FSTYPE="(.*)" SIZE="(.*)" MOUNTPOINT="(.*)" MODEL="(.*)" RO="([0-9]+)" HOTPLUG="([0-9]+)" MAJ:MIN="([0-9:]+)" PARTLABEL="(.*)" PARTUUID="(.*)" PKNAME="(.*)" VENDOR="(.*)" SERIAL="(.*)" REV="(.*)""""); ++ rex = new Regex("""NAME="(.*)" KNAME="(.*)" LABEL="(.*)" UUID="(.*)" TYPE="(.*)" FSTYPE="(.*)" SIZE="(.*)" MOUNTPOINT="(.*)" MODEL="(.*)" RO="([0-9]+)" HOTPLUG="([0-9]+)" MAJ[_:]MIN="([0-9:]+)" PARTLABEL="(.*)" PARTUUID="(.*)" PKNAME="(.*)" VENDOR="(.*)" SERIAL="(.*)" REV="(.*)""""); + } + + if (rex.match (line, 0, out match)){ diff --git a/srcpkgs/timeshift/template b/srcpkgs/timeshift/template index ebdbb9ee28be..6977a413e750 100644 --- a/srcpkgs/timeshift/template +++ b/srcpkgs/timeshift/template @@ -1,7 +1,7 @@ # Template file for 'timeshift' pkgname=timeshift version=20.11.1 -revision=1 +revision=2 build_style=gnu-makefile hostmakedepends="gettext pkg-config vala which" makedepends="libgee08-devel json-glib-devel gtk+3-devel vte3-devel libgirepository-devel" From 9bec1e96b1926f251236462d95e629676763a590 Mon Sep 17 00:00:00 2001 From: Gerardo Di iorio Date: Thu, 5 Aug 2021 23:28:12 +0200 Subject: [PATCH 212/824] hcloud: update to 1.26.1. --- srcpkgs/hcloud/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/hcloud/template b/srcpkgs/hcloud/template index e02655aa7caa..58d9bbb6e753 100644 --- a/srcpkgs/hcloud/template +++ b/srcpkgs/hcloud/template @@ -1,6 +1,6 @@ # Template file for 'hcloud' pkgname=hcloud -version=1.25.1 +version=1.26.1 revision=1 wrksrc="cli-${version}" build_style=go @@ -12,7 +12,7 @@ maintainer="Gerardo Di Iorio " license="MIT" homepage="https://github.com/hetznercloud/cli" distfiles="https://github.com/hetznercloud/cli/archive/v${version}.tar.gz" -checksum=da5ac8d2b2f54acb56cfc68a37120f7e2171ee25a9fdd07445608436e0790593 +checksum=ba7fed423b2c437adfb4b98b2fdadaad6b6325f8e31cac2729982b7bf2523c81 post_install() { vlicense LICENSE From 129ec18d7a5ac3f01744aa231d05858648a360f0 Mon Sep 17 00:00:00 2001 From: Gadzhi Kharkharov Date: Thu, 5 Aug 2021 21:29:38 +0300 Subject: [PATCH 213/824] zoxide: update to 0.7.3. --- srcpkgs/zoxide/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/zoxide/template b/srcpkgs/zoxide/template index c9aa983cc2bf..c8c7ab2176e4 100644 --- a/srcpkgs/zoxide/template +++ b/srcpkgs/zoxide/template @@ -1,6 +1,6 @@ # Template file for 'zoxide' pkgname=zoxide -version=0.7.1 +version=0.7.3 revision=1 build_style=cargo short_desc="Faster way to navigate your filesystem" @@ -8,7 +8,7 @@ maintainer="Lorem " license="MIT" homepage="https://github.com/ajeetdsouza/zoxide" distfiles="https://github.com/ajeetdsouza/zoxide/archive/v${version}.tar.gz" -checksum=12fa47e1258bb7794cc529a586603c9392b07c917b0fefb58a57fd68e6652c3b +checksum=0b596cf8f86c51cc5aaf8914f8e47fdb0a60ba44e55d75a3d131b1f583ea098c post_install() { vlicense LICENSE From d2b42cca2ea516b3c2b8e7cdc180eaf98801c787 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89rico=20Nogueira?= Date: Wed, 4 Aug 2021 22:11:18 -0300 Subject: [PATCH 214/824] virtualbox-ose: update to 6.1.26. Remove vsed added in 13b1a5d83b4f3d03689a150c2ddf080ee91587c0 with no justification; another configure step needed GCC version to have been obtained. Fix build by setting the correct Qt5 base include path. --- srcpkgs/virtualbox-ose/files/LocalConfig.kmk | 1 + srcpkgs/virtualbox-ose/template | 5 ++--- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/virtualbox-ose/files/LocalConfig.kmk b/srcpkgs/virtualbox-ose/files/LocalConfig.kmk index 71ffd9876c09..d283c39363bb 100644 --- a/srcpkgs/virtualbox-ose/files/LocalConfig.kmk +++ b/srcpkgs/virtualbox-ose/files/LocalConfig.kmk @@ -15,6 +15,7 @@ VBOX_WITH_REGISTRATION_REQUEST = VBOX_WITH_UPDATE_REQUEST = VBOX_USE_SYSTEM_XORG_HEADERS = 1 VBOX_NO_LEGACY_XORG_X11 = 1 +PATH_SDK_QT5_INC := /usr/include/qt5 # Enable it when vnc pkg is available. #VBOX_WITH_VNC := 1 VBOX_GCC_WERR = diff --git a/srcpkgs/virtualbox-ose/template b/srcpkgs/virtualbox-ose/template index b686236e1b0e..d84944232a73 100644 --- a/srcpkgs/virtualbox-ose/template +++ b/srcpkgs/virtualbox-ose/template @@ -1,6 +1,6 @@ # Template file for 'virtualbox-ose' pkgname=virtualbox-ose -version=6.1.20 +version=6.1.26 revision=1 wrksrc="VirtualBox-${version}" short_desc="General-purpose full virtualizer for x86 hardware" @@ -9,7 +9,7 @@ license="GPL-2.0-only, CDDL-1.0" homepage="https://www.virtualbox.org" changelog="https://www.virtualbox.org/wiki/Changelog" distfiles="http://download.virtualbox.org/virtualbox/${version}/VirtualBox-${version}.tar.bz2" -checksum=e690c91974a2e7a5aca2c0939ad514382f9a2136797a5e0b96aab778e42bc8a7 +checksum=0212602eea878d6c9fd7f4a3e0182da3e4505f31d25f5539fb8f7b1fbe366195 nopie=yes lib32disabled=yes @@ -33,7 +33,6 @@ pre_configure() { ln -s /bin/echo makeself echo 'VBOX_USE_SYSTEM_GL_HEADERS=true' >> LocalConfig.kmk - vsed -i 's/^check_gcc$/#check_gcc/' configure } do_configure() { From 854401248781e1e81f6afcb1ab2370199069e7b3 Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Fri, 6 Aug 2021 14:51:17 +0200 Subject: [PATCH 215/824] nncp: update to 7.5.1. --- srcpkgs/nncp/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/nncp/template b/srcpkgs/nncp/template index 279d6235b763..48ae842e0016 100644 --- a/srcpkgs/nncp/template +++ b/srcpkgs/nncp/template @@ -1,6 +1,6 @@ # Template file for 'nncp' pkgname=nncp -version=7.5.0 +version=7.5.1 revision=1 build_style=go go_import_path=cypherpunks.ru/nncp @@ -9,7 +9,7 @@ maintainer="Leah Neukirchen " license="GPL-3.0-only" homepage="http://www.nncpgo.org/" distfiles="http://www.nncpgo.org/download/${pkgname}-${version}.tar.xz" -checksum=14d92dc5b8164ee44926d7af46da9f230c8f6207350cc7476db5cdfb8e7c3fe4 +checksum=b093a745c2eb9f5fe8341ed2a6f1ee75701b2646b5701baaf4e760d932cdd91a do_build() { make From 9ee4b4d2900632f8337e3a0825c62c3d1bbe1025 Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Fri, 6 Aug 2021 15:02:39 +0200 Subject: [PATCH 216/824] python3-pipx: update to 0.16.4. --- srcpkgs/python3-pipx/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-pipx/template b/srcpkgs/python3-pipx/template index f11318738e21..2aca6075eca8 100644 --- a/srcpkgs/python3-pipx/template +++ b/srcpkgs/python3-pipx/template @@ -1,6 +1,6 @@ # Template file for 'python3-pipx' pkgname=python3-pipx -version=0.16.3 +version=0.16.4 revision=1 wrksrc="pipx-${version}" build_style=python3-module @@ -12,7 +12,7 @@ license="MIT" homepage="https://pypa.github.io/pipx/" changelog="https://pypa.github.io/pipx/changelog/" distfiles="${PYPI_SITE}/p/pipx/pipx-${version}.tar.gz" -checksum=51fa41281383212db3b2a6906713871edc1a7d597ae387873026402e281a0b25 +checksum=992e78082c0b33c7bc708176ce9e0df9bac9ae3b08bf111c368571bc32e723d6 post_install() { vlicense LICENSE From d95459c1d2c7a72889c8556c60aefab2ec2bb9ba Mon Sep 17 00:00:00 2001 From: Arda Demir Date: Thu, 5 Aug 2021 22:58:59 +0300 Subject: [PATCH 217/824] jrnl: update to 2.8.2. --- srcpkgs/jrnl/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/jrnl/template b/srcpkgs/jrnl/template index 357b3296922b..25210d5aa7ed 100644 --- a/srcpkgs/jrnl/template +++ b/srcpkgs/jrnl/template @@ -1,6 +1,6 @@ # Template file for 'jrnl' pkgname=jrnl -version=2.8.1 +version=2.8.2 revision=1 build_style=python3-module hostmakedepends="python3-setuptools" @@ -13,6 +13,6 @@ license="GPL-3.0-only" homepage="https://jrnl.sh" changelog="https://raw.githubusercontent.com/jrnl-org/jrnl/develop/CHANGELOG.md" distfiles="${PYPI_SITE}/j/jrnl/jrnl-${version}.tar.gz" -checksum=a69f0fa9be3dff7fa32d8a2ea3697ed828329b1db595fde23bbba5eab460d519 +checksum=102e1f559fe4e791cd1a456efd4c5b2c5893703285a881c54a8f55e437e95eff # Tarball provides no tests make_check=no From 0bcecfb7e9fbcb555cdccd06ef3267dc5f654ac7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Sat, 24 Jul 2021 09:30:48 +0700 Subject: [PATCH 218/824] cmake: update to 3.21.1. --- srcpkgs/cmake/patches/ar-lwyu.patch | 20 +++++++++ .../patches/ignore-crape-compiler-test.patch | 13 ++++++ srcpkgs/cmake/patches/test-none.patch | 41 ------------------- srcpkgs/cmake/template | 11 ++--- 4 files changed, 36 insertions(+), 49 deletions(-) create mode 100644 srcpkgs/cmake/patches/ar-lwyu.patch create mode 100644 srcpkgs/cmake/patches/ignore-crape-compiler-test.patch delete mode 100644 srcpkgs/cmake/patches/test-none.patch diff --git a/srcpkgs/cmake/patches/ar-lwyu.patch b/srcpkgs/cmake/patches/ar-lwyu.patch new file mode 100644 index 000000000000..3db40e27f7d3 --- /dev/null +++ b/srcpkgs/cmake/patches/ar-lwyu.patch @@ -0,0 +1,20 @@ + Fix darktable build +diff --git a/Source/cmNinjaNormalTargetGenerator.cxx b/Source/cmNinjaNormalTargetGenerator.cxx +index 5a4c6521d8..55b804d643 100644 +--- a/Source/cmNinjaNormalTargetGenerator.cxx ++++ b/Source/cmNinjaNormalTargetGenerator.cxx +@@ -1157,7 +1157,13 @@ void cmNinjaNormalTargetGenerator::WriteLinkStatement( + this->AddModuleDefinitionFlag(linkLineComputer.get(), vars["LINK_FLAGS"], + config); + if (gt->GetPropertyAsBool("LINK_WHAT_YOU_USE")) { +- vars["LINK_FLAGS"] += " -Wl,--no-as-needed"; ++ switch (targetType) { ++ case cmStateEnums::EXECUTABLE: ++ case cmStateEnums::SHARED_LIBRARY: ++ case cmStateEnums::MODULE_LIBRARY: ++ vars["LINK_FLAGS"] += " -Wl,--no-as-needed"; ++ break; ++ } + } + vars["LINK_FLAGS"] = globalGen->EncodeLiteral(vars["LINK_FLAGS"]); + diff --git a/srcpkgs/cmake/patches/ignore-crape-compiler-test.patch b/srcpkgs/cmake/patches/ignore-crape-compiler-test.patch new file mode 100644 index 000000000000..7b6ce9c16962 --- /dev/null +++ b/srcpkgs/cmake/patches/ignore-crape-compiler-test.patch @@ -0,0 +1,13 @@ +diff --git a/Tests/RunCMake/ParseImplicitLinkInfo/ParseImplicitLinkInfo.cmake b/Tests/RunCMake/ParseImplicitLinkInfo/ParseImplicitLinkInfo.cmake +index dcdc7f1b96..37e13b6c5c 100644 +--- a/Tests/RunCMake/ParseImplicitLinkInfo/ParseImplicitLinkInfo.cmake ++++ b/Tests/RunCMake/ParseImplicitLinkInfo/ParseImplicitLinkInfo.cmake +@@ -11,7 +11,7 @@ project(Minimal NONE) + set(targets + aix-C-XL-13.1.3 aix-CXX-XL-13.1.3 + aix-C-XLClang-16.1.0.1 aix-CXX-XLClang-16.1.0.1 +- craype-C-Cray-8.7 craype-CXX-Cray-8.7 craype-Fortran-Cray-8.7 ++ craype-Fortran-Cray-8.7 + craype-C-Cray-9.0-hlist-ad craype-CXX-Cray-9.0-hlist-ad craype-Fortran-Cray-9.0-hlist-ad + craype-C-GNU-7.3.0 craype-CXX-GNU-7.3.0 craype-Fortran-GNU-7.3.0 + craype-C-Intel-18.0.2.20180210 craype-CXX-Intel-18.0.2.20180210 diff --git a/srcpkgs/cmake/patches/test-none.patch b/srcpkgs/cmake/patches/test-none.patch deleted file mode 100644 index e0b6886bb0a2..000000000000 --- a/srcpkgs/cmake/patches/test-none.patch +++ /dev/null @@ -1,41 +0,0 @@ -From ce1cadd35a26bd44879675581d8e70b00ff8e0fc Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= - -Date: Thu, 1 Apr 2021 20:14:06 +0700 -Subject: [PATCH] Tests/ConfigSources: fix for non main stream CMAKE_BUILD_TYPE -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -- None is a valid CMAKE_BUILD_TYPE -- Most of distros uses None as CMAKE_BUILD_TYPE -- When CMAKE_BUILD_TYPE=None, main_other.cpp will be compiled and linked - into final executable, this program requires some symbols only exist - when CUSTOM_CFG_OTHER is defined. -- And CMake also allows other CMAKE_BUILD_TYPE, too, CMake documentation - specificaly mentions funny CMAKE_BUILD_TYPE like ReLeAsE [1] - -Let's define them when non main stream like None is specified as CMAKE_BUILD_TYPE. - -[1]: https://cmake.org/cmake/help/v3.20/variable/CMAKE_BUILD_TYPE.html ---- - Tests/ConfigSources/CMakeLists.txt | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git Tests/ConfigSources/CMakeLists.txt Tests/ConfigSources/CMakeLists.txt -index a3d98f685f..f83759ca10 100644 ---- a/Tests/ConfigSources/CMakeLists.txt -+++ b/Tests/ConfigSources/CMakeLists.txt -@@ -74,10 +74,10 @@ add_custom_command(APPEND - VERBATIM - ) - foreach(n RANGE 1 5) -- set_property(SOURCE custom${n}_Debug.cpp PROPERTY COMPILE_DEFINITIONS CUSTOM_CFG_DEBUG) -- foreach(other Release RelWithDebInfo MinSizeRel) -+ foreach(other ${CMAKE_BUILD_TYPE} Release RelWithDebInfo MinSizeRel) - set_property(SOURCE custom${n}_${other}.cpp PROPERTY COMPILE_DEFINITIONS CUSTOM_CFG_OTHER) - endforeach() -+ set_property(SOURCE custom${n}_Debug.cpp PROPERTY COMPILE_DEFINITIONS CUSTOM_CFG_DEBUG) - endforeach() - add_library(Custom STATIC - custom1_$.cpp diff --git a/srcpkgs/cmake/template b/srcpkgs/cmake/template index 7ec873cb2afd..396fb6419940 100644 --- a/srcpkgs/cmake/template +++ b/srcpkgs/cmake/template @@ -1,7 +1,6 @@ # Template file for 'cmake' -# FIXME: cmake is being rebuilt on do_install pkgname=cmake -version=3.20.5 +version=3.21.1 revision=1 build_style=cmake configure_args="-DCMAKE_DOC_DIR=/share/doc/cmake @@ -17,14 +16,9 @@ maintainer="Đoàn Trần Công Danh " license="BSD-3-Clause, ICU" homepage="https://www.cmake.org" distfiles="https://www.cmake.org/files/v${version%.*}/${pkgname}-${version}.tar.gz" -checksum=12c8040ef5c6f1bc5b8868cede16bb7926c18980f59779e299ab52cbc6f15bb0 +checksum=fac3915171d4dff25913975d712f76e69aef44bf738ba7b976793a458b4cfed4 replaces="cmake-bootstrap>=0" -# XXX: cmake is broken if cmake was built with -GNinja -# https://bugs.gentoo.org/596460 -export CMAKE_GENERATOR="Unix Makefiles" -make_cmd=make - if [ "$CROSS_BUILD" ]; then hostmakedepends+=" cmake" fi @@ -35,6 +29,7 @@ pre_configure() { mkdir -p build cd build ../bootstrap --no-system-libs \ + --generator=Ninja \ ${XBPS_MAKEJOBS:+--parallel=$XBPS_MAKEJOBS} # Make sure build directory is clean for f in *; do From 2f4afa8f1abfddd2c577a35847f1196ee2d52840 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Sat, 24 Jul 2021 09:30:56 +0700 Subject: [PATCH 219/824] cmake-gui: update to 3.21.1. --- srcpkgs/cmake-gui/template | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/srcpkgs/cmake-gui/template b/srcpkgs/cmake-gui/template index 11e2fa7b809d..336b67eeecf0 100644 --- a/srcpkgs/cmake-gui/template +++ b/srcpkgs/cmake-gui/template @@ -1,6 +1,6 @@ # Template file for 'cmake-gui' pkgname=cmake-gui -version=3.20.5 +version=3.21.1 revision=1 wrksrc="cmake-${version}" build_style=cmake @@ -17,12 +17,7 @@ maintainer="Đoàn Trần Công Danh " license="BSD-3-Clause" homepage="https://www.cmake.org" distfiles="https://www.cmake.org/files/v${version%.*}/cmake-${version}.tar.gz" -checksum=12c8040ef5c6f1bc5b8868cede16bb7926c18980f59779e299ab52cbc6f15bb0 - -# XXX: cmake is broken if cmake was built with -GNinja -# https://bugs.gentoo.org/596460 -export CMAKE_GENERATOR="Unix Makefiles" -make_cmd=make +checksum=fac3915171d4dff25913975d712f76e69aef44bf738ba7b976793a458b4cfed4 do_install() { # We are only interested in cmake-gui. From 3ebca62316bbab53b59e1d9d7fd2dbf4db6baee7 Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Fri, 6 Aug 2021 15:27:38 +0200 Subject: [PATCH 220/824] bcc: link LLVM dynamically. As a distro, we want this anyway, but static linking also broke, e.g. bpftrace: https://github.com/iovisor/bpftrace/issues/1855 --- srcpkgs/bcc/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/bcc/template b/srcpkgs/bcc/template index c2b7a65c19fd..74fdd0259725 100644 --- a/srcpkgs/bcc/template +++ b/srcpkgs/bcc/template @@ -1,10 +1,10 @@ # Template file for 'bcc' pkgname=bcc version=0.21.0 -revision=3 +revision=4 wrksrc="bcc" build_style=cmake -configure_args="-DREVISION=${version}" +configure_args="-DREVISION=${version} -DENABLE_LLVM_SHARED=1" hostmakedepends="flex python3" makedepends="clang clang-tools-extra elfutils-devel flex lld-devel llvm ncurses-devel python3-devel zlib-devel" From 374f72032c4a8a3c6cda89db5f5bcb31c603c015 Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Fri, 6 Aug 2021 15:28:42 +0200 Subject: [PATCH 221/824] bpftrace: rebuild against bcc-0.21.0_4. --- srcpkgs/bpftrace/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/bpftrace/template b/srcpkgs/bpftrace/template index f200409ddb2f..8ca8a7f2409f 100644 --- a/srcpkgs/bpftrace/template +++ b/srcpkgs/bpftrace/template @@ -1,7 +1,7 @@ # Template file for 'bpftrace' pkgname=bpftrace version=0.13.0 -revision=1 +revision=2 archs="x86_64* aarch64* ppc64*" build_style=cmake configure_args="-DBUILD_TESTING=OFF" # needs root to run From 19cdce0d2be1f7e61e38bea75aae7a1093ab60e3 Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Fri, 6 Aug 2021 16:20:59 +0200 Subject: [PATCH 222/824] bpftrace: set nostrip. --- srcpkgs/bpftrace/template | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/srcpkgs/bpftrace/template b/srcpkgs/bpftrace/template index 8ca8a7f2409f..3e467bc2928a 100644 --- a/srcpkgs/bpftrace/template +++ b/srcpkgs/bpftrace/template @@ -1,7 +1,7 @@ # Template file for 'bpftrace' pkgname=bpftrace version=0.13.0 -revision=2 +revision=3 archs="x86_64* aarch64* ppc64*" build_style=cmake configure_args="-DBUILD_TESTING=OFF" # needs root to run @@ -13,6 +13,7 @@ license="Apache-2.0" homepage="https://github.com/iovisor/bpftrace/" distfiles="https://github.com/iovisor/bpftrace/archive/v${version}.tar.gz" checksum=a5203e5c73277c87d624f32e8ee394d4c5e2c2810bde8314c1b015c9d810a6bb +nostrip=yes # needs to read own symbol table post_install() { # clashes with bcc-tools From 6876e80203dbaa9430a022ad3b5ba87cfe223243 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Fri, 6 Aug 2021 11:52:35 -0400 Subject: [PATCH 223/824] cpp-utilities: update to 5.11.0. --- srcpkgs/cpp-utilities/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/cpp-utilities/template b/srcpkgs/cpp-utilities/template index 82d07e947050..d9c5281e0549 100644 --- a/srcpkgs/cpp-utilities/template +++ b/srcpkgs/cpp-utilities/template @@ -1,6 +1,6 @@ # Template file for 'cpp-utilities' pkgname=cpp-utilities -version=5.10.5 +version=5.11.0 revision=1 build_style=cmake configure_args="-DBUILD_SHARED_LIBS:BOOL=ON" @@ -10,7 +10,7 @@ maintainer="Andrew J. Hesford " license="GPL-2.0-only" homepage="https://github.com/Martchus/cpp-utilities" distfiles="https://github.com/Martchus/${pkgname}/archive/v${version}.tar.gz" -checksum=36005e493e0db4605f3270d6b7ccb3ee4b42da7a70636b00f914425ec9fe3ec6 +checksum=af4609ca2ea9e8e838b9c701b558d629920d963d4911a1ef7edbb7f5ac528f88 cpp-utilities-devel_package() { short_desc+=" - development files" From 4cd28529efe0f1a6bfd1fed0663e81e0a1dd0fef Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Fri, 6 Aug 2021 11:53:14 -0400 Subject: [PATCH 224/824] tageditor: update to 3.4.2. --- srcpkgs/tageditor/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/tageditor/template b/srcpkgs/tageditor/template index 5c7710874355..fbbbbe79bd3b 100644 --- a/srcpkgs/tageditor/template +++ b/srcpkgs/tageditor/template @@ -1,6 +1,6 @@ # Template file for 'tageditor' pkgname=tageditor -version=3.4.1 +version=3.4.2 revision=1 build_style=cmake configure_args="-DBUILD_SHARED_LIBS:BOOL=ON" @@ -11,7 +11,7 @@ maintainer="Andrew J. Hesford " license="GPL-2.0-only" homepage="https://github.com/Martchus/tageditor" distfiles="https://github.com/Martchus/${pkgname}/archive/v${version}.tar.gz" -checksum=4d3218531fae449ffa76098fbe9a4693e43f2f93d0d38bb4163d6a9ce864d6c7 +checksum=43029df40c53122a6dd5b0c986bf53945bf492d30904d3d4d723b1936b0cbdd4 build_options="qt webengine webkit script" build_options_default="qt" From 2adc3fa61cb6f9d7c7bd8bf340c6e7a6b0abb665 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Fri, 6 Aug 2021 11:54:25 -0400 Subject: [PATCH 225/824] python3-pyzmq: update to 22.2.1. --- srcpkgs/python3-pyzmq/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-pyzmq/template b/srcpkgs/python3-pyzmq/template index 03807afcc0ea..4b4bf8b44a15 100644 --- a/srcpkgs/python3-pyzmq/template +++ b/srcpkgs/python3-pyzmq/template @@ -1,6 +1,6 @@ # Template file for 'python3-pyzmq' pkgname=python3-pyzmq -version=22.1.0 +version=22.2.1 revision=1 wrksrc="pyzmq-${version}" build_style=python3-module @@ -15,7 +15,7 @@ license="LGPL-3.0-or-later, BSD-3-Clause" homepage="https://pyzmq.readthedocs.io/" changelog="https://pyzmq.readthedocs.io/en/latest/changelog.html" distfiles="${PYPI_SITE}/p/pyzmq/pyzmq-${version}.tar.gz" -checksum=7040d6dd85ea65703904d023d7f57fab793d7ffee9ba9e14f3b897f34ff2415d +checksum=6d18c76676771fd891ca8e0e68da0bbfb88e30129835c0ade748016adb3b6242 pre_build() { cat > setup.cfg <<-EOF From 84958059cef86cef3da7be9fff21ed2057c18bfb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Fri, 6 Aug 2021 12:42:19 -0400 Subject: [PATCH 226/824] python3-pip: update to 21.2.3. --- srcpkgs/python3-pip/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-pip/template b/srcpkgs/python3-pip/template index 3e800139d4da..225ede1ccd09 100644 --- a/srcpkgs/python3-pip/template +++ b/srcpkgs/python3-pip/template @@ -1,6 +1,6 @@ # Template file for 'python3-pip' pkgname=python3-pip -version=21.2.2 +version=21.2.3 revision=1 wrksrc="pip-${version}" build_style=python3-module @@ -12,7 +12,7 @@ license="MIT" homepage="https://pip.pypa.io/" changelog="https://raw.githubusercontent.com/pypa/pip/master/NEWS.rst" distfiles="${PYPI_SITE}/p/pip/pip-${version}.tar.gz" -checksum=38e9250dfb0d7fa842492bede9259d4b3289a936ce454f7c58f059f28a94c01d +checksum=91e66f2a2702e7d2dcc092ed8c5ebe923e69b9997ea28ba25823943bcd3bf820 # Tests have unpackaged dependencies make_check=no From 502aca3c9b04f46be25bc819ca48f5e3eb30f26f Mon Sep 17 00:00:00 2001 From: UsernameRandomlyGenerated Date: Thu, 22 Jul 2021 17:41:10 +0200 Subject: [PATCH 227/824] zsh-autosuggestions: update to 0.7.0. --- srcpkgs/zsh-autosuggestions/template | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/srcpkgs/zsh-autosuggestions/template b/srcpkgs/zsh-autosuggestions/template index 668cccd4f349..0e8e13b53325 100644 --- a/srcpkgs/zsh-autosuggestions/template +++ b/srcpkgs/zsh-autosuggestions/template @@ -1,21 +1,18 @@ # Template file for 'zsh-autosuggestions' pkgname=zsh-autosuggestions -version=0.6.4 -revision=2 +version=0.7.0 +revision=1 +build_style=gnu-makefile depends="zsh" short_desc="Fish-like autosuggestions for zsh" maintainer="vinnyA3 " license="MIT" homepage="https://github.com/zsh-users/zsh-autosuggestions" distfiles="https://github.com/zsh-users/zsh-autosuggestions/archive/v${version}.tar.gz" -checksum=0b6e251ced5fd7b5b78ea01f798ecc1b46169743a717567f0ec0a21198a372e8 - -do_build() { - make -} +checksum=ccd97fe9d7250b634683c651ef8a2fe3513ea917d1b491e8696a2a352b714f08 do_install() { - vinstall ${pkgname}.zsh 644 usr/share/zsh/plugins/${pkgname} - vinstall ${pkgname}.plugin.zsh 644 usr/share/zsh/plugins/${pkgname} + vinstall zsh-autosuggestions.zsh 644 usr/share/zsh/plugins/zsh-autosuggestions + vinstall zsh-autosuggestions.plugin.zsh 644 usr/share/zsh/plugins/zsh-autosuggestions vlicense LICENSE } From 92d6280a14f6c284675a56158d8ccacf7f522437 Mon Sep 17 00:00:00 2001 From: UsernameRandomlyGenerated Date: Fri, 6 Aug 2021 19:05:59 +0200 Subject: [PATCH 228/824] gotop: update to 4.1.2. --- srcpkgs/gotop/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/gotop/template b/srcpkgs/gotop/template index 6b22aec99372..035f5749e4da 100644 --- a/srcpkgs/gotop/template +++ b/srcpkgs/gotop/template @@ -1,6 +1,6 @@ # Template file for 'gotop' pkgname=gotop -version=4.1.1 +version=4.1.2 revision=1 build_style=go go_ldflags="-X main.Version=v${version}" @@ -12,7 +12,7 @@ maintainer="SolitudeSF " license="MIT" homepage="https://github.com/xxxserxxx/gotop" distfiles="https://github.com/xxxserxxx/gotop/archive/v${version}.tar.gz" -checksum=314dcfc4b0faa0bb735e5fa84b2406492bf94f7948af43e2b9d2982d69d542ed +checksum=81518fecfdab4f4c25a4713e24d9c033ba8311bbd3e2c0435ba76349028356da post_install() { vlicense LICENSE From c49272fd95e01b152dfe2688adcd5bb88aae65d3 Mon Sep 17 00:00:00 2001 From: Enno Boland Date: Wed, 21 Apr 2021 21:01:55 +0200 Subject: [PATCH 229/824] vala: update to 0.52.4. --- common/shlibs | 2 +- .../vala/patches/disable-unstable-tests.patch | 14 ++++++++++++++ srcpkgs/vala/template | 19 ++++++++++++------- 3 files changed, 27 insertions(+), 8 deletions(-) create mode 100644 srcpkgs/vala/patches/disable-unstable-tests.patch diff --git a/common/shlibs b/common/shlibs index f768a637aed5..7a0c44e9a713 100644 --- a/common/shlibs +++ b/common/shlibs @@ -3119,7 +3119,7 @@ libmirage.so.11 libmirage-3.1.0_1 libwkhtmltox.so.0 libwkhtmltopdf-0.12.5_1 libsysprof-4.so sysprof-3.37.90_1 libsysprof-ui-4.so sysprof-3.37.90_1 -libvala-0.50.so.0 libvala-0.50.0_1 +libvala-0.52.so.0 libvala-0.52.0_1 libvaladoc-0.50.so.0 libvaladoc-0.50.0_1 libvalaccodegen.so libvala-0.44.0_1 libphodav-2.0.so.0 phodav-2.2_1 diff --git a/srcpkgs/vala/patches/disable-unstable-tests.patch b/srcpkgs/vala/patches/disable-unstable-tests.patch new file mode 100644 index 000000000000..84d126b4d87c --- /dev/null +++ b/srcpkgs/vala/patches/disable-unstable-tests.patch @@ -0,0 +1,14 @@ +This patch disables tests that fail in github-ci, but pass on other linux systems. + +--- a/tests/Makefile.am ++++ b/tests/Makefile.am +@@ -706,9 +706,7 @@ + dbus/dynamic-method.test \ + dbus/enum-string-marshalling.vala \ + dbus/signals.test \ +- dbus/filedescriptor.test \ + dbus/filedescriptor-async.test \ +- dbus/filedescriptor-errors.test \ + dbus/dicts.test \ + dbus/bug596862.vala \ + dbus/bug602003.test \ diff --git a/srcpkgs/vala/template b/srcpkgs/vala/template index 4250b7f044a1..a663467846fc 100644 --- a/srcpkgs/vala/template +++ b/srcpkgs/vala/template @@ -1,29 +1,34 @@ # Template file for 'vala' pkgname=vala # Should be kept in sync with 'valadoc' (shared distfiles) -version=0.50.0 -revision=2 +version=0.52.4 +revision=1 build_style=gnu-configure configure_args="--disable-valadoc" -hostmakedepends="flex libxslt pkg-config" +hostmakedepends="flex libxslt pkg-config automake libtool" makedepends="libfl-devel libglib-devel" checkdepends="dbus libgirepository-devel" short_desc="Compiler for the GObject type system" maintainer="Enno Boland " license="LGPL-2.1-or-later" homepage="https://wiki.gnome.org/Projects/Vala" -changelog="https://gitlab.gnome.org/GNOME/vala/raw/0.50/NEWS" +changelog="https://gitlab.gnome.org/GNOME/vala/raw/master/NEWS" distfiles="${GNOME_SITE}/vala/${version%.*}/vala-${version}.tar.xz" -checksum=838adc50ac08881e06cf233fefd93740dec1530312cc1cf12c36d4e0e87d3071 +checksum=ecde520e5160e659ee699f8b1cdc96065edbd44bbd08eb48ef5f2506751fdf31 shlib_provides="libvalaccodegen.so" +make_check=extended + +pre_configure() { + autoreconf -if +} post_install() { # remove the /usr/bin prefix from the vapigen variable # so the package that use it fall into our wrapper. # keep the binary versioned, we don't know the potential # fallout from using the unversioned one - vsed -e 's|^vapigen=.*|vapigen=vapigen-0.50|g' \ - -i ${DESTDIR}/usr/lib/pkgconfig/vapigen-0.50.pc + vsed -e "s|^vapigen=.*|vapigen=vapigen-${version%.*}|g" \ + -i ${DESTDIR}/usr/lib/pkgconfig/vapigen-${version%.*}.pc } libvala_package() { From 5a574082dbe375ec54e45aa8449529b23bc1af72 Mon Sep 17 00:00:00 2001 From: Enno Boland Date: Wed, 21 Apr 2021 21:08:12 +0200 Subject: [PATCH 230/824] valadoc: update to 0.52.4. --- common/shlibs | 2 +- srcpkgs/valadoc/patches | 1 + srcpkgs/valadoc/template | 8 ++++---- 3 files changed, 6 insertions(+), 5 deletions(-) create mode 120000 srcpkgs/valadoc/patches diff --git a/common/shlibs b/common/shlibs index 7a0c44e9a713..7e6b6fb0d1d6 100644 --- a/common/shlibs +++ b/common/shlibs @@ -3120,7 +3120,7 @@ libwkhtmltox.so.0 libwkhtmltopdf-0.12.5_1 libsysprof-4.so sysprof-3.37.90_1 libsysprof-ui-4.so sysprof-3.37.90_1 libvala-0.52.so.0 libvala-0.52.0_1 -libvaladoc-0.50.so.0 libvaladoc-0.50.0_1 +libvaladoc-0.52.so.0 libvaladoc-0.52.0_1 libvalaccodegen.so libvala-0.44.0_1 libphodav-2.0.so.0 phodav-2.2_1 libgfshare.so.2 libgfshare-2.0.0_1 diff --git a/srcpkgs/valadoc/patches b/srcpkgs/valadoc/patches new file mode 120000 index 000000000000..11fa71e74306 --- /dev/null +++ b/srcpkgs/valadoc/patches @@ -0,0 +1 @@ +../vala/patches \ No newline at end of file diff --git a/srcpkgs/valadoc/template b/srcpkgs/valadoc/template index 4593b7db5f69..cb48ff44da84 100644 --- a/srcpkgs/valadoc/template +++ b/srcpkgs/valadoc/template @@ -1,8 +1,8 @@ # Template file for 'valadoc' pkgname=valadoc # Should be kept in sync with 'vala' (shared distfiles) -version=0.50.0 -revision=3 +version=0.52.4 +revision=1 wrksrc="vala-${version}" build_style=gnu-configure configure_args="--with-cgraph=yes" @@ -13,9 +13,9 @@ short_desc="Vala Documentation Tool" maintainer="Enno Boland " license="LGPL-2.1-or-later" homepage="https://wiki.gnome.org/Projects/Vala" -changelog="https://gitlab.gnome.org/GNOME/vala/raw/0.50/NEWS" +changelog="https://gitlab.gnome.org/GNOME/vala/raw/master/NEWS" distfiles="${GNOME_SITE}/vala/${version%.*}/vala-${version}.tar.xz" -checksum=838adc50ac08881e06cf233fefd93740dec1530312cc1cf12c36d4e0e87d3071 +checksum=ecde520e5160e659ee699f8b1cdc96065edbd44bbd08eb48ef5f2506751fdf31 pre_configure() { autoreconf -if From d6b24ecc0fb30fd95d6f1eda42e91f233f1b4022 Mon Sep 17 00:00:00 2001 From: Enno Boland Date: Wed, 21 Apr 2021 20:05:29 +0200 Subject: [PATCH 231/824] vala-language-server: update to 0.48.3. --- srcpkgs/vala-language-server/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/vala-language-server/template b/srcpkgs/vala-language-server/template index 870fe215fb92..795ba64667be 100644 --- a/srcpkgs/vala-language-server/template +++ b/srcpkgs/vala-language-server/template @@ -1,13 +1,13 @@ # Template file for 'vala-language-server' pkgname=vala-language-server -version=0.48.1 +version=0.48.3 revision=1 build_style=meson hostmakedepends="gettext pkg-config vala" makedepends="libgee08-devel glib-devel jsonrpc-glib-devel vala-devel json-glib-devel" short_desc="Code Intelligence for Vala & Genie" maintainer="Enno Boland " -license="LGPL-3.0-only" +license="LGPL-2.1-or-later" homepage="https://github.com/benwaffle/vala-language-server" distfiles="https://github.com/benwaffle/$pkgname/archive/refs/tags/$version.tar.gz" -checksum=d752f7aa9fad94d1d34e99038be312528c5808e6c0132bc91df2a8ce670cff45 +checksum=1a752515efda561aec535d088a6f52888b13ad2d52f2d27770ddf6a519f0028b From 4717e3aec14874e82f674d88d446373fff7c83bb Mon Sep 17 00:00:00 2001 From: Enno Boland Date: Wed, 21 Apr 2021 21:19:57 +0200 Subject: [PATCH 232/824] io.elementary.code: rebuild with vala-0.52.4 --- srcpkgs/io.elementary.code/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/io.elementary.code/template b/srcpkgs/io.elementary.code/template index 8d43ad4130d2..66de4b50be05 100644 --- a/srcpkgs/io.elementary.code/template +++ b/srcpkgs/io.elementary.code/template @@ -1,7 +1,7 @@ # Template file for 'io.elementary.code' pkgname=io.elementary.code version=3.4.1 -revision=3 +revision=4 wrksrc="code-${version}" build_style=meson hostmakedepends="pkg-config vala intltool glib-devel" From 9b0fdff4cded06134732af00683c9e98bf9eb0af Mon Sep 17 00:00:00 2001 From: Enno Boland Date: Wed, 21 Apr 2021 21:20:11 +0200 Subject: [PATCH 233/824] valabind: update to 1.8.0. --- srcpkgs/valabind/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/valabind/template b/srcpkgs/valabind/template index d2af2f9be152..b94938be33ae 100644 --- a/srcpkgs/valabind/template +++ b/srcpkgs/valabind/template @@ -1,6 +1,6 @@ # Template file for 'valabind' pkgname=valabind -version=1.7.2 +version=1.8.0 revision=1 build_style=meson hostmakedepends="pkg-config vala-devel git" @@ -11,4 +11,4 @@ maintainer="Orphaned " license="GPL-3.0-or-later" homepage="https://radare.org/r/" distfiles="https://github.com/radare/valabind/archive/${version}.tar.gz" -checksum=643c1ddc85e31de975df361a20e3f39d385f5ced0e50483c6e96b33bb3d32261 +checksum=3eba8c36c923eda932a95b8d0c16b7b30e8cdda442252431990436519cf87cdd From 13f86007f290ac649623c61bd7fcd79fc0f7d363 Mon Sep 17 00:00:00 2001 From: UsernameRandomlyGenerated Date: Fri, 6 Aug 2021 19:47:45 +0200 Subject: [PATCH 234/824] bomi: remove package. Unmaintaned and broken, UI doesn't work. Upstream issue: https://github.com/ashinan/bomi/issues/540 --- srcpkgs/bomi/patches/ffmpeg3.x.patch | 32 ---- srcpkgs/bomi/patches/ffmpeg4.patch | 195 ------------------------ srcpkgs/bomi/patches/fix-cxx14.patch | 67 -------- srcpkgs/bomi/patches/fix-sysctl_h.patch | 22 --- srcpkgs/bomi/template | 35 ----- 5 files changed, 351 deletions(-) delete mode 100644 srcpkgs/bomi/patches/ffmpeg3.x.patch delete mode 100644 srcpkgs/bomi/patches/ffmpeg4.patch delete mode 100644 srcpkgs/bomi/patches/fix-cxx14.patch delete mode 100644 srcpkgs/bomi/patches/fix-sysctl_h.patch delete mode 100644 srcpkgs/bomi/template diff --git a/srcpkgs/bomi/patches/ffmpeg3.x.patch b/srcpkgs/bomi/patches/ffmpeg3.x.patch deleted file mode 100644 index 3b224fd76a73..000000000000 --- a/srcpkgs/bomi/patches/ffmpeg3.x.patch +++ /dev/null @@ -1,32 +0,0 @@ -libavutil/audioconvert.h is gone in ffmpeg3.x - ---- a/src/mpv/audio/filter/af_lavcac3enc.c 2015-05-20 11:31:58.000000000 +0200 -+++ b/src/mpv/audio/filter/af_lavcac3enc.c 2016-09-22 19:52:47.730132367 +0200 -@@ -26,7 +26,6 @@ - #include - - #include --#include - #include - #include - #include ---- a/src/mpv/audio/out/ao_lavc.c 2015-05-20 11:31:58.000000000 +0200 -+++ b/src/mpv/audio/out/ao_lavc.c 2016-09-22 19:54:50.291163189 +0200 -@@ -25,7 +25,6 @@ - #include - - #include --#include - - #include "config.h" - #include "options/options.h" ---- a/src/mpv/audio/filter/af_lavrresample.c 2015-05-20 11:31:58.000000000 +0200 -+++ b/src/mpv/audio/filter/af_lavrresample.c 2016-09-22 19:57:13.539200765 +0200 -@@ -28,7 +28,6 @@ - #include - - #include --#include - #include - #include - #include diff --git a/srcpkgs/bomi/patches/ffmpeg4.patch b/srcpkgs/bomi/patches/ffmpeg4.patch deleted file mode 100644 index fefd786df654..000000000000 --- a/srcpkgs/bomi/patches/ffmpeg4.patch +++ /dev/null @@ -1,195 +0,0 @@ -source: https://github.com/d-s-x/bomi/commit/c1473b38bf92e9ac858fd58588a9d45fe717edfa - -diff --git a/src/bomi/video/ffmpegfilters.hpp b/src/bomi/video/ffmpegfilters.hpp -index 77b1df41c5..5365525c48 100644 ---- a/src/bomi/video/ffmpegfilters.hpp -+++ b/src/bomi/video/ffmpegfilters.hpp -@@ -6,7 +6,7 @@ - extern "C" { - #include