From 10833270f332634937b10e9b256af33cf05ac04a Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 16:11:13 -0800 Subject: [PATCH 01/93] 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 cb9eb7dd1053241c1f77b34bf74df0aecb5908a4 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 16:12:11 -0800 Subject: [PATCH 02/93] 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..aae1190c7016 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 $CPPFLAGS $CFLAGS -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 84ef51b57ee35c2e91c6839dd99d5c9fcc1863c2 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 16:13:28 -0800 Subject: [PATCH 03/93] 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 990da99baa87897e4d40ba1c55e92c31a718b435 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 17:06:52 -0800 Subject: [PATCH 04/93] 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 2734a9c7e3a35eb54a793d5186a2da42f700bacd Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 17:09:08 -0800 Subject: [PATCH 05/93] 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 6fbbcbc87befc8e594ebd50a809efb78b06c9dc0 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 17:09:08 -0800 Subject: [PATCH 06/93] 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 90bb76b73847513f0be3e102bc3872ee241c8776 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 17:09:09 -0800 Subject: [PATCH 07/93] 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 f8897663067f5e0c88847a350b46a4a72eedb05f Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 17:09:09 -0800 Subject: [PATCH 08/93] 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 8412958359a9d9de03670cc680ed2193389596aa Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 17:09:09 -0800 Subject: [PATCH 09/93] 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 830b5a0479a8a1e0ba3b0f87fa1948afc2e4632d Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 17:09:09 -0800 Subject: [PATCH 10/93] 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 fbcee6679e3ef6b1a356aede495f1aa34ee431e5 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 17:09:09 -0800 Subject: [PATCH 11/93] 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 025fac37d0083622e7f6d8f7a080ae481fec62bb Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 17:09:09 -0800 Subject: [PATCH 12/93] 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 f8676ec43a299bf46705ca3f2f811f2bab1ee961 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 17:09:09 -0800 Subject: [PATCH 13/93] 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 e22437d750af40ba48d50f6d6c46dcef9e794e4e Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 17:09:09 -0800 Subject: [PATCH 14/93] 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 e621b2a4d044f66b8a4fccf6243a2b42a23644ea Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 17:09:09 -0800 Subject: [PATCH 15/93] 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 998051db328bfce3d6ac0c947005d887412e3ffd Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 17:09:09 -0800 Subject: [PATCH 16/93] 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 8029bc9801d3387f280b3826ad05135645ffa4a1 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 17:09:09 -0800 Subject: [PATCH 17/93] 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 999b75f9c10cdddc5efec0357ea7e95adf8b7a89 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 17:09:09 -0800 Subject: [PATCH 18/93] 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 e80ab37c7ba42bf36a23cc6973a7d47c1db0cbb3 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 17:09:09 -0800 Subject: [PATCH 19/93] 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 cf855faecbba3c3248e734d0cf5cd1c73b12e35a Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 17:09:09 -0800 Subject: [PATCH 20/93] 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 cd5dbc7572c325625f5a94cf7be29833c5e831d8 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 17:09:10 -0800 Subject: [PATCH 21/93] 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 c0bd1b60611274ad907c3b92703d45249ef9b267 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 17:09:10 -0800 Subject: [PATCH 22/93] 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 35f4773a07289b79404bf91b19bccc5aeaff2fe6 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 17:09:10 -0800 Subject: [PATCH 23/93] 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 73a2d6c89a0853e4596f28821a14001131a21b55 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 17:09:10 -0800 Subject: [PATCH 24/93] 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 fb48a91b2b1c00f7d70172bbe29d9f602856c654 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 17:09:10 -0800 Subject: [PATCH 25/93] 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 346421866af107374d998803906ae15929d2f035 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 17:09:10 -0800 Subject: [PATCH 26/93] 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 b583282af2876480262ca04e0933d9ffe3cd5326 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 17:09:10 -0800 Subject: [PATCH 27/93] 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 0dbfc3372a1985c405b504547ae16e4b46c88fa8 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 17:09:10 -0800 Subject: [PATCH 28/93] 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 7bf030163ab8fa4177fe945fe58cc68dc286a9a3 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 17:44:14 -0800 Subject: [PATCH 29/93] 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 d084933c6fe18a89fa33fd86681a1752f8c329bb Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 17:44:32 -0800 Subject: [PATCH 30/93] 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 7a228d9dda6aa81e37303624f17ae0d87061b6ab Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 18:26:20 -0800 Subject: [PATCH 31/93] 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 2b11bacc25b5f77e986631b5e35d4c95bf9eb3b3 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 18:26:57 -0800 Subject: [PATCH 32/93] 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 5ac7ce3c0293f2cfe38d38af377206deae7d49ee Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 18:28:08 -0800 Subject: [PATCH 33/93] 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 9fdb648e5aeae95eba2ba1042e02c4230a17b895 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 18:28:53 -0800 Subject: [PATCH 34/93] 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 60fa246b964a1b5d4aeb8433efc2841b728622e2 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 18:29:30 -0800 Subject: [PATCH 35/93] 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 386f936eb27f72a7e7d16f8d3135235cb86d21c2 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 18:30:08 -0800 Subject: [PATCH 36/93] 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 ce54960900a7fe78ed8a91f5e0842f07a565c162 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 18:31:29 -0800 Subject: [PATCH 37/93] 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 ea2fabfad2658f5e8310d95d65ccf9f114f1a02e Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 23:22:44 -0800 Subject: [PATCH 38/93] 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 7c8c167be4b3..6b2b97a5ef65 100644 --- a/srcpkgs/PrismLauncher/template +++ b/srcpkgs/PrismLauncher/template @@ -1,7 +1,7 @@ # Template file for 'PrismLauncher' pkgname=PrismLauncher version=6.0 -revision=1 +revision=2 build_style=cmake configure_args="-DLauncher_BUILD_PLATFORM=Void" hostmakedepends="extra-cmake-modules openjdk8 pkg-config qt5-host-tools From f7ddf9b23ba419eba9441353c1c410aaf234a477 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 23:24:23 -0800 Subject: [PATCH 39/93] avt-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 08216759465472669b9e9f5f951e40a0e468a769 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 23:26:01 -0800 Subject: [PATCH 40/93] 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 412473eb106be0ddda981f310f6fa1728680bb0b Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 23:54:18 -0800 Subject: [PATCH 41/93] AusweisApp2: rebuild to fix ssp dependencies --- 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 9c4f0ef46e6ca0454295eab6322fb9626b6cc539 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 23:55:19 -0800 Subject: [PATCH 42/93] OTPClient: rebuild to fix ssp dependencies --- 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 15b607eeca6ff1a600f857feb46530e749be4aab Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 23:56:40 -0800 Subject: [PATCH 43/93] avahi-discover: rebuild to fix ssp dependencies --- 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 810d33e3a09d9c00760ca4d49b102fc97709550b Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 23:58:18 -0800 Subject: [PATCH 44/93] bitcoin: rebuild to fix ssp dependencies --- 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 f93a480d38062f011d8fdfe7cb480f3c9297981b Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 23:58:49 -0800 Subject: [PATCH 45/93] botan: rebuild to fix ssp dependencies --- 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 b9add49954c365c011b5b2c2174f526afb9b3745 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 23:59:13 -0800 Subject: [PATCH 46/93] cJSON: rebuild to fix ssp dependencies --- 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 9baec961e340ab388d0f0a29b754b0b960d19849 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Sun, 25 Dec 2022 23:59:42 -0800 Subject: [PATCH 47/93] csync: rebuild to fix ssp dependencies --- srcpkgs/csync/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/csync/template b/srcpkgs/csync/template index 047f6a246173..9c0e2a1b7b08 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" From 00e8196457d5a009db7677a4616e91ac0e919123 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 26 Dec 2022 00:00:09 -0800 Subject: [PATCH 48/93] cups: rebuild to fix ssp dependencies --- 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 2c04a66bbf459419cb993f6020f6ec38de481bdc Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 26 Dec 2022 00:00:38 -0800 Subject: [PATCH 49/93] davfs2: rebuild to fix ssp dependencies --- 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 4f80de942b3b9f80c55796af969ae86883c9f12a Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 26 Dec 2022 00:02:00 -0800 Subject: [PATCH 50/93] di: rebuild to fix ssp dependencies --- 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 faa210fce86c547524619f416d7a00c146ee87f6 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 26 Dec 2022 00:02:24 -0800 Subject: [PATCH 51/93] dislocker: rebuild to fix ssp dependencies --- 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 9b9d7da01205d8bd96ec284e2108e6f87e1910ff Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 26 Dec 2022 00:03:51 -0800 Subject: [PATCH 52/93] elogind: rebuild to fix ssp dependencies --- 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 59b753bb8411f1da9121cb0d294f57364b6dbfc0 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 26 Dec 2022 00:14:10 -0800 Subject: [PATCH 53/93] flac: rebuild to fix ssp dependencies --- 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 d8ba5f8668eb4910313a1919e93c11a88652ab3d Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 26 Dec 2022 00:14:49 -0800 Subject: [PATCH 54/93] fwknop: rebuild to fix ssp dependencies --- 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 a5e93a7f14ce181539ebc738b4bf1fb15fea75db Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 26 Dec 2022 00:15:33 -0800 Subject: [PATCH 55/93] inkscape: rebuild to fix ssp dependencies --- 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 b3799d0a32e3a5ca2ba0bad1d0bc2d62e3b2c0ec Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 26 Dec 2022 00:16:44 -0800 Subject: [PATCH 56/93] keepalived: rebuild to fix ssp dependencies --- 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 822ae5ffeeb9dc4345358e12a141228e45a79719 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 26 Dec 2022 00:17:20 -0800 Subject: [PATCH 57/93] keepassxc: rebuild to fix ssp dependencies --- 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 9b0977ce241e9ac4deb2752dbf7c59955053ed58 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 26 Dec 2022 00:17:49 -0800 Subject: [PATCH 58/93] kitty: rebuild to fix ssp dependencies --- 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 311f6c6c0660675e59f92e0b25d43257f8a76a6a Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 26 Dec 2022 00:18:33 -0800 Subject: [PATCH 59/93] kmscon: rebuild to fix ssp dependencies --- 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 3b0eb63e3e028b1e2d0b601c3783b474f3a6cdbb Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 26 Dec 2022 00:19:03 -0800 Subject: [PATCH 60/93] kstars: rebuild to fix ssp dependencies --- 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 3cc414485f908f099ad91f7d651a5e01017f4592 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 26 Dec 2022 00:19:34 -0800 Subject: [PATCH 61/93] libcotp: rebuild to fix ssp dependencies --- 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 5276fbaec2ff90e3242345988f16f7331d393673 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 26 Dec 2022 00:20:24 -0800 Subject: [PATCH 62/93] libhtp: rebuild to fix ssp dependencies --- 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 e304e4c8f572c90241069b352160ce348313a554 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 26 Dec 2022 00:21:01 -0800 Subject: [PATCH 63/93] libknet1: rebuild to fix ssp dependencies --- 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 b2cfbb5fec91506c1a1e08c39b31b41bc91e559c Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 26 Dec 2022 00:22:11 -0800 Subject: [PATCH 64/93] mariadb: rebuild to fix ssp dependencies --- 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 0bf4bc4bcf685c20f3f92c8929fdb19dca5b04a0 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 26 Dec 2022 00:25:13 -0800 Subject: [PATCH 65/93] libtls: rebuild to fix ssp dependencies --- srcpkgs/libtls/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libtls/template b/srcpkgs/libtls/template index 40412b1e7852..3fb7885a0959 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" From fc0ac4db9147280560ccdd4684f1050bd7a33b29 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 26 Dec 2022 00:25:47 -0800 Subject: [PATCH 66/93] swtpm: rebuild to fix ssp dependencies --- 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 cd99cd2c681d2529a9fc4084c8d680e58180dc20 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 26 Dec 2022 00:26:45 -0800 Subject: [PATCH 67/93] tpm2-totp: rebuild to fix ssp dependencies --- 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 f86aa1da23ea4f948ad4474c0e1f28f98cb19a3b Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 26 Dec 2022 00:27:42 -0800 Subject: [PATCH 68/93] libtpms: rebuild to fix ssp dependencies --- 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 178b85ec3d1c79494c2e6008a385f5588015f3e3 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 26 Dec 2022 00:28:16 -0800 Subject: [PATCH 69/93] vlc: rebuild to fix ssp dependencies --- 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 49558c3e63fdcba3c7a9c03f283a9135a25f0edd Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 26 Dec 2022 00:28:49 -0800 Subject: [PATCH 70/93] xbps: rebuild to fix ssp dependencies --- 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 f6aa3e9bf99c2fb9ab4679db147ad5c5ab74913f Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 26 Dec 2022 00:30:27 -0800 Subject: [PATCH 71/93] yubico-piv-tool: rebuild to fix ssp dependencies --- 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 ac45b180095ee5f99e55195a84aa8cc66a1e3c7f Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 26 Dec 2022 00:31:19 -0800 Subject: [PATCH 72/93] litecoin: rebuild to fix ssp dependencies --- 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 83ba3d6a6c4f67c00840e7ace9c5359cabce99cc Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 26 Dec 2022 00:32:11 -0800 Subject: [PATCH 73/93] lldpd: rebuild to fix ssp dependencies --- srcpkgs/lldpd/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/lldpd/template b/srcpkgs/lldpd/template index bb103044a0c2..cfe58f875b26 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=4 build_style=gnu-configure configure_args="--with-privsep-chroot=/var/empty" hostmakedepends="pkg-config" From ca14c230e2a75ef17b1effbefe976be1b1d67ded Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 26 Dec 2022 00:34:10 -0800 Subject: [PATCH 74/93] massdns: rebuild to fix ssp dependencies --- 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 44bd88d758a7f31237ce0b9ae931b94849b72cdd Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 26 Dec 2022 00:35:14 -0800 Subject: [PATCH 75/93] mksh: rebuild to fix ssp dependencies --- 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 b63d91b0826860d4dc8860aafffdb55bf2d06ed5 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 26 Dec 2022 00:36:52 -0800 Subject: [PATCH 76/93] mkvtoolnix: rebuild to fix ssp dependencies --- 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 a65acaf0cc367b10499170fef5ac517d2b20dd06 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 26 Dec 2022 00:37:50 -0800 Subject: [PATCH 77/93] monero: rebuild to fix ssp dependencies --- 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 6d1bf24917fea4b5fe12834ecb5d430085c9252c Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 26 Dec 2022 00:38:22 -0800 Subject: [PATCH 78/93] monero-gui: rebuild to fix ssp dependencies --- 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 6a3559c2c5dd09feef0669b7e893043f802b9e5a Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 26 Dec 2022 00:40:29 -0800 Subject: [PATCH 79/93] monit: rebuild to fix ssp dependencies --- 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 a4a34e24305873ac1cba624c05a9bdc2fa43477f Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 26 Dec 2022 00:41:03 -0800 Subject: [PATCH 80/93] mosh: rebuild to fix ssp dependencies --- srcpkgs/mosh/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/mosh/template b/srcpkgs/mosh/template index 105cbae7aead..9c1d0c0ad52b 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=4 build_style=gnu-configure hostmakedepends="perl pkg-config protobuf" makedepends="ncurses-devel protobuf-devel libutempter-devel openssl-devel" From 01f6ebe5e6368c064444b7e1ba55aa2b076989a7 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 26 Dec 2022 00:43:01 -0800 Subject: [PATCH 81/93] mozjs78: rebuild to fix ssp dependencies --- srcpkgs/mozjs78/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 f5c836f44f049b565136f76e664f201935835d2a Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 26 Dec 2022 00:43:11 -0800 Subject: [PATCH 82/93] mozjs102: rebuild to fix ssp dependencies --- 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 3ab0de912d4d20c2f33bee938e09517e33d81142 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 26 Dec 2022 00:54:11 -0800 Subject: [PATCH 83/93] mozjs91: remove package --- common/shlibs | 1 - srcpkgs/mozjs91/patches/001-fix-soname.patch | 26 ----- .../mozjs91/patches/002-copy-headers.patch | 38 -------- .../mozjs91/patches/003-tests-timeout.patch | 26 ----- .../004-icu-sources-data-py-decouple.patch | 29 ------ ...cu-sources-data-write-command-stderr.patch | 44 --------- srcpkgs/mozjs91/patches/006-emitter.patch | 67 ------------- ...-tests-use-native-temporarydirectory.patch | 66 ------------- srcpkgs/mozjs91/patches/008-init-patch.patch | 28 ------ .../patches/009-sloppy-m4-detection.patch | 29 ------ .../011-failing-tests-ppc64-s390x.patch | 36 ------- srcpkgs/mozjs91/patches/012-fix-musl.patch | 21 ---- .../013-disable-spidermonkey-jslint.patch | 26 ----- srcpkgs/mozjs91/patches/014-rust-target.patch | 28 ------ .../patches/015-drop-rustc-validation.patch | 80 --------------- .../mozjs91/patches/017-no-lto-readelf.patch | 35 ------- srcpkgs/mozjs91/patches/MOZ_NO_RUST_LTO.patch | 18 ---- srcpkgs/mozjs91/patches/fix-build-ppc32.patch | 19 ---- srcpkgs/mozjs91/patches/fix-i386-fdlibm.patch | 18 ---- srcpkgs/mozjs91/template | 97 ++----------------- 20 files changed, 6 insertions(+), 726 deletions(-) delete mode 100644 srcpkgs/mozjs91/patches/001-fix-soname.patch delete mode 100644 srcpkgs/mozjs91/patches/002-copy-headers.patch delete mode 100644 srcpkgs/mozjs91/patches/003-tests-timeout.patch delete mode 100644 srcpkgs/mozjs91/patches/004-icu-sources-data-py-decouple.patch delete mode 100644 srcpkgs/mozjs91/patches/005-icu-sources-data-write-command-stderr.patch delete mode 100644 srcpkgs/mozjs91/patches/006-emitter.patch delete mode 100644 srcpkgs/mozjs91/patches/007-tests-use-native-temporarydirectory.patch delete mode 100644 srcpkgs/mozjs91/patches/008-init-patch.patch delete mode 100644 srcpkgs/mozjs91/patches/009-sloppy-m4-detection.patch delete mode 100644 srcpkgs/mozjs91/patches/011-failing-tests-ppc64-s390x.patch delete mode 100644 srcpkgs/mozjs91/patches/012-fix-musl.patch delete mode 100644 srcpkgs/mozjs91/patches/013-disable-spidermonkey-jslint.patch delete mode 100644 srcpkgs/mozjs91/patches/014-rust-target.patch delete mode 100644 srcpkgs/mozjs91/patches/015-drop-rustc-validation.patch delete mode 100644 srcpkgs/mozjs91/patches/017-no-lto-readelf.patch delete mode 100644 srcpkgs/mozjs91/patches/MOZ_NO_RUST_LTO.patch delete mode 100644 srcpkgs/mozjs91/patches/fix-build-ppc32.patch delete mode 100644 srcpkgs/mozjs91/patches/fix-i386-fdlibm.patch diff --git a/common/shlibs b/common/shlibs index 140c7a79f4f3..5a7632287a75 100644 --- a/common/shlibs +++ b/common/shlibs @@ -3497,7 +3497,6 @@ libKF5Syndication.so.5 syndication-5.50.0_1 liblqr-1.so.0 liblqr-0.4.2_1 libmozjs-102.so.0 mozjs102-102.3.0_1 libmozjs-78.so.0 mozjs78-78.1.0_1 -libmozjs-91.so.0 mozjs91-91.5.0_1 libebur128.so.1 libebur128-1.2.4_1 libgtksourceview-4.so.0 gtksourceview4-4.0.2_1 libgtksourceview-5.so.0 gtksourceview5-5.2.0_1 diff --git a/srcpkgs/mozjs91/patches/001-fix-soname.patch b/srcpkgs/mozjs91/patches/001-fix-soname.patch deleted file mode 100644 index a319d9e975ef..000000000000 --- a/srcpkgs/mozjs91/patches/001-fix-soname.patch +++ /dev/null @@ -1,26 +0,0 @@ -From d21c7cb9343d8c495d987e71be0f35887574c820 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Franti=C5=A1ek=20Zatloukal?= -Date: Wed, 15 Jul 2020 08:21:47 +0200 -Subject: [PATCH] Add soname switch to linker, regardless of Operating System - -Fix backported from Debian: http://bugs.debian.org/746705 ---- - config/rules.mk | 2 ++ - 1 file changed, 2 insertions(+) - -diff --git a/config/rules.mk b/config/rules.mk -index 0f9b2ac..f6b4efe 100644 ---- a/config/rules.mk -+++ b/config/rules.mk -@@ -285,6 +285,8 @@ ifeq ($(OS_ARCH),GNU) - OS_CPPFLAGS += -DPATH_MAX=1024 -DMAXPATHLEN=1024 - endif - -+EXTRA_DSO_LDOPTS += -Wl,-soname,lib$(JS_LIBRARY_NAME).so.0 -+ - # - # MINGW32 - # --- -2.31.1 - diff --git a/srcpkgs/mozjs91/patches/002-copy-headers.patch b/srcpkgs/mozjs91/patches/002-copy-headers.patch deleted file mode 100644 index aafe1aa84bd3..000000000000 --- a/srcpkgs/mozjs91/patches/002-copy-headers.patch +++ /dev/null @@ -1,38 +0,0 @@ -From 3b3c8e37cca418e07bdeceaf3a601805df28d925 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Franti=C5=A1ek=20Zatloukal?= -Date: Wed, 15 Jul 2020 08:27:39 +0200 -Subject: [PATCH] build: Copy headers on install instead of symlinking - -Patch by Philip Chimento ported forward to mozjs78 ---- - python/mozbuild/mozbuild/backend/recursivemake.py | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -diff --git a/python/mozbuild/mozbuild/backend/recursivemake.py b/python/mozbuild/mozbuild/backend/recursivemake.py -index d964466..0285ad9 100644 ---- a/python/mozbuild/mozbuild/backend/recursivemake.py -+++ b/python/mozbuild/mozbuild/backend/recursivemake.py -@@ -1568,9 +1568,9 @@ class RecursiveMakeBackend(MakeBackend): - " of srcdir-relative or absolute paths." - ) - -- install_manifest.add_pattern_link(basepath, wild, dest_dir) -+ install_manifest.add_pattern_copy(basepath, wild, dest_dir) - else: -- install_manifest.add_pattern_link(f.srcdir, f, dest_dir) -+ install_manifest.add_pattern_copy(f.srcdir, f, dest_dir) - elif isinstance(f, AbsolutePath): - if not f.full_path.lower().endswith((".dll", ".pdb", ".so")): - raise Exception( -@@ -1581,7 +1581,7 @@ class RecursiveMakeBackend(MakeBackend): - install_manifest.add_optional_exists(dest_file) - absolute_files.append(f.full_path) - else: -- install_manifest.add_link(f.full_path, dest_file) -+ install_manifest.add_copy(f.full_path, dest_file) - else: - install_manifest.add_optional_exists(dest_file) - objdir_files.append(self._pretty_path(f, backend_file)) --- -2.31.1 - diff --git a/srcpkgs/mozjs91/patches/003-tests-timeout.patch b/srcpkgs/mozjs91/patches/003-tests-timeout.patch deleted file mode 100644 index c86cca403deb..000000000000 --- a/srcpkgs/mozjs91/patches/003-tests-timeout.patch +++ /dev/null @@ -1,26 +0,0 @@ -From 9be85b155c6df0454c5faef9e850f572c99e3615 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Franti=C5=A1ek=20Zatloukal?= -Date: Wed, 15 Jul 2020 08:32:44 +0200 -Subject: [PATCH] Increase the test timeout for slower buildds - -Ported forward from Debian: https://bugs.debian.org/878284 ---- - js/src/Makefile.in | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/js/src/Makefile.in b/js/src/Makefile.in -index b86aeed..d68655a 100644 ---- a/js/src/Makefile.in -+++ b/js/src/Makefile.in -@@ -53,7 +53,7 @@ check:: check-js-msg - - check-jstests: - $(wildcard $(RUN_TEST_PROGRAM)) $(PYTHON3) -u $(srcdir)/tests/jstests.py \ -- --no-progress --format=automation --timeout 300 \ -+ --no-progress --format=automation --timeout 600 \ - $(JSTESTS_EXTRA_ARGS) \ - $(DIST)/bin/$(JS_SHELL_NAME)$(BIN_SUFFIX) - --- -2.26.2 - diff --git a/srcpkgs/mozjs91/patches/004-icu-sources-data-py-decouple.patch b/srcpkgs/mozjs91/patches/004-icu-sources-data-py-decouple.patch deleted file mode 100644 index 8572c21fd4ec..000000000000 --- a/srcpkgs/mozjs91/patches/004-icu-sources-data-py-decouple.patch +++ /dev/null @@ -1,29 +0,0 @@ -From: Simon McVittie -Date: Mon, 9 Oct 2017 09:22:12 +0100 -Subject: icu_sources_data.py: Decouple from Mozilla build system - -mozpack.path is a wrapper around os.path that normalizes path -separators on Windows, but on Unix we only have one path separator -so there's nothing to normalize. Avoid needing to import all of it. ---- - intl/icu_sources_data.py | 4 +++- - 1 file changed, 3 insertions(+), 1 deletion(-) - -diff --git a/intl/icu_sources_data.py b/intl/icu_sources_data.py -index 2936df9..4db52af 100644 ---- a/intl/icu_sources_data.py -+++ b/intl/icu_sources_data.py -@@ -21,7 +21,9 @@ import subprocess - import sys - import tempfile - --from mozpack import path as mozpath -+# Close enough -+import os.path as mozpath -+mozpath.normsep = lambda p: p - - # The following files have been determined to be dead/unused by a - # semi-automated analysis. You can just remove any of the files below --- -2.31.1 - diff --git a/srcpkgs/mozjs91/patches/005-icu-sources-data-write-command-stderr.patch b/srcpkgs/mozjs91/patches/005-icu-sources-data-write-command-stderr.patch deleted file mode 100644 index 84684250ce4c..000000000000 --- a/srcpkgs/mozjs91/patches/005-icu-sources-data-write-command-stderr.patch +++ /dev/null @@ -1,44 +0,0 @@ -From: Simon McVittie -Date: Mon, 9 Oct 2017 09:23:14 +0100 -Subject: icu_sources_data: Write command output to our stderr - -Saying "See output in /tmp/foobar" is all very well for a developer -build, but on a buildd our /tmp is going to get thrown away after -the build. Just log the usual way instead. ---- - intl/icu_sources_data.py | 16 ++++------------ - 1 file changed, 4 insertions(+), 12 deletions(-) - -diff --git a/intl/icu_sources_data.py b/intl/icu_sources_data.py -index 4db52af..d62960d 100644 ---- a/intl/icu_sources_data.py -+++ b/intl/icu_sources_data.py -@@ -188,21 +188,13 @@ def update_sources(topsrcdir): - - def try_run(name, command, cwd=None, **kwargs): - try: -- with tempfile.NamedTemporaryFile(prefix=name, delete=False) as f: -- subprocess.check_call( -- command, cwd=cwd, stdout=f, stderr=subprocess.STDOUT, **kwargs -- ) -- except subprocess.CalledProcessError: -- print( -- """Error running "{}" in directory {} -- See output in {}""".format( -- " ".join(command), cwd, f.name -- ), -- file=sys.stderr, -+ subprocess.check_call( -+ command, cwd=cwd, stdout=sys.stderr, stderr=subprocess.STDOUT, **kwargs - ) -+ except subprocess.CalledProcessError: -+ print('''Error running "{}" in directory {}'''.format(' '.join(command), cwd), file=sys.stderr) - return False - else: -- os.unlink(f.name) - return True - - --- -2.31.1 - diff --git a/srcpkgs/mozjs91/patches/006-emitter.patch b/srcpkgs/mozjs91/patches/006-emitter.patch deleted file mode 100644 index 556bebd257ca..000000000000 --- a/srcpkgs/mozjs91/patches/006-emitter.patch +++ /dev/null @@ -1,67 +0,0 @@ -From d1d785c169345b81c76213f6dd9be32b4db60294 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Franti=C5=A1ek=20Zatloukal?= -Date: Wed, 15 Jul 2020 08:39:47 +0200 -Subject: [PATCH] Build: allow LOCAL_INCLUDES paths with topsrcdir or topobjdir - ---- - python/mozbuild/mozbuild/frontend/emitter.py | 10 --------- - .../mozbuild/test/frontend/test_emitter.py | 22 ------------------- - 2 files changed, 32 deletions(-) - -diff --git a/python/mozbuild/mozbuild/frontend/emitter.py b/python/mozbuild/mozbuild/frontend/emitter.py -index 44b916e..f2e821d 100644 ---- a/python/mozbuild/mozbuild/frontend/emitter.py -+++ b/python/mozbuild/mozbuild/frontend/emitter.py -@@ -1367,16 +1367,6 @@ class TreeMetadataEmitter(LoggingMixin): - "(resolved to %s)" % (local_include, full_path), - context, - ) -- if ( -- full_path == context.config.topsrcdir -- or full_path == context.config.topobjdir -- ): -- raise SandboxValidationError( -- "Path specified in LOCAL_INCLUDES " -- "(%s) resolves to the topsrcdir or topobjdir (%s), which is " -- "not allowed" % (local_include, full_path), -- context, -- ) - include_obj = LocalInclude(context, local_include) - local_includes.append(include_obj.path.full_path) - yield include_obj -diff --git a/python/mozbuild/mozbuild/test/frontend/test_emitter.py b/python/mozbuild/mozbuild/test/frontend/test_emitter.py -index e53bc5e..c1b9d32 100644 ---- a/python/mozbuild/mozbuild/test/frontend/test_emitter.py -+++ b/python/mozbuild/mozbuild/test/frontend/test_emitter.py -@@ -1098,28 +1098,6 @@ class TestEmitterBasic(unittest.TestCase): - - self.assertEqual(local_includes, expected) - -- def test_local_includes_invalid(self): -- """Test that invalid LOCAL_INCLUDES are properly detected.""" -- reader = self.reader("local_includes-invalid/srcdir") -- -- with six.assertRaisesRegex( -- self, -- SandboxValidationError, -- "Path specified in LOCAL_INCLUDES.*resolves to the " -- "topsrcdir or topobjdir", -- ): -- self.read_topsrcdir(reader) -- -- reader = self.reader("local_includes-invalid/objdir") -- -- with six.assertRaisesRegex( -- self, -- SandboxValidationError, -- "Path specified in LOCAL_INCLUDES.*resolves to the " -- "topsrcdir or topobjdir", -- ): -- self.read_topsrcdir(reader) -- - def test_local_includes_file(self): - """Test that a filename can't be used in LOCAL_INCLUDES.""" - reader = self.reader("local_includes-filename") --- -2.31.1 - diff --git a/srcpkgs/mozjs91/patches/007-tests-use-native-temporarydirectory.patch b/srcpkgs/mozjs91/patches/007-tests-use-native-temporarydirectory.patch deleted file mode 100644 index 054685c1eee2..000000000000 --- a/srcpkgs/mozjs91/patches/007-tests-use-native-temporarydirectory.patch +++ /dev/null @@ -1,66 +0,0 @@ -From 1af9fdd2124547099eb0cf5a71b513ef5592dbf9 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Franti=C5=A1ek=20Zatloukal?= -Date: Tue, 10 Aug 2021 00:00:50 +0200 -Subject: [PATCH] Tests: Use native TemporaryDirectory - -Without ugly wrapper for Py < 3.2 that doesn't work half of the times... ---- - js/src/jit-test/jit_test.py | 2 +- - js/src/tests/jstests.py | 2 +- - js/src/tests/lib/tempfile.py | 17 +---------------- - 3 files changed, 3 insertions(+), 18 deletions(-) - -diff --git a/js/src/jit-test/jit_test.py b/js/src/jit-test/jit_test.py -index f5d7794..8d443aa 100755 ---- a/js/src/jit-test/jit_test.py -+++ b/js/src/jit-test/jit_test.py -@@ -38,7 +38,7 @@ from lib.tests import ( - get_environment_overlay, - change_env, - ) --from lib.tempfile import TemporaryDirectory -+from tempfile import TemporaryDirectory - - - def which(name): -diff --git a/js/src/tests/jstests.py b/js/src/tests/jstests.py -index 6fa2f5f..53ceff6 100755 ---- a/js/src/tests/jstests.py -+++ b/js/src/tests/jstests.py -@@ -37,7 +37,7 @@ from lib.tests import ( - from lib.results import ResultsSink, TestOutput - from lib.progressbar import ProgressBar - from lib.adaptor import xdr_annotate --from lib.tempfile import TemporaryDirectory -+from tempfile import TemporaryDirectory - - if sys.platform.startswith("linux") or sys.platform.startswith("darwin"): - from lib.tasks_unix import run_all_tests -diff --git a/js/src/tests/lib/tempfile.py b/js/src/tests/lib/tempfile.py -index ecc21c9..f0a1fa3 100644 ---- a/js/src/tests/lib/tempfile.py -+++ b/js/src/tests/lib/tempfile.py -@@ -2,19 +2,4 @@ - # License, v. 2.0. If a copy of the MPL was not distributed with this - # file, You can obtain one at http://mozilla.org/MPL/2.0/. - from __future__ import absolute_import -- --try: -- # Python 3.2 -- from tempfile import TemporaryDirectory --except ImportError: -- import tempfile -- import shutil -- from contextlib import contextmanager -- -- @contextmanager -- def TemporaryDirectory(*args, **kwds): -- d = tempfile.mkdtemp(*args, **kwds) -- try: -- yield d -- finally: -- shutil.rmtree(d) -+from tempfile import TemporaryDirectory --- -2.31.1 - diff --git a/srcpkgs/mozjs91/patches/008-init-patch.patch b/srcpkgs/mozjs91/patches/008-init-patch.patch deleted file mode 100644 index 1954a55bf369..000000000000 --- a/srcpkgs/mozjs91/patches/008-init-patch.patch +++ /dev/null @@ -1,28 +0,0 @@ -From 00414eb67ab0591911167155963b5524fbf2b0c0 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Franti=C5=A1ek=20Zatloukal?= -Date: Mon, 9 Aug 2021 14:38:58 +0200 -Subject: [PATCH] Don't throw InvalidOptionError on invalid options - ---- - python/mozbuild/mozbuild/configure/__init__.py | 5 +---- - 1 file changed, 1 insertion(+), 4 deletions(-) - -diff --git a/python/mozbuild/mozbuild/configure/__init__.py b/python/mozbuild/mozbuild/configure/__init__.py -index f3167f6..c9e1132 100644 ---- a/python/mozbuild/mozbuild/configure/__init__.py -+++ b/python/mozbuild/mozbuild/configure/__init__.py -@@ -553,10 +553,7 @@ class ConfigureSandbox(dict): - for arg in self._helper: - without_value = arg.split("=", 1)[0] - msg = "Unknown option: %s" % without_value -- if self._help: -- self._logger.warning(msg) -- else: -- raise InvalidOptionError(msg) -+ self._logger.warning(msg) - - # Run the execution queue - for func, args in self._execution_queue: --- -2.31.1 - diff --git a/srcpkgs/mozjs91/patches/009-sloppy-m4-detection.patch b/srcpkgs/mozjs91/patches/009-sloppy-m4-detection.patch deleted file mode 100644 index 10b8b16ea7dc..000000000000 --- a/srcpkgs/mozjs91/patches/009-sloppy-m4-detection.patch +++ /dev/null @@ -1,29 +0,0 @@ -From 2d99a7b076578a3394fb9d5be6eb44f9cfebc681 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Franti=C5=A1ek=20Zatloukal?= -Date: Mon, 9 Aug 2021 16:15:37 +0200 -Subject: [PATCH] Remove sloppy m4 detection from bundled autoconf - ---- - build/autoconf/autoconf.sh | 6 ------ - 1 file changed, 6 deletions(-) - -diff --git a/build/autoconf/autoconf.sh b/build/autoconf/autoconf.sh -index ceb8a25..606c74e 100644 ---- a/build/autoconf/autoconf.sh -+++ b/build/autoconf/autoconf.sh -@@ -114,12 +114,6 @@ fi - - # Use the frozen version of Autoconf if available. - r= f= --# Some non-GNU m4's don't reject the --help option, so give them /dev/null. --case `$M4 --help < /dev/null 2>&1` in --*reload-state*) test -r $AC_MACRODIR/autoconf.m4f && { r=--reload f=f; } ;; --*traditional*) ;; --*) echo Autoconf requires GNU m4 1.1 or later >&2; rm -f $tmpin; exit 1 ;; --esac - - $M4 -I$AC_MACRODIR $use_localdir $r autoconf.m4$f $infile > $tmpout || - { rm -f $tmpin $tmpout; exit 2; } --- -2.31.1 - diff --git a/srcpkgs/mozjs91/patches/011-failing-tests-ppc64-s390x.patch b/srcpkgs/mozjs91/patches/011-failing-tests-ppc64-s390x.patch deleted file mode 100644 index 5c286647325c..000000000000 --- a/srcpkgs/mozjs91/patches/011-failing-tests-ppc64-s390x.patch +++ /dev/null @@ -1,36 +0,0 @@ -From db3a0a25b97377b388532b23e73a10d246f66496 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Franti=C5=A1ek=20Zatloukal?= -Date: Mon, 3 Aug 2020 10:27:00 +0200 -Subject: [PATCH] Skip failing tests on ppc64 and s390x - -ppc64 and s390x: non262/extensions/clone-errors.js -s390x: test262/built-ins/TypedArray/prototype/set/typedarray-arg-set-values-same-buffer-other-type.js -s390x, ppc64 and aarch64: test262/built-ins/Date/UTC/fp-evaluation-order.js ---- - js/src/tests/jstests.list | 9 +++++++++ - 1 file changed, 9 insertions(+) - -diff --git a/js/src/tests/jstests.list b/js/src/tests/jstests.list -index 73ce42f..1797646 100644 ---- a/js/src/tests/jstests.list -+++ b/js/src/tests/jstests.list -@@ -53,6 +53,15 @@ skip-if(!this.hasOwnProperty("Intl")) include test262/intl402/jstests.list - skip-if(!this.hasOwnProperty("Atomics")) include test262/built-ins/Atomics/jstests.list - skip-if(!this.hasOwnProperty("SharedArrayBuffer")) include test262/built-ins/SharedArrayBuffer/jstests.list - -+# Crashes on s390x and ppc64, avoid it -+skip-if(xulRuntime.XPCOMABI.match(/s390x|ppc64-/)) script non262/extensions/clone-errors.js -+ -+# Crashes on s390x, ppc64, aarch64 -+skip-if(xulRuntime.XPCOMABI.match(/s390x|aarch64|ppc64-/)) script test262/built-ins/Date/UTC/fp-evaluation-order.js -+ -+# Crashes on s390x, avoid it -+skip-if(xulRuntime.XPCOMABI.match(/s390x/)) script test262/built-ins/TypedArray/prototype/set/typedarray-arg-set-values-same-buffer-other-type.js -+ - ##################################### - # Test262 tests disabled on browser # - ##################################### --- -2.31.1 - - diff --git a/srcpkgs/mozjs91/patches/012-fix-musl.patch b/srcpkgs/mozjs91/patches/012-fix-musl.patch deleted file mode 100644 index 814912633217..000000000000 --- a/srcpkgs/mozjs91/patches/012-fix-musl.patch +++ /dev/null @@ -1,21 +0,0 @@ -commit 80ae97f2b875493c5714d00ae5c2a13efbd6e017 -Author: Daniel Kolesa -Date: Sun Jan 23 21:06:47 2022 +0100 - - fix musl miscompilation - - https://github.com/void-linux/void-packages/issues/2598 - -diff --git a/js/src/old-configure.in b/js/src/old-configure.in -index 77652f67..ab5e917b 100644 ---- a/js/src/old-configure.in -+++ b/js/src/old-configure.in -@@ -1069,7 +1069,7 @@ if test "$ac_cv_thread_keyword" = yes; then - mips*-*) - : - ;; -- *-android*|*-linuxandroid*) -+ *-android*|*-linuxandroid*|*-musl*) - : - ;; - *) diff --git a/srcpkgs/mozjs91/patches/013-disable-spidermonkey-jslint.patch b/srcpkgs/mozjs91/patches/013-disable-spidermonkey-jslint.patch deleted file mode 100644 index 93e8c83f9337..000000000000 --- a/srcpkgs/mozjs91/patches/013-disable-spidermonkey-jslint.patch +++ /dev/null @@ -1,26 +0,0 @@ -commit 34d8f3fb025e930450ce44f7aac501da4c2adc9c -Author: Daniel Kolesa -Date: Sun Jan 23 21:09:42 2022 +0100 - - disable spidermonkey jslint - -diff --git a/js/src/build/moz.build b/js/src/build/moz.build -index 55c66b97..243f7db2 100644 ---- a/js/src/build/moz.build -+++ b/js/src/build/moz.build -@@ -97,15 +97,3 @@ NO_EXPAND_LIBS = True - - DIST_INSTALL = True - --# Run SpiderMonkey style checker after linking the static library. This avoids --# running the script for no-op builds. --GeneratedFile( -- "spidermonkey_checks", -- script="/config/run_spidermonkey_checks.py", -- inputs=[ -- "!%sjs_static.%s" % (CONFIG["LIB_PREFIX"], CONFIG["LIB_SUFFIX"]), -- "/config/check_spidermonkey_style.py", -- "/config/check_macroassembler_style.py", -- "/config/check_js_opcode.py", -- ], --) diff --git a/srcpkgs/mozjs91/patches/014-rust-target.patch b/srcpkgs/mozjs91/patches/014-rust-target.patch deleted file mode 100644 index 4d8918a2a54c..000000000000 --- a/srcpkgs/mozjs91/patches/014-rust-target.patch +++ /dev/null @@ -1,28 +0,0 @@ -commit 34b3ac3195a40757bc5f51a1db5a47a4b18c68b5 -Author: Daniel Kolesa -Date: Sun Jan 23 21:13:38 2022 +0100 - - bypass rust triplet checks and just force ours - -diff --git a/build/moz.configure/rust.configure b/build/moz.configure/rust.configure -index cd77d72b..0c03cab7 100644 ---- a/build/moz.configure/rust.configure -+++ b/build/moz.configure/rust.configure -@@ -261,7 +261,7 @@ def rust_supported_targets(rustc): - data.setdefault(key, []).append(namespace(rust_target=t, target=info)) - return data - -- -+@imports("os") - def detect_rustc_target( - host_or_target, compiler_info, arm_target, rust_supported_targets - ): -@@ -383,7 +383,7 @@ def detect_rustc_target( - - return None - -- rustc_target = find_candidate(candidates) -+ rustc_target = os.environ["RUST_TARGET"] - - if rustc_target is None: - die("Don't know how to translate {} for rustc".format(host_or_target.alias)) diff --git a/srcpkgs/mozjs91/patches/015-drop-rustc-validation.patch b/srcpkgs/mozjs91/patches/015-drop-rustc-validation.patch deleted file mode 100644 index e2b340cd060e..000000000000 --- a/srcpkgs/mozjs91/patches/015-drop-rustc-validation.patch +++ /dev/null @@ -1,80 +0,0 @@ -drop some rust compiler validation - ---- a/build/moz.configure/rust.configure -+++ b/build/moz.configure/rust.configure -@@ -91,9 +91,6 @@ def unwrap_rustup(prog, name): - return unwrap - - --rustc = unwrap_rustup(rustc, "rustc") --cargo = unwrap_rustup(cargo, "cargo") -- - - set_config("CARGO", cargo) - set_config("RUSTC", rustc) -@@ -411,35 +408,6 @@ def assert_rust_compile(host_or_target, rustc_target, rustc): - - os.write(in_fd, ensure_binary(source)) - os.close(in_fd) -- -- cmd = [ -- rustc, -- "--crate-type", -- "staticlib", -- target_arg, -- "-o", -- out_path, -- in_path, -- ] -- -- def failed(): -- die( -- dedent( -- """\ -- Cannot compile for {} with {} -- The target may be unsupported, or you may not have -- a rust std library for that target installed. Try: -- -- rustup target add {} -- """.format( -- host_or_target.alias, rustc, rustc_target -- ) -- ) -- ) -- -- check_cmd_output(*cmd, onerror=failed) -- if not os.path.exists(out_path) or os.path.getsize(out_path) == 0: -- failed() - finally: - os.remove(in_path) - os.remove(out_path) -@@ -462,29 +430,6 @@ def rust_host_triple( - rustc_target = detect_rustc_target( - host, compiler_info, arm_target, rust_supported_targets - ) -- if rustc_target != rustc_host: -- if host.alias == rustc_target: -- configure_host = host.alias -- else: -- configure_host = "{}/{}".format(host.alias, rustc_target) -- die( -- dedent( -- """\ -- The rust compiler host ({rustc}) is not suitable for the configure host ({configure}). -- -- You can solve this by: -- * Set your configure host to match the rust compiler host by editing your -- mozconfig and adding "ac_add_options --host={rustc}". -- * Or, install the rust toolchain for {configure}, if supported, by running -- "rustup default stable-{rustc_target}" -- """.format( -- rustc=rustc_host, -- configure=configure_host, -- rustc_target=rustc_target, -- ) -- ) -- ) -- assert_rust_compile(host, rustc_target, rustc) - return rustc_target - - diff --git a/srcpkgs/mozjs91/patches/017-no-lto-readelf.patch b/srcpkgs/mozjs91/patches/017-no-lto-readelf.patch deleted file mode 100644 index 24075c591ff4..000000000000 --- a/srcpkgs/mozjs91/patches/017-no-lto-readelf.patch +++ /dev/null @@ -1,35 +0,0 @@ -commit 1cc729c5221d0ce4c80786ccdcb2de4a6ca382b6 -Author: Daniel Kolesa -Date: Sun Jan 23 21:55:43 2022 +0100 - - drop some library checks - - This calls readelf and won't work with LTO'd setups. - -diff --git a/config/makefiles/rust.mk b/config/makefiles/rust.mk -index 401c2933..ade4f1da 100644 ---- a/config/makefiles/rust.mk -+++ b/config/makefiles/rust.mk -@@ -405,22 +405,6 @@ force-cargo-library-build: - $(call CARGO_BUILD) --lib $(cargo_target_flag) $(rust_features_flag) -- $(cargo_rustc_flags) - - $(RUST_LIBRARY_FILE): force-cargo-library-build --# When we are building in --enable-release mode; we add an additional check to confirm --# that we are not importing any networking-related functions in rust code. This reduces --# the chance of proxy bypasses originating from rust code. --# The check only works when rust code is built with -Clto but without MOZ_LTO_RUST_CROSS. --# Sanitizers and sancov also fail because compiler-rt hooks network functions. --ifndef MOZ_PROFILE_GENERATE --ifeq ($(OS_ARCH), Linux) --ifeq (,$(rustflags_sancov)$(MOZ_ASAN)$(MOZ_TSAN)$(MOZ_UBSAN)) --ifndef MOZ_LTO_RUST_CROSS --ifneq (,$(filter -Clto,$(cargo_rustc_flags))) -- $(call py_action,check_binary,--target --networking $@) --endif --endif --endif --endif --endif - - force-cargo-library-check: - $(call CARGO_CHECK) --lib $(cargo_target_flag) $(rust_features_flag) diff --git a/srcpkgs/mozjs91/patches/MOZ_NO_RUST_LTO.patch b/srcpkgs/mozjs91/patches/MOZ_NO_RUST_LTO.patch deleted file mode 100644 index 4a9b0b42a575..000000000000 --- a/srcpkgs/mozjs91/patches/MOZ_NO_RUST_LTO.patch +++ /dev/null @@ -1,18 +0,0 @@ ---- a/config/makefiles/rust.mk -+++ b/config/makefiles/rust.mk -@@ -64,6 +64,7 @@ endif - # These flags are passed via `cargo rustc` and only apply to the final rustc - # invocation (i.e., only the top-level crate, not its dependencies). - cargo_rustc_flags = $(CARGO_RUSTCFLAGS) -+ifneq (1,$(MOZ_NO_RUST_LTO)) - ifndef DEVELOPER_OPTIONS - ifndef MOZ_DEBUG_RUST - # Enable link-time optimization for release builds, but not when linking -@@ -77,6 +78,7 @@ RUSTFLAGS += -Cembed-bitcode=yes - endif - endif - endif -+endif - - ifdef CARGO_INCREMENTAL - export CARGO_INCREMENTAL diff --git a/srcpkgs/mozjs91/patches/fix-build-ppc32.patch b/srcpkgs/mozjs91/patches/fix-build-ppc32.patch deleted file mode 100644 index 066330731e5e..000000000000 --- a/srcpkgs/mozjs91/patches/fix-build-ppc32.patch +++ /dev/null @@ -1,19 +0,0 @@ -commit 32e52128ce8fe7704a29a5a4fb921a8394540fbc -Author: q66 -Date: Mon Jun 13 14:01:59 2022 +0200 - - fix ftbfs on powerpc32 - -diff --git a/js/src/wasm/WasmFrame.h b/js/src/wasm/WasmFrame.h -index 85f2612d..df5c9629 100644 ---- a/js/src/wasm/WasmFrame.h -+++ b/js/src/wasm/WasmFrame.h -@@ -230,7 +230,7 @@ class DebugFrame { - // Avoid -Wunused-private-field warnings. - protected: - #if defined(JS_CODEGEN_MIPS32) || defined(JS_CODEGEN_ARM) || \ -- defined(JS_CODEGEN_X86) || defined(__wasi__) -+ defined(JS_CODEGEN_X86) || defined(__wasi__) || (defined(__powerpc__) && !defined(__powerpc64__)) - // See alignmentStaticAsserts(). For MIPS32, ARM32 and X86 DebugFrame is only - // 4-byte aligned, so we add another word to get up to 8-byte - // alignment. diff --git a/srcpkgs/mozjs91/patches/fix-i386-fdlibm.patch b/srcpkgs/mozjs91/patches/fix-i386-fdlibm.patch deleted file mode 100644 index 831e5e03678d..000000000000 --- a/srcpkgs/mozjs91/patches/fix-i386-fdlibm.patch +++ /dev/null @@ -1,18 +0,0 @@ -# error: typedef redefinition with different types ('__double_t' (aka 'double') vs 'long double') -# https://bugzilla.mozilla.org/show_bug.cgi?id=1729459 - ---- a/modules/fdlibm/src/math_private.h -+++ b/modules/fdlibm/src/math_private.h -@@ -30,7 +30,12 @@ - * Adapted from https://github.com/freebsd/freebsd-src/search?q=__double_t - */ - -+#if defined(__linux__) && defined(__i386__) -+// rely on glibc's double_t -+typedef long double __double_t; -+#else - typedef double __double_t; -+#endif - typedef __double_t double_t; - - /* diff --git a/srcpkgs/mozjs91/template b/srcpkgs/mozjs91/template index 73fcd54ee76b..c2370c02a7f7 100644 --- a/srcpkgs/mozjs91/template +++ b/srcpkgs/mozjs91/template @@ -1,98 +1,13 @@ -# Template file for 'mozjs91' +# Template file for 'mozjs91' pkgname=mozjs91 version=91.7.1 -revision=2 -build_wrksrc=js/src -build_style=gnu-configure -build_helper=rust -make_check_target=check-jit-test -configure_args="--disable-jemalloc --disable-strip --disable-tests \ - --disable-optimize --disable-debug --enable-ctypes --enable-readline \ - --enable-shared-js --enable-system-ffi --with-intl-api --with-system-icu \ - --with-system-nspr --with-system-zlib --enable-hardening --enable-release" -hostmakedepends="make pkg-config python3 python3-setuptools python3-six perl m4 - rust cargo llvm12 clang" -makedepends="icu-devel libffi-devel nspr-devel python3-devel readline-devel - zlib-devel rust-std" -checkdepends=python3 -short_desc="SpiderMonkey JavaScript interpreter and library (91.x)" +revision=3 +build_style=meta +short_desc="Mozilla JavaScript interpreter and library (91.x series) (removed package)" maintainer="Orphaned " -license="MPL-2.0" +license="metapackage" homepage="https://spidermonkey.dev" -distfiles="${MOZILLA_SITE}/firefox/releases/${version}esr/source/firefox-${version}esr.source.tar.xz" -checksum=57494a445e72f7eacb0bb870a3a79cde3c2143e234873c0c3e269df1d4742c92 - -LDFLAGS="-Wl,-z,stack-size=1048576" - -if [ "$XBPS_TARGET_NO_ATOMIC8" ]; then - makedepends+=" libatomic-devel" - LDFLAGS+=" -latomic" -fi - -if [ "$XBPS_TARGET_MACHINE" = i686 ]; then - # Disable LTO on i686, otherwise compilation of `jsrust` fails with - - # error: ran out of registers during register allocation - # LLVM ERROR: Cannot emit physreg copy instruction - # error: could not compile `jsrust` due to previous error - export MOZ_NO_RUST_LTO=1 -fi - -pre_configure() { - if [ "$CROSS_BUILD" ]; then - configure_args+=" --host=${XBPS_TRIPLET} --target=${XBPS_CROSS_TRIPLET} --enable-linker=bfd" - fi - export M4=m4 - export AWK=awk - export AC_MACRODIR=../../build/autoconf - chmod 0755 ../../build/autoconf/autoconf.sh - sh ../../build/autoconf/autoconf.sh configure.in > configure - chmod 0755 configure -} - -post_install() { - # Remove unneeded static library - rm -f "${DESTDIR}"/usr/lib/*.ajs - - # it has correct soname but not the right file name - mv "${DESTDIR}"/usr/lib/libmozjs-91.so \ - "${DESTDIR}"/usr/lib/libmozjs-91.so.0 - ln -rs "${DESTDIR}"/usr/lib/libmozjs-91.so.0 \ - "${DESTDIR}"/usr/lib/libmozjs-91.so -} - -pre_check() { - if [ "$XBPS_WORDSIZE" = 32 ]; then - vsed -i jit-test/tests/basic/bug653153.js -e s/65536/65568/g - vsed -i jit-test/tests/basic/bug653153.js -e s/65537/65569/g - fi - if [ "$XBPS_TARGET_MACHINE" = i686 ]; then - export JITTEST_EXTRA_ARGS="${JITTEST_EXTRA_ARGS} \ - -x basic/fdlibm-for-sin-cos-tan-argument.js \ - -x gc/gcparam.js \ - -x ion/dce-with-rinstructions.js \ - -x sunspider/check-3d-cube.js \ - -x sunspider/check-3d-raytrace.js \ - -x sunspider/check-access-nbody.js \ - -x wasm/nan-semantics.js \ - -x wasm/spec/spec/float_literals.wast.js \ - -x wasm/spec/spec/float_memory.wast.js \ - -x wasm/spec/threads/float_memory.wast.js \ - " - fi - if [ "$XBPS_LIBC" = musl ]; then - export JITTEST_EXTRA_ARGS="${JITTEST_EXTRA_ARGS} \ - -x sunspider/check-date-format-tofte.js \ - " - fi -} mozjs91-devel_package() { - depends="nspr-devel ${sourcepkg}>=${version}_${revision}" - short_desc+=" - development files" - pkg_install() { - vmove usr/bin/js91-config - vmove usr/include - vmove "usr/lib/*.so" - vmove usr/lib/pkgconfig - } + build_style=meta } From accba526a0e3dd57152b2711b9067d331a9ebe0f Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 26 Dec 2022 00:57:23 -0800 Subject: [PATCH 84/93] msg2: rebuild to fix ssp dependencies --- 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 3d4c5f1db8a1e6a8718c8001d60d09a395d4705b Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 26 Dec 2022 00:57:50 -0800 Subject: [PATCH 85/93] namecoin: rebuild to fix ssp dependencies --- 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 652c942451e77aef41dc966ed1b6270456988c61 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 26 Dec 2022 00:58:34 -0800 Subject: [PATCH 86/93] navit: rebuild to fix ssp dependencies --- 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 97815e1e941fd3b0e5d935f988a23f2ad9135779 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 26 Dec 2022 00:59:09 -0800 Subject: [PATCH 87/93] ngircd: rebuild to fix ssp dependencies --- 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 9c2b58522c6939de181c65e65b3d3f69989606f3 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 26 Dec 2022 00:59:33 -0800 Subject: [PATCH 88/93] ntp: rebuild to fix ssp dependencies --- 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 42294f8644205bdcabc78906c6c8309b5604c1c3 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 26 Dec 2022 01:00:31 -0800 Subject: [PATCH 89/93] openjdk8: rebuild to fix ssp dependencies --- 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 7705ba8aaec95d79e97c54ce0dc5715dffdb7a35 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 26 Dec 2022 01:01:00 -0800 Subject: [PATCH 90/93] openssh: rebuild to fix ssp dependencies --- 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 525f7f773a0404f339f0a5402008fcfed24f3281 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 26 Dec 2022 01:01:44 -0800 Subject: [PATCH 91/93] p0f: rebuild to fix ssp dependencies --- 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 43382a074c6a2eeab1334816121dd98424f4069b Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 26 Dec 2022 01:03:26 -0800 Subject: [PATCH 92/93] pam_ssh_agent_auth: rebuild to fix ssp dependencies --- 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 2064010820609021d34629010d51877d6df9e4a4 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Mon, 26 Dec 2022 01:03:54 -0800 Subject: [PATCH 93/93] pax: rebuild to fix ssp dependencies --- 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)"