From f3ad4ab862e2ab159b73ab2897cd64640dc469fa Mon Sep 17 00:00:00 2001 From: Nathaniel Barragan Date: Fri, 27 Aug 2021 01:20:13 -0700 Subject: [PATCH 001/904] New package: tut-0.0.28 --- srcpkgs/tut/template | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 srcpkgs/tut/template diff --git a/srcpkgs/tut/template b/srcpkgs/tut/template new file mode 100644 index 000000000000..f86c282322e4 --- /dev/null +++ b/srcpkgs/tut/template @@ -0,0 +1,19 @@ +# Template file for 'tut' +pkgname=tut +version=0.0.28 +revision=1 +build_style=go +go_import_path="github.com/RasmusLindroth/tut@$version" + + +hostmakedepends="git" +short_desc="TUI client for Mastodon" +maintainer="Nathaniel Barragan " +license="MIT" +homepage="https://github.com/RasmusLindroth/tut" +distfiles="https://github.com/RasmusLindroth/tut/archive/${version}.tar.gz" +checksum=b90cca232bcd13c601d2c5a12573dc0e45b6702a2dd9d892607df4b0d71270e0 + +post_install() { + vlicense LICENSE +} From c7e9753b0fe3da7cdb56a4689d5e3a4c09afabb6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89rico=20Nogueira?= Date: Wed, 21 Jul 2021 17:04:17 -0300 Subject: [PATCH 002/904] New package: linux-base-2021.07.21 Base package to be used as dependency for linux and linux-lts. This way they can share the same code and users who want to stick with a given kernel version can just install that one and linux-base instead of needing the linux or linux-lts meta and ignorepkg dances. --- srcpkgs/linux-base/template | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 srcpkgs/linux-base/template diff --git a/srcpkgs/linux-base/template b/srcpkgs/linux-base/template new file mode 100644 index 000000000000..249f21fa27f2 --- /dev/null +++ b/srcpkgs/linux-base/template @@ -0,0 +1,18 @@ +# Template file for 'linux-base' +pkgname=linux-base +version=2021.07.21 +revision=1 +build_style=meta +short_desc="Linux kernel base dependencies" +maintainer="Érico Nogueira " +license="Public Domain" +homepage="https://voidlinux.org/" + +case "$XBPS_TARGET_MACHINE" in + i686*|x86_64*) + depends="linux-firmware-amd linux-firmware-intel linux-firmware-nvidia linux-firmware-network dracut" + ;; + ppc*|armv7l*|aarch64*) + depends="linux-firmware-amd linux-firmware-nvidia linux-firmware-network dracut" + ;; +esac From c77e39a8e6872156cc233b4bfdecd2cbabf1a1e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89rico=20Nogueira?= Date: Wed, 21 Jul 2021 17:06:31 -0300 Subject: [PATCH 003/904] linux: update to 5.13. Also move to using linux-base. --- srcpkgs/linux/template | 21 +++------------------ 1 file changed, 3 insertions(+), 18 deletions(-) diff --git a/srcpkgs/linux/template b/srcpkgs/linux/template index 33463643fc20..50ff91aef896 100644 --- a/srcpkgs/linux/template +++ b/srcpkgs/linux/template @@ -1,30 +1,15 @@ # Template file for 'linux' pkgname=linux -version=5.12 +version=5.13 revision=1 build_style=meta +depends="linux${version} linux-base" short_desc="Linux kernel meta package" maintainer="Leah Neukirchen " license="Public Domain" homepage="http://www.voidlinux.org/" -case "$XBPS_TARGET_MACHINE" in - i686*|x86_64*) - depends="linux${version} linux-firmware-amd linux-firmware-intel linux-firmware-nvidia linux-firmware-network dracut" - _depends_headers="linux${version}-headers" - ;; - ppc*|armv7l*|aarch64*) - depends="linux${version} linux-firmware-amd linux-firmware-nvidia linux-firmware-network dracut" - _depends_headers="linux${version}-headers" - ;; - arm*) - depends="linux${version}" - _depends_headers="linux${version}-headers" - ;; - *) ;; -esac - linux-headers_package() { short_desc="Linux kernel headers meta package" - depends="${_depends_headers}" + depends="linux${version}-headers" } From d100180dd272428794cf60146c4b6e7bc683393c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89rico=20Nogueira?= Date: Wed, 21 Jul 2021 17:06:46 -0300 Subject: [PATCH 004/904] linux-lts: update to 5.10. Also move to using linux-base and xlint. --- srcpkgs/linux-lts/template | 22 ++++++---------------- 1 file changed, 6 insertions(+), 16 deletions(-) diff --git a/srcpkgs/linux-lts/template b/srcpkgs/linux-lts/template index ce6aace3950b..cf200e66935f 100644 --- a/srcpkgs/linux-lts/template +++ b/srcpkgs/linux-lts/template @@ -1,25 +1,15 @@ # Template file for 'linux-lts' pkgname=linux-lts -version=4.14 -revision=2 +version=5.10 +revision=1 build_style=meta -homepage="http://www.voidlinux.org/" +depends="linux${version} linux-base" short_desc="Linux LTS (Long Term Support) kernel meta package" maintainer="Leah Neukirchen " -license="Public domain" - -case "$XBPS_TARGET_MACHINE" in - i686*|x86_64*) - depends="linux${version} linux-firmware-amd linux-firmware-intel linux-firmware-nvidia linux-firmware-network dracut" - _depends_headers="linux${version}-headers" - ;; - arm*|aarch64*) - depends="linux${version}" - _depends_headers="linux${version}-headers" - ;; -esac +license="Public Domain" +homepage="http://www.voidlinux.org/" linux-lts-headers_package() { short_desc="Linux longterm support kernel headers meta package" - depends="${_depends_headers}" + depends="linux${version}-headers" } From 7d19aca6ec65925ec0750ffcdbf4646695564406 Mon Sep 17 00:00:00 2001 From: Nathaniel Barragan Date: Tue, 3 Aug 2021 19:43:30 -0700 Subject: [PATCH 005/904] cc65: update to 2.19. --- srcpkgs/cc65/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/cc65/template b/srcpkgs/cc65/template index bb31b4ad323a..751b37451020 100644 --- a/srcpkgs/cc65/template +++ b/srcpkgs/cc65/template @@ -1,6 +1,6 @@ # Template file for 'cc65' pkgname=cc65 -version=2.18 +version=2.19 revision=1 build_style="gnu-makefile" make_use_env=yes @@ -9,7 +9,7 @@ maintainer="Nathaniel Barragan " license="Zlib" homepage="https://cc65.github.io/" distfiles="https://github.com/cc65/cc65/archive/V${version}.tar.gz" -checksum=d14a22fb87c7bcbecd8a83d5362d5d317b19c6ce2433421f2512f28293a6eaab +checksum=157b8051aed7f534e5093471e734e7a95e509c577324099c3c81324ed9d0de77 nocross="Build process runs the built binary" disable_parallel_build=yes From d899d1f4499dbc36761408510863118cb8d262db Mon Sep 17 00:00:00 2001 From: Anton Afanasyev <1157248+2asoft@users.noreply.github.com> Date: Wed, 28 Jul 2021 13:08:46 -0700 Subject: [PATCH 006/904] CLion: update to 2021.2. --- srcpkgs/CLion/template | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/srcpkgs/CLion/template b/srcpkgs/CLion/template index 241daec8743e..f2ab575cea34 100644 --- a/srcpkgs/CLion/template +++ b/srcpkgs/CLion/template @@ -1,6 +1,6 @@ # Template file for 'CLion' pkgname=CLion -version=2021.1.3 +version=2021.2 revision=1 archs="i686 x86_64" wrksrc="clion-${version}" @@ -10,7 +10,7 @@ maintainer="Anton Afanasyev " license="custom:Commercial" homepage="https://www.jetbrains.com/clion" distfiles="https://download.jetbrains.com/cpp/CLion-${version}.tar.gz" -checksum=bf2f627bab06fa94b32f205f15a67659a7bb38e078847cb6e3f811098dc13897 +checksum=2cabf03c825f15cb9216a936aa20c2caef8a0c3624556292b60f9a25ca22a146 repository=nonfree restricted=yes nopie=yes @@ -28,8 +28,19 @@ post_extract() { # Remove files for other CPU architectures rm -rf bin/fsnotifier-arm rm -rf lib/pty4j-native/linux/aarch64 + rm -rf lib/pty4j-native/linux/arm rm -rf lib/pty4j-native/linux/mips64el rm -rf lib/pty4j-native/linux/ppc64le + rm -rf plugins/cwm-plugin/quiche-native/darwin-aarch64 + rm -rf plugins/cwm-plugin/quiche-native/darwin-x86-64 + rm -rf plugins/cwm-plugin/quiche-native/win32-x86-64 + rm -rf plugins/performanceTesting/bin/libyjpagent.dylib + rm -rf plugins/performanceTesting/bin/yjpagent.dll + rm -rf plugins/performanceTesting/bin/yjpagent64.dll + rm -rf plugins/python-ce/helpers/pydev/pydevd_attach_to_process/attach_amd64.dll + rm -rf plugins/python-ce/helpers/pydev/pydevd_attach_to_process/attach_x86.dll + rm -rf plugins/python-ce/helpers/pydev/pydevd_attach_to_process/attach_x86.dylib + rm -rf plugins/python-ce/helpers/pydev/pydevd_attach_to_process/attach_x86_64.dylib case "$XBPS_TARGET_MACHINE" in x86_64) @@ -37,6 +48,7 @@ post_extract() { rm -rf bin/clion.vmoptions rm -rf bin/libyjpagent-linux.so rm -rf lib/pty4j-native/linux/x86 + rm -rf plugins/performanceTesting/bin/libyjpagent.so rm -rf plugins/python-ce/helpers/pydev/pydevd_attach_to_process/attach_linux_x86.so ;; i686) @@ -44,6 +56,7 @@ post_extract() { rm -rf bin/clion64.vmoptions rm -rf bin/libyjpagent-linux64.so rm -rf lib/pty4j-native/linux/x86-64 + rm -rf plugins/performanceTesting/bin/libyjpagent64.so rm -rf plugins/python-ce/helpers/pydev/pydevd_attach_to_process/attach_linux_amd64.so ;; esac From c34130118c8b8aca8d3f9e3cb82cfd949e7ffd41 Mon Sep 17 00:00:00 2001 From: Arda Demir Date: Wed, 4 Aug 2021 09:26:08 +0300 Subject: [PATCH 007/904] bmake: update to 20210704. --- srcpkgs/bmake/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/bmake/template b/srcpkgs/bmake/template index ec5ad3933afd..17f5dc72ad89 100644 --- a/srcpkgs/bmake/template +++ b/srcpkgs/bmake/template @@ -1,6 +1,6 @@ # Template file for 'bmake' pkgname=bmake -version=20210621 +version=20210704 revision=1 create_wrksrc=yes short_desc="Portable version of the NetBSD make build tool" @@ -8,7 +8,7 @@ maintainer="Orphaned " license="BSD-3-Clause" homepage="http://www.crufty.net/help/sjg/bmake.html" distfiles="http://www.crufty.net/ftp/pub/sjg/bmake-${version}.tar.gz" -checksum=aa97b2f602fd31a71336ce97c54a1c74c2b3437fb24100830c1fff15cbd9ff3e +checksum=3efe8e1b11c52c9a396787df1d383a20de725115055dab4fdba04f8557315c36 python_version=3 do_configure() { From 70957b8e50f4dc0b8b495c23de46096bbae28502 Mon Sep 17 00:00:00 2001 From: Arda Demir Date: Wed, 4 Aug 2021 09:35:29 +0300 Subject: [PATCH 008/904] help2man: update to 1.48.3. --- srcpkgs/help2man/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/help2man/template b/srcpkgs/help2man/template index e28126e3126f..eafd273b8571 100644 --- a/srcpkgs/help2man/template +++ b/srcpkgs/help2man/template @@ -1,6 +1,6 @@ # Template file for 'help2man' pkgname=help2man -version=1.48.2 +version=1.48.3 revision=1 build_style=gnu-configure hostmakedepends="perl-Locale-gettext" @@ -10,5 +10,5 @@ maintainer="Orphaned " license="GPL-3.0-or-later" homepage="https://www.gnu.org/software/help2man" distfiles="${GNU_SITE}/${pkgname}/${pkgname}-${version}.tar.xz" -checksum=20cb36111df91d61741a20680912ab0e4c59da479c3fb05837c6f0a8cb7cb467 +checksum=8361ff3c643fbd391064e97e5f54592ca28b880eaffbf566a68e0ad800d1a8ac lib32disabled=yes From 73cd1aa1dbda7deef0953f4f5a8c5872d1c1e7a0 Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Wed, 4 Aug 2021 15:48:40 +0200 Subject: [PATCH 009/904] apk-tools: update to 2.12.7. --- srcpkgs/apk-tools/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/apk-tools/template b/srcpkgs/apk-tools/template index c6d522451779..b218b76a2e37 100644 --- a/srcpkgs/apk-tools/template +++ b/srcpkgs/apk-tools/template @@ -1,6 +1,6 @@ # Template file for 'apk-tools' pkgname=apk-tools -version=2.12.6 +version=2.12.7 revision=1 build_style=gnu-makefile # Link libapk statically @@ -12,7 +12,7 @@ maintainer="Leah Neukirchen " license="GPL-2.0-only" homepage="http://git.alpinelinux.org/cgit/apk-tools" distfiles="http://git.alpinelinux.org/cgit/${pkgname}/snapshot/${pkgname}-${version}.tar.bz2" -checksum=371b15e07e450ca117ef75dea58353721d67f09b3af4f328d5858ba7b2a13777 +checksum=269831b60d0008d3f4420293971ebbe951b04ee72f8359f2cc3ee89e649b1705 CFLAGS="-Wno-error" do_install() { From a6246cb5b0176743a95988a72f5b2ecfec204d8a Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Wed, 4 Aug 2021 17:25:52 +0200 Subject: [PATCH 010/904] erlang: update to 24.0.5. --- srcpkgs/erlang/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/erlang/template b/srcpkgs/erlang/template index f04c2e32dd0c..53573c6592a2 100644 --- a/srcpkgs/erlang/template +++ b/srcpkgs/erlang/template @@ -1,6 +1,6 @@ # Template file for 'erlang' pkgname=erlang -version=24.0.4 +version=24.0.5 revision=1 create_wrksrc=yes build_wrksrc="otp-OTP-${version}" @@ -14,7 +14,7 @@ license="Apache-2.0" homepage="http://www.erlang.org/" changelog="https://github.com/erlang/otp/releases" distfiles="https://github.com/erlang/otp/archive/OTP-${version}.tar.gz" -checksum=5af12fb9c8fd7f29b2b4136ed9a451a7218132430641ca4ebf1495f85a732b9b +checksum=dd189cf94bf86c610a66f5d9f1a49b8d95a7ce1a7534d216e97e8fade271e624 subpackages="erlang-doc" if [ -z "$CROSS_BUILD" ]; then From 9c7d0b1ddce77b695ca8be6275f8b126289b64fb Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Wed, 4 Aug 2021 17:26:13 +0200 Subject: [PATCH 011/904] linux5.13: update to 5.13.8. Use classic timestamp in KBUILD_BUILD_TIMESTAMP. --- srcpkgs/linux5.13/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/linux5.13/template b/srcpkgs/linux5.13/template index be7bd8b88dff..43a3f6aa16a6 100644 --- a/srcpkgs/linux5.13/template +++ b/srcpkgs/linux5.13/template @@ -1,6 +1,6 @@ # Template file for 'linux5.13' pkgname=linux5.13 -version=5.13.6 +version=5.13.8 revision=1 wrksrc="linux-${version%.*}" short_desc="Linux kernel and modules (${version%.*} series)" @@ -10,7 +10,7 @@ homepage="https://www.kernel.org" distfiles="https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-${version%.*}.tar.xz https://cdn.kernel.org/pub/linux/kernel/v5.x/patch-${version}.xz" checksum="3f6baa97f37518439f51df2e4f3d65a822ca5ff016aa8e60d2cc53b95a6c89d9 - e83b798bfe22bc9d5e8115cd2bbff24cdf5fd0de1b423a3342985445b02668a8" + dfbaaf312cd69021fbe8ab597460aa961b8d2944efca35caa26b36fce43e616d" skip_extraction="patch-${version}.xz" python_version=3 @@ -44,7 +44,7 @@ mutable_files=" /usr/lib/modules/${_kernver}/modules.devname" # reproducible build -export KBUILD_BUILD_TIMESTAMP=${SOURCE_DATE_EPOCH:-0} +export KBUILD_BUILD_TIMESTAMP=$(LC_ALL=C date -ud @${SOURCE_DATE_EPOCH:-0}) export KBUILD_BUILD_USER=voidlinux export KBUILD_BUILD_HOST=voidlinux From 83ef3304aae12e15d2feca97eb62887cbd87485b Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Wed, 4 Aug 2021 17:28:18 +0200 Subject: [PATCH 012/904] linux5.10: update to 5.10.56. Use classic timestamp in KBUILD_BUILD_TIMESTAMP. --- srcpkgs/linux5.10/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/linux5.10/template b/srcpkgs/linux5.10/template index 2832c9d04add..6242d17550e8 100644 --- a/srcpkgs/linux5.10/template +++ b/srcpkgs/linux5.10/template @@ -1,6 +1,6 @@ # Template file for 'linux5.10' pkgname=linux5.10 -version=5.10.54 +version=5.10.56 revision=1 wrksrc="linux-${version}" short_desc="Linux kernel and modules (${version%.*} series)" @@ -8,7 +8,7 @@ maintainer="Leah Neukirchen " license="GPL-2.0-only" homepage="https://www.kernel.org" distfiles="https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-${version}.tar.xz" -checksum=bf50c63261847187eca4a1793e5df5c1355b21697409589f6ca03e32b629be44 +checksum=4d6a0d5f9c50fa44890e0b61e1fb63f6efe6be448ceddfe1ad7c0cbd2890ec6b python_version=3 # XXX Restrict archs until a proper -dotconfig is available in FILESDIR. @@ -41,7 +41,7 @@ mutable_files=" /usr/lib/modules/${_kernver}/modules.devname" # reproducible build -export KBUILD_BUILD_TIMESTAMP=${SOURCE_DATE_EPOCH:-0} +export KBUILD_BUILD_TIMESTAMP=$(LC_ALL=C date -ud @${SOURCE_DATE_EPOCH:-0}) export KBUILD_BUILD_USER=voidlinux export KBUILD_BUILD_HOST=voidlinux From 7a092052e5318c16332472e5a450cf9bc6897f3f Mon Sep 17 00:00:00 2001 From: Michael Aldridge Date: Wed, 4 Aug 2021 13:09:36 -0500 Subject: [PATCH 013/904] New package: sftpgo-2.1.0 --- srcpkgs/sftpgo/template | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 srcpkgs/sftpgo/template diff --git a/srcpkgs/sftpgo/template b/srcpkgs/sftpgo/template new file mode 100644 index 000000000000..fda2729bd65c --- /dev/null +++ b/srcpkgs/sftpgo/template @@ -0,0 +1,16 @@ +# Template file for 'sftpgo' +pkgname=sftpgo +version=2.1.0 +revision=1 +build_style=go +go_import_path=github.com/drakkan/sftpgo +short_desc="Fully featured and highly configurable SFTP server" +maintainer="Michael Aldridge " +license="AGPL-3.0" +homepage="https://github.com/drakkan/sftpgo" +distfiles="https://github.com/drakkan/sftpgo/archive/refs/tags/v$version.tar.gz" +checksum=d04d75f1baee9d4510e40240e1b24b075430244abda8f7daef5922f5f3ca7fa9 + +post_install() { + vlicense LICENSE +} From 14d99cfe489f872452b176337328162bccb264f4 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Wed, 4 Aug 2021 20:56:10 +0200 Subject: [PATCH 014/904] icdiff: update to 2.0.4. --- srcpkgs/icdiff/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/icdiff/template b/srcpkgs/icdiff/template index 3af6dfdcd074..381de5c102b5 100644 --- a/srcpkgs/icdiff/template +++ b/srcpkgs/icdiff/template @@ -1,6 +1,6 @@ # Template file for 'icdiff' pkgname=icdiff -version=2.0.3 +version=2.0.4 revision=1 wrksrc="${pkgname}-release-${version}" build_style=python3-module @@ -13,7 +13,7 @@ license="Python-2.0" homepage="http://www.jefftk.com/icdiff" changelog="https://github.com/jeffkaufman/icdiff/raw/master/ChangeLog" distfiles="https://github.com/jeffkaufman/icdiff/archive/release-${version}.tar.gz" -checksum=23e9502895999a929e1d3559403205846742f7cf8a22c5d7f3c4db910ba12321 +checksum=ec21632b64159990a1bcedc8b25f96b476e7a6d9e18b75422420c0ae9b694eac replaces="python3-icdiff>=0" provides="python3-icdiff-${version}_${revision}" From 2087d0a86ae9e2ddf62304d65530cde44cca7431 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Wed, 4 Aug 2021 20:57:32 +0200 Subject: [PATCH 015/904] prosody: update to 0.11.10. Fixes CVE-2021-37601. --- srcpkgs/prosody/template | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/srcpkgs/prosody/template b/srcpkgs/prosody/template index 7d0ac6a3946d..33502549bd51 100644 --- a/srcpkgs/prosody/template +++ b/srcpkgs/prosody/template @@ -1,6 +1,6 @@ # Template file for 'prosody' pkgname=prosody -version=0.11.9 +version=0.11.10 revision=1 build_style=configure configure_args=" @@ -26,8 +26,9 @@ short_desc="Lightweight and extensible Jabber/XMPP server written in Lua" maintainer="Duncaen " license="MIT" homepage="https://prosody.im/" +changelog="https://blog.prosody.im/prosody-${version}-released/" distfiles="https://prosody.im/downloads/source/${pkgname}-${version}.tar.gz" -checksum=ccc032aea49d858635fb93644db276de6812be83073a8d80e9b4508095deff09 +checksum=c6d714e6d4a6ddd1db1266b205d9d8a3ed91818f42755c9268ffb18359d204e1 system_accounts="prosody" prosody_homedir="/var/lib/prosody" From 2b58974278aab079a4d56faa3764bd8f4c4b1853 Mon Sep 17 00:00:00 2001 From: Bartek Stalewski Date: Tue, 3 Aug 2021 10:37:50 +0200 Subject: [PATCH 016/904] fail2ban: update to version 0.11.2 --- srcpkgs/fail2ban/template | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/srcpkgs/fail2ban/template b/srcpkgs/fail2ban/template index 2b8fe877a8be..4abc63302393 100644 --- a/srcpkgs/fail2ban/template +++ b/srcpkgs/fail2ban/template @@ -1,21 +1,23 @@ # Template file for 'fail2ban' pkgname=fail2ban -version=0.11.1 -revision=2 +version=0.11.2 +revision=1 build_style=python3-module hostmakedepends="pkg-config python3" depends="python3" short_desc="Authentication failure monitor system" maintainer="necrophcodr " license="GPL-2.0-only" -homepage="http://www.fail2ban.org/" -distfiles="https://github.com/${pkgname}/${pkgname}/archive/${version}.tar.gz" -checksum=71d2a52b66bb0f87ac3812246bdd3819ec561913cd44afd39130a342f043aa6d +homepage="https://www.fail2ban.org/" +changelog="https://raw.githubusercontent.com/fail2ban/fail2ban/master/ChangeLog" +distfiles="https://github.com/fail2ban/fail2ban/archive/${version}.tar.gz" +checksum=383108e5f8644cefb288537950923b7520f642e7e114efb843f6e7ea9268b1e0 conf_files=" /etc/fail2ban/fail2ban.conf /etc/fail2ban/jail.conf /etc/fail2ban/action.d/*.conf /etc/fail2ban/filter.d/*.conf" +make_dirs="/var/lib/fail2ban 0700 root root" pre_build() { ./fail2ban-2to3 From f38a1cabefef4c5de295bdeb8742f2994a782dc6 Mon Sep 17 00:00:00 2001 From: Michal Vasilek Date: Tue, 25 May 2021 00:28:46 +0200 Subject: [PATCH 017/904] New package: python3-smartypants-2.0.1 --- srcpkgs/python3-smartypants/template | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 srcpkgs/python3-smartypants/template diff --git a/srcpkgs/python3-smartypants/template b/srcpkgs/python3-smartypants/template new file mode 100644 index 000000000000..728196e7100c --- /dev/null +++ b/srcpkgs/python3-smartypants/template @@ -0,0 +1,19 @@ +# Template file for 'python3-smartypants' +pkgname=python3-smartypants +version=2.0.1 +revision=1 +wrksrc="smartypants.py-$version" +build_style=python3-module +hostmakedepends="python3-setuptools" +depends="python3" +checkdepends="python3-docutils" +short_desc="Python with the SmartyPants" +maintainer="Michal Vasilek " +license="BSD-3-Clause" +homepage="https://github.com/leohemsted/smartypants.py/" +distfiles="https://github.com/leohemsted/smartypants.py/archive/refs/tags/v$version.tar.gz" +checksum=b98191911ff3b4144ef8ad53e776a2d0ad24bd508a905c6ce523597c40022773 + +post_install() { + vlicense COPYING +} From 9c913adec95ce8608a150bb93d385597f374266f Mon Sep 17 00:00:00 2001 From: Michal Vasilek Date: Tue, 25 May 2021 00:28:53 +0200 Subject: [PATCH 018/904] New package: python3-typogrify-2.0.7 --- srcpkgs/python3-typogrify/template | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 srcpkgs/python3-typogrify/template diff --git a/srcpkgs/python3-typogrify/template b/srcpkgs/python3-typogrify/template new file mode 100644 index 000000000000..f168a9cad689 --- /dev/null +++ b/srcpkgs/python3-typogrify/template @@ -0,0 +1,19 @@ +# Template file for 'python3-typogrify' +pkgname=python3-typogrify +version=2.0.7 +revision=1 +wrksrc="typogrify-$version" +build_style=python3-module +hostmakedepends="python3-setuptools" +depends="python3-smartypants" +short_desc="Filters to enhance web typography" +maintainer="Michal Vasilek " +license="BSD-3-Clause" +homepage="https://github.com/mintchaos/typogrify" +distfiles="https://github.com/mintchaos/typogrify/archive/refs/tags/$version.tar.gz" +checksum=d5081966c1c1423157e240d5cfe7435b56ca30be57ff8c7fe6f90f6cc42295ee +make_check=no # conflicting dependencies + +post_install() { + vlicense LICENSE.txt +} From 99734af3c589d1145dc530b1a392398b24f05b1c Mon Sep 17 00:00:00 2001 From: Michal Vasilek Date: Tue, 25 May 2021 00:29:00 +0200 Subject: [PATCH 019/904] New package: gi-docgen-2021.6 --- srcpkgs/gi-docgen/template | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 srcpkgs/gi-docgen/template diff --git a/srcpkgs/gi-docgen/template b/srcpkgs/gi-docgen/template new file mode 100644 index 000000000000..ff1c217d297e --- /dev/null +++ b/srcpkgs/gi-docgen/template @@ -0,0 +1,14 @@ +# Template file for 'gi-docgen' +pkgname=gi-docgen +version=2021.6 +revision=1 +build_style=python3-module +hostmakedepends="python3-setuptools" +depends="python3-Pygments python3-typogrify python3-Jinja2 python3-toml" +short_desc="Documentation generator for GObject-based libraries" +maintainer="Michal Vasilek " +license="Apache-2.0, GPL-3.0-or-later" +homepage="https://gnome.pages.gitlab.gnome.org/gi-docgen/" +distfiles="https://gitlab.gnome.org/GNOME/gi-docgen/-/archive/$version/gi-docgen-$version.tar.gz" +checksum=d43cc51cb0c614f8906469bf313dbd23337f355a3281ecd4324980be773cdff1 +make_check=no # no tests, but check fails From 6ad8aac51b008ac328989079aeac5540f014ead1 Mon Sep 17 00:00:00 2001 From: Michal Vasilek Date: Wed, 7 Jul 2021 17:08:00 +0200 Subject: [PATCH 020/904] sysprof: update to 3.40.1. --- srcpkgs/sysprof/patches/build.patch | 10 -- srcpkgs/sysprof/patches/musl.patch | 157 ---------------------------- srcpkgs/sysprof/template | 12 +-- 3 files changed, 4 insertions(+), 175 deletions(-) delete mode 100644 srcpkgs/sysprof/patches/build.patch delete mode 100644 srcpkgs/sysprof/patches/musl.patch diff --git a/srcpkgs/sysprof/patches/build.patch b/srcpkgs/sysprof/patches/build.patch deleted file mode 100644 index 4d99d6bc3f32..000000000000 --- a/srcpkgs/sysprof/patches/build.patch +++ /dev/null @@ -1,10 +0,0 @@ ---- a/src/libsysprof-capture/sysprof-capture-condition.c -+++ b/src/libsysprof-capture/sysprof-capture-condition.c -@@ -269,6 +269,7 @@ sysprof_capture_condition_copy (const SysprofCaptureCondition *self) - } - - sysprof_assert_not_reached (); -+ return NULL; - } - - static void diff --git a/srcpkgs/sysprof/patches/musl.patch b/srcpkgs/sysprof/patches/musl.patch deleted file mode 100644 index abaac692fb37..000000000000 --- a/srcpkgs/sysprof/patches/musl.patch +++ /dev/null @@ -1,157 +0,0 @@ -From 1d2de32e97bf5569cc33ee9a90c873e1bbd2b1e6 Mon Sep 17 00:00:00 2001 -From: q66 -Date: Sun, 6 Sep 2020 18:21:37 +0200 -Subject: [PATCH] fix build on musl - ---- - .../sysprof-capture-cursor.c | 1 + - .../sysprof-capture-reader.c | 1 + - src/libsysprof-capture/sysprof-capture-util.c | 1 + - .../sysprof-capture-writer-cat.c | 1 + - src/libsysprof-capture/sysprof-collector.c | 1 + - src/libsysprof-capture/sysprof-compat.h | 28 +++++++++++++++++++ - src/libsysprof-capture/sysprof-platform.c | 1 + - 7 files changed, 34 insertions(+) - create mode 100644 src/libsysprof-capture/sysprof-compat.h - -diff --git src/libsysprof-capture/sysprof-capture-cursor.c src/libsysprof-capture/sysprof-capture-cursor.c -index 24563f0..bb77a60 100644 ---- a/src/libsysprof-capture/sysprof-capture-cursor.c -+++ b/src/libsysprof-capture/sysprof-capture-cursor.c -@@ -59,6 +59,7 @@ - #include - #include - -+#include "sysprof-compat.h" - #include "sysprof-capture-condition.h" - #include "sysprof-capture-cursor.h" - #include "sysprof-capture-reader.h" -diff --git src/libsysprof-capture/sysprof-capture-reader.c src/libsysprof-capture/sysprof-capture-reader.c -index 67c6b28..252d006 100644 ---- a/src/libsysprof-capture/sysprof-capture-reader.c -+++ b/src/libsysprof-capture/sysprof-capture-reader.c -@@ -68,6 +68,7 @@ - #include - #include - -+#include "sysprof-compat.h" - #include "sysprof-capture-reader.h" - #include "sysprof-capture-util-private.h" - #include "sysprof-capture-writer.h" -diff --git src/libsysprof-capture/sysprof-capture-util.c src/libsysprof-capture/sysprof-capture-util.c -index 0bbea06..0e5f7e7 100644 ---- a/src/libsysprof-capture/sysprof-capture-util.c -+++ b/src/libsysprof-capture/sysprof-capture-util.c -@@ -56,6 +56,7 @@ - - #include "config.h" - -+#include - #include - #include - #include -diff --git src/libsysprof-capture/sysprof-capture-writer-cat.c src/libsysprof-capture/sysprof-capture-writer-cat.c -index 66171b9..9febbbb 100644 ---- a/src/libsysprof-capture/sysprof-capture-writer-cat.c -+++ b/src/libsysprof-capture/sysprof-capture-writer-cat.c -@@ -63,6 +63,7 @@ - #include - #include - -+#include "sysprof-compat.h" - #include "sysprof-capture.h" - #include "sysprof-macros-internal.h" - -diff --git src/libsysprof-capture/sysprof-collector.c src/libsysprof-capture/sysprof-collector.c -index 1d7a0d6..7af6c96 100644 ---- a/src/libsysprof-capture/sysprof-collector.c -+++ b/src/libsysprof-capture/sysprof-collector.c -@@ -73,6 +73,7 @@ - - #include "mapped-ring-buffer.h" - -+#include "sysprof-compat.h" - #include "sysprof-capture-util-private.h" - #include "sysprof-collector.h" - #include "sysprof-macros-internal.h" -diff --git src/libsysprof-capture/sysprof-compat.h src/libsysprof-capture/sysprof-compat.h -new file mode 100644 -index 0000000..ae9bf10 ---- /dev/null -+++ b/src/libsysprof-capture/sysprof-compat.h -@@ -0,0 +1,28 @@ -+/* added by q66 @ void to fix build on musl */ -+ -+#pragma once -+ -+#ifndef __GLIBC__ -+ -+#include -+#include -+ -+/* from glibc */ -+#ifndef TEMP_FAILURE_RETRY -+# define TEMP_FAILURE_RETRY(expression) \ -+ (__extension__ \ -+ ({ long int __result; \ -+ do __result = (long int) (expression); \ -+ while (__result == -1L && errno == EINTR); \ -+ __result; })) -+#endif -+ -+static inline void *reallocarray(void *p, size_t nmemb, size_t sz) { -+ if (sz && (nmemb > ((size_t)-1 / sz))) { -+ errno = ENOMEM; -+ return NULL; -+ } -+ return realloc(p, nmemb * sz); -+} -+ -+#endif -diff --git src/libsysprof-capture/sysprof-platform.c src/libsysprof-capture/sysprof-platform.c -index a80ab89..05bd590 100644 ---- a/src/libsysprof-capture/sysprof-platform.c -+++ b/src/libsysprof-capture/sysprof-platform.c -@@ -60,6 +60,7 @@ - #include - #include - -+#include "sysprof-compat.h" - #include "sysprof-capture-util-private.h" - #include "sysprof-platform.h" - --- -2.28.0 - -From here onward, blame sgn -Index: meson.build -=================================================================== ---- a/meson.build -+++ b/meson.build -@@ -69,6 +69,7 @@ config_h.set('LOCALEDIR', 'PACKAGE_LOCAL - config_h.set('HAVE_EXECINFO_H', cc.has_header('execinfo.h')) - - config_h.set('HAVE_STRLCPY', cc.has_function('strlcpy')) -+config_h.set('HAVE_REALLOCARRAY', cc.has_function('reallocarray')) - - if get_option('libunwind') - libunwind_dep = dependency('libunwind-generic', required: false) -Index: src/libsysprof-capture/sysprof-compat.h -=================================================================== ---- a/src/libsysprof-capture/sysprof-compat.h 2021-02-05 23:39:58.352258624 +0100 -+++ b/src/libsysprof-capture/sysprof-compat.h 2021-02-05 23:47:07.662841454 +0100 -@@ -17,6 +17,7 @@ - __result; })) - #endif - -+#ifndef HAVE_REALLOCARRAY - static inline void *reallocarray(void *p, size_t nmemb, size_t sz) { - if (sz && (nmemb > ((size_t)-1 / sz))) { - errno = ENOMEM; -@@ -24,5 +25,5 @@ - } - return realloc(p, nmemb * sz); - } -- -+#endif - #endif diff --git a/srcpkgs/sysprof/template b/srcpkgs/sysprof/template index eae51ea7356b..2e24cd7de548 100644 --- a/srcpkgs/sysprof/template +++ b/srcpkgs/sysprof/template @@ -1,27 +1,23 @@ # Template file for 'sysprof' pkgname=sysprof -version=3.38.0 +version=3.40.1 revision=1 build_style=meson configure_args="-Denable_gtk=true -Dsystemdunitdir=deleteme" hostmakedepends="gettext pkg-config itstool glib-devel" -makedepends="gtk+3-devel libdazzle-devel polkit-devel glib-devel elogind-devel" +makedepends="gtk+3-devel libdazzle-devel polkit-devel glib-devel elogind-devel json-glib-devel" short_desc="System-wide profiler for Linux" maintainer="Enno Boland " license="GPL-2.0-or-later, GPL-3.0-or-later" -homepage="http://sysprof.com/" +homepage="https://gitlab.gnome.org/GNOME/sysprof" distfiles="${GNOME_SITE}/${pkgname}/${version%.*}/${pkgname}-${version}.tar.xz" -checksum=8bcd728dc2f74e6f589410370dfb1b8801468bb3cc1803aa240735a7cff241ce +checksum=c25000d6a20e8c4d314f5c861a1f70d7c3e2027117437fd9198fa811b9fc7437 # for ITS rules if [ "$CROSS_BUILD" ]; then hostmakedepends+=" polkit-devel" fi -pre_build() { - export SHELL=/bin/bash -} - post_install() { rm -rf ${DESTDIR}/usr/deleteme } From a3c461f3dd745b25befd4369e0d8590ac498fa5f Mon Sep 17 00:00:00 2001 From: Michal Vasilek Date: Tue, 1 Jun 2021 23:48:13 +0200 Subject: [PATCH 021/904] gtk4: update to 4.2.1, split docs, enable sysprof --- srcpkgs/gtk4-doc | 1 + srcpkgs/gtk4/patches/fix-sysprof.patch | 23 ++++++++++++++++ srcpkgs/gtk4/template | 36 +++++++++++++++++++------- 3 files changed, 50 insertions(+), 10 deletions(-) create mode 120000 srcpkgs/gtk4-doc create mode 100644 srcpkgs/gtk4/patches/fix-sysprof.patch diff --git a/srcpkgs/gtk4-doc b/srcpkgs/gtk4-doc new file mode 120000 index 000000000000..870d493d73bf --- /dev/null +++ b/srcpkgs/gtk4-doc @@ -0,0 +1 @@ +gtk4 \ No newline at end of file diff --git a/srcpkgs/gtk4/patches/fix-sysprof.patch b/srcpkgs/gtk4/patches/fix-sysprof.patch new file mode 100644 index 000000000000..76a86d16cc80 --- /dev/null +++ b/srcpkgs/gtk4/patches/fix-sysprof.patch @@ -0,0 +1,23 @@ +--- a/gtk/meson.build ++++ b/gtk/meson.build +@@ -1001,6 +1001,7 @@ gtk_deps = [ + epoxy_dep, + libm, + graphene_dep, ++ libsysprof_dep, + ] + + if harfbuzz_dep.found() and pangoft_dep.found() +diff --git a/tools/meson.build b/tools/meson.build +index 1811b69..804e37f 100644 +--- a/tools/meson.build ++++ b/tools/meson.build +@@ -30,7 +30,7 @@ gtk_tools = [ + 'gtk-builder-tool-enumerate.c', + 'gtk-builder-tool-preview.c'], [libgtk_dep] ], + ['gtk4-update-icon-cache', ['updateiconcache.c'] + extra_update_icon_cache_objs, [ libgtk_static_dep ] ], +- ['gtk4-encode-symbolic-svg', ['encodesymbolic.c'], [ libgtk_static_dep ] ], ++ ['gtk4-encode-symbolic-svg', ['encodesymbolic.c'], [ libgtk_static_dep, libsysprof_dep ] ], + ] + + if os_unix diff --git a/srcpkgs/gtk4/template b/srcpkgs/gtk4/template index 450d393b09c0..6441fdf8e85c 100644 --- a/srcpkgs/gtk4/template +++ b/srcpkgs/gtk4/template @@ -1,42 +1,58 @@ # Template file for 'gtk4' pkgname=gtk4 -version=4.2.0 +version=4.2.1 revision=1 wrksrc="gtk-${version}" build_style=meson build_helper="gir" -configure_args="-Dman-pages=true -Dbuild-tests=false -Dmedia=all +configure_args="-Dman-pages=true -Dbuild-tests=false -Dgtk_doc=true -Dbroadway-backend=$(vopt_if broadway true false) -Dx11-backend=$(vopt_if x11 true false) -Dwayland-backend=$(vopt_if wayland true false) -Dintrospection=$(vopt_if gir enabled disabled) - -Dprint-backends=$(vopt_if cups 'cups,file' file) -Dcolord=$(vopt_if colord enabled disabled) -Dcloudproviders=$(vopt_if cloudproviders enabled disabled) - -Dvulkan=$(vopt_if vulkan enabled disabled)" -hostmakedepends="gettext-devel glib-devel gtk-doc gtk-update-icon-cache perl - pkg-config sassc gettext + -Dvulkan=$(vopt_if vulkan enabled disabled) + -Dsysprof=$(vopt_if sysprof enabled disabled)" +hostmakedepends="gettext-devel glib-devel gi-docgen gtk-update-icon-cache perl + pkg-config sassc gettext libxslt docbook-xsl $(vopt_if wayland 'wayland-devel wayland-protocols')" makedepends="at-spi2-atk-devel gdk-pixbuf-devel libepoxy-devel pango-devel iso-codes graphene-devel gst-plugins-bad1-devel ffmpeg-devel $(vopt_if colord 'colord-devel') $(vopt_if cups 'cups-devel') $(vopt_if wayland 'libxkbcommon-devel wayland-devel wayland-protocols MesaLib-devel') $(vopt_if x11 'libXcursor-devel libXdamage-devel libXext-devel libXinerama-devel libXi-devel libXrandr-devel libXcomposite-devel') - $(vopt_if cloudproviders 'libcloudproviders-devel') $(vopt_if vulkan 'vulkan-loader Vulkan-Headers')" + $(vopt_if cloudproviders 'libcloudproviders-devel') $(vopt_if vulkan 'vulkan-loader Vulkan-Headers') + $(vopt_if sysprof 'sysprof-devel json-glib-devel polkit-devel')" depends="gtk-update-icon-cache shared-mime-info $(vopt_if x11 'dbus-x11')" short_desc="GIMP ToolKit (v4)" maintainer="Enno Boland " license="LGPL-2.1-or-later" homepage="https://www.gtk.org/" distfiles="${GNOME_SITE}/gtk/${version%.*}/gtk-${version}.tar.xz" -checksum=e975f286e911666a79b6bcf486e6f99b0bd9d2b4cc348d19bce487a0b1c97072 +checksum=023169775de43f0a1fde066fbc19d78545ea6a7562c1915abde9b8ae4a7309e6 # Package build options -build_options="broadway cloudproviders colord cups gir vulkan wayland x11" +build_options="broadway cloudproviders colord cups gir vulkan wayland x11 sysprof" desc_option_broadway="Enable support for the HTML5 Broadway backend" desc_option_cloudproviders="Enable integration with cloudproviders, such as Nextcloud" +desc_option_sysprof="Enable support for sysprof profiling" -build_options_default="colord cups broadway wayland x11 cloudproviders vulkan gir" +build_options_default="broadway cloudproviders colord cups gir vulkan wayland x11 sysprof" + +pre_build() { + # help gi-docgen find gi files on cross + if [ -n "$CROSS_BUILD" ]; then + export XDG_DATA_DIRS=/usr/$XBPS_CROSS_TRIPLET/usr/share/ + fi +} + +gtk4-doc_package() { + short_desc+=" - documentation" + pkg_install() { + vmove usr/share/doc + } +} gtk4-devel_package() { depends="${makedepends} ${sourcepkg}>=${version}_${revision}" From 2c0c3350fa17d419c692af81b5786a2f8ab3bc59 Mon Sep 17 00:00:00 2001 From: Arjan Mossel Date: Tue, 3 Aug 2021 20:56:22 +0200 Subject: [PATCH 022/904] electrum: update to 4.1.5. --- srcpkgs/electrum/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/electrum/template b/srcpkgs/electrum/template index 92f21f07ef4d..91200e0c3402 100644 --- a/srcpkgs/electrum/template +++ b/srcpkgs/electrum/template @@ -1,6 +1,6 @@ # Template file for 'electrum' pkgname=electrum -version=4.1.4 +version=4.1.5 revision=1 build_style=python3-module hostmakedepends="python3-setuptools python3-PyQt5-devel-tools" @@ -20,7 +20,7 @@ maintainer="Charles E. Lehner " license="MIT" homepage="https://electrum.org/" distfiles="https://github.com/spesmilo/electrum/archive/${version}.tar.gz" -checksum=31f3a794565c3360f129b97d9a3962f8cc978f79d1b0f69d0929e00ce2bfc0d8 +checksum=74bf1ff3675d62f45ffe9178679b963f57ee6be0fc0d0a807e559967db714bd2 post_install() { sed -i -e 's|electrum %u|electrum|' \ From 9df674d535091a6aad9144234c67735de70b3d31 Mon Sep 17 00:00:00 2001 From: Michal Vasilek Date: Sun, 18 Jul 2021 11:01:29 +0200 Subject: [PATCH 023/904] libinput: update to 1.18.1. --- srcpkgs/libinput/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/libinput/template b/srcpkgs/libinput/template index 6361bb405ee7..ef558a68d6a5 100644 --- a/srcpkgs/libinput/template +++ b/srcpkgs/libinput/template @@ -1,6 +1,6 @@ # Template file for 'libinput' pkgname=libinput -version=1.17.3 +version=1.18.1 revision=1 build_style=meson configure_args="$(vopt_bool debug_gui debug-gui) -Ddocumentation=false -Dtests=false" @@ -13,7 +13,7 @@ maintainer="bra1nwave " license="MIT" homepage="https://www.freedesktop.org/wiki/Software/libinput" distfiles="${FREEDESKTOP_SITE}/${pkgname}/${pkgname}-${version}.tar.xz" -checksum=0d010e0bf601b5d3a06b3c4d77d67751cf554f3e6448e57aa046ea9ee8f818ac +checksum=9ca14021fbc2523bc0610582c51f368321592040b6ca63becc2fa1ea11f1a7cb build_options="debug_gui" desc_option_debug_gui="Build with debug GUI (GTK+3)" From 523fb1b0de04fcfb210e9f4aef2a22d7fb8c09c2 Mon Sep 17 00:00:00 2001 From: "Alex Xu (Hello71)" Date: Thu, 5 Aug 2021 11:10:15 -0400 Subject: [PATCH 024/904] shotcut: remove qt5-webkit-devel dep shotcut does not use webkit since https://github.com/mltframework/shotcut/commit/a44fe75a4dc7410668935cd0d3470994f5997571. no revbump because this is purely build-time change. --- srcpkgs/shotcut/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/shotcut/template b/srcpkgs/shotcut/template index 5ad51345b231..d0e7d67586f9 100644 --- a/srcpkgs/shotcut/template +++ b/srcpkgs/shotcut/template @@ -7,8 +7,8 @@ configure_args="SHOTCUT_VERSION=VOID-$version DEFINES+=SHOTCUT_NOUPGRADE" hostmakedepends="pkg-config qt5-tools qt5-qmake qt5-host-tools" makedepends="gstreamer1-devel lame-devel libvpx-devel mlt7-devel mlt7-python3 qt5-declarative-devel qt5-graphicaleffects qt5-multimedia-devel - qt5-quickcontrols2-devel qt5-webkit-devel qt5-websockets-devel - qt5-x11extras-devel x264-devel" + qt5-quickcontrols2-devel qt5-websockets-devel qt5-x11extras-devel + x264-devel" depends="frei0r-plugins qt5-graphicaleffects qt5-quickcontrols" short_desc="Free, open source, cross-platform video editor" maintainer="John " From 50cad14a20c02fe731a0d021dcc2aec7a0e6477a Mon Sep 17 00:00:00 2001 From: mobinmob Date: Thu, 5 Aug 2021 19:56:44 +0300 Subject: [PATCH 025/904] notcurses: update to 2.3.13. --- srcpkgs/notcurses/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/notcurses/template b/srcpkgs/notcurses/template index 4b3563f65ffc..0023919a6ace 100644 --- a/srcpkgs/notcurses/template +++ b/srcpkgs/notcurses/template @@ -1,6 +1,6 @@ # Template file for 'notcurses' pkgname=notcurses -version=2.3.12 +version=2.3.13 revision=1 build_style=cmake configure_args="-DUSE_STATIC=ON $(vopt_bool man USE_PANDOC)" @@ -14,7 +14,7 @@ license="Apache-2.0" homepage="https://nick-black.com/dankwiki/index.php/Notcurses" changelog="https://raw.githubusercontent.com/dankamongmen/notcurses/master/NEWS.md" distfiles="https://github.com/dankamongmen/notcurses/archive/v${version}.tar.gz" -checksum=ce042908fac11f7df1f9eaa610e46e9c615f53ab036b7c27ae2396292512407b +checksum=c5eb822ea5b98028acd4a8dd21b155f893d928e4a30a8309eea0c406403af4e8 build_options="man" desc_option_man="Use pandoc for manpages" From 28e6744e7bd92919bca94fbbf81158c3374f3263 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89rico=20Nogueira?= Date: Thu, 5 Aug 2021 09:27:02 -0300 Subject: [PATCH 026/904] nvidia: fix proton errors. Proton sometimes errors out with: The NVIDIA driver was unable to open 'libnvidia-glvkspirv.so.470.57.02'. This library is required at run time. This is caused by an out of date glibc cache, so we now run ldconfig in INSTALL. This solution was pointed out by mvf. Unfortunately, this isn't the entirely correct solution: ldconfig should always be run after package installations that touch /usr/lib, to avoid similar issues. Until there's a simple solution for it (maybe general purpose XBPS hooks), this is the best we can do. Fixes: #32222 --- srcpkgs/nvidia/INSTALL | 3 +++ srcpkgs/nvidia/template | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 srcpkgs/nvidia/INSTALL diff --git a/srcpkgs/nvidia/INSTALL b/srcpkgs/nvidia/INSTALL new file mode 100644 index 000000000000..2461dca609f6 --- /dev/null +++ b/srcpkgs/nvidia/INSTALL @@ -0,0 +1,3 @@ +case "${ACTION}" in +post) ldconfig -X || : ;; +esac diff --git a/srcpkgs/nvidia/template b/srcpkgs/nvidia/template index 2ebd8c1b5e49..9c022ef65649 100644 --- a/srcpkgs/nvidia/template +++ b/srcpkgs/nvidia/template @@ -4,7 +4,7 @@ _desc="NVIDIA drivers for linux" pkgname=nvidia version=470.57.02 -revision=1 +revision=2 maintainer="Andrew Benson " license="custom:NVIDIA Proprietary" homepage="https://www.nvidia.com" From 404b075b651e53e3972a347e2974611943d3661d Mon Sep 17 00:00:00 2001 From: mobinmob Date: Thu, 5 Aug 2021 20:01:56 +0300 Subject: [PATCH 027/904] font-awesome5: update to 5.15.4. Also: - add changelog. Closes: #32339 [via git-merge-pr] --- srcpkgs/font-awesome5/template | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/srcpkgs/font-awesome5/template b/srcpkgs/font-awesome5/template index c4fcf1d5d3f4..890f74cc8be0 100644 --- a/srcpkgs/font-awesome5/template +++ b/srcpkgs/font-awesome5/template @@ -1,6 +1,6 @@ # Template file for 'font-awesome5' pkgname=font-awesome5 -version=5.15.3 +version=5.15.4 revision=1 wrksrc="Font-Awesome-${version}" depends="font-util" @@ -8,8 +8,9 @@ short_desc="Iconic font (version 5)" maintainer="mobinmob " license="OFL-1.1" homepage="https://fontawesome.com" +changelog="https://raw.githubusercontent.com/FortAwesome/Font-Awesome/master/CHANGELOG.md" distfiles="https://github.com/FortAwesome/Font-Awesome/archive/${version}.tar.gz" -checksum=3159331c378de00ae69d6c35d7b00f8d9610eafd6acc4c5c28319c08e9158a31 +checksum=82c301594a566277ba3cf41e037fc03ae101727d3e5d682d09e322a53937b5ed conflicts="font-awesome>=0" font_dirs="/usr/share/fonts/OTF" From a08e2c19d41e07ae9b8f165118c551c5dc9e4608 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C2=A9TwT?= Date: Fri, 6 Aug 2021 00:55:17 +0700 Subject: [PATCH 028/904] zoom: update to 5.7.28991.0726_1 --- srcpkgs/zoom/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/zoom/template b/srcpkgs/zoom/template index ef5b208e2db3..71628a6c079a 100644 --- a/srcpkgs/zoom/template +++ b/srcpkgs/zoom/template @@ -1,6 +1,6 @@ # Template file for 'zoom' pkgname=zoom -version=5.7.26030.0627 +version=5.7.28991.0726 revision=1 archs="x86_64" wrksrc=zoom @@ -13,7 +13,7 @@ maintainer="Daniel Santana " license="custom:Proprietary" homepage="https://zoom.us/" distfiles="https://cdn.zoom.us/prod/${version}/zoom_x86_64.rpm" -checksum=75b87639bebf3eaeb2de4c1ea3f47a9b76f6bcad1312a842dd4e9d40071024fa +checksum=003c35abc2dea55d3f27c28dca627ddfff69cdc2fe03dcaf1dda021770cc6cd9 repository=nonfree noshlibprovides=yes noverifyrdeps=yes From 01ea594d534a8f8cc411c2bb66a81a58131aa607 Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Thu, 5 Aug 2021 12:49:42 +0200 Subject: [PATCH 029/904] ipset: update to 7.15. --- srcpkgs/ipset/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/ipset/template b/srcpkgs/ipset/template index 51150121385d..77c85ff074f7 100644 --- a/srcpkgs/ipset/template +++ b/srcpkgs/ipset/template @@ -1,6 +1,6 @@ # Template file for 'ipset' pkgname=ipset -version=7.14 +version=7.15 revision=1 build_style=gnu-configure configure_args="--with-kmod=no PKG_CONFIG=pkg-config" From 47e681a08050faeed20e210307ba421e1c379a7b Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Thu, 5 Aug 2021 21:36:27 +0200 Subject: [PATCH 030/904] extrace: update to 0.8. --- srcpkgs/extrace/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/extrace/template b/srcpkgs/extrace/template index da7cf1f1bfb5..e3b98977791f 100644 --- a/srcpkgs/extrace/template +++ b/srcpkgs/extrace/template @@ -1,7 +1,7 @@ # Template file for 'extrace' pkgname=extrace -version=0.7 -revision=3 +version=0.8 +revision=1 build_style=gnu-makefile depends="libcap-progs" short_desc="Trace exec(2) calls system-wide" @@ -9,7 +9,7 @@ maintainer="Leah Neukirchen " license="GPL-2.0-or-later, BSD-2-Clause" homepage="https://github.com/leahneukirchen/extrace" distfiles="https://github.com/leahneukirchen/extrace/archive/v${version}.tar.gz" -checksum=62e6623d4891494a307f9f7247b8581794232d4d26617009eae763a48280abcf +checksum=d83e48551b168c5d78815e4e9e93c02d7dea8c8aa2518a25a0876cdec7c858eb post_install() { vlicense LICENSE From 497019f2fe1b89238415165cee125b592d71931b Mon Sep 17 00:00:00 2001 From: George Matsumura Date: Mon, 12 Jul 2021 04:17:31 -0600 Subject: [PATCH 031/904] arcan: add arcan_sdl subpackage arcan_sdl allows the running of arcan nested within a different display server. --- srcpkgs/arcan/template | 13 +++++++++++-- srcpkgs/arcan_sdl | 1 + 2 files changed, 12 insertions(+), 2 deletions(-) create mode 120000 srcpkgs/arcan_sdl diff --git a/srcpkgs/arcan/template b/srcpkgs/arcan/template index f436db94479c..31bf6e62eec5 100644 --- a/srcpkgs/arcan/template +++ b/srcpkgs/arcan/template @@ -1,17 +1,18 @@ # Template file for 'arcan' pkgname=arcan version=0.6.0.1 -revision=1 +revision=2 build_wrksrc=src build_style=cmake make_cmd=make configure_args="-DDISTR_TAG='Void Linux' -DVIDEO_PLATFORM=egl-dri + -DHYBRID_SDL=On $(vopt_if luajit '-DDISABLE_JIT=OFF' '-DDISABLE_JIT=ON')" hostmakedepends="pkg-config $(vopt_if wayland wayland-devel)" makedepends="MesaLib-devel ffmpeg-devel file-devel freetype-devel liblzma-devel libopenal-devel libusb-devel libvncserver-devel libxkbcommon-devel sqlite-devel - vlc-devel + vlc-devel SDL2-devel $(vopt_if tts 'libespeak-ng-devel') $(vopt_if luajit 'LuaJIT-devel' 'lua51-devel') $(vopt_if tesseract 'tesseract-ocr-devel leptonica-devel') @@ -74,3 +75,11 @@ arcan-devel_package() { vmove usr/include } } + +arcan_sdl_package() { + short_desc+=" - SDL platform server binary" + depends="${sourcepkg}>=${version}_${revision}" + pkg_install() { + vmove usr/bin/arcan_sdl + } +} diff --git a/srcpkgs/arcan_sdl b/srcpkgs/arcan_sdl new file mode 120000 index 000000000000..fb6a95edcfe5 --- /dev/null +++ b/srcpkgs/arcan_sdl @@ -0,0 +1 @@ +arcan \ No newline at end of file From f9c42cabc8c1e8bc31214c1c74bad83612ef01e3 Mon Sep 17 00:00:00 2001 From: mobinmob Date: Thu, 5 Aug 2021 21:28:11 +0300 Subject: [PATCH 032/904] papirus-icon-theme: update to 20210802. --- srcpkgs/papirus-icon-theme/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/papirus-icon-theme/template b/srcpkgs/papirus-icon-theme/template index e02791536387..fb3c0b000924 100644 --- a/srcpkgs/papirus-icon-theme/template +++ b/srcpkgs/papirus-icon-theme/template @@ -1,13 +1,13 @@ # Template file for 'papirus-icon-theme' pkgname=papirus-icon-theme -version=20210701 +version=20210802 revision=1 short_desc="SVG icon theme for Linux, based on Paper Icon Set" maintainer="Giuseppe Fierro " license="GPL-3.0-or-later" homepage="https://github.com/PapirusDevelopmentTeam/papirus-icon-theme" distfiles="https://github.com/PapirusDevelopmentTeam/${pkgname}/archive/${version}.tar.gz" -checksum=1cb7bc70ba63adda3721b546f213cec6ffbad55ed0f725d0975bba34735d8b62 +checksum=fc5f230c626ecbfad73d391360e9db16191621327c92573125b35f7c62f16aa5 do_install() { vmkdir usr/share/icons From eb67fe76d24bb9fe69a98b6f022fdd9da091c0b9 Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Thu, 5 Aug 2021 21:45:16 +0200 Subject: [PATCH 033/904] ipset: fix checksum. --- srcpkgs/ipset/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/ipset/template b/srcpkgs/ipset/template index 77c85ff074f7..8c204026e90c 100644 --- a/srcpkgs/ipset/template +++ b/srcpkgs/ipset/template @@ -12,7 +12,7 @@ license="GPL-2.0-only" homepage="https://ipset.netfilter.org/" changelog="https://ipset.netfilter.org/changelog.html" distfiles="https://ipset.netfilter.org/ipset-${version}.tar.bz2" -checksum=27031c36d355907031cce41e65553e99bb013d762fcd55392f63d7e84760f900 +checksum=0a5545aaadb640142c1f888d366a78ddf8724799967fa20686a70053bd621751 libipset_package() { short_desc+=" - library files" From 4c8ef62680d21e01c3af14e90f78e34bfb5a30c3 Mon Sep 17 00:00:00 2001 From: Michal Vasilek Date: Thu, 5 Aug 2021 22:51:37 +0200 Subject: [PATCH 034/904] New package: abcmidi-2021.06.27 --- srcpkgs/abcmidi/template | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 srcpkgs/abcmidi/template diff --git a/srcpkgs/abcmidi/template b/srcpkgs/abcmidi/template new file mode 100644 index 000000000000..c5dd100bfbc3 --- /dev/null +++ b/srcpkgs/abcmidi/template @@ -0,0 +1,12 @@ +# Template file for 'abcmidi' +pkgname=abcmidi +version=2021.06.27 +revision=1 +wrksrc=${pkgname} +build_style=gnu-configure +short_desc="Utilites for working with ABC files" +maintainer="Michal Vasilek " +license="GPL-2.0-or-later" +homepage="https://ifdo.ca/~seymour/runabc/top.html" +distfiles="https://ifdo.ca/~seymour/runabc/abcMIDI-${version}.zip" +checksum=08ecbdda0ab81551f4d319e2db71f81f566b21adba252d8793c70a137bc0dd38 From 8e97a96aac2199b430e5d5ef815329ade26e453a Mon Sep 17 00:00:00 2001 From: Wes Roberts Date: Thu, 5 Aug 2021 18:12:44 -0400 Subject: [PATCH 035/904] timeshift: fix compatibility with util-linux 2.37.1. Timeshift will only start in "Live USB Mode". Upstream issues: https://github.com/teejee2008/timeshift/issues/425 https://github.com/teejee2008/timeshift/issues/753 https://github.com/teejee2008/timeshift/issues/755 --- srcpkgs/timeshift/patches/d437358a.patch | 23 +++++++++++++++++++++++ srcpkgs/timeshift/template | 2 +- 2 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 srcpkgs/timeshift/patches/d437358a.patch diff --git a/srcpkgs/timeshift/patches/d437358a.patch b/srcpkgs/timeshift/patches/d437358a.patch new file mode 100644 index 000000000000..edc82d772a75 --- /dev/null +++ b/srcpkgs/timeshift/patches/d437358a.patch @@ -0,0 +1,23 @@ +commit d437358ac3debf7625aefda4d0bd387a91b69df5 +Author: Tony George +Date: Sun Jun 6 12:04:07 2021 +0530 + + Fix for #425, #753, #755 + +diff --git a/src/Utility/Device.vala b/src/Utility/Device.vala +index 18f09de..b276055 100755 +--- a/src/Utility/Device.vala ++++ b/src/Utility/Device.vala +@@ -428,10 +428,10 @@ public class Device : GLib.Object{ + + try{ + if (lsblk_is_ancient){ +- rex = new Regex("""NAME="(.*)" KNAME="(.*)" LABEL="(.*)" UUID="(.*)" TYPE="(.*)" FSTYPE="(.*)" SIZE="(.*)" MOUNTPOINT="(.*)" MODEL="(.*)" RO="([0-9]+)" RM="([0-9]+)" MAJ:MIN="([0-9:]+)""""); ++ rex = new Regex("""NAME="(.*)" KNAME="(.*)" LABEL="(.*)" UUID="(.*)" TYPE="(.*)" FSTYPE="(.*)" SIZE="(.*)" MOUNTPOINT="(.*)" MODEL="(.*)" RO="([0-9]+)" RM="([0-9]+)" MAJ[_:]MIN="([0-9:]+)""""); + } + else{ +- rex = new Regex("""NAME="(.*)" KNAME="(.*)" LABEL="(.*)" UUID="(.*)" TYPE="(.*)" FSTYPE="(.*)" SIZE="(.*)" MOUNTPOINT="(.*)" MODEL="(.*)" RO="([0-9]+)" HOTPLUG="([0-9]+)" MAJ:MIN="([0-9:]+)" PARTLABEL="(.*)" PARTUUID="(.*)" PKNAME="(.*)" VENDOR="(.*)" SERIAL="(.*)" REV="(.*)""""); ++ rex = new Regex("""NAME="(.*)" KNAME="(.*)" LABEL="(.*)" UUID="(.*)" TYPE="(.*)" FSTYPE="(.*)" SIZE="(.*)" MOUNTPOINT="(.*)" MODEL="(.*)" RO="([0-9]+)" HOTPLUG="([0-9]+)" MAJ[_:]MIN="([0-9:]+)" PARTLABEL="(.*)" PARTUUID="(.*)" PKNAME="(.*)" VENDOR="(.*)" SERIAL="(.*)" REV="(.*)""""); + } + + if (rex.match (line, 0, out match)){ diff --git a/srcpkgs/timeshift/template b/srcpkgs/timeshift/template index ebdbb9ee28be..6977a413e750 100644 --- a/srcpkgs/timeshift/template +++ b/srcpkgs/timeshift/template @@ -1,7 +1,7 @@ # Template file for 'timeshift' pkgname=timeshift version=20.11.1 -revision=1 +revision=2 build_style=gnu-makefile hostmakedepends="gettext pkg-config vala which" makedepends="libgee08-devel json-glib-devel gtk+3-devel vte3-devel libgirepository-devel" From 9b1e79e36a42ab77dc1b28b09efb4d8c441d238d Mon Sep 17 00:00:00 2001 From: Gerardo Di iorio Date: Thu, 5 Aug 2021 23:28:12 +0200 Subject: [PATCH 036/904] hcloud: update to 1.26.1. --- srcpkgs/hcloud/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/hcloud/template b/srcpkgs/hcloud/template index e02655aa7caa..58d9bbb6e753 100644 --- a/srcpkgs/hcloud/template +++ b/srcpkgs/hcloud/template @@ -1,6 +1,6 @@ # Template file for 'hcloud' pkgname=hcloud -version=1.25.1 +version=1.26.1 revision=1 wrksrc="cli-${version}" build_style=go @@ -12,7 +12,7 @@ maintainer="Gerardo Di Iorio " license="MIT" homepage="https://github.com/hetznercloud/cli" distfiles="https://github.com/hetznercloud/cli/archive/v${version}.tar.gz" -checksum=da5ac8d2b2f54acb56cfc68a37120f7e2171ee25a9fdd07445608436e0790593 +checksum=ba7fed423b2c437adfb4b98b2fdadaad6b6325f8e31cac2729982b7bf2523c81 post_install() { vlicense LICENSE From 94b7a48ffc7dbea3768771103e7c1493370c7676 Mon Sep 17 00:00:00 2001 From: Gadzhi Kharkharov Date: Thu, 5 Aug 2021 21:29:38 +0300 Subject: [PATCH 037/904] zoxide: update to 0.7.3. --- srcpkgs/zoxide/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/zoxide/template b/srcpkgs/zoxide/template index c9aa983cc2bf..c8c7ab2176e4 100644 --- a/srcpkgs/zoxide/template +++ b/srcpkgs/zoxide/template @@ -1,6 +1,6 @@ # Template file for 'zoxide' pkgname=zoxide -version=0.7.1 +version=0.7.3 revision=1 build_style=cargo short_desc="Faster way to navigate your filesystem" @@ -8,7 +8,7 @@ maintainer="Lorem " license="MIT" homepage="https://github.com/ajeetdsouza/zoxide" distfiles="https://github.com/ajeetdsouza/zoxide/archive/v${version}.tar.gz" -checksum=12fa47e1258bb7794cc529a586603c9392b07c917b0fefb58a57fd68e6652c3b +checksum=0b596cf8f86c51cc5aaf8914f8e47fdb0a60ba44e55d75a3d131b1f583ea098c post_install() { vlicense LICENSE From 0a49a560c3462d120c50519313673fcb8f12e84b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89rico=20Nogueira?= Date: Wed, 4 Aug 2021 22:11:18 -0300 Subject: [PATCH 038/904] virtualbox-ose: update to 6.1.26. Remove vsed added in 13b1a5d83b4f3d03689a150c2ddf080ee91587c0 with no justification; another configure step needed GCC version to have been obtained. Fix build by setting the correct Qt5 base include path. --- srcpkgs/virtualbox-ose/files/LocalConfig.kmk | 1 + srcpkgs/virtualbox-ose/template | 5 ++--- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/virtualbox-ose/files/LocalConfig.kmk b/srcpkgs/virtualbox-ose/files/LocalConfig.kmk index 71ffd9876c09..d283c39363bb 100644 --- a/srcpkgs/virtualbox-ose/files/LocalConfig.kmk +++ b/srcpkgs/virtualbox-ose/files/LocalConfig.kmk @@ -15,6 +15,7 @@ VBOX_WITH_REGISTRATION_REQUEST = VBOX_WITH_UPDATE_REQUEST = VBOX_USE_SYSTEM_XORG_HEADERS = 1 VBOX_NO_LEGACY_XORG_X11 = 1 +PATH_SDK_QT5_INC := /usr/include/qt5 # Enable it when vnc pkg is available. #VBOX_WITH_VNC := 1 VBOX_GCC_WERR = diff --git a/srcpkgs/virtualbox-ose/template b/srcpkgs/virtualbox-ose/template index b686236e1b0e..d84944232a73 100644 --- a/srcpkgs/virtualbox-ose/template +++ b/srcpkgs/virtualbox-ose/template @@ -1,6 +1,6 @@ # Template file for 'virtualbox-ose' pkgname=virtualbox-ose -version=6.1.20 +version=6.1.26 revision=1 wrksrc="VirtualBox-${version}" short_desc="General-purpose full virtualizer for x86 hardware" @@ -9,7 +9,7 @@ license="GPL-2.0-only, CDDL-1.0" homepage="https://www.virtualbox.org" changelog="https://www.virtualbox.org/wiki/Changelog" distfiles="http://download.virtualbox.org/virtualbox/${version}/VirtualBox-${version}.tar.bz2" -checksum=e690c91974a2e7a5aca2c0939ad514382f9a2136797a5e0b96aab778e42bc8a7 +checksum=0212602eea878d6c9fd7f4a3e0182da3e4505f31d25f5539fb8f7b1fbe366195 nopie=yes lib32disabled=yes @@ -33,7 +33,6 @@ pre_configure() { ln -s /bin/echo makeself echo 'VBOX_USE_SYSTEM_GL_HEADERS=true' >> LocalConfig.kmk - vsed -i 's/^check_gcc$/#check_gcc/' configure } do_configure() { From 893d0e17c723b2ce03c1763fc2b7195e462443a5 Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Fri, 6 Aug 2021 14:51:17 +0200 Subject: [PATCH 039/904] nncp: update to 7.5.1. --- srcpkgs/nncp/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/nncp/template b/srcpkgs/nncp/template index 279d6235b763..48ae842e0016 100644 --- a/srcpkgs/nncp/template +++ b/srcpkgs/nncp/template @@ -1,6 +1,6 @@ # Template file for 'nncp' pkgname=nncp -version=7.5.0 +version=7.5.1 revision=1 build_style=go go_import_path=cypherpunks.ru/nncp @@ -9,7 +9,7 @@ maintainer="Leah Neukirchen " license="GPL-3.0-only" homepage="http://www.nncpgo.org/" distfiles="http://www.nncpgo.org/download/${pkgname}-${version}.tar.xz" -checksum=14d92dc5b8164ee44926d7af46da9f230c8f6207350cc7476db5cdfb8e7c3fe4 +checksum=b093a745c2eb9f5fe8341ed2a6f1ee75701b2646b5701baaf4e760d932cdd91a do_build() { make From d5e55ca66da988c54429df1c9917d17d9b6a1790 Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Fri, 6 Aug 2021 15:02:39 +0200 Subject: [PATCH 040/904] python3-pipx: update to 0.16.4. --- srcpkgs/python3-pipx/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-pipx/template b/srcpkgs/python3-pipx/template index f11318738e21..2aca6075eca8 100644 --- a/srcpkgs/python3-pipx/template +++ b/srcpkgs/python3-pipx/template @@ -1,6 +1,6 @@ # Template file for 'python3-pipx' pkgname=python3-pipx -version=0.16.3 +version=0.16.4 revision=1 wrksrc="pipx-${version}" build_style=python3-module @@ -12,7 +12,7 @@ license="MIT" homepage="https://pypa.github.io/pipx/" changelog="https://pypa.github.io/pipx/changelog/" distfiles="${PYPI_SITE}/p/pipx/pipx-${version}.tar.gz" -checksum=51fa41281383212db3b2a6906713871edc1a7d597ae387873026402e281a0b25 +checksum=992e78082c0b33c7bc708176ce9e0df9bac9ae3b08bf111c368571bc32e723d6 post_install() { vlicense LICENSE From a4475deb9696ce4c8205b59aade1aab08dd498df Mon Sep 17 00:00:00 2001 From: Arda Demir Date: Thu, 5 Aug 2021 22:58:59 +0300 Subject: [PATCH 041/904] jrnl: update to 2.8.2. --- srcpkgs/jrnl/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/jrnl/template b/srcpkgs/jrnl/template index 357b3296922b..25210d5aa7ed 100644 --- a/srcpkgs/jrnl/template +++ b/srcpkgs/jrnl/template @@ -1,6 +1,6 @@ # Template file for 'jrnl' pkgname=jrnl -version=2.8.1 +version=2.8.2 revision=1 build_style=python3-module hostmakedepends="python3-setuptools" @@ -13,6 +13,6 @@ license="GPL-3.0-only" homepage="https://jrnl.sh" changelog="https://raw.githubusercontent.com/jrnl-org/jrnl/develop/CHANGELOG.md" distfiles="${PYPI_SITE}/j/jrnl/jrnl-${version}.tar.gz" -checksum=a69f0fa9be3dff7fa32d8a2ea3697ed828329b1db595fde23bbba5eab460d519 +checksum=102e1f559fe4e791cd1a456efd4c5b2c5893703285a881c54a8f55e437e95eff # Tarball provides no tests make_check=no From 668917e14dab5e60985d42d8d1b282a1735dcdd5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Sat, 24 Jul 2021 09:30:48 +0700 Subject: [PATCH 042/904] cmake: update to 3.21.1. --- srcpkgs/cmake/patches/ar-lwyu.patch | 20 +++++++++ .../patches/ignore-crape-compiler-test.patch | 13 ++++++ srcpkgs/cmake/patches/test-none.patch | 41 ------------------- srcpkgs/cmake/template | 11 ++--- 4 files changed, 36 insertions(+), 49 deletions(-) create mode 100644 srcpkgs/cmake/patches/ar-lwyu.patch create mode 100644 srcpkgs/cmake/patches/ignore-crape-compiler-test.patch delete mode 100644 srcpkgs/cmake/patches/test-none.patch diff --git a/srcpkgs/cmake/patches/ar-lwyu.patch b/srcpkgs/cmake/patches/ar-lwyu.patch new file mode 100644 index 000000000000..3db40e27f7d3 --- /dev/null +++ b/srcpkgs/cmake/patches/ar-lwyu.patch @@ -0,0 +1,20 @@ + Fix darktable build +diff --git a/Source/cmNinjaNormalTargetGenerator.cxx b/Source/cmNinjaNormalTargetGenerator.cxx +index 5a4c6521d8..55b804d643 100644 +--- a/Source/cmNinjaNormalTargetGenerator.cxx ++++ b/Source/cmNinjaNormalTargetGenerator.cxx +@@ -1157,7 +1157,13 @@ void cmNinjaNormalTargetGenerator::WriteLinkStatement( + this->AddModuleDefinitionFlag(linkLineComputer.get(), vars["LINK_FLAGS"], + config); + if (gt->GetPropertyAsBool("LINK_WHAT_YOU_USE")) { +- vars["LINK_FLAGS"] += " -Wl,--no-as-needed"; ++ switch (targetType) { ++ case cmStateEnums::EXECUTABLE: ++ case cmStateEnums::SHARED_LIBRARY: ++ case cmStateEnums::MODULE_LIBRARY: ++ vars["LINK_FLAGS"] += " -Wl,--no-as-needed"; ++ break; ++ } + } + vars["LINK_FLAGS"] = globalGen->EncodeLiteral(vars["LINK_FLAGS"]); + diff --git a/srcpkgs/cmake/patches/ignore-crape-compiler-test.patch b/srcpkgs/cmake/patches/ignore-crape-compiler-test.patch new file mode 100644 index 000000000000..7b6ce9c16962 --- /dev/null +++ b/srcpkgs/cmake/patches/ignore-crape-compiler-test.patch @@ -0,0 +1,13 @@ +diff --git a/Tests/RunCMake/ParseImplicitLinkInfo/ParseImplicitLinkInfo.cmake b/Tests/RunCMake/ParseImplicitLinkInfo/ParseImplicitLinkInfo.cmake +index dcdc7f1b96..37e13b6c5c 100644 +--- a/Tests/RunCMake/ParseImplicitLinkInfo/ParseImplicitLinkInfo.cmake ++++ b/Tests/RunCMake/ParseImplicitLinkInfo/ParseImplicitLinkInfo.cmake +@@ -11,7 +11,7 @@ project(Minimal NONE) + set(targets + aix-C-XL-13.1.3 aix-CXX-XL-13.1.3 + aix-C-XLClang-16.1.0.1 aix-CXX-XLClang-16.1.0.1 +- craype-C-Cray-8.7 craype-CXX-Cray-8.7 craype-Fortran-Cray-8.7 ++ craype-Fortran-Cray-8.7 + craype-C-Cray-9.0-hlist-ad craype-CXX-Cray-9.0-hlist-ad craype-Fortran-Cray-9.0-hlist-ad + craype-C-GNU-7.3.0 craype-CXX-GNU-7.3.0 craype-Fortran-GNU-7.3.0 + craype-C-Intel-18.0.2.20180210 craype-CXX-Intel-18.0.2.20180210 diff --git a/srcpkgs/cmake/patches/test-none.patch b/srcpkgs/cmake/patches/test-none.patch deleted file mode 100644 index e0b6886bb0a2..000000000000 --- a/srcpkgs/cmake/patches/test-none.patch +++ /dev/null @@ -1,41 +0,0 @@ -From ce1cadd35a26bd44879675581d8e70b00ff8e0fc Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= - -Date: Thu, 1 Apr 2021 20:14:06 +0700 -Subject: [PATCH] Tests/ConfigSources: fix for non main stream CMAKE_BUILD_TYPE -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -- None is a valid CMAKE_BUILD_TYPE -- Most of distros uses None as CMAKE_BUILD_TYPE -- When CMAKE_BUILD_TYPE=None, main_other.cpp will be compiled and linked - into final executable, this program requires some symbols only exist - when CUSTOM_CFG_OTHER is defined. -- And CMake also allows other CMAKE_BUILD_TYPE, too, CMake documentation - specificaly mentions funny CMAKE_BUILD_TYPE like ReLeAsE [1] - -Let's define them when non main stream like None is specified as CMAKE_BUILD_TYPE. - -[1]: https://cmake.org/cmake/help/v3.20/variable/CMAKE_BUILD_TYPE.html ---- - Tests/ConfigSources/CMakeLists.txt | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git Tests/ConfigSources/CMakeLists.txt Tests/ConfigSources/CMakeLists.txt -index a3d98f685f..f83759ca10 100644 ---- a/Tests/ConfigSources/CMakeLists.txt -+++ b/Tests/ConfigSources/CMakeLists.txt -@@ -74,10 +74,10 @@ add_custom_command(APPEND - VERBATIM - ) - foreach(n RANGE 1 5) -- set_property(SOURCE custom${n}_Debug.cpp PROPERTY COMPILE_DEFINITIONS CUSTOM_CFG_DEBUG) -- foreach(other Release RelWithDebInfo MinSizeRel) -+ foreach(other ${CMAKE_BUILD_TYPE} Release RelWithDebInfo MinSizeRel) - set_property(SOURCE custom${n}_${other}.cpp PROPERTY COMPILE_DEFINITIONS CUSTOM_CFG_OTHER) - endforeach() -+ set_property(SOURCE custom${n}_Debug.cpp PROPERTY COMPILE_DEFINITIONS CUSTOM_CFG_DEBUG) - endforeach() - add_library(Custom STATIC - custom1_$.cpp diff --git a/srcpkgs/cmake/template b/srcpkgs/cmake/template index 7ec873cb2afd..396fb6419940 100644 --- a/srcpkgs/cmake/template +++ b/srcpkgs/cmake/template @@ -1,7 +1,6 @@ # Template file for 'cmake' -# FIXME: cmake is being rebuilt on do_install pkgname=cmake -version=3.20.5 +version=3.21.1 revision=1 build_style=cmake configure_args="-DCMAKE_DOC_DIR=/share/doc/cmake @@ -17,14 +16,9 @@ maintainer="Đoàn Trần Công Danh " license="BSD-3-Clause, ICU" homepage="https://www.cmake.org" distfiles="https://www.cmake.org/files/v${version%.*}/${pkgname}-${version}.tar.gz" -checksum=12c8040ef5c6f1bc5b8868cede16bb7926c18980f59779e299ab52cbc6f15bb0 +checksum=fac3915171d4dff25913975d712f76e69aef44bf738ba7b976793a458b4cfed4 replaces="cmake-bootstrap>=0" -# XXX: cmake is broken if cmake was built with -GNinja -# https://bugs.gentoo.org/596460 -export CMAKE_GENERATOR="Unix Makefiles" -make_cmd=make - if [ "$CROSS_BUILD" ]; then hostmakedepends+=" cmake" fi @@ -35,6 +29,7 @@ pre_configure() { mkdir -p build cd build ../bootstrap --no-system-libs \ + --generator=Ninja \ ${XBPS_MAKEJOBS:+--parallel=$XBPS_MAKEJOBS} # Make sure build directory is clean for f in *; do From e97f8ffde8523b80906520b96ed92a76faba52cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Sat, 24 Jul 2021 09:30:56 +0700 Subject: [PATCH 043/904] cmake-gui: update to 3.21.1. --- srcpkgs/cmake-gui/template | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/srcpkgs/cmake-gui/template b/srcpkgs/cmake-gui/template index 11e2fa7b809d..336b67eeecf0 100644 --- a/srcpkgs/cmake-gui/template +++ b/srcpkgs/cmake-gui/template @@ -1,6 +1,6 @@ # Template file for 'cmake-gui' pkgname=cmake-gui -version=3.20.5 +version=3.21.1 revision=1 wrksrc="cmake-${version}" build_style=cmake @@ -17,12 +17,7 @@ maintainer="Đoàn Trần Công Danh " license="BSD-3-Clause" homepage="https://www.cmake.org" distfiles="https://www.cmake.org/files/v${version%.*}/cmake-${version}.tar.gz" -checksum=12c8040ef5c6f1bc5b8868cede16bb7926c18980f59779e299ab52cbc6f15bb0 - -# XXX: cmake is broken if cmake was built with -GNinja -# https://bugs.gentoo.org/596460 -export CMAKE_GENERATOR="Unix Makefiles" -make_cmd=make +checksum=fac3915171d4dff25913975d712f76e69aef44bf738ba7b976793a458b4cfed4 do_install() { # We are only interested in cmake-gui. From 047d9866289dfb4a3f4b5ea946f9587ee099c6d3 Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Fri, 6 Aug 2021 15:27:38 +0200 Subject: [PATCH 044/904] bcc: link LLVM dynamically. As a distro, we want this anyway, but static linking also broke, e.g. bpftrace: https://github.com/iovisor/bpftrace/issues/1855 --- srcpkgs/bcc/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/bcc/template b/srcpkgs/bcc/template index c2b7a65c19fd..74fdd0259725 100644 --- a/srcpkgs/bcc/template +++ b/srcpkgs/bcc/template @@ -1,10 +1,10 @@ # Template file for 'bcc' pkgname=bcc version=0.21.0 -revision=3 +revision=4 wrksrc="bcc" build_style=cmake -configure_args="-DREVISION=${version}" +configure_args="-DREVISION=${version} -DENABLE_LLVM_SHARED=1" hostmakedepends="flex python3" makedepends="clang clang-tools-extra elfutils-devel flex lld-devel llvm ncurses-devel python3-devel zlib-devel" From ea48654a060bec8c97d81d94d91c8d8f2e552b28 Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Fri, 6 Aug 2021 15:28:42 +0200 Subject: [PATCH 045/904] bpftrace: rebuild against bcc-0.21.0_4. --- srcpkgs/bpftrace/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/bpftrace/template b/srcpkgs/bpftrace/template index f200409ddb2f..8ca8a7f2409f 100644 --- a/srcpkgs/bpftrace/template +++ b/srcpkgs/bpftrace/template @@ -1,7 +1,7 @@ # Template file for 'bpftrace' pkgname=bpftrace version=0.13.0 -revision=1 +revision=2 archs="x86_64* aarch64* ppc64*" build_style=cmake configure_args="-DBUILD_TESTING=OFF" # needs root to run From 0e73bc3da1639de74fcc6c436560482005a307e1 Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Fri, 6 Aug 2021 16:20:59 +0200 Subject: [PATCH 046/904] bpftrace: set nostrip. --- srcpkgs/bpftrace/template | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/srcpkgs/bpftrace/template b/srcpkgs/bpftrace/template index 8ca8a7f2409f..3e467bc2928a 100644 --- a/srcpkgs/bpftrace/template +++ b/srcpkgs/bpftrace/template @@ -1,7 +1,7 @@ # Template file for 'bpftrace' pkgname=bpftrace version=0.13.0 -revision=2 +revision=3 archs="x86_64* aarch64* ppc64*" build_style=cmake configure_args="-DBUILD_TESTING=OFF" # needs root to run @@ -13,6 +13,7 @@ license="Apache-2.0" homepage="https://github.com/iovisor/bpftrace/" distfiles="https://github.com/iovisor/bpftrace/archive/v${version}.tar.gz" checksum=a5203e5c73277c87d624f32e8ee394d4c5e2c2810bde8314c1b015c9d810a6bb +nostrip=yes # needs to read own symbol table post_install() { # clashes with bcc-tools From d40fbba0bc9ece9aff1afc20f2f3c3a6f79d3ed2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Fri, 6 Aug 2021 11:52:35 -0400 Subject: [PATCH 047/904] cpp-utilities: update to 5.11.0. --- srcpkgs/cpp-utilities/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/cpp-utilities/template b/srcpkgs/cpp-utilities/template index 82d07e947050..d9c5281e0549 100644 --- a/srcpkgs/cpp-utilities/template +++ b/srcpkgs/cpp-utilities/template @@ -1,6 +1,6 @@ # Template file for 'cpp-utilities' pkgname=cpp-utilities -version=5.10.5 +version=5.11.0 revision=1 build_style=cmake configure_args="-DBUILD_SHARED_LIBS:BOOL=ON" @@ -10,7 +10,7 @@ maintainer="Andrew J. Hesford " license="GPL-2.0-only" homepage="https://github.com/Martchus/cpp-utilities" distfiles="https://github.com/Martchus/${pkgname}/archive/v${version}.tar.gz" -checksum=36005e493e0db4605f3270d6b7ccb3ee4b42da7a70636b00f914425ec9fe3ec6 +checksum=af4609ca2ea9e8e838b9c701b558d629920d963d4911a1ef7edbb7f5ac528f88 cpp-utilities-devel_package() { short_desc+=" - development files" From ba54b18d2f879582bbb9be263fa5594579a02eaa Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Fri, 6 Aug 2021 11:53:14 -0400 Subject: [PATCH 048/904] tageditor: update to 3.4.2. --- srcpkgs/tageditor/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/tageditor/template b/srcpkgs/tageditor/template index 5c7710874355..fbbbbe79bd3b 100644 --- a/srcpkgs/tageditor/template +++ b/srcpkgs/tageditor/template @@ -1,6 +1,6 @@ # Template file for 'tageditor' pkgname=tageditor -version=3.4.1 +version=3.4.2 revision=1 build_style=cmake configure_args="-DBUILD_SHARED_LIBS:BOOL=ON" @@ -11,7 +11,7 @@ maintainer="Andrew J. Hesford " license="GPL-2.0-only" homepage="https://github.com/Martchus/tageditor" distfiles="https://github.com/Martchus/${pkgname}/archive/v${version}.tar.gz" -checksum=4d3218531fae449ffa76098fbe9a4693e43f2f93d0d38bb4163d6a9ce864d6c7 +checksum=43029df40c53122a6dd5b0c986bf53945bf492d30904d3d4d723b1936b0cbdd4 build_options="qt webengine webkit script" build_options_default="qt" From 9f5319902474c2e9fa301fb86e5d21355e35de47 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Fri, 6 Aug 2021 11:54:25 -0400 Subject: [PATCH 049/904] python3-pyzmq: update to 22.2.1. --- srcpkgs/python3-pyzmq/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-pyzmq/template b/srcpkgs/python3-pyzmq/template index 03807afcc0ea..4b4bf8b44a15 100644 --- a/srcpkgs/python3-pyzmq/template +++ b/srcpkgs/python3-pyzmq/template @@ -1,6 +1,6 @@ # Template file for 'python3-pyzmq' pkgname=python3-pyzmq -version=22.1.0 +version=22.2.1 revision=1 wrksrc="pyzmq-${version}" build_style=python3-module @@ -15,7 +15,7 @@ license="LGPL-3.0-or-later, BSD-3-Clause" homepage="https://pyzmq.readthedocs.io/" changelog="https://pyzmq.readthedocs.io/en/latest/changelog.html" distfiles="${PYPI_SITE}/p/pyzmq/pyzmq-${version}.tar.gz" -checksum=7040d6dd85ea65703904d023d7f57fab793d7ffee9ba9e14f3b897f34ff2415d +checksum=6d18c76676771fd891ca8e0e68da0bbfb88e30129835c0ade748016adb3b6242 pre_build() { cat > setup.cfg <<-EOF From 13a3d1bf9aba0331380063e829cd439c25477a6f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Fri, 6 Aug 2021 12:42:19 -0400 Subject: [PATCH 050/904] python3-pip: update to 21.2.3. --- srcpkgs/python3-pip/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-pip/template b/srcpkgs/python3-pip/template index 3e800139d4da..225ede1ccd09 100644 --- a/srcpkgs/python3-pip/template +++ b/srcpkgs/python3-pip/template @@ -1,6 +1,6 @@ # Template file for 'python3-pip' pkgname=python3-pip -version=21.2.2 +version=21.2.3 revision=1 wrksrc="pip-${version}" build_style=python3-module @@ -12,7 +12,7 @@ license="MIT" homepage="https://pip.pypa.io/" changelog="https://raw.githubusercontent.com/pypa/pip/master/NEWS.rst" distfiles="${PYPI_SITE}/p/pip/pip-${version}.tar.gz" -checksum=38e9250dfb0d7fa842492bede9259d4b3289a936ce454f7c58f059f28a94c01d +checksum=91e66f2a2702e7d2dcc092ed8c5ebe923e69b9997ea28ba25823943bcd3bf820 # Tests have unpackaged dependencies make_check=no From 1a3ef7b962366879b8d545151351aab7e9b39b20 Mon Sep 17 00:00:00 2001 From: UsernameRandomlyGenerated Date: Thu, 22 Jul 2021 17:41:10 +0200 Subject: [PATCH 051/904] zsh-autosuggestions: update to 0.7.0. --- srcpkgs/zsh-autosuggestions/template | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/srcpkgs/zsh-autosuggestions/template b/srcpkgs/zsh-autosuggestions/template index 668cccd4f349..0e8e13b53325 100644 --- a/srcpkgs/zsh-autosuggestions/template +++ b/srcpkgs/zsh-autosuggestions/template @@ -1,21 +1,18 @@ # Template file for 'zsh-autosuggestions' pkgname=zsh-autosuggestions -version=0.6.4 -revision=2 +version=0.7.0 +revision=1 +build_style=gnu-makefile depends="zsh" short_desc="Fish-like autosuggestions for zsh" maintainer="vinnyA3 " license="MIT" homepage="https://github.com/zsh-users/zsh-autosuggestions" distfiles="https://github.com/zsh-users/zsh-autosuggestions/archive/v${version}.tar.gz" -checksum=0b6e251ced5fd7b5b78ea01f798ecc1b46169743a717567f0ec0a21198a372e8 - -do_build() { - make -} +checksum=ccd97fe9d7250b634683c651ef8a2fe3513ea917d1b491e8696a2a352b714f08 do_install() { - vinstall ${pkgname}.zsh 644 usr/share/zsh/plugins/${pkgname} - vinstall ${pkgname}.plugin.zsh 644 usr/share/zsh/plugins/${pkgname} + vinstall zsh-autosuggestions.zsh 644 usr/share/zsh/plugins/zsh-autosuggestions + vinstall zsh-autosuggestions.plugin.zsh 644 usr/share/zsh/plugins/zsh-autosuggestions vlicense LICENSE } From c016672e56794ee286a3cd49e67a444def4c1e60 Mon Sep 17 00:00:00 2001 From: UsernameRandomlyGenerated Date: Fri, 6 Aug 2021 19:05:59 +0200 Subject: [PATCH 052/904] gotop: update to 4.1.2. --- srcpkgs/gotop/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/gotop/template b/srcpkgs/gotop/template index 6b22aec99372..035f5749e4da 100644 --- a/srcpkgs/gotop/template +++ b/srcpkgs/gotop/template @@ -1,6 +1,6 @@ # Template file for 'gotop' pkgname=gotop -version=4.1.1 +version=4.1.2 revision=1 build_style=go go_ldflags="-X main.Version=v${version}" @@ -12,7 +12,7 @@ maintainer="SolitudeSF " license="MIT" homepage="https://github.com/xxxserxxx/gotop" distfiles="https://github.com/xxxserxxx/gotop/archive/v${version}.tar.gz" -checksum=314dcfc4b0faa0bb735e5fa84b2406492bf94f7948af43e2b9d2982d69d542ed +checksum=81518fecfdab4f4c25a4713e24d9c033ba8311bbd3e2c0435ba76349028356da post_install() { vlicense LICENSE From ba4ce9427a0583e19597e15a37ccd4291434c640 Mon Sep 17 00:00:00 2001 From: Enno Boland Date: Wed, 21 Apr 2021 21:01:55 +0200 Subject: [PATCH 053/904] vala: update to 0.52.4. --- common/shlibs | 2 +- .../vala/patches/disable-unstable-tests.patch | 14 ++++++++++++++ srcpkgs/vala/template | 19 ++++++++++++------- 3 files changed, 27 insertions(+), 8 deletions(-) create mode 100644 srcpkgs/vala/patches/disable-unstable-tests.patch diff --git a/common/shlibs b/common/shlibs index f768a637aed5..7a0c44e9a713 100644 --- a/common/shlibs +++ b/common/shlibs @@ -3119,7 +3119,7 @@ libmirage.so.11 libmirage-3.1.0_1 libwkhtmltox.so.0 libwkhtmltopdf-0.12.5_1 libsysprof-4.so sysprof-3.37.90_1 libsysprof-ui-4.so sysprof-3.37.90_1 -libvala-0.50.so.0 libvala-0.50.0_1 +libvala-0.52.so.0 libvala-0.52.0_1 libvaladoc-0.50.so.0 libvaladoc-0.50.0_1 libvalaccodegen.so libvala-0.44.0_1 libphodav-2.0.so.0 phodav-2.2_1 diff --git a/srcpkgs/vala/patches/disable-unstable-tests.patch b/srcpkgs/vala/patches/disable-unstable-tests.patch new file mode 100644 index 000000000000..84d126b4d87c --- /dev/null +++ b/srcpkgs/vala/patches/disable-unstable-tests.patch @@ -0,0 +1,14 @@ +This patch disables tests that fail in github-ci, but pass on other linux systems. + +--- a/tests/Makefile.am ++++ b/tests/Makefile.am +@@ -706,9 +706,7 @@ + dbus/dynamic-method.test \ + dbus/enum-string-marshalling.vala \ + dbus/signals.test \ +- dbus/filedescriptor.test \ + dbus/filedescriptor-async.test \ +- dbus/filedescriptor-errors.test \ + dbus/dicts.test \ + dbus/bug596862.vala \ + dbus/bug602003.test \ diff --git a/srcpkgs/vala/template b/srcpkgs/vala/template index 4250b7f044a1..a663467846fc 100644 --- a/srcpkgs/vala/template +++ b/srcpkgs/vala/template @@ -1,29 +1,34 @@ # Template file for 'vala' pkgname=vala # Should be kept in sync with 'valadoc' (shared distfiles) -version=0.50.0 -revision=2 +version=0.52.4 +revision=1 build_style=gnu-configure configure_args="--disable-valadoc" -hostmakedepends="flex libxslt pkg-config" +hostmakedepends="flex libxslt pkg-config automake libtool" makedepends="libfl-devel libglib-devel" checkdepends="dbus libgirepository-devel" short_desc="Compiler for the GObject type system" maintainer="Enno Boland " license="LGPL-2.1-or-later" homepage="https://wiki.gnome.org/Projects/Vala" -changelog="https://gitlab.gnome.org/GNOME/vala/raw/0.50/NEWS" +changelog="https://gitlab.gnome.org/GNOME/vala/raw/master/NEWS" distfiles="${GNOME_SITE}/vala/${version%.*}/vala-${version}.tar.xz" -checksum=838adc50ac08881e06cf233fefd93740dec1530312cc1cf12c36d4e0e87d3071 +checksum=ecde520e5160e659ee699f8b1cdc96065edbd44bbd08eb48ef5f2506751fdf31 shlib_provides="libvalaccodegen.so" +make_check=extended + +pre_configure() { + autoreconf -if +} post_install() { # remove the /usr/bin prefix from the vapigen variable # so the package that use it fall into our wrapper. # keep the binary versioned, we don't know the potential # fallout from using the unversioned one - vsed -e 's|^vapigen=.*|vapigen=vapigen-0.50|g' \ - -i ${DESTDIR}/usr/lib/pkgconfig/vapigen-0.50.pc + vsed -e "s|^vapigen=.*|vapigen=vapigen-${version%.*}|g" \ + -i ${DESTDIR}/usr/lib/pkgconfig/vapigen-${version%.*}.pc } libvala_package() { From 046f3e80b1f10141cea03842986beae1d063b8ab Mon Sep 17 00:00:00 2001 From: Enno Boland Date: Wed, 21 Apr 2021 21:08:12 +0200 Subject: [PATCH 054/904] valadoc: update to 0.52.4. --- common/shlibs | 2 +- srcpkgs/valadoc/patches | 1 + srcpkgs/valadoc/template | 8 ++++---- 3 files changed, 6 insertions(+), 5 deletions(-) create mode 120000 srcpkgs/valadoc/patches diff --git a/common/shlibs b/common/shlibs index 7a0c44e9a713..7e6b6fb0d1d6 100644 --- a/common/shlibs +++ b/common/shlibs @@ -3120,7 +3120,7 @@ libwkhtmltox.so.0 libwkhtmltopdf-0.12.5_1 libsysprof-4.so sysprof-3.37.90_1 libsysprof-ui-4.so sysprof-3.37.90_1 libvala-0.52.so.0 libvala-0.52.0_1 -libvaladoc-0.50.so.0 libvaladoc-0.50.0_1 +libvaladoc-0.52.so.0 libvaladoc-0.52.0_1 libvalaccodegen.so libvala-0.44.0_1 libphodav-2.0.so.0 phodav-2.2_1 libgfshare.so.2 libgfshare-2.0.0_1 diff --git a/srcpkgs/valadoc/patches b/srcpkgs/valadoc/patches new file mode 120000 index 000000000000..11fa71e74306 --- /dev/null +++ b/srcpkgs/valadoc/patches @@ -0,0 +1 @@ +../vala/patches \ No newline at end of file diff --git a/srcpkgs/valadoc/template b/srcpkgs/valadoc/template index 4593b7db5f69..cb48ff44da84 100644 --- a/srcpkgs/valadoc/template +++ b/srcpkgs/valadoc/template @@ -1,8 +1,8 @@ # Template file for 'valadoc' pkgname=valadoc # Should be kept in sync with 'vala' (shared distfiles) -version=0.50.0 -revision=3 +version=0.52.4 +revision=1 wrksrc="vala-${version}" build_style=gnu-configure configure_args="--with-cgraph=yes" @@ -13,9 +13,9 @@ short_desc="Vala Documentation Tool" maintainer="Enno Boland " license="LGPL-2.1-or-later" homepage="https://wiki.gnome.org/Projects/Vala" -changelog="https://gitlab.gnome.org/GNOME/vala/raw/0.50/NEWS" +changelog="https://gitlab.gnome.org/GNOME/vala/raw/master/NEWS" distfiles="${GNOME_SITE}/vala/${version%.*}/vala-${version}.tar.xz" -checksum=838adc50ac08881e06cf233fefd93740dec1530312cc1cf12c36d4e0e87d3071 +checksum=ecde520e5160e659ee699f8b1cdc96065edbd44bbd08eb48ef5f2506751fdf31 pre_configure() { autoreconf -if From b2c486aa1ba0c8ff71c3df084455978cbf781359 Mon Sep 17 00:00:00 2001 From: Enno Boland Date: Wed, 21 Apr 2021 20:05:29 +0200 Subject: [PATCH 055/904] vala-language-server: update to 0.48.3. --- srcpkgs/vala-language-server/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/vala-language-server/template b/srcpkgs/vala-language-server/template index 870fe215fb92..795ba64667be 100644 --- a/srcpkgs/vala-language-server/template +++ b/srcpkgs/vala-language-server/template @@ -1,13 +1,13 @@ # Template file for 'vala-language-server' pkgname=vala-language-server -version=0.48.1 +version=0.48.3 revision=1 build_style=meson hostmakedepends="gettext pkg-config vala" makedepends="libgee08-devel glib-devel jsonrpc-glib-devel vala-devel json-glib-devel" short_desc="Code Intelligence for Vala & Genie" maintainer="Enno Boland " -license="LGPL-3.0-only" +license="LGPL-2.1-or-later" homepage="https://github.com/benwaffle/vala-language-server" distfiles="https://github.com/benwaffle/$pkgname/archive/refs/tags/$version.tar.gz" -checksum=d752f7aa9fad94d1d34e99038be312528c5808e6c0132bc91df2a8ce670cff45 +checksum=1a752515efda561aec535d088a6f52888b13ad2d52f2d27770ddf6a519f0028b From 459a8dcf7172ef55335b92618a1809703b9618f1 Mon Sep 17 00:00:00 2001 From: Enno Boland Date: Wed, 21 Apr 2021 21:19:57 +0200 Subject: [PATCH 056/904] io.elementary.code: rebuild with vala-0.52.4 --- srcpkgs/io.elementary.code/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/io.elementary.code/template b/srcpkgs/io.elementary.code/template index 8d43ad4130d2..66de4b50be05 100644 --- a/srcpkgs/io.elementary.code/template +++ b/srcpkgs/io.elementary.code/template @@ -1,7 +1,7 @@ # Template file for 'io.elementary.code' pkgname=io.elementary.code version=3.4.1 -revision=3 +revision=4 wrksrc="code-${version}" build_style=meson hostmakedepends="pkg-config vala intltool glib-devel" From 896e77116a25c17e9e741b0f8aafb68ca17f9004 Mon Sep 17 00:00:00 2001 From: Enno Boland Date: Wed, 21 Apr 2021 21:20:11 +0200 Subject: [PATCH 057/904] valabind: update to 1.8.0. --- srcpkgs/valabind/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/valabind/template b/srcpkgs/valabind/template index d2af2f9be152..b94938be33ae 100644 --- a/srcpkgs/valabind/template +++ b/srcpkgs/valabind/template @@ -1,6 +1,6 @@ # Template file for 'valabind' pkgname=valabind -version=1.7.2 +version=1.8.0 revision=1 build_style=meson hostmakedepends="pkg-config vala-devel git" @@ -11,4 +11,4 @@ maintainer="Orphaned " license="GPL-3.0-or-later" homepage="https://radare.org/r/" distfiles="https://github.com/radare/valabind/archive/${version}.tar.gz" -checksum=643c1ddc85e31de975df361a20e3f39d385f5ced0e50483c6e96b33bb3d32261 +checksum=3eba8c36c923eda932a95b8d0c16b7b30e8cdda442252431990436519cf87cdd From f0c3565a1b986bbe9856d9d53b334aa2b5151e19 Mon Sep 17 00:00:00 2001 From: UsernameRandomlyGenerated Date: Fri, 6 Aug 2021 19:47:45 +0200 Subject: [PATCH 058/904] bomi: remove package. Unmaintaned and broken, UI doesn't work. Upstream issue: https://github.com/ashinan/bomi/issues/540 --- srcpkgs/bomi/patches/ffmpeg3.x.patch | 32 ---- srcpkgs/bomi/patches/ffmpeg4.patch | 195 ------------------------ srcpkgs/bomi/patches/fix-cxx14.patch | 67 -------- srcpkgs/bomi/patches/fix-sysctl_h.patch | 22 --- srcpkgs/bomi/template | 35 ----- 5 files changed, 351 deletions(-) delete mode 100644 srcpkgs/bomi/patches/ffmpeg3.x.patch delete mode 100644 srcpkgs/bomi/patches/ffmpeg4.patch delete mode 100644 srcpkgs/bomi/patches/fix-cxx14.patch delete mode 100644 srcpkgs/bomi/patches/fix-sysctl_h.patch delete mode 100644 srcpkgs/bomi/template diff --git a/srcpkgs/bomi/patches/ffmpeg3.x.patch b/srcpkgs/bomi/patches/ffmpeg3.x.patch deleted file mode 100644 index 3b224fd76a73..000000000000 --- a/srcpkgs/bomi/patches/ffmpeg3.x.patch +++ /dev/null @@ -1,32 +0,0 @@ -libavutil/audioconvert.h is gone in ffmpeg3.x - ---- a/src/mpv/audio/filter/af_lavcac3enc.c 2015-05-20 11:31:58.000000000 +0200 -+++ b/src/mpv/audio/filter/af_lavcac3enc.c 2016-09-22 19:52:47.730132367 +0200 -@@ -26,7 +26,6 @@ - #include - - #include --#include - #include - #include - #include ---- a/src/mpv/audio/out/ao_lavc.c 2015-05-20 11:31:58.000000000 +0200 -+++ b/src/mpv/audio/out/ao_lavc.c 2016-09-22 19:54:50.291163189 +0200 -@@ -25,7 +25,6 @@ - #include - - #include --#include - - #include "config.h" - #include "options/options.h" ---- a/src/mpv/audio/filter/af_lavrresample.c 2015-05-20 11:31:58.000000000 +0200 -+++ b/src/mpv/audio/filter/af_lavrresample.c 2016-09-22 19:57:13.539200765 +0200 -@@ -28,7 +28,6 @@ - #include - - #include --#include - #include - #include - #include diff --git a/srcpkgs/bomi/patches/ffmpeg4.patch b/srcpkgs/bomi/patches/ffmpeg4.patch deleted file mode 100644 index fefd786df654..000000000000 --- a/srcpkgs/bomi/patches/ffmpeg4.patch +++ /dev/null @@ -1,195 +0,0 @@ -source: https://github.com/d-s-x/bomi/commit/c1473b38bf92e9ac858fd58588a9d45fe717edfa - -diff --git a/src/bomi/video/ffmpegfilters.hpp b/src/bomi/video/ffmpegfilters.hpp -index 77b1df41c5..5365525c48 100644 ---- a/src/bomi/video/ffmpegfilters.hpp -+++ b/src/bomi/video/ffmpegfilters.hpp -@@ -6,7 +6,7 @@ - extern "C" { - #include