From 38da49122678aeaf175762d72a8af6f7881ff563 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 16:11:13 -0800 Subject: [PATCH 001/114] gcc: disable libssp --- common/shlibs | 1 - srcpkgs/gcc/template | 20 +++++++------------- 2 files changed, 7 insertions(+), 14 deletions(-) diff --git a/common/shlibs b/common/shlibs index 11ef64e0cc7f..140c7a79f4f3 100644 --- a/common/shlibs +++ b/common/shlibs @@ -70,7 +70,6 @@ libmpfr.so.6 mpfr-4.0.0_1 libppl.so.14 ppl-1.2_1 libppl_c.so.4 ppl-0.11_1 libstdc++.so.6 libstdc++-4.4.0_1 -libssp.so.0 libssp-4.4.0_1 libncurses.so.6 ncurses-libs-6.0_1 ignore libncursesw.so.6 ncurses-libs-5.8_1 ignore libtinfo.so.6 ncurses-libtinfo-libs-6.2_2 diff --git a/srcpkgs/gcc/template b/srcpkgs/gcc/template index a20af7c0ef2e..65c9e9f7d556 100644 --- a/srcpkgs/gcc/template +++ b/srcpkgs/gcc/template @@ -4,7 +4,7 @@ pkgname=gcc version=12.2.0 -revision=1 +revision=2 _minorver="${version%.*}" _majorver="${_minorver%.*}" _gmp_version=6.2.1 @@ -54,7 +54,7 @@ else fi makedepends="zlib-devel libzstd-devel" depends="binutils libgcc-devel-${version}_${revision} - libstdc++-devel-${version}_${revision} libssp-devel-${version}_${revision}" + libstdc++-devel-${version}_${revision}" checkdepends="dejagnu" subpackages="libgcc libgomp libgomp-devel libatomic libatomic-devel" @@ -290,6 +290,7 @@ do_configure() { _args+=" --with-linker-hash-style=$_hash" _args+=" --disable-sjlj-exceptions" _args+=" --disable-target-libiberty" + _args+=" --disable-libssp" mkdir -p build cd build @@ -684,20 +685,13 @@ libsanitizer_package() { } libssp-devel_package() { - depends="libssp>=${_minorver}" - short_desc+=" - SSP (StackSmashingProtection) library - development files" - pkg_install() { - vmove "usr/lib/libssp*.a" - vmove usr/lib/gcc/${_triplet}/${_minorver}/include/ssp - } + short_desc+=" - (Transitional dummy package)" + build_style="meta" } libssp_package() { - short_desc+=" - SSP (StackSmashingProtection) library" - pkg_install() { - vmove "usr/lib/libssp.so*" - vlicense COPYING.RUNTIME RUNTIME.LIBRARY.EXCEPTION - } + short_desc+=" - (Transitional dummy package)" + build_style="meta" } libstdc++-devel_package() { From a341c58c2e26b0fd42fd39a485e366b64f91fda6 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 16:12:11 -0800 Subject: [PATCH 002/114] musl: provide libssp_nonshared.a --- srcpkgs/musl/files/__stack_chk_fail_local.c | 2 ++ srcpkgs/musl/template | 6 +++++- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 srcpkgs/musl/files/__stack_chk_fail_local.c diff --git a/srcpkgs/musl/files/__stack_chk_fail_local.c b/srcpkgs/musl/files/__stack_chk_fail_local.c new file mode 100644 index 000000000000..2b403a6e046f --- /dev/null +++ b/srcpkgs/musl/files/__stack_chk_fail_local.c @@ -0,0 +1,2 @@ +extern void __stack_chk_fail(void); +void __attribute__((visibility ("hidden"))) __stack_chk_fail_local(void) { __stack_chk_fail(); } diff --git a/srcpkgs/musl/template b/srcpkgs/musl/template index afb33cd868b5..1606b50df12b 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=12 +revision=13 archs="*-musl" bootstrap=yes build_style=gnu-configure @@ -21,6 +21,8 @@ post_build() { $CC $CFLAGS $LDFLAGS -fpie ${FILESDIR}/getent.c -o getent $CC $CFLAGS $LDFLAGS -fpie ${FILESDIR}/getconf.c -o getconf $CC $CFLAGS $LDFLAGS -fpie ${FILESDIR}/iconv.c -o iconv + $CC $CFLAGS $LDFLAGS -fpie -c ${FILESDIR}/__stack_chk_fail_local.c -o __stack_chk_fail_local.o + $AR r libssp_nonshared.a __stack_chk_fail_local.o } do_install() { # Move everything to /usr. @@ -37,6 +39,8 @@ do_install() { vman ${FILESDIR}/getent.1 vbin getconf vman ${FILESDIR}/getconf.1 + # additional symbols from libssp_nonshared (necessary on i386 and PPC) + vinstall libssp_nonshared.a 755 usr/lib # Fake ldconfig ln -s true ${DESTDIR}/usr/bin/ldconfig From 839ab0e75b32ae5e329095791656d4e657979e79 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 16:13:28 -0800 Subject: [PATCH 003/114] build-style/void-cross: disable libssp --- common/build-style/void-cross.sh | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/common/build-style/void-cross.sh b/common/build-style/void-cross.sh index 4804193d8395..6914c40bc001 100644 --- a/common/build-style/void-cross.sh +++ b/common/build-style/void-cross.sh @@ -319,6 +319,12 @@ _void_cross_build_musl() { make ${makejobs} make DESTDIR=${wrksrc}/build_root/usr/${tgt} install + CFLAGS="-pipe -fPIC ${cross_musl_cflags}" \ + CPPFLAGS="${cross_musl_cflags}" LDFLAGS="${cross_musl_ldflags}" \ + ${tgt}-gcc $CFLAGS $LDFLAGS -fpie $CPPFLAGS $CFLAGS -c ${XBPS_SRCPKGDIR}/musl/files/__stack_chk_fail_local.c -o __stack_chk_fail_local.o + ${tgt}-ar r libssp_nonshared.a __stack_chk_fail_local.o + cp libssp_nonshared.a ${wrksrc}/build_root/usr/${tgt}/usr/lib + touch ${wrksrc}/.musl_build_done } @@ -417,6 +423,7 @@ _void_cross_build_gcc() { --disable-libvtv \ --disable-libsanitizer \ --disable-libstdcxx-pch \ + --disable-libssp \ --enable-shared \ --enable-threads=posix \ --enable-__cxa_atexit \ @@ -425,7 +432,6 @@ _void_cross_build_gcc() { --enable-lto \ --enable-default-pie \ --enable-default-ssp \ - --enable-libssp \ --with-gnu-ld \ --with-gnu-as \ --with-linker-hash-style=gnu \ @@ -600,6 +606,8 @@ do_install() { for f in ${DESTDIR}/${sysroot}/usr/lib/ld-musl-*.so.*; do ln -sf libc.so ${f} done + + cp libssp_nonshared.a ${DESTDIR}/${sysroot}/usr/lib/ else # Install glibc cd ${wrksrc}/glibc_build From 83339311291d76fe48a5f6891155f5020413f9be Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 17:06:52 -0800 Subject: [PATCH 004/114] cross-vpkg-dummy: remove libssp --- srcpkgs/cross-vpkg-dummy/template | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/srcpkgs/cross-vpkg-dummy/template b/srcpkgs/cross-vpkg-dummy/template index aeafb749dd5f..0825728cb19e 100644 --- a/srcpkgs/cross-vpkg-dummy/template +++ b/srcpkgs/cross-vpkg-dummy/template @@ -1,7 +1,7 @@ # Template file for 'cross-vpkg-dummy' pkgname=cross-vpkg-dummy version=0.39 -revision=1 +revision=2 build_style=meta short_desc="Dummy meta-pkg for cross building packages with xbps-src" maintainer="Orphaned " @@ -61,9 +61,6 @@ shlib_provides=" if [ "$XBPS_TARGET_LIBC" = "musl" ]; then provides+=" musl-9999_1 musl-devel-9999_1" - # bundled in musl crosstoolchains but not glibc - provides+=" libssp-9999_1 libssp-devel-9999_1" - shlib_provides+=" libssp.so.0" conflicts+=" musl>=0" shlib_provides+=" libc.so" else From 8edadf402f22e0dc50c31c3f9d115809255a1283 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 17:09:08 -0800 Subject: [PATCH 005/114] cross-aarch64-linux-gnu: disable libssp --- srcpkgs/cross-aarch64-linux-gnu/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/cross-aarch64-linux-gnu/template b/srcpkgs/cross-aarch64-linux-gnu/template index 0aca566f3978..17ba4ec677a6 100644 --- a/srcpkgs/cross-aarch64-linux-gnu/template +++ b/srcpkgs/cross-aarch64-linux-gnu/template @@ -6,7 +6,7 @@ _glibc_patchver="72-g0f90d6204d" _linux_version=5.10.4 pkgname=cross-aarch64-linux-gnu version=0.35 -revision=2 +revision=3 build_style=void-cross configure_args="--with-arch=armv8-a" hostmakedepends="texinfo tar gcc-objc gcc-go flex perl python3" From 44c514a2b88d91cc9a983a1e617e2d009622a419 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 17:09:08 -0800 Subject: [PATCH 006/114] cross-aarch64-linux-musl: disable libssp --- srcpkgs/cross-aarch64-linux-musl/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/cross-aarch64-linux-musl/template b/srcpkgs/cross-aarch64-linux-musl/template index ba14c96bccea..a05207a8894e 100644 --- a/srcpkgs/cross-aarch64-linux-musl/template +++ b/srcpkgs/cross-aarch64-linux-musl/template @@ -6,7 +6,7 @@ _linux_version=5.10.4 _libucontext_version=1.0 pkgname=cross-aarch64-linux-musl version=0.35 -revision=1 +revision=2 build_style=void-cross configure_args="--with-arch=armv8-a" hostmakedepends="texinfo tar gcc-objc gcc-go flex perl python3" From 7e752e476c18f0a7c66501188c1dd21e5ce0bc96 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 17:09:09 -0800 Subject: [PATCH 007/114] cross-arm-linux-gnueabi: disable libssp --- srcpkgs/cross-arm-linux-gnueabi/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/cross-arm-linux-gnueabi/template b/srcpkgs/cross-arm-linux-gnueabi/template index f2d4eabb531d..5aa1383aa8f9 100644 --- a/srcpkgs/cross-arm-linux-gnueabi/template +++ b/srcpkgs/cross-arm-linux-gnueabi/template @@ -6,7 +6,7 @@ _glibc_patchver="72-g0f90d6204d" _linux_version=5.10.4 pkgname=cross-arm-linux-gnueabi version=0.35 -revision=2 +revision=3 build_style=void-cross configure_args="--with-arch=armv5te --with-float=soft" hostmakedepends="texinfo tar gcc-objc gcc-go flex perl python3" From e4f8e24a4a64fcd766f871902bee2a73b45034ce Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 17:09:09 -0800 Subject: [PATCH 008/114] cross-arm-linux-gnueabihf: disable libssp --- srcpkgs/cross-arm-linux-gnueabihf/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/cross-arm-linux-gnueabihf/template b/srcpkgs/cross-arm-linux-gnueabihf/template index d631c7ca322f..13a780794378 100644 --- a/srcpkgs/cross-arm-linux-gnueabihf/template +++ b/srcpkgs/cross-arm-linux-gnueabihf/template @@ -6,7 +6,7 @@ _linux_version=5.10.4 _glibc_patchver="72-g0f90d6204d" pkgname=cross-arm-linux-gnueabihf version=0.35 -revision=2 +revision=3 build_style=void-cross configure_args="--with-arch=armv6 --with-fpu=vfp --with-float=hard" hostmakedepends="texinfo tar gcc-objc gcc-go flex perl python3" From cf8e3492c55faf7ee9c9bd8e124a4fe394ab2c71 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 17:09:09 -0800 Subject: [PATCH 009/114] cross-arm-linux-musleabi: disable libssp --- srcpkgs/cross-arm-linux-musleabi/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/cross-arm-linux-musleabi/template b/srcpkgs/cross-arm-linux-musleabi/template index 24df78e8fd8e..ce25d306db4b 100644 --- a/srcpkgs/cross-arm-linux-musleabi/template +++ b/srcpkgs/cross-arm-linux-musleabi/template @@ -6,7 +6,7 @@ _linux_version=5.10.4 _libucontext_version=1.0 pkgname=cross-arm-linux-musleabi version=0.35 -revision=1 +revision=2 build_style=void-cross configure_args="--with-arch=armv5te --with-float=soft" hostmakedepends="texinfo tar gcc-objc gcc-go flex perl python3" From 59db2d23f6bc3d944187552f4c37abe89f9c4a97 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 17:09:09 -0800 Subject: [PATCH 010/114] cross-arm-linux-musleabihf: disable libssp --- srcpkgs/cross-arm-linux-musleabihf/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/cross-arm-linux-musleabihf/template b/srcpkgs/cross-arm-linux-musleabihf/template index 8093700f909c..38baeb2e4df7 100644 --- a/srcpkgs/cross-arm-linux-musleabihf/template +++ b/srcpkgs/cross-arm-linux-musleabihf/template @@ -6,7 +6,7 @@ _linux_version=5.10.4 _libucontext_version=1.0 pkgname=cross-arm-linux-musleabihf version=0.35 -revision=1 +revision=2 build_style=void-cross configure_args="--with-arch=armv6 --with-fpu=vfp --with-float=hard" hostmakedepends="texinfo tar gcc-objc gcc-go flex perl python3" From e393cd6de488d4eebbc9dc8c5d7e4d583abb14e4 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 17:09:09 -0800 Subject: [PATCH 011/114] cross-armv7l-linux-gnueabihf: disable libssp --- srcpkgs/cross-armv7l-linux-gnueabihf/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/cross-armv7l-linux-gnueabihf/template b/srcpkgs/cross-armv7l-linux-gnueabihf/template index 7daaf852ac9c..ffb71af5b454 100644 --- a/srcpkgs/cross-armv7l-linux-gnueabihf/template +++ b/srcpkgs/cross-armv7l-linux-gnueabihf/template @@ -6,7 +6,7 @@ _glibc_patchver="72-g0f90d6204d" _linux_version=5.10.4 pkgname=cross-armv7l-linux-gnueabihf version=0.35 -revision=2 +revision=3 build_style=void-cross configure_args="--with-arch=armv7-a --with-fpu=vfpv3 --with-float=hard" hostmakedepends="texinfo tar gcc-objc gcc-go flex perl python3" From d903bb63dfc56f664958d17a959f0120b13664b7 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 17:09:09 -0800 Subject: [PATCH 012/114] cross-armv7l-linux-musleabihf: disable libssp --- srcpkgs/cross-armv7l-linux-musleabihf/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/cross-armv7l-linux-musleabihf/template b/srcpkgs/cross-armv7l-linux-musleabihf/template index e5af2c9ccbf2..5d7bd4647c49 100644 --- a/srcpkgs/cross-armv7l-linux-musleabihf/template +++ b/srcpkgs/cross-armv7l-linux-musleabihf/template @@ -6,7 +6,7 @@ _linux_version=5.10.4 _libucontext_version=1.0 pkgname=cross-armv7l-linux-musleabihf version=0.35 -revision=1 +revision=2 build_style=void-cross configure_args="--with-arch=armv7-a --with-fpu=vfpv3 --with-float=hard" hostmakedepends="texinfo tar gcc-objc gcc-go flex perl python3" From 6ed086cc0169d52104ddd8e651b7ea0053d6c3d4 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 17:09:09 -0800 Subject: [PATCH 013/114] cross-i686-linux-musl: disable libssp --- srcpkgs/cross-i686-linux-musl/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/cross-i686-linux-musl/template b/srcpkgs/cross-i686-linux-musl/template index d624bb7a3254..2c95f93a8fe1 100644 --- a/srcpkgs/cross-i686-linux-musl/template +++ b/srcpkgs/cross-i686-linux-musl/template @@ -6,7 +6,7 @@ _linux_version=5.10.4 _libucontext_version=1.0 pkgname=cross-i686-linux-musl version=0.35 -revision=1 +revision=2 build_style=void-cross hostmakedepends="texinfo tar gcc-objc gcc-go flex perl python3" makedepends="isl15-devel libmpc-devel gmp-devel mpfr-devel From 0f160325421386e266e4fcac015b127322803e71 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 17:09:09 -0800 Subject: [PATCH 014/114] cross-i686-pc-linux-gnu: disable libssp --- srcpkgs/cross-i686-pc-linux-gnu/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/cross-i686-pc-linux-gnu/template b/srcpkgs/cross-i686-pc-linux-gnu/template index fd950e0579af..c6f2579c645d 100644 --- a/srcpkgs/cross-i686-pc-linux-gnu/template +++ b/srcpkgs/cross-i686-pc-linux-gnu/template @@ -6,7 +6,7 @@ _glibc_patchver="72-g0f90d6204d" _linux_version=5.10.4 pkgname=cross-i686-pc-linux-gnu version=0.35 -revision=2 +revision=3 build_style=void-cross hostmakedepends="texinfo tar gcc-objc gcc-go flex perl python3" makedepends="isl15-devel libmpc-devel gmp-devel mpfr-devel From 0b82874a1e2408f16fb3ea3c9539eee0343d11dc Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 17:09:09 -0800 Subject: [PATCH 015/114] cross-mips-linux-musl: disable libssp --- srcpkgs/cross-mips-linux-musl/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/cross-mips-linux-musl/template b/srcpkgs/cross-mips-linux-musl/template index 67a5c413396c..aefd2316ad03 100644 --- a/srcpkgs/cross-mips-linux-musl/template +++ b/srcpkgs/cross-mips-linux-musl/template @@ -5,7 +5,7 @@ _musl_version=1.1.24 _linux_version=5.10.4 pkgname=cross-mips-linux-musl version=0.35 -revision=1 +revision=2 build_style=void-cross configure_args="--with-arch=mips32r2 --with-float=soft --with-linker-hash-style=sysv" From 68989e1769629b8ec7a8a89ed3828fb084b6a35b Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 17:09:09 -0800 Subject: [PATCH 016/114] cross-mips-linux-muslhf: disable libssp --- srcpkgs/cross-mips-linux-muslhf/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/cross-mips-linux-muslhf/template b/srcpkgs/cross-mips-linux-muslhf/template index bdf8600ce95b..8308fcb4f0d0 100644 --- a/srcpkgs/cross-mips-linux-muslhf/template +++ b/srcpkgs/cross-mips-linux-muslhf/template @@ -5,7 +5,7 @@ _musl_version=1.1.24 _linux_version=5.10.4 pkgname=cross-mips-linux-muslhf version=0.35 -revision=1 +revision=2 build_style=void-cross configure_args="--with-arch=mips32r2 --with-float=hard --with-linker-hash-style=sysv" From c333ff9166f6288d0d18cf81f79aaa10f4ffc748 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 17:09:09 -0800 Subject: [PATCH 017/114] cross-mipsel-linux-musl: disable libssp --- srcpkgs/cross-mipsel-linux-musl/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/cross-mipsel-linux-musl/template b/srcpkgs/cross-mipsel-linux-musl/template index de49387d517b..3c1825f0d96f 100644 --- a/srcpkgs/cross-mipsel-linux-musl/template +++ b/srcpkgs/cross-mipsel-linux-musl/template @@ -5,7 +5,7 @@ _musl_version=1.1.24 _linux_version=5.10.4 pkgname=cross-mipsel-linux-musl version=0.35 -revision=1 +revision=2 build_style=void-cross configure_args="--with-arch=mips32r2 --with-float=soft --with-linker-hash-style=sysv" From 3edb04e127d3f8b18b8bd3d73b4282d44766cbef Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 17:09:09 -0800 Subject: [PATCH 018/114] cross-mipsel-linux-muslhf: disable libssp --- srcpkgs/cross-mipsel-linux-muslhf/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/cross-mipsel-linux-muslhf/template b/srcpkgs/cross-mipsel-linux-muslhf/template index b27ce6475a38..ab199135a246 100644 --- a/srcpkgs/cross-mipsel-linux-muslhf/template +++ b/srcpkgs/cross-mipsel-linux-muslhf/template @@ -5,7 +5,7 @@ _musl_version=1.1.24 _linux_version=5.10.4 pkgname=cross-mipsel-linux-muslhf version=0.35 -revision=1 +revision=2 build_style=void-cross configure_args="--with-arch=mips32r2 --with-float=hard --with-linker-hash-style=sysv" From c1ea4b120cfd6203e1cc057e140db14f66a8b77e Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 17:09:09 -0800 Subject: [PATCH 019/114] cross-powerpc-linux-gnu: disable libssp --- srcpkgs/cross-powerpc-linux-gnu/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/cross-powerpc-linux-gnu/template b/srcpkgs/cross-powerpc-linux-gnu/template index 201c1c966678..c759eda4505a 100644 --- a/srcpkgs/cross-powerpc-linux-gnu/template +++ b/srcpkgs/cross-powerpc-linux-gnu/template @@ -6,7 +6,7 @@ _glibc_patchver="72-g0f90d6204d" _linux_version=5.10.4 pkgname=cross-powerpc-linux-gnu version=0.35 -revision=2 +revision=3 build_style=void-cross configure_args="--enable-secureplt --disable-vtable-verify" hostmakedepends="texinfo tar gcc-objc flex perl python3" From c42cb6a90c546fdd2bafc71c08d8ad9210de3187 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 17:09:09 -0800 Subject: [PATCH 020/114] cross-powerpc-linux-musl: disable libssp --- srcpkgs/cross-powerpc-linux-musl/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/cross-powerpc-linux-musl/template b/srcpkgs/cross-powerpc-linux-musl/template index 9bb6acd359b6..692145be3994 100644 --- a/srcpkgs/cross-powerpc-linux-musl/template +++ b/srcpkgs/cross-powerpc-linux-musl/template @@ -5,7 +5,7 @@ _musl_version=1.1.24 _linux_version=5.10.4 pkgname=cross-powerpc-linux-musl version=0.35 -revision=1 +revision=2 build_style=void-cross configure_args="--enable-secureplt --disable-vtable-verify --disable-decimal-float" From 47fdba02b8dcf47284ad2b7723398ceaf81b74ca Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 17:09:10 -0800 Subject: [PATCH 021/114] cross-powerpc64-linux-gnu: disable libssp --- srcpkgs/cross-powerpc64-linux-gnu/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/cross-powerpc64-linux-gnu/template b/srcpkgs/cross-powerpc64-linux-gnu/template index 8f558da423e3..95e6ce653c3d 100644 --- a/srcpkgs/cross-powerpc64-linux-gnu/template +++ b/srcpkgs/cross-powerpc64-linux-gnu/template @@ -6,7 +6,7 @@ _glibc_patchver="72-g0f90d6204d" _linux_version=5.10.4 pkgname=cross-powerpc64-linux-gnu version=0.35 -revision=2 +revision=3 build_style=void-cross configure_args="--enable-secureplt --disable-vtable-verify --with-abi=elfv2 --enable-targets=powerpc-linux" From 34e8898eb9849e2fedd8bacd2248eb6af29dd0c5 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 17:09:10 -0800 Subject: [PATCH 022/114] cross-powerpc64-linux-musl: disable libssp --- srcpkgs/cross-powerpc64-linux-musl/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/cross-powerpc64-linux-musl/template b/srcpkgs/cross-powerpc64-linux-musl/template index e0848fe0bff7..4d38c80ff744 100644 --- a/srcpkgs/cross-powerpc64-linux-musl/template +++ b/srcpkgs/cross-powerpc64-linux-musl/template @@ -6,7 +6,7 @@ _linux_version=5.10.4 _libucontext_version=1.0 pkgname=cross-powerpc64-linux-musl version=0.35 -revision=1 +revision=2 build_style=void-cross configure_args="--enable-secureplt --disable-vtable-verify --disable-decimal-float --with-abi=elfv2 --enable-targets=powerpc-linux" From f9d5e7ba1d49094374ad74a5813d426886af3764 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 17:09:10 -0800 Subject: [PATCH 023/114] cross-powerpc64le-linux-gnu: disable libssp --- srcpkgs/cross-powerpc64le-linux-gnu/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/cross-powerpc64le-linux-gnu/template b/srcpkgs/cross-powerpc64le-linux-gnu/template index 5b01d9b65083..f4486e3f229c 100644 --- a/srcpkgs/cross-powerpc64le-linux-gnu/template +++ b/srcpkgs/cross-powerpc64le-linux-gnu/template @@ -6,7 +6,7 @@ _glibc_patchver="72-g0f90d6204d" _linux_version=5.10.4 pkgname=cross-powerpc64le-linux-gnu version=0.35 -revision=2 +revision=3 build_style=void-cross configure_args="--enable-secureplt --disable-vtable-verify --with-abi=elfv2 --enable-targets=powerpcle-linux" From 41724d2052513b90dc7df5001aad97019fc98d20 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 17:09:10 -0800 Subject: [PATCH 024/114] cross-powerpc64le-linux-musl: disable libssp --- srcpkgs/cross-powerpc64le-linux-musl/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/cross-powerpc64le-linux-musl/template b/srcpkgs/cross-powerpc64le-linux-musl/template index 0915e524545f..59f8586731a7 100644 --- a/srcpkgs/cross-powerpc64le-linux-musl/template +++ b/srcpkgs/cross-powerpc64le-linux-musl/template @@ -6,7 +6,7 @@ _linux_version=5.10.4 _libucontext_version=1.0 pkgname=cross-powerpc64le-linux-musl version=0.35 -revision=1 +revision=2 build_style=void-cross configure_args="--enable-secureplt --disable-vtable-verify --disable-decimal-float --with-abi=elfv2 --enable-targets=powerpcle-linux" From 604e2222ecb5c321d5a5e5d5c9ca601c6ca2e803 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 17:09:10 -0800 Subject: [PATCH 025/114] cross-powerpcle-linux-gnu: disable libssp --- srcpkgs/cross-powerpcle-linux-gnu/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/cross-powerpcle-linux-gnu/template b/srcpkgs/cross-powerpcle-linux-gnu/template index 687be8a44c6c..32337f1c37cc 100644 --- a/srcpkgs/cross-powerpcle-linux-gnu/template +++ b/srcpkgs/cross-powerpcle-linux-gnu/template @@ -5,7 +5,7 @@ _glibc_version=2.36 _linux_version=5.10.4 pkgname=cross-powerpcle-linux-gnu version=0.35 -revision=1 +revision=2 build_style=void-cross configure_args="--enable-secureplt --disable-vtable-verify" hostmakedepends="texinfo tar gcc-objc flex perl python3" From a8790645a97ab79468b3468cf20df112ce47b74b Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 17:09:10 -0800 Subject: [PATCH 026/114] cross-powerpcle-linux-musl: disable libssp --- srcpkgs/cross-powerpcle-linux-musl/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/cross-powerpcle-linux-musl/template b/srcpkgs/cross-powerpcle-linux-musl/template index bb984b9c42eb..0fdd3285b3f8 100644 --- a/srcpkgs/cross-powerpcle-linux-musl/template +++ b/srcpkgs/cross-powerpcle-linux-musl/template @@ -5,7 +5,7 @@ _musl_version=1.1.24 _linux_version=5.10.4 pkgname=cross-powerpcle-linux-musl version=0.35 -revision=1 +revision=2 build_style=void-cross configure_args="--enable-secureplt --disable-vtable-verify --disable-decimal-float" From a423382a3e747a6a987eaec55980d56dc8b70a7a Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 17:09:10 -0800 Subject: [PATCH 027/114] cross-x86_64-linux-gnu: disable libssp --- srcpkgs/cross-x86_64-linux-gnu/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/cross-x86_64-linux-gnu/template b/srcpkgs/cross-x86_64-linux-gnu/template index bdb59d85cdd5..0f6daea7229c 100644 --- a/srcpkgs/cross-x86_64-linux-gnu/template +++ b/srcpkgs/cross-x86_64-linux-gnu/template @@ -6,7 +6,7 @@ _glibc_patchver="72-g0f90d6204d" _linux_version=5.10.4 pkgname=cross-x86_64-linux-gnu version=0.35 -revision=2 +revision=3 build_style=void-cross hostmakedepends="texinfo tar gcc-objc gcc-go flex perl python3" makedepends="isl15-devel libmpc-devel gmp-devel mpfr-devel From 900dcfe50f9e809476afe6ab21226a10e0342f52 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 17:09:10 -0800 Subject: [PATCH 028/114] cross-x86_64-linux-musl: disable libssp --- srcpkgs/cross-x86_64-linux-musl/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/cross-x86_64-linux-musl/template b/srcpkgs/cross-x86_64-linux-musl/template index ac5b1c46ab82..2812f3330130 100644 --- a/srcpkgs/cross-x86_64-linux-musl/template +++ b/srcpkgs/cross-x86_64-linux-musl/template @@ -6,7 +6,7 @@ _linux_version=5.10.4 _libucontext_version=1.0 pkgname=cross-x86_64-linux-musl version=0.35 -revision=1 +revision=2 build_style=void-cross hostmakedepends="texinfo tar gcc-objc gcc-go flex perl python3" makedepends="isl15-devel libmpc-devel gmp-devel mpfr-devel From 47668934bcb49a653e8750cfc0fafbf7035626ea Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:45 -0800 Subject: [PATCH 029/114] AusweisApp2: rebuild to fix ssp dependency --- srcpkgs/AusweisApp2/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/AusweisApp2/template b/srcpkgs/AusweisApp2/template index 066428431b1a..fcedbd78e6c4 100644 --- a/srcpkgs/AusweisApp2/template +++ b/srcpkgs/AusweisApp2/template @@ -1,7 +1,7 @@ # Template file for 'AusweisApp2' pkgname=AusweisApp2 version=1.24.1 -revision=1 +revision=2 build_style=cmake build_helper=qemu hostmakedepends="pkg-config qt5-qmake qt5-host-tools" From bb21071b64d2039526887bd79995317c0dea5460 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:45 -0800 Subject: [PATCH 030/114] OTPClient: rebuild to fix ssp dependency --- srcpkgs/OTPClient/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/OTPClient/template b/srcpkgs/OTPClient/template index 409c3942acf6..a5f068ffa976 100644 --- a/srcpkgs/OTPClient/template +++ b/srcpkgs/OTPClient/template @@ -1,7 +1,7 @@ # Template file for 'OTPClient' pkgname=OTPClient version=2.4.8 -revision=1 +revision=2 build_style=cmake hostmakedepends="pkg-config" makedepends="gtk+3-devel libglib-devel libgcrypt-devel libpng-devel From 66338e1cdc28184676d493fe99eacad49ac45223 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:45 -0800 Subject: [PATCH 031/114] PrismLauncher: rebuild to fix ssp dependency --- srcpkgs/PrismLauncher/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/PrismLauncher/template b/srcpkgs/PrismLauncher/template index 65dd77a0807a..5a830b2a11f0 100644 --- a/srcpkgs/PrismLauncher/template +++ b/srcpkgs/PrismLauncher/template @@ -1,7 +1,7 @@ # Template file for 'PrismLauncher' pkgname=PrismLauncher version=6.1 -revision=1 +revision=2 build_style=cmake configure_args="-DLauncher_BUILD_PLATFORM=Void" hostmakedepends="extra-cmake-modules openjdk8 pkg-config qt5-host-tools From 19017d19976ba07a81c323208f4e6b36a5c955f8 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:45 -0800 Subject: [PATCH 032/114] avahi-discover: rebuild to fix ssp dependency --- srcpkgs/avahi-discover/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/avahi-discover/template b/srcpkgs/avahi-discover/template index 5f6841269c98..6fd6ffc959c0 100644 --- a/srcpkgs/avahi-discover/template +++ b/srcpkgs/avahi-discover/template @@ -5,7 +5,7 @@ # pkgname=avahi-discover version=0.8 -revision=5 +revision=6 build_style=gnu-configure build_helper="gir" configure_args="--disable-qt3 --disable-qt4 --disable-mono --disable-monodoc From 4645c4ef6cff13ab59502ed6e6557bca591920b3 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:45 -0800 Subject: [PATCH 033/114] bitcoin: rebuild to fix ssp dependency --- srcpkgs/bitcoin/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/bitcoin/template b/srcpkgs/bitcoin/template index 9ae457ecb9c5..478a7a66e874 100644 --- a/srcpkgs/bitcoin/template +++ b/srcpkgs/bitcoin/template @@ -1,7 +1,7 @@ # Template file for 'bitcoin' pkgname=bitcoin version=22.0 -revision=2 +revision=3 build_style=gnu-configure configure_args="--with-incompatible-bdb --disable-ccache --disable-static --enable-hardening --with-boost=${XBPS_CROSS_BASE}/usr --with-gui" From dd6335b4f16892444f13a35d074248d6a6ebeba0 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:45 -0800 Subject: [PATCH 034/114] botan: rebuild to fix ssp dependency --- srcpkgs/botan/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/botan/template b/srcpkgs/botan/template index 41bccfba4986..61f812c9e6fb 100644 --- a/srcpkgs/botan/template +++ b/srcpkgs/botan/template @@ -1,7 +1,7 @@ # Template file for 'botan' pkgname=botan version=2.19.2 -revision=2 +revision=3 build_style=gnu-makefile hostmakedepends="doxygen python3" makedepends="bzip2-devel liblzma-devel sqlite-devel zlib-devel" From a75329e3b1714b9c9661a72caca67d1fc83d57a4 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:45 -0800 Subject: [PATCH 035/114] cJSON: rebuild to fix ssp dependency --- srcpkgs/cJSON/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/cJSON/template b/srcpkgs/cJSON/template index a3f6914ca7db..63235062a77c 100644 --- a/srcpkgs/cJSON/template +++ b/srcpkgs/cJSON/template @@ -1,7 +1,7 @@ # Template file for 'cJSON' pkgname=cJSON version=1.7.15 -revision=1 +revision=2 build_style=cmake short_desc="Ultralightweight JSON parser in ANSI C" maintainer="Orphaned " From 34ecf9f2484ac083e5ef3a0646d0fb7b3f32912f Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:46 -0800 Subject: [PATCH 036/114] csync: rebuild to fix ssp dependency --- srcpkgs/csync/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/csync/template b/srcpkgs/csync/template index 047f6a246173..c2e4102eb491 100644 --- a/srcpkgs/csync/template +++ b/srcpkgs/csync/template @@ -1,7 +1,7 @@ # Template file for 'csync' pkgname=csync version=0.50.0 -revision=5 +revision=6 build_style=cmake configure_args="-DSYSCONF_INSTALL_DIR=/etc" conf_files="/etc/csync/csync.conf /etc/csync/csync_exclude.conf" @@ -11,7 +11,7 @@ short_desc="Client only bidirectional file synchronizer" maintainer="Diogo Leal " license="GPL-2.0-only" homepage="https://csync.org/" -distfiles="https://gentoo.osuosl.org/distfiles/3e/csync-${version}.tar.xz" +distfiles="https://sources.voidlinux-ppc.org/csync-${version}/csync-${version}.tar.xz" checksum=c07526942a93c1e213d354dc45fd61fbc0430c60e109e7a2f0fcaf6213a45c86 pre_configure() { From 3437e01ef7119075f22f9c46edf8c0f8b4550eb9 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:46 -0800 Subject: [PATCH 037/114] cups: rebuild to fix ssp dependency --- srcpkgs/cups/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/cups/template b/srcpkgs/cups/template index 0776928f2609..a2f4326d0e2f 100644 --- a/srcpkgs/cups/template +++ b/srcpkgs/cups/template @@ -1,7 +1,7 @@ # Template file for 'cups' pkgname=cups version=2.4.2 -revision=1 +revision=2 build_style=gnu-configure make_install_args="BUILDROOT=${DESTDIR}" hostmakedepends="gnutls-devel pkg-config From 455aafcb97d9e2093eaa6db7575e4a8236ec39ab Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:46 -0800 Subject: [PATCH 038/114] davfs2: rebuild to fix ssp dependency --- srcpkgs/davfs2/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/davfs2/template b/srcpkgs/davfs2/template index 1e62bc8df13d..1a2f8482e210 100644 --- a/srcpkgs/davfs2/template +++ b/srcpkgs/davfs2/template @@ -1,7 +1,7 @@ # Template file for 'davfs2' pkgname=davfs2 version=1.6.1 -revision=1 +revision=2 build_style=gnu-configure configure_args="dav_user=nobody dav_group=network --enable-largefile" hostmakedepends="automake gettext gettext-devel neon-devel tar" From 44b0e10820248e3a1e84abcd717b8a7fdcffd10d Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:46 -0800 Subject: [PATCH 039/114] di: rebuild to fix ssp dependency --- srcpkgs/di/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/di/template b/srcpkgs/di/template index 2fdd80a61f60..932444899d52 100644 --- a/srcpkgs/di/template +++ b/srcpkgs/di/template @@ -1,7 +1,7 @@ # Template file for 'di' pkgname=di version=4.51 -revision=1 +revision=2 build_style=gnu-makefile short_desc="A disk information utility" maintainer="Leah Neukirchen " From 1ee558b604dd6c1bce5ea7976586efc8291c87b1 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:46 -0800 Subject: [PATCH 040/114] dislocker: rebuild to fix ssp dependency --- srcpkgs/dislocker/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/dislocker/template b/srcpkgs/dislocker/template index a5580034c6fd..3cfd6162ec92 100644 --- a/srcpkgs/dislocker/template +++ b/srcpkgs/dislocker/template @@ -1,7 +1,7 @@ # Template file for 'dislocker' pkgname=dislocker version=0.7.3 -revision=1 +revision=2 build_style=cmake configure_args="-DLIB_INSTALL_DIR=lib" makedepends="mbedtls-devel fuse-devel" From cebbbc918bcb0756e19fa7cbd47b1671bcab7ae0 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:46 -0800 Subject: [PATCH 041/114] dnsdist: rebuild to fix ssp dependency --- srcpkgs/dnsdist/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/dnsdist/template b/srcpkgs/dnsdist/template index ae8f79ceb2f9..6e13f7374891 100644 --- a/srcpkgs/dnsdist/template +++ b/srcpkgs/dnsdist/template @@ -1,7 +1,7 @@ # Template file for 'dnsdist' pkgname=dnsdist version=1.7.2 -revision=1 +revision=2 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-nghttp2 From f9bf4d10b7b6742bb9a4cb18722cd0f28a66bafd Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:46 -0800 Subject: [PATCH 042/114] dovecot: rebuild to fix ssp dependency --- srcpkgs/dovecot/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/dovecot/template b/srcpkgs/dovecot/template index 45f410493436..787b29b6eab8 100644 --- a/srcpkgs/dovecot/template +++ b/srcpkgs/dovecot/template @@ -2,7 +2,7 @@ # revbump dovecot-plugin-pigeonhole when updating dovecot! pkgname=dovecot version=2.3.20 -revision=1 +revision=2 build_style=gnu-configure configure_args="--with-moduledir=/usr/lib/dovecot/modules --with-sql=plugin --disable-static --with-pam --with-mysql --with-pgsql --with-lucene From 4056adbe606d1e35f3cb31e5165d32d3aaa32806 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:46 -0800 Subject: [PATCH 043/114] dovecot-plugin-pigeonhole: rebuild to fix ssp dependency --- srcpkgs/dovecot-plugin-pigeonhole/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/dovecot-plugin-pigeonhole/template b/srcpkgs/dovecot-plugin-pigeonhole/template index ac13321e4508..e4d168cc4f78 100644 --- a/srcpkgs/dovecot-plugin-pigeonhole/template +++ b/srcpkgs/dovecot-plugin-pigeonhole/template @@ -1,7 +1,7 @@ # Template file for 'dovecot-plugin-pigeonhole' pkgname=dovecot-plugin-pigeonhole version=0.5.20 -revision=1 +revision=2 build_style=gnu-configure configure_args="--prefix=/usr --with-dovecot=${XBPS_CROSS_BASE}/usr/lib/dovecot From 8749478b8acd89a4bf074180abbd9807f5e9508a Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:46 -0800 Subject: [PATCH 044/114] dqlite: rebuild to fix ssp dependency --- srcpkgs/dqlite/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/dqlite/template b/srcpkgs/dqlite/template index d6f1ed50506d..f4539b9623d9 100644 --- a/srcpkgs/dqlite/template +++ b/srcpkgs/dqlite/template @@ -1,7 +1,7 @@ # Template file for 'dqlite' pkgname=dqlite version=1.13.0 -revision=1 +revision=2 build_style=gnu-configure hostmakedepends="pkg-config automake libtool" makedepends="sqlite-devel raft-devel" From ff7625589a268a6d277462dc6a066d016063816d Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:47 -0800 Subject: [PATCH 045/114] elogind: rebuild to fix ssp dependency --- srcpkgs/elogind/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/elogind/template b/srcpkgs/elogind/template index 79186a193f31..73dc786ad70a 100644 --- a/srcpkgs/elogind/template +++ b/srcpkgs/elogind/template @@ -1,7 +1,7 @@ # Template file for 'elogind' pkgname=elogind version=246.10 -revision=2 +revision=3 build_style=meson configure_args="-Dcgroup-controller=elogind -Dhalt-path=/usr/bin/halt -Drootlibexecdir=/usr/libexec/elogind -Dreboot-path=/usr/bin/reboot From 0e7f0ad1a24b6c7ef7ae1de72f8a707b31886cfc Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:47 -0800 Subject: [PATCH 046/114] flac: rebuild to fix ssp dependency --- srcpkgs/flac/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/flac/template b/srcpkgs/flac/template index 2611f41ffb7e..10aaef209586 100644 --- a/srcpkgs/flac/template +++ b/srcpkgs/flac/template @@ -1,7 +1,7 @@ # Template file for 'flac' pkgname=flac version=1.3.4 -revision=1 +revision=2 build_style=gnu-configure configure_args="--disable-rpath --disable-doxygen-docs --disable-xmms-plugin --with-ogg=${XBPS_CROSS_BASE}/usr --disable-thorough-tests" From db87c6281d4d6b390e822cb87c0cc33942035cc9 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:47 -0800 Subject: [PATCH 047/114] fwknop: rebuild to fix ssp dependency --- srcpkgs/fwknop/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/fwknop/template b/srcpkgs/fwknop/template index dddd275b19ac..25fa8de2e4f2 100644 --- a/srcpkgs/fwknop/template +++ b/srcpkgs/fwknop/template @@ -1,7 +1,7 @@ # Template file for 'fwknop' pkgname=fwknop version=2.6.10 -revision=2 +revision=3 build_style=gnu-configure configure_args="--with-gpg=${XBPS_CROSS_BASE}/usr/bin/gpg" hostmakedepends="iptables" From c3bf3c327c5737a2f3a943a9a920ff4cda87f0c6 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:47 -0800 Subject: [PATCH 048/114] inkscape: rebuild to fix ssp dependency --- srcpkgs/inkscape/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/inkscape/template b/srcpkgs/inkscape/template index 003d2170baf3..3d239f62f896 100644 --- a/srcpkgs/inkscape/template +++ b/srcpkgs/inkscape/template @@ -1,7 +1,7 @@ # Template file for 'inkscape' pkgname=inkscape version=1.1.1 -revision=5 +revision=6 build_style=cmake # builds executables then runs checks # some tests still fail on musl: https://gitlab.com/inkscape/inkscape/-/issues/2241 From 3db3f355bf43813fb2b8a30208ccb971e4ecf804 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:47 -0800 Subject: [PATCH 049/114] keepalived: rebuild to fix ssp dependency --- srcpkgs/keepalived/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/keepalived/template b/srcpkgs/keepalived/template index 1d2ef18ca470..02a463bb7b6b 100644 --- a/srcpkgs/keepalived/template +++ b/srcpkgs/keepalived/template @@ -1,7 +1,7 @@ # Template file for 'keepalived' pkgname=keepalived version=2.2.7 -revision=1 +revision=2 build_style=gnu-configure configure_args="--enable-sha1" hostmakedepends="pkg-config" From f7a9ab999332b584effbea67587296e00e5513e1 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:47 -0800 Subject: [PATCH 050/114] keepassxc: rebuild to fix ssp dependency --- srcpkgs/keepassxc/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/keepassxc/template b/srcpkgs/keepassxc/template index 863d615b6aa3..2128f7c2d812 100644 --- a/srcpkgs/keepassxc/template +++ b/srcpkgs/keepassxc/template @@ -1,7 +1,7 @@ # Template file for 'keepassxc' pkgname=keepassxc version=2.7.4 -revision=1 +revision=2 build_style=cmake configure_args="-DWITH_TESTS=ON -DWITH_XC_UPDATECHECK=OFF -DWITH_XC_DOCS=ON -DWITH_XC_AUTOTYPE=$(vopt_if autotype ON OFF) From 5beb4eb19ce8d6ae129cfd141dffd945f456d7af Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:47 -0800 Subject: [PATCH 051/114] kitty: rebuild to fix ssp dependency --- srcpkgs/kitty/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kitty/template b/srcpkgs/kitty/template index 9893313ce079..906f40338346 100644 --- a/srcpkgs/kitty/template +++ b/srcpkgs/kitty/template @@ -1,7 +1,7 @@ # Template file for 'kitty' pkgname=kitty version=0.26.3 -revision=2 +revision=3 pycompile_dirs="usr/lib/kitty" hostmakedepends="pkg-config python3 wayland-devel wayland-protocols" makedepends="gettext-devel glfw-devel harfbuzz-devel libxkbcommon-devel From 82f4c9d803e1158e8a0b0aad8557b4f7c9a6d97e Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:47 -0800 Subject: [PATCH 052/114] kmscon: rebuild to fix ssp dependency --- srcpkgs/kmscon/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kmscon/template b/srcpkgs/kmscon/template index 0683ed5d0ce7..11bebea3f017 100644 --- a/srcpkgs/kmscon/template +++ b/srcpkgs/kmscon/template @@ -1,7 +1,7 @@ # Template file for 'kmscon' pkgname=kmscon version=8 -revision=7 +revision=8 build_style=gnu-configure configure_args="--disable-static --disable-multi-seat" hostmakedepends="pkg-config docbook-xsl xkeyboard-config libxslt" From fae099245edbb461731f56e353f1cc8ce4270b10 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:47 -0800 Subject: [PATCH 053/114] kstars: rebuild to fix ssp dependency --- srcpkgs/kstars/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kstars/template b/srcpkgs/kstars/template index ebbb3140fcaa..661cbdcde170 100644 --- a/srcpkgs/kstars/template +++ b/srcpkgs/kstars/template @@ -1,7 +1,7 @@ # Template file for 'kstars' pkgname=kstars version=3.6.0 -revision=2 +revision=3 build_style=cmake hostmakedepends="kdoctools gettext qt5-host-tools qt5-qmake kcoreaddons kconfig" From fb0788dfebacee010b20fa3e2fca6256defa662c Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:48 -0800 Subject: [PATCH 054/114] libcotp: rebuild to fix ssp dependency --- srcpkgs/libcotp/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libcotp/template b/srcpkgs/libcotp/template index 3cd17d10bd84..701d3324137d 100644 --- a/srcpkgs/libcotp/template +++ b/srcpkgs/libcotp/template @@ -1,7 +1,7 @@ # Template file for 'libcotp' pkgname=libcotp version=1.2.4 -revision=1 +revision=2 build_style=cmake hostmakedepends="pkg-config" makedepends="libbaseencode-devel libgcrypt-devel" From 49369763988d49e29a18781edab15cf0e0704e1d Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:48 -0800 Subject: [PATCH 055/114] libhtp: rebuild to fix ssp dependency --- srcpkgs/libhtp/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libhtp/template b/srcpkgs/libhtp/template index 38ceef8b9704..515fd4dac2a5 100644 --- a/srcpkgs/libhtp/template +++ b/srcpkgs/libhtp/template @@ -1,7 +1,7 @@ # Template file for 'libhtp' pkgname=libhtp version=0.5.36 -revision=1 +revision=2 build_style=gnu-configure hostmakedepends="automake libtool" makedepends="zlib-devel" From f4beffe7303d5ca5a7d3d7b9a972db139d3e00e6 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:48 -0800 Subject: [PATCH 056/114] libknet1: rebuild to fix ssp dependency --- srcpkgs/libknet1/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libknet1/template b/srcpkgs/libknet1/template index 6a62a9626faa..4405948d816d 100644 --- a/srcpkgs/libknet1/template +++ b/srcpkgs/libknet1/template @@ -2,7 +2,7 @@ # only libraries and development files now, if interested in kronosnetd update! pkgname=libknet1 version=1.24 -revision=1 +revision=2 build_style=gnu-configure configure_args="--disable-dependency-tracking --disable-libknet-sctp --disable-static $(vopt_enable man)" From 2b9aaca9d564509ba9b93b4ddd078679aef1a4fe Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:48 -0800 Subject: [PATCH 057/114] libtls: rebuild to fix ssp dependency --- srcpkgs/libtls/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/libtls/template b/srcpkgs/libtls/template index 40412b1e7852..623c1303b778 100644 --- a/srcpkgs/libtls/template +++ b/srcpkgs/libtls/template @@ -1,7 +1,7 @@ # Template file for 'libtls' pkgname=libtls version=3.6.1 -revision=1 +revision=2 build_style=gnu-configure configure_args="--enable-libtls-only --enable-nc $(vopt_enable asm)" hostmakedepends="automake libtool" @@ -35,7 +35,7 @@ esac post_extract() { [ -z "$build_option_asm" ] && return 0 - mv ../libressl-portable-asm-${_lssl_asm_ver} . + mv libressl-${version}/* . } pre_configure() { From ec85da10135b2222db5310ce0780b4a84d629f20 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:48 -0800 Subject: [PATCH 058/114] libtpms: rebuild to fix ssp dependency --- srcpkgs/libtpms/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libtpms/template b/srcpkgs/libtpms/template index ad897ea2a623..5ad562dcdb13 100644 --- a/srcpkgs/libtpms/template +++ b/srcpkgs/libtpms/template @@ -1,7 +1,7 @@ # Template file for 'libtpms' pkgname=libtpms version=0.9.4 -revision=1 +revision=2 build_style=gnu-configure hostmakedepends="libtool automake pkg-config" makedepends="openssl-devel" From c7a7b5a56e82e7300aad6090632a24efd8f9f6e8 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:48 -0800 Subject: [PATCH 059/114] linux-tools: rebuild to fix ssp dependency --- srcpkgs/linux-tools/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/linux-tools/template b/srcpkgs/linux-tools/template index 77e4cccaaa33..baf111b170ec 100644 --- a/srcpkgs/linux-tools/template +++ b/srcpkgs/linux-tools/template @@ -1,7 +1,7 @@ # Template file for 'linux-tools' pkgname=linux-tools version=5.10.4 -revision=10 +revision=11 build_style=meta hostmakedepends="asciidoc automake flex gettext libtool perl python3 python3-docutils xmlto" From 2abaa2a1565d6f04056df5c7cb772ce2901f2df4 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:48 -0800 Subject: [PATCH 060/114] litecoin: rebuild to fix ssp dependency --- srcpkgs/litecoin/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/litecoin/template b/srcpkgs/litecoin/template index 7a188c3c9af8..37f3a348d287 100644 --- a/srcpkgs/litecoin/template +++ b/srcpkgs/litecoin/template @@ -1,7 +1,7 @@ # Template file for 'litecoin' pkgname=litecoin version=0.18.1 -revision=8 +revision=9 build_style=gnu-configure configure_args="--with-incompatible-bdb --with-gui=qt5 --disable-static --disable-tests --with-openssl" From 9c3dbcb5e4bd572dcdb85f0e4b643bced4b26ca0 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:48 -0800 Subject: [PATCH 061/114] lldpd: rebuild to fix ssp dependency --- srcpkgs/lldpd/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/lldpd/template b/srcpkgs/lldpd/template index bb103044a0c2..970c1bc6582e 100644 --- a/srcpkgs/lldpd/template +++ b/srcpkgs/lldpd/template @@ -1,7 +1,7 @@ # Template file for 'lldpd' pkgname=lldpd version=1.0.11 -revision=2 +revision=3 build_style=gnu-configure configure_args="--with-privsep-chroot=/var/empty" hostmakedepends="pkg-config" From 0cc4b34f32b931877dfe7ad35a922b237d1e5f4a Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:48 -0800 Subject: [PATCH 062/114] mariadb: rebuild to fix ssp dependency --- srcpkgs/mariadb/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/mariadb/template b/srcpkgs/mariadb/template index 8d9b0c42edda..71409f89930c 100644 --- a/srcpkgs/mariadb/template +++ b/srcpkgs/mariadb/template @@ -1,7 +1,7 @@ # Template file for 'mariadb' pkgname=mariadb version=10.5.10 -revision=3 +revision=4 build_style=cmake build_helper=qemu configure_args="-DBUILD_CONFIG=mysql_release From fd842bc1bc2735c1177b6a8994256d97c4fdac4b Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:48 -0800 Subject: [PATCH 063/114] massdns: rebuild to fix ssp dependency --- srcpkgs/massdns/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/massdns/template b/srcpkgs/massdns/template index d26c67a19e68..bc2c9c2c25b6 100644 --- a/srcpkgs/massdns/template +++ b/srcpkgs/massdns/template @@ -1,7 +1,7 @@ # Template file for 'massdns' pkgname=massdns version=1.0.0 -revision=1 +revision=2 build_style=gnu-makefile short_desc="High-performance DNS stub resolver for bulk lookups and reconnaissance" maintainer="Antoine Guilbaud " From e76b70ec68526a2c4bd4cb2af2ea74e33cf999c2 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:49 -0800 Subject: [PATCH 064/114] mksh: rebuild to fix ssp dependency --- srcpkgs/mksh/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/mksh/template b/srcpkgs/mksh/template index c64174cf33d5..1054d4194321 100644 --- a/srcpkgs/mksh/template +++ b/srcpkgs/mksh/template @@ -1,7 +1,7 @@ # Template file for 'mksh' pkgname=mksh version=R59c -revision=1 +revision=2 checkdepends="perl ed" short_desc="MirBSD Korn Shell" maintainer="Andrea Brancaleoni " From 9a10448a67881b5504b7a76961eb5ef99668ae6f Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:49 -0800 Subject: [PATCH 065/114] mkvtoolnix: rebuild to fix ssp dependency --- srcpkgs/mkvtoolnix/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/mkvtoolnix/template b/srcpkgs/mkvtoolnix/template index bd1cb0fd71e4..0810993c7458 100644 --- a/srcpkgs/mkvtoolnix/template +++ b/srcpkgs/mkvtoolnix/template @@ -1,7 +1,7 @@ # Template file for 'mkvtoolnix' pkgname=mkvtoolnix version=72.0.0 -revision=1 +revision=2 build_style=gnu-configure build_helper=qmake configure_args="--with-docbook-xsl-root=/usr/share/xsl/docbook --enable-qt From 815cddbb084a3529ce0ef66069e2db55c2e572e2 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:49 -0800 Subject: [PATCH 066/114] monero: rebuild to fix ssp dependency --- srcpkgs/monero/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/monero/template b/srcpkgs/monero/template index 89b398d29781..7385c102eda5 100644 --- a/srcpkgs/monero/template +++ b/srcpkgs/monero/template @@ -1,7 +1,7 @@ # Template file for 'monero' pkgname=monero version=0.18.1.2 -revision=1 +revision=2 # the revision monero uses as a submodule for the specific version _randomx_gitrev="261d58c77fc5547c0aa7fdfeb58421ba7e0e6e1c" _rapidjson_gitrev="129d19ba7f496df5e33658527a7158c79b99c21c" From e13329c5c465033f1424a05984950d93213ba2d0 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:49 -0800 Subject: [PATCH 067/114] monero-gui: rebuild to fix ssp dependency --- srcpkgs/monero-gui/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/monero-gui/template b/srcpkgs/monero-gui/template index 13f4c41d21a6..03f852bf6f6d 100644 --- a/srcpkgs/monero-gui/template +++ b/srcpkgs/monero-gui/template @@ -1,7 +1,7 @@ # Template file for 'monero-gui' pkgname=monero-gui version=0.18.1.2 -revision=1 +revision=2 _monero_version=0.18.1.2 # the revision monero uses as a submodule for the specific version _randomx_gitrev="261d58c77fc5547c0aa7fdfeb58421ba7e0e6e1c" From 7aa8666b0fc7bb0495b6e2009aeb7b69d72de2bb Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:49 -0800 Subject: [PATCH 068/114] monit: rebuild to fix ssp dependency --- srcpkgs/monit/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/monit/template b/srcpkgs/monit/template index b10596c639d6..be8e8d95df85 100644 --- a/srcpkgs/monit/template +++ b/srcpkgs/monit/template @@ -1,7 +1,7 @@ # Template file for 'monit' pkgname=monit version=5.32.0 -revision=1 +revision=2 build_style=gnu-configure configure_args=" --with-ssl-dir=${XBPS_CROSS_BASE}/usr From e171bf68ad6defb261b6463cb3008f12a40a1f8d Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:49 -0800 Subject: [PATCH 069/114] mosh: rebuild to fix ssp dependency --- srcpkgs/mosh/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/mosh/template b/srcpkgs/mosh/template index 105cbae7aead..173ba14bcd47 100644 --- a/srcpkgs/mosh/template +++ b/srcpkgs/mosh/template @@ -1,7 +1,7 @@ # Template file for 'mosh' pkgname=mosh version=1.4.0 -revision=2 +revision=3 build_style=gnu-configure hostmakedepends="perl pkg-config protobuf" makedepends="ncurses-devel protobuf-devel libutempter-devel openssl-devel" From e63da29415173cb123643906013608354bbddbd9 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:49 -0800 Subject: [PATCH 070/114] mozjs102: rebuild to fix ssp dependency --- srcpkgs/mozjs102/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/mozjs102/template b/srcpkgs/mozjs102/template index 46e72e65d429..9af3a545b0d8 100644 --- a/srcpkgs/mozjs102/template +++ b/srcpkgs/mozjs102/template @@ -1,7 +1,7 @@ # Template file for 'mozjs102' pkgname=mozjs102 version=102.5.0 -revision=1 +revision=2 build_wrksrc=js/src build_style=gnu-configure build_helper=rust From 7050711a4a0655fdaf641683329c327d11349ea1 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:49 -0800 Subject: [PATCH 071/114] mozjs78: rebuild to fix ssp dependency --- srcpkgs/mozjs78/patches/python-3.11.patch | 131 ++++++++++++++++++++++ srcpkgs/mozjs78/template | 2 +- 2 files changed, 132 insertions(+), 1 deletion(-) create mode 100644 srcpkgs/mozjs78/patches/python-3.11.patch diff --git a/srcpkgs/mozjs78/patches/python-3.11.patch b/srcpkgs/mozjs78/patches/python-3.11.patch new file mode 100644 index 000000000000..a44761f8b620 --- /dev/null +++ b/srcpkgs/mozjs78/patches/python-3.11.patch @@ -0,0 +1,131 @@ +From 964834abba3b093385409f1d594835ad94362def Mon Sep 17 00:00:00 2001 +From: ahochheiden +Date: Thu, 2 Jun 2022 06:27:44 +0000 +Subject: [PATCH] Bug 1769631 - Remove 'U' from 'mode' parameters for various + 'open' calls to ensure Python3.11 compatibility + r=firefox-build-system-reviewers,glandium + +The 'U' flag represents "universal newline". It has been deprecated +since Python3.3. Since then "universal newline" is the default when a +file is opened in text mode (not bytes). In Python3.11 using the 'U' +flag throws errors. There should be no harm in removing 'U' from 'open' +everywhere it is used, and doing allows the use of Python3.11. + +For more reading see: https://docs.python.org/3.11/whatsnew/3.11.html#changes-in-the-python-api + +Differential Revision: https://phabricator.services.mozilla.com/D147721 +--- + dom/base/usecounters.py | 2 +- + python/mozbuild/mozbuild/action/process_define_files.py | 2 +- + python/mozbuild/mozbuild/backend/base.py | 2 +- + python/mozbuild/mozbuild/preprocessor.py | 6 +++--- + python/mozbuild/mozbuild/util.py | 2 +- + python/mozbuild/mozpack/files.py | 4 ++-- + 6 files changed, 9 insertions(+), 9 deletions(-) + +diff --git a/dom/base/usecounters.py b/dom/base/usecounters.py +index 780e3b32b2131..7e2c7148ece55 100644 +--- a/dom/base/usecounters.py ++++ b/dom/base/usecounters.py +@@ -8,7 +8,7 @@ + + def read_conf(conf_filename): + # Can't read/write from a single StringIO, so make a new one for reading. +- stream = open(conf_filename, 'rU') ++ stream = open(conf_filename, 'r') + + def parse_counters(stream): + for line_num, line in enumerate(stream): +diff --git a/python/mozbuild/mozbuild/action/process_define_files.py b/python/mozbuild/mozbuild/action/process_define_files.py +index f1d401ac26006..aca59d0f05177 100644 +--- a/python/mozbuild/mozbuild/action/process_define_files.py ++++ b/python/mozbuild/mozbuild/action/process_define_files.py +@@ -36,7 +36,7 @@ def process_define_file(output, input): + not config.substs.get('JS_STANDALONE'): + config = PartialConfigEnvironment(mozpath.join(topobjdir, 'js', 'src')) + +- with open(path, 'rU') as input: ++ with open(path, 'r') as input: + r = re.compile('^\s*#\s*(?P[a-z]+)(?:\s+(?P\S+)(?:\s+(?P\S+))?)?', re.U) + for l in input: + m = r.match(l) + +diff --git a/python/mozbuild/mozbuild/backend/base.py b/python/mozbuild/mozbuild/backend/base.py +index 7bc1986d863b5..b64a70946863d 100644 +--- a/python/mozbuild/mozbuild/backend/base.py ++++ b/python/mozbuild/mozbuild/backend/base.py +@@ -272,7 +272,7 @@ def post_build(self, config, output, jobs, verbose, status): + return status + + @contextmanager +- def _write_file(self, path=None, fh=None, readmode='rU'): ++ def _write_file(self, path=None, fh=None, readmode='r'): + """Context manager to write a file. + + This is a glorified wrapper around FileAvoidWrite with integration to +diff --git a/python/mozbuild/mozbuild/preprocessor.py b/python/mozbuild/mozbuild/preprocessor.py +index f7820b9c91473..857f1a6c9bfd1 100644 +--- a/python/mozbuild/mozbuild/preprocessor.py ++++ b/python/mozbuild/mozbuild/preprocessor.py +@@ -531,7 +531,7 @@ def get_output_file(path, encoding=None): + + if args: + for f in args: +- with io.open(f, 'rU', encoding='utf-8') as input: ++ with io.open(f, 'r', encoding='utf-8') as input: + self.processFile(input=input, output=out) + if depfile: + mk = Makefile() +@@ -860,7 +860,7 @@ def do_include(self, args, filters=True): + args = self.applyFilters(args) + if not os.path.isabs(args): + args = os.path.join(self.curdir, args) +- args = io.open(args, 'rU', encoding='utf-8') ++ args = io.open(args, 'r', encoding='utf-8') + except Preprocessor.Error: + raise + except Exception: +@@ -914,7 +914,7 @@ def do_error(self, args): + def preprocess(includes=[sys.stdin], defines={}, output=sys.stdout, marker='#'): + pp = Preprocessor(defines=defines, marker=marker) + for f in includes: +- with io.open(f, 'rU', encoding='utf-8') as input: ++ with io.open(f, 'r', encoding='utf-8') as input: + pp.processFile(input=input, output=output) + return pp.includes + +diff --git a/python/mozbuild/mozbuild/util.py b/python/mozbuild/mozbuild/util.py +index b09f1646988f0..4f1e0cdc5f568 100644 +--- a/python/mozbuild/mozbuild/util.py ++++ b/python/mozbuild/mozbuild/util.py +@@ -236,7 +236,7 @@ class FileAvoidWrite(BytesIO): + still occur, as well as diff capture if requested. + """ + +- def __init__(self, filename, capture_diff=False, dry_run=False, readmode='rU'): ++ def __init__(self, filename, capture_diff=False, dry_run=False, readmode='r'): + BytesIO.__init__(self) + self.name = filename + assert type(capture_diff) == bool +diff --git a/python/mozbuild/mozpack/files.py b/python/mozbuild/mozpack/files.py +index 1d8a1ed2d8a7e..a295a67b5a34f 100644 +--- a/python/mozbuild/mozpack/files.py ++++ b/python/mozbuild/mozpack/files.py +@@ -554,7 +554,7 @@ def inputs(self): + pp = Preprocessor(defines=self.defines, marker=self.marker) + pp.setSilenceDirectiveWarnings(self.silence_missing_directive_warnings) + +- with _open(self.path, 'rU') as input: ++ with _open(self.path, 'r') as input: + with _open(os.devnull, 'w') as output: + pp.processFile(input=input, output=output) + +@@ -611,7 +611,7 @@ def copy(self, dest, skip_if_older=True): + pp = Preprocessor(defines=self.defines, marker=self.marker) + pp.setSilenceDirectiveWarnings(self.silence_missing_directive_warnings) + +- with _open(self.path, 'rU') as input: ++ with _open(self.path, 'r') as input: + pp.processFile(input=input, output=dest, depfile=deps_out) + + dest.close() diff --git a/srcpkgs/mozjs78/template b/srcpkgs/mozjs78/template index 3260ea0dae1d..70d953dccd7c 100644 --- a/srcpkgs/mozjs78/template +++ b/srcpkgs/mozjs78/template @@ -1,7 +1,7 @@ # Template file for 'mozjs78' pkgname=mozjs78 version=78.9.0 -revision=5 +revision=6 build_wrksrc=js/src build_style=gnu-configure build_helper=rust From abc6cdbcf46df0297c14f3e9dd1e983dc2376ac6 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:49 -0800 Subject: [PATCH 072/114] mozjs91: rebuild to fix ssp dependency --- srcpkgs/mozjs91/patches/python-3.11.patch | 130 ++++++++++++++++++++++ srcpkgs/mozjs91/template | 2 +- 2 files changed, 131 insertions(+), 1 deletion(-) create mode 100644 srcpkgs/mozjs91/patches/python-3.11.patch diff --git a/srcpkgs/mozjs91/patches/python-3.11.patch b/srcpkgs/mozjs91/patches/python-3.11.patch new file mode 100644 index 000000000000..9098aa1ddae9 --- /dev/null +++ b/srcpkgs/mozjs91/patches/python-3.11.patch @@ -0,0 +1,130 @@ +From 964834abba3b093385409f1d594835ad94362def Mon Sep 17 00:00:00 2001 +From: ahochheiden +Date: Thu, 2 Jun 2022 06:27:44 +0000 +Subject: [PATCH] Bug 1769631 - Remove 'U' from 'mode' parameters for various + 'open' calls to ensure Python3.11 compatibility + r=firefox-build-system-reviewers,glandium + +The 'U' flag represents "universal newline". It has been deprecated +since Python3.3. Since then "universal newline" is the default when a +file is opened in text mode (not bytes). In Python3.11 using the 'U' +flag throws errors. There should be no harm in removing 'U' from 'open' +everywhere it is used, and doing allows the use of Python3.11. + +For more reading see: https://docs.python.org/3.11/whatsnew/3.11.html#changes-in-the-python-api + +Differential Revision: https://phabricator.services.mozilla.com/D147721 +--- + dom/base/usecounters.py | 2 +- + python/mozbuild/mozbuild/action/process_define_files.py | 2 +- + python/mozbuild/mozbuild/backend/base.py | 2 +- + python/mozbuild/mozbuild/preprocessor.py | 6 +++--- + python/mozbuild/mozbuild/util.py | 2 +- + python/mozbuild/mozpack/files.py | 4 ++-- + 6 files changed, 9 insertions(+), 9 deletions(-) + +diff --git a/dom/base/usecounters.py b/dom/base/usecounters.py +index 780e3b32b2131..7e2c7148ece55 100644 +--- a/dom/base/usecounters.py ++++ b/dom/base/usecounters.py +@@ -8,7 +8,7 @@ + + def read_conf(conf_filename): + # Can't read/write from a single StringIO, so make a new one for reading. +- stream = open(conf_filename, "rU") ++ stream = open(conf_filename, "r") + + def parse_counters(stream): + for line_num, line in enumerate(stream): +diff --git a/python/mozbuild/mozbuild/action/process_define_files.py b/python/mozbuild/mozbuild/action/process_define_files.py +index f1d401ac26006..aca59d0f05177 100644 +--- a/python/mozbuild/mozbuild/action/process_define_files.py ++++ b/python/mozbuild/mozbuild/action/process_define_files.py +@@ -36,7 +36,7 @@ def process_define_file(output, input): + ) and not config.substs.get("JS_STANDALONE"): + config = PartialConfigEnvironment(mozpath.join(topobjdir, "js", "src")) + +- with open(path, "rU") as input: ++ with open(path, "r") as input: + r = re.compile( + "^\s*#\s*(?P[a-z]+)(?:\s+(?P\S+)(?:\s+(?P\S+))?)?", re.U + ) +diff --git a/python/mozbuild/mozbuild/backend/base.py b/python/mozbuild/mozbuild/backend/base.py +index 7bc1986d863b5..b64a70946863d 100644 +--- a/python/mozbuild/mozbuild/backend/base.py ++++ b/python/mozbuild/mozbuild/backend/base.py +@@ -272,7 +272,7 @@ def post_build(self, config, output, jobs, verbose, status): + return status + + @contextmanager +- def _write_file(self, path=None, fh=None, readmode="rU"): ++ def _write_file(self, path=None, fh=None, readmode="r"): + """Context manager to write a file. + + This is a glorified wrapper around FileAvoidWrite with integration to +diff --git a/python/mozbuild/mozbuild/preprocessor.py b/python/mozbuild/mozbuild/preprocessor.py +index f7820b9c91473..857f1a6c9bfd1 100644 +--- a/python/mozbuild/mozbuild/preprocessor.py ++++ b/python/mozbuild/mozbuild/preprocessor.py +@@ -531,7 +531,7 @@ def get_output_file(path, encoding=None): + + if args: + for f in args: +- with io.open(f, "rU", encoding="utf-8") as input: ++ with io.open(f, "r", encoding="utf-8") as input: + self.processFile(input=input, output=out) + if depfile: + mk = Makefile() +@@ -860,7 +860,7 @@ def do_include(self, args, filters=True): + args = self.applyFilters(args) + if not os.path.isabs(args): + args = os.path.join(self.curdir, args) +- args = io.open(args, "rU", encoding="utf-8") ++ args = io.open(args, "r", encoding="utf-8") + except Preprocessor.Error: + raise + except Exception: +@@ -914,7 +914,7 @@ def do_error(self, args): + def preprocess(includes=[sys.stdin], defines={}, output=sys.stdout, marker="#"): + pp = Preprocessor(defines=defines, marker=marker) + for f in includes: +- with io.open(f, "rU", encoding="utf-8") as input: ++ with io.open(f, "r", encoding="utf-8") as input: + pp.processFile(input=input, output=output) + return pp.includes + +diff --git a/python/mozbuild/mozbuild/util.py b/python/mozbuild/mozbuild/util.py +index b09f1646988f0..4f1e0cdc5f568 100644 +--- a/python/mozbuild/mozbuild/util.py ++++ b/python/mozbuild/mozbuild/util.py +@@ -236,7 +236,7 @@ class FileAvoidWrite(BytesIO): + still occur, as well as diff capture if requested. + """ + +- def __init__(self, filename, capture_diff=False, dry_run=False, readmode="rU"): ++ def __init__(self, filename, capture_diff=False, dry_run=False, readmode="r"): + BytesIO.__init__(self) + self.name = filename + assert type(capture_diff) == bool +diff --git a/python/mozbuild/mozpack/files.py b/python/mozbuild/mozpack/files.py +index 1d8a1ed2d8a7e..a295a67b5a34f 100644 +--- a/python/mozbuild/mozpack/files.py ++++ b/python/mozbuild/mozpack/files.py +@@ -554,7 +554,7 @@ def inputs(self): + pp = Preprocessor(defines=self.defines, marker=self.marker) + pp.setSilenceDirectiveWarnings(self.silence_missing_directive_warnings) + +- with _open(self.path, "rU") as input: ++ with _open(self.path, "r") as input: + with _open(os.devnull, "w") as output: + pp.processFile(input=input, output=output) + +@@ -611,7 +611,7 @@ def copy(self, dest, skip_if_older=True): + pp = Preprocessor(defines=self.defines, marker=self.marker) + pp.setSilenceDirectiveWarnings(self.silence_missing_directive_warnings) + +- with _open(self.path, "rU") as input: ++ with _open(self.path, "r") as input: + pp.processFile(input=input, output=dest, depfile=deps_out) + + dest.close() diff --git a/srcpkgs/mozjs91/template b/srcpkgs/mozjs91/template index 73fcd54ee76b..403d5bc4a36e 100644 --- a/srcpkgs/mozjs91/template +++ b/srcpkgs/mozjs91/template @@ -1,7 +1,7 @@ # Template file for 'mozjs91' pkgname=mozjs91 version=91.7.1 -revision=2 +revision=3 build_wrksrc=js/src build_style=gnu-configure build_helper=rust From 077aa12ebb28e63731aeaae4e6e7b668fe63a583 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:50 -0800 Subject: [PATCH 073/114] msg2: rebuild to fix ssp dependency --- srcpkgs/msg2/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/msg2/template b/srcpkgs/msg2/template index 473b3c4ec4d2..9984cea504eb 100644 --- a/srcpkgs/msg2/template +++ b/srcpkgs/msg2/template @@ -1,7 +1,7 @@ # Template file for 'msg2' pkgname=msg2 version=1.2.0 -revision=2 +revision=3 build_style=cmake short_desc="Output a blue arrow and a white message on the commandline" maintainer="Orphaned " From 057a22f7f07579876f70a06524b81f7b2f90b3a7 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:50 -0800 Subject: [PATCH 074/114] namecoin: rebuild to fix ssp dependency --- srcpkgs/namecoin/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/namecoin/template b/srcpkgs/namecoin/template index c775c32aeb0f..8af7f4987083 100644 --- a/srcpkgs/namecoin/template +++ b/srcpkgs/namecoin/template @@ -1,7 +1,7 @@ # Template file for 'namecoin' pkgname=namecoin version=0.18.1 -revision=6 +revision=7 build_style=gnu-configure configure_args="--with-incompatible-bdb --disable-static --enable-hardening --with-boost=${XBPS_CROSS_BASE}/usr" From 42e3ce0627d8d8a7ac09432e31b64fc2edfbd651 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:50 -0800 Subject: [PATCH 075/114] navit: rebuild to fix ssp dependency --- srcpkgs/navit/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/navit/template b/srcpkgs/navit/template index 58bc4610f288..caaa760fa936 100644 --- a/srcpkgs/navit/template +++ b/srcpkgs/navit/template @@ -1,7 +1,7 @@ # Template file for 'navit' pkgname=navit version=0.5.6 -revision=3 +revision=4 build_style=cmake configure_args="-DLIBDIR=lib/navit -DSAMPLE_MAP=n -Wno-dev" hostmakedepends="pkg-config qt5-host-tools qt5-qmake" From 556de78c322752cf1bab0aba2991eec7f5e4d88d Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:50 -0800 Subject: [PATCH 076/114] neovim: rebuild to fix ssp dependency --- srcpkgs/neovim/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/neovim/template b/srcpkgs/neovim/template index 81a8fc800c7c..dd2c7a166aa1 100644 --- a/srcpkgs/neovim/template +++ b/srcpkgs/neovim/template @@ -1,7 +1,7 @@ # Template file for 'neovim' pkgname=neovim version=0.8.1 -revision=1 +revision=2 build_style=cmake build_helper="qemu" configure_args="-DCMAKE_BUILD_TYPE=Release -DCOMPILE_LUA=OFF" From 4fae23cde3cbedf720c6991d879bb8029fe0f35a Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:50 -0800 Subject: [PATCH 077/114] ngircd: rebuild to fix ssp dependency --- srcpkgs/ngircd/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/ngircd/template b/srcpkgs/ngircd/template index 7634efdfdc20..1623ac116eca 100644 --- a/srcpkgs/ngircd/template +++ b/srcpkgs/ngircd/template @@ -1,7 +1,7 @@ # Template file for 'ngircd' pkgname=ngircd version=26 -revision=2 +revision=3 build_style=gnu-configure configure_args="--enable-ipv6 --with-openssl --without-ident ac_cv_func_getaddrinfo=yes" hostmakedepends="pkg-config" From 35fee0ee9537202fcc93c0232dee6ebd1b668b51 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:50 -0800 Subject: [PATCH 078/114] ntp: rebuild to fix ssp dependency --- srcpkgs/ntp/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/ntp/template b/srcpkgs/ntp/template index fa88f33f92b7..9a1906334682 100644 --- a/srcpkgs/ntp/template +++ b/srcpkgs/ntp/template @@ -1,7 +1,7 @@ # Template file for 'ntp' pkgname=ntp version=4.2.8p15 -revision=5 +revision=6 build_style=gnu-configure configure_args="--with-crypto --enable-linuxcap --enable-ipv6 --enable-ntp-signd --enable-all-clocks ol_cv_pthread_select_yields=yes" From 0c8848405af6745057f4ecbc0067e0b968c07e77 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:50 -0800 Subject: [PATCH 079/114] openjdk8: rebuild to fix ssp dependency --- srcpkgs/openjdk8/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/openjdk8/template b/srcpkgs/openjdk8/template index 25a93b300a92..c0b363758db0 100644 --- a/srcpkgs/openjdk8/template +++ b/srcpkgs/openjdk8/template @@ -4,7 +4,7 @@ # TODO: config files? pkgname=openjdk8 version=8u322b04 -revision=3 +revision=4 _jdk_update="${version#*u}" _jdk_update="${_jdk_update%b*}" _jdk_build="${version#*b}" From a7bd9be58c8d6bcfdaeb6c1541c12a6afb1fa30e Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:50 -0800 Subject: [PATCH 080/114] openssh: rebuild to fix ssp dependency --- srcpkgs/openssh/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/openssh/template b/srcpkgs/openssh/template index 2eb9f32405e6..e0169a65dc8c 100644 --- a/srcpkgs/openssh/template +++ b/srcpkgs/openssh/template @@ -1,7 +1,7 @@ # Template file for 'openssh' pkgname=openssh version=9.1p1 -revision=2 +revision=3 build_style=gnu-configure configure_args="--datadir=/usr/share/openssh --sysconfdir=/etc/ssh --without-selinux --with-privsep-user=nobody From 8890294f63a8de84b0aed8905024c18d8e615716 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:51 -0800 Subject: [PATCH 081/114] p0f: rebuild to fix ssp dependency --- srcpkgs/p0f/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/p0f/template b/srcpkgs/p0f/template index 26643a09fdb2..1ac9b2f8ea8f 100644 --- a/srcpkgs/p0f/template +++ b/srcpkgs/p0f/template @@ -1,7 +1,7 @@ # Template file for 'p0f' pkgname=p0f version=3.09b -revision=3 +revision=4 makedepends="libpcap-devel" short_desc="Passive OS fingerprinting tool" maintainer="Orphaned " From 4dfaa213e1b8faaa36423fc57c87d085dcc6d890 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:51 -0800 Subject: [PATCH 082/114] pam_ssh_agent_auth: rebuild to fix ssp dependency --- srcpkgs/pam_ssh_agent_auth/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/pam_ssh_agent_auth/template b/srcpkgs/pam_ssh_agent_auth/template index 507448245108..b35511fec684 100644 --- a/srcpkgs/pam_ssh_agent_auth/template +++ b/srcpkgs/pam_ssh_agent_auth/template @@ -1,7 +1,7 @@ # Template file for 'pam_ssh_agent_auth' pkgname=pam_ssh_agent_auth version=0.10.3 -revision=3 +revision=4 build_style=gnu-configure configure_args="--without-openssl-header-check" hostmakedepends="perl" From 66760fa0074d10a8a542d2f3ff232fb1e5c19539 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:51 -0800 Subject: [PATCH 083/114] pax: rebuild to fix ssp dependency --- srcpkgs/pax/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/pax/template b/srcpkgs/pax/template index bb2913645b6e..60a00694ef95 100644 --- a/srcpkgs/pax/template +++ b/srcpkgs/pax/template @@ -1,7 +1,7 @@ # Template file for 'pax' pkgname=pax version=20201030 -revision=1 +revision=2 build_wrksrc="${pkgname}" hostmakedepends="cpio" short_desc="POSIX archiving utility pax from MirOS (plus tar and cpio)" From 442c5de01c8f6eeabf5d64650d2eca18eaf7a230 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:51 -0800 Subject: [PATCH 084/114] powertop: rebuild to fix ssp dependency --- srcpkgs/powertop/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/powertop/template b/srcpkgs/powertop/template index 76688ab6f8c7..24e5dd434fcd 100644 --- a/srcpkgs/powertop/template +++ b/srcpkgs/powertop/template @@ -1,7 +1,7 @@ # Template file for 'powertop' pkgname=powertop version=2.14 -revision=2 +revision=3 build_style=gnu-configure hostmakedepends="automake gettext-devel libtool pkg-config" makedepends="ncurses-devel pciutils-devel libnl3-devel" From 2e2df3b03054c0ecd82b2cec928143324c8b207b Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:51 -0800 Subject: [PATCH 085/114] qemu: rebuild to fix ssp dependency --- srcpkgs/qemu/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/qemu/template b/srcpkgs/qemu/template index b19ccffa0bab..48ab199e5686 100644 --- a/srcpkgs/qemu/template +++ b/srcpkgs/qemu/template @@ -2,7 +2,7 @@ # This package should be updated together with qemu-user-static pkgname=qemu version=7.1.0 -revision=1 +revision=2 build_style=configure configure_args="--prefix=/usr --sysconfdir=/etc --libexecdir=/usr/libexec --localstatedir=/var --disable-glusterfs --disable-xen --enable-docs --enable-kvm --enable-libusb --enable-pie From d401f1c9a772bcfade1032ead68de5c3736edcef Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:51 -0800 Subject: [PATCH 086/114] qemu-user-static: rebuild to fix ssp dependency --- srcpkgs/qemu-user-static/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/qemu-user-static/template b/srcpkgs/qemu-user-static/template index 399ac617ead7..589f43d1f007 100644 --- a/srcpkgs/qemu-user-static/template +++ b/srcpkgs/qemu-user-static/template @@ -2,11 +2,11 @@ # This package should be updated together with qemu pkgname=qemu-user-static version=7.1.0 -revision=1 +revision=2 build_style=configure configure_args="--prefix=/usr --sysconfdir=/etc --libexecdir=/usr/libexec --disable-kvm --disable-png --disable-virtfs --disable-fdt --disable-seccomp - --enable-linux-user --disable-system --static" + --enable-linux-user --disable-system --disable-pie --static" hostmakedepends="pkg-config perl python3 ninja" makedepends="dtc-devel libglib-devel pixman-devel libuuid-devel" short_desc="QEMU User-mode emulators (statically compiled)" From fa8a437f2fcf29ad83bf139a660bc161465aed11 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:51 -0800 Subject: [PATCH 087/114] qtox: rebuild to fix ssp dependency --- srcpkgs/qtox/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/qtox/template b/srcpkgs/qtox/template index b559aea1ec83..16019d7eaec9 100644 --- a/srcpkgs/qtox/template +++ b/srcpkgs/qtox/template @@ -1,7 +1,7 @@ # Template file for 'qtox' pkgname=qtox version=1.17.6 -revision=1 +revision=2 build_style=cmake configure_args="-DUPDATE_CHECK=OFF -DGIT_DESCRIBE=${version} From a43be8d041d09cb7e1c799ddbd2304ee4e0e705d Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:51 -0800 Subject: [PATCH 088/114] raft: rebuild to fix ssp dependency --- srcpkgs/raft/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/raft/template b/srcpkgs/raft/template index 39cd14ecf3e8..234a5a6da37f 100644 --- a/srcpkgs/raft/template +++ b/srcpkgs/raft/template @@ -1,7 +1,7 @@ # Template file for 'raft' pkgname=raft version=0.16.0 -revision=1 +revision=2 build_style=gnu-configure configure_args="--enable-example=no" hostmakedepends="pkg-config autoconf automake libtool" From bf7fa77847c403a58dcc38d0adb79f3b67f253f5 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:51 -0800 Subject: [PATCH 089/114] ruby: rebuild to fix ssp dependency --- srcpkgs/ruby/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/ruby/template b/srcpkgs/ruby/template index a2b2684db3ca..c071d2c25bff 100644 --- a/srcpkgs/ruby/template +++ b/srcpkgs/ruby/template @@ -3,7 +3,7 @@ _ruby_abiver=3.1.0 pkgname=ruby version=3.1.3 -revision=1 +revision=2 build_style=gnu-configure configure_args="--enable-shared --disable-rpath PKG_CONFIG=/usr/bin/pkg-config" From cc7b2dfcaeac173af24b446d8dce939f9ec7d992 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:52 -0800 Subject: [PATCH 090/114] sox: rebuild to fix ssp dependency --- srcpkgs/sox/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/sox/template b/srcpkgs/sox/template index 1f5f8a43da09..89cf177771ca 100644 --- a/srcpkgs/sox/template +++ b/srcpkgs/sox/template @@ -1,7 +1,7 @@ # Template file for 'sox' pkgname=sox version=14.4.2 -revision=5 +revision=6 build_style=gnu-configure configure_args="--with-distro=Void" hostmakedepends="pkg-config" From ae54668f01802f3ccca6b5dad7ef999e1dda6af8 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:52 -0800 Subject: [PATCH 091/114] stlink: rebuild to fix ssp dependency --- srcpkgs/stlink/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/stlink/template b/srcpkgs/stlink/template index 44788bd15f25..db3e75ed2b1c 100644 --- a/srcpkgs/stlink/template +++ b/srcpkgs/stlink/template @@ -1,7 +1,7 @@ # Template file for 'stlink' pkgname=stlink version=1.7.0 -revision=1 +revision=2 build_style=cmake configure_args="-DSTLINK_UDEV_RULES_DIR=/usr/lib/udev/rules.d -DSTLINK_MODPROBED_DIR=/usr/lib/modprobe.d -DSTLINK_LIBRARY_PATH=/usr/lib" From 909d65a2772c549fafcb7e77ae3f1b97fc694dd6 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:52 -0800 Subject: [PATCH 092/114] stunnel: rebuild to fix ssp dependency --- srcpkgs/stunnel/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/stunnel/template b/srcpkgs/stunnel/template index 9ad351e9e190..6c766d4c8181 100644 --- a/srcpkgs/stunnel/template +++ b/srcpkgs/stunnel/template @@ -1,7 +1,7 @@ # Template file for 'stunnel' pkgname=stunnel version=5.66 -revision=1 +revision=2 build_style=gnu-configure configure_args="--enable-ipv6 --with-ssl=${XBPS_CROSS_BASE}/usr" hostmakedepends="perl" @@ -12,7 +12,7 @@ maintainer="Toyam Cox " license="GPL-2.0-or-later" homepage="https://www.stunnel.org/" changelog="https://www.stunnel.org/NEWS.html" -distfiles="https://www.stunnel.org/downloads/stunnel-${version}.tar.gz" +distfiles="https://www.stunnel.org/archive/${version%%.*}.x/stunnel-${version}.tar.gz" checksum=558178704d1aa5f6883aac6cc5d6bbf2a5714c8a0d2e91da0392468cee9f579c pre_check() { From 89829ae7e8554160161f39452a1e8071881e6125 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:52 -0800 Subject: [PATCH 093/114] subtle: rebuild to fix ssp dependency --- srcpkgs/subtle/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/subtle/template b/srcpkgs/subtle/template index a60bd06c540c..1f41155a11ad 100644 --- a/srcpkgs/subtle/template +++ b/srcpkgs/subtle/template @@ -1,7 +1,7 @@ # Template file for 'subtle' pkgname=subtle version=0.11.6579 -revision=3 +revision=4 hostmakedepends="python3 mercurial ruby-devel pkg-config" makedepends="ruby-devel libX11-devel libXpm-devel libXft-devel libXinerama-devel libXrandr-devel libXtst-devel" From 548d93c3ca90ea08c8cc5ab2940baa6af439932a Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:52 -0800 Subject: [PATCH 094/114] sudo: rebuild to fix ssp dependency --- srcpkgs/sudo/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/sudo/template b/srcpkgs/sudo/template index b28ced997ea8..5ac492ff8c44 100644 --- a/srcpkgs/sudo/template +++ b/srcpkgs/sudo/template @@ -1,7 +1,7 @@ # Template file for 'sudo' pkgname=sudo version=1.9.11p3 -revision=1 +revision=2 build_style=gnu-configure configure_args="--with-ignore-dot --with-insults=disabled --with-all-insults --with-env-editor --enable-shell-sets-home --enable-noargs-shell --without-sendmail From 434841462532e9158ff04a1bc7bc1efc9a0058c0 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:52 -0800 Subject: [PATCH 095/114] svt-av1: rebuild to fix ssp dependency --- srcpkgs/svt-av1/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/svt-av1/template b/srcpkgs/svt-av1/template index f51642d31f18..3ca728ac94c8 100644 --- a/srcpkgs/svt-av1/template +++ b/srcpkgs/svt-av1/template @@ -1,7 +1,7 @@ # Template file for 'svt-av1' pkgname=svt-av1 version=1.4.1 -revision=1 +revision=2 build_style=cmake hostmakedepends="nasm" short_desc="AV1-compliant encoder/decoder library core" From f8d884f287246d09fad89c8589b8fa12a8a2c94a Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:52 -0800 Subject: [PATCH 096/114] swirc: rebuild to fix ssp dependency --- srcpkgs/swirc/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/swirc/template b/srcpkgs/swirc/template index 7e266732d990..dab99fe2f020 100644 --- a/srcpkgs/swirc/template +++ b/srcpkgs/swirc/template @@ -1,7 +1,7 @@ # Template file for 'swirc' pkgname=swirc version=3.3.8 -revision=1 +revision=2 build_style=configure configure_args="$(vopt_with notify libnotify)" make_build_args="PREFIX=/usr" From 0d4f581f6fbda925bcd9859a63e6b0faf2ffa14e Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:52 -0800 Subject: [PATCH 097/114] swtpm: rebuild to fix ssp dependency --- srcpkgs/swtpm/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/swtpm/template b/srcpkgs/swtpm/template index d1eeb0a56a5f..00efbac27374 100644 --- a/srcpkgs/swtpm/template +++ b/srcpkgs/swtpm/template @@ -1,7 +1,7 @@ # Template file for 'swtpm' pkgname=swtpm version=0.7.3 -revision=1 +revision=2 build_style=gnu-configure configure_args="--with-gnutls ac_cv_path_TCSD=" hostmakedepends="libtool automake pkg-config iproute2 expect From cf3d9b1ef3e7b5f0499ee11a2688c6afcc3d24c7 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:52 -0800 Subject: [PATCH 098/114] tcltls: rebuild to fix ssp dependency --- srcpkgs/tcltls/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/tcltls/template b/srcpkgs/tcltls/template index ffd98107f706..7f02d2e810f3 100644 --- a/srcpkgs/tcltls/template +++ b/srcpkgs/tcltls/template @@ -1,7 +1,7 @@ # Template file for 'tcltls' pkgname=tcltls version=1.7.22 -revision=1 +revision=2 build_style=gnu-configure configure_args="--with-tcl=${XBPS_CROSS_BASE}/usr/lib" hostmakedepends="pkg-config" From 48bcd82f30bb3ceb7ab00b9ae3d74e0df515e1cf Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:53 -0800 Subject: [PATCH 099/114] testdisk: rebuild to fix ssp dependency --- srcpkgs/testdisk/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/testdisk/template b/srcpkgs/testdisk/template index 556cb92210dd..3da8fe017d46 100644 --- a/srcpkgs/testdisk/template +++ b/srcpkgs/testdisk/template @@ -1,7 +1,7 @@ # Template file for 'testdisk' pkgname=testdisk version=7.1 -revision=3 +revision=4 build_style=gnu-configure configure_args="--without-ewf --enable-sudo" makedepends="libjpeg-turbo-devel libuuid-devel e2fsprogs-devel From 72a869acb9abcdf608d6dbde6bf64d4b189f4c0a Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:53 -0800 Subject: [PATCH 100/114] thc-hydra: rebuild to fix ssp dependency --- srcpkgs/thc-hydra/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/thc-hydra/template b/srcpkgs/thc-hydra/template index 40ade86edbcc..db7d53929815 100644 --- a/srcpkgs/thc-hydra/template +++ b/srcpkgs/thc-hydra/template @@ -1,7 +1,7 @@ # Template file for 'thc-hydra' pkgname=thc-hydra version=9.1 -revision=4 +revision=5 build_style=gnu-configure make_install_args="MANDIR=/share/man/man1 DATADIR=/share/hydra" makedepends="zlib-devel openssl-devel libidn-devel ncurses-devel pcre-devel From 6b0bbf44c2696b0f174387834f39c0c989d0d40b Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:53 -0800 Subject: [PATCH 101/114] thunderbird: rebuild to fix ssp dependency --- srcpkgs/thunderbird/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/thunderbird/template b/srcpkgs/thunderbird/template index d1b1a1c1f909..84b53fb8fe1f 100644 --- a/srcpkgs/thunderbird/template +++ b/srcpkgs/thunderbird/template @@ -4,7 +4,7 @@ # pkgname=thunderbird version=102.6.1 -revision=1 +revision=2 build_helper="rust" short_desc="Standalone Mail/News reader" maintainer="Érico Nogueira " From 2f2657fea14b1a89c2203444b7ee7edac6ccba08 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:53 -0800 Subject: [PATCH 102/114] tini: rebuild to fix ssp dependency --- srcpkgs/tini/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/tini/template b/srcpkgs/tini/template index fb18b07ba3f2..78ed8c565e14 100644 --- a/srcpkgs/tini/template +++ b/srcpkgs/tini/template @@ -1,7 +1,7 @@ # Template file for 'tini' pkgname=tini version=0.19.0 -revision=1 +revision=2 build_style=cmake short_desc="Tiny but valid init for containers" maintainer="PWA COLLECTIVE " From af5f4ff4b7db16198ca5c7ebe6c7220b440f921f Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:53 -0800 Subject: [PATCH 103/114] tinyssh: rebuild to fix ssp dependency --- srcpkgs/tinyssh/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/tinyssh/template b/srcpkgs/tinyssh/template index 65e4ec6e7b8b..c65bd2b6afe3 100644 --- a/srcpkgs/tinyssh/template +++ b/srcpkgs/tinyssh/template @@ -1,7 +1,7 @@ # Template file for 'tinyssh' pkgname=tinyssh version=20220801 -revision=1 +revision=2 build_style=gnu-makefile make_dirs="/etc/tinyssh 0755 root root" depends="ucspi-tcp" From c75bdcdf379da6ebd8b6f44b65be7245f00843cb Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:53 -0800 Subject: [PATCH 104/114] tor: rebuild to fix ssp dependency --- srcpkgs/tor/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/tor/template b/srcpkgs/tor/template index c39bd4d837a3..dd6954c1ab31 100644 --- a/srcpkgs/tor/template +++ b/srcpkgs/tor/template @@ -1,7 +1,7 @@ # Template file for 'tor' pkgname=tor version=0.4.7.12 -revision=1 +revision=2 build_style=gnu-configure configure_args="--enable-zstd" hostmakedepends="pkg-config" From 7cb7c23a54954e6b5f9036084b04edafe310438a Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:53 -0800 Subject: [PATCH 105/114] tpm2-tools: rebuild to fix ssp dependency --- srcpkgs/tpm2-tools/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/tpm2-tools/template b/srcpkgs/tpm2-tools/template index 258495e196f0..0bd3d595a397 100644 --- a/srcpkgs/tpm2-tools/template +++ b/srcpkgs/tpm2-tools/template @@ -1,7 +1,7 @@ # Template file for 'tpm2-tools' pkgname=tpm2-tools version=5.4 -revision=1 +revision=2 build_style=gnu-configure hostmakedepends="autoconf autoconf-archive automake libtool pkg-config $(vopt_if man pandoc)" makedepends="libcurl-devel openssl-devel tpm2-tss-devel" From 998ebb24a919200162c0ae149144cd36810c639f Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:53 -0800 Subject: [PATCH 106/114] tpm2-totp: rebuild to fix ssp dependency --- srcpkgs/tpm2-totp/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/tpm2-totp/template b/srcpkgs/tpm2-totp/template index ebdf3f359c30..4bf31a0c6469 100644 --- a/srcpkgs/tpm2-totp/template +++ b/srcpkgs/tpm2-totp/template @@ -1,7 +1,7 @@ # Template file for 'tpm2-totp' pkgname=tpm2-totp version=0.3.0 -revision=1 +revision=2 build_style=gnu-configure hostmakedepends="autoconf autoconf-archive automake doxygen libtool pkg-config $(vopt_if man pandoc)" makedepends="dracut mkinitcpio qrencode-devel tpm2-tss-devel" From 54e12ff7274dc4df17694dd98dd8f87054ef69e8 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:53 -0800 Subject: [PATCH 107/114] tpm2-tss: rebuild to fix ssp dependency --- srcpkgs/tpm2-tss/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/tpm2-tss/template b/srcpkgs/tpm2-tss/template index c487b682d192..3cba34398ee0 100644 --- a/srcpkgs/tpm2-tss/template +++ b/srcpkgs/tpm2-tss/template @@ -1,7 +1,7 @@ # Template file for 'tpm2-tss' pkgname=tpm2-tss version=3.2.0 -revision=1 +revision=2 build_style=gnu-configure configure_args="--disable-weakcrypto --with-crypto=mbed --disable-fapi" hostmakedepends="autoconf-archive automake libtool pkg-config doxygen libltdl-devel" From 0c5f8cf3b957091d5d2765a137174d18a481a9b5 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:54 -0800 Subject: [PATCH 108/114] vlc: rebuild to fix ssp dependency --- srcpkgs/vlc/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/vlc/template b/srcpkgs/vlc/template index 25867af43440..210762b0a7e2 100644 --- a/srcpkgs/vlc/template +++ b/srcpkgs/vlc/template @@ -1,7 +1,7 @@ # Template file for 'vlc' pkgname=vlc version=3.0.18 -revision=2 +revision=3 build_style=gnu-configure configure_args="--disable-gme --disable-libtar --enable-jack --enable-live555 --disable-fluidsynth --enable-dvdread From b977823d97f8a757da38b865b280a9700c62e1eb Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:54 -0800 Subject: [PATCH 109/114] vte3: rebuild to fix ssp dependency --- srcpkgs/vte3/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/vte3/template b/srcpkgs/vte3/template index 01229a0c7dd1..29f4bd6a9594 100644 --- a/srcpkgs/vte3/template +++ b/srcpkgs/vte3/template @@ -1,7 +1,7 @@ # Template file for 'vte3' pkgname=vte3 version=0.70.1 -revision=1 +revision=2 build_style=meson build_helper="gir" configure_args="-Db_ndebug=false -Db_lto=false -D_systemd=false From 03bfbf225d85d34c951316cc10a9b0897567a3fe Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:54 -0800 Subject: [PATCH 110/114] wesnoth: rebuild to fix ssp dependency --- srcpkgs/wesnoth/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/wesnoth/template b/srcpkgs/wesnoth/template index 524769188c4b..dcc524fa6860 100644 --- a/srcpkgs/wesnoth/template +++ b/srcpkgs/wesnoth/template @@ -1,7 +1,7 @@ # Template file for 'wesnoth' pkgname=wesnoth version=1.16.6 -revision=1 +revision=2 build_style=cmake configure_args="-DENABLE_OMP=1" hostmakedepends="pkg-config gettext" From c2f0f6516003c7da41835bcd5969c82f1c4e0c31 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:54 -0800 Subject: [PATCH 111/114] xbps: rebuild to fix ssp dependency --- srcpkgs/xbps/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/xbps/template b/srcpkgs/xbps/template index b77e15c64d6c..1c9373c498dc 100644 --- a/srcpkgs/xbps/template +++ b/srcpkgs/xbps/template @@ -1,7 +1,7 @@ # Template file for 'xbps' pkgname=xbps version=0.59.1 -revision=7 +revision=8 bootstrap=yes build_style=configure short_desc="XBPS package system utilities" From 2733650604cf9a650713c29df9b49cd712bdbf6c Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:54 -0800 Subject: [PATCH 112/114] xnec2c: rebuild to fix ssp dependency --- srcpkgs/xnec2c/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/xnec2c/template b/srcpkgs/xnec2c/template index 3943bf196dfc..67c9842aceee 100644 --- a/srcpkgs/xnec2c/template +++ b/srcpkgs/xnec2c/template @@ -1,7 +1,7 @@ # Template file for 'xnec2c' pkgname=xnec2c version=4.4.12 -revision=1 +revision=2 build_style=gnu-configure hostmakedepends="automake libtool gettext-devel intltool pkg-config glib-devel which" makedepends="gtk+3-devel" From 444f88c8171149526ecf20b1287c61ef1991d660 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:54 -0800 Subject: [PATCH 113/114] yubico-piv-tool: rebuild to fix ssp dependency --- srcpkgs/yubico-piv-tool/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/yubico-piv-tool/template b/srcpkgs/yubico-piv-tool/template index c660d62461af..b8f90c2f889e 100644 --- a/srcpkgs/yubico-piv-tool/template +++ b/srcpkgs/yubico-piv-tool/template @@ -6,7 +6,7 @@ _libykcs_desc="Yubikey PIV pkcs11 library" pkgname=yubico-piv-tool version=2.1.1 -revision=2 +revision=3 build_style=cmake hostmakedepends="automake libtool gengetopt pkg-config help2man perl" makedepends="openssl-devel check-devel pcsclite-devel" From 2b2fe749b9adb16fd387b737b48234eba94a2f7a Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 9 Jan 2023 09:30:54 -0800 Subject: [PATCH 114/114] zmap: rebuild to fix ssp dependency --- srcpkgs/zmap/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/zmap/template b/srcpkgs/zmap/template index b35b850480e9..23d693a0feb1 100644 --- a/srcpkgs/zmap/template +++ b/srcpkgs/zmap/template @@ -1,7 +1,7 @@ # Template file for 'zmap' pkgname=zmap version=2.1.1 -revision=5 +revision=6 build_style=cmake conf_files="/etc/zmap/blacklist.conf /etc/zmap/zmap.conf" hostmakedepends="flex byacc gengetopt pkg-config"