From fce33780206b13d8a51eaa3fc4b5fdb86703ef26 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:13:51 +0200 Subject: [PATCH 01/97] cbindgen: update to 0.23.0. --- srcpkgs/cbindgen/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/cbindgen/template b/srcpkgs/cbindgen/template index 3d7443a87dea..0c437f415a87 100644 --- a/srcpkgs/cbindgen/template +++ b/srcpkgs/cbindgen/template @@ -1,6 +1,6 @@ # Template file for 'cbindgen' pkgname=cbindgen -version=0.19.0 +version=0.23.0 revision=1 build_style=cargo short_desc="Tool to generate C bindings for Rust code" @@ -8,7 +8,7 @@ maintainer="Orphaned " license="MPL-2.0" homepage="https://github.com/eqrion/cbindgen" distfiles="https://github.com/eqrion/cbindgen/archive/v${version}.tar.gz" -checksum=5a068b3d4cd0319b12844c83816d63e2e9ce8176bd2d78ca0ac03d4833bcbab7 +checksum=d7b82a7a4bfe7fc61c6f7c1b848bf586fef4057c84960739484b4f743bf0bab6 do_check() { : # test are only expected to work with rust nightly From 2de81b2fd9b4b333597af9677b0f40af05718958 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:14:29 +0200 Subject: [PATCH 02/97] icu: update to 71.1. --- common/shlibs | 12 +++--- .../patches/icu-70.1-fix-ucptrietest.patch | 38 ------------------- srcpkgs/icu/template | 4 +- 3 files changed, 8 insertions(+), 46 deletions(-) delete mode 100644 srcpkgs/icu/patches/icu-70.1-fix-ucptrietest.patch diff --git a/common/shlibs b/common/shlibs index e04037a9f2f0..957d9ff5a9f0 100644 --- a/common/shlibs +++ b/common/shlibs @@ -522,12 +522,12 @@ libkImageAnnotator.so.0 kImageAnnotator-0.4.1_1 libkColorPicker.so.0 kColorPicker-0.1.5_1 libbabl-0.1.so.0 babl-0.1.16_1 libbamf3.so.2 bamf-0.5.1_1 -libicuio.so.70 icu-libs-70.1_1 -libicui18n.so.70 icu-libs-70.1_1 -libicudata.so.70 icu-libs-70.1_1 -libicutu.so.70 icu-libs-70.1_1 -libicuuc.so.70 icu-libs-70.1_1 -libicutest.so.70 icu-libs-70.1_1 +libicuio.so.71 icu-libs-71.1_1 +libicui18n.so.71 icu-libs-71.1_1 +libicudata.so.71 icu-libs-71.1_1 +libicutu.so.71 icu-libs-71.1_1 +libicuuc.so.71 icu-libs-71.1_1 +libicutest.so.71 icu-libs-71.1_1 libaspell.so.15 libaspell-0.60.8_2 libpspell.so.15 libaspell-0.60.8_2 libenchant-2.so.2 enchant2-2.2.3_1 diff --git a/srcpkgs/icu/patches/icu-70.1-fix-ucptrietest.patch b/srcpkgs/icu/patches/icu-70.1-fix-ucptrietest.patch deleted file mode 100644 index 5b281ea4603a..000000000000 --- a/srcpkgs/icu/patches/icu-70.1-fix-ucptrietest.patch +++ /dev/null @@ -1,38 +0,0 @@ -Fixes test failure on arm. - -https://github.com/unicode-org/icu/pull/1925 -https://unicode-org.atlassian.net/browse/ICU-21793 - -From: =?UTF-8?q?J=C3=A9r=C3=A9my=20Lal?= -Date: Wed, 3 Nov 2021 02:31:18 +0100 -Subject: [PATCH] ICU-21793 Fix ucptrietest golden diff - ---- a/source/tools/toolutil/toolutil.cpp -+++ b/source/tools/toolutil/toolutil.cpp -@@ -228,18 +228,19 @@ uprv_compareGoldenFiles( - std::ifstream ifs(goldenFilePath, std::ifstream::in); - int32_t pos = 0; - char c; -- while ((c = ifs.get()) != std::char_traits::eof() && pos < bufferLen) { -+ while (ifs.get(c) && pos < bufferLen) { - if (c != buffer[pos]) { - // Files differ at this position -- return pos; -+ break; - } - pos++; - } -- if (pos < bufferLen || c != std::char_traits::eof()) { -- // Files are different lengths -- return pos; -+ if (pos == bufferLen && ifs.eof()) { -+ // Files are same lengths -+ pos = -1; - } -- return -1; -+ ifs.close(); -+ return pos; - } - - /*U_CAPI UDate U_EXPORT2 - diff --git a/srcpkgs/icu/template b/srcpkgs/icu/template index 3ff17a4dea5d..06d3eb15f19d 100644 --- a/srcpkgs/icu/template +++ b/srcpkgs/icu/template @@ -2,7 +2,7 @@ # NOTE: Please convert this package to support progressive updates with the # next soname bump. pkgname=icu -version=70.1 +version=71.1 revision=1 wrksrc=icu build_wrksrc=source @@ -16,7 +16,7 @@ maintainer="Randy McCaskill " license="ICU" homepage="https://home.unicode.org/" distfiles="https://github.com/unicode-org/icu/releases/download/release-${version//./-}/icu4c-${version//./_}-src.tgz" -checksum=8d205428c17bf13bb535300669ed28b338a157b1c01ae66d31d0d3e2d47c3fd5 +checksum=67a7e6e51f61faf1306b6935333e13b2c48abd8da6d2f46ce6adca24b1e21ebf CFLAGS=-fPIC CXXFLAGS=-fPIC From 8c359f55c2b44d6f586cc4c47a94c392658a339a Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:14:53 +0200 Subject: [PATCH 03/97] firefox: update to 101.0. --- .../patches/fix-parsing-ccache-never.patch | 50 ------------------- srcpkgs/firefox/template | 4 +- 2 files changed, 2 insertions(+), 52 deletions(-) delete mode 100644 srcpkgs/firefox/patches/fix-parsing-ccache-never.patch diff --git a/srcpkgs/firefox/patches/fix-parsing-ccache-never.patch b/srcpkgs/firefox/patches/fix-parsing-ccache-never.patch deleted file mode 100644 index 7a55fccc5dea..000000000000 --- a/srcpkgs/firefox/patches/fix-parsing-ccache-never.patch +++ /dev/null @@ -1,50 +0,0 @@ ---- a/python/mozbuild/mozbuild/controller/building.py -+++ b/python/mozbuild/mozbuild/controller/building.py -@@ -1070,6 +1070,8 @@ class CCacheStats(object): - ts = time.strptime(raw_value, "%c") - return int(time.mktime(ts)) - except ValueError: -+ if raw_value == "never": -+ return 0 - pass - - value = raw_value.split() ---- a/python/mozbuild/mozbuild/test/controller/test_ccachestats.py -+++ b/python/mozbuild/mozbuild/test/controller/test_ccachestats.py -@@ -356,6 +356,26 @@ Primary storage: - timestamp=time.strftime("%c") - ) - -+ STAT12 = """ -+Summary: -+ Cache directory: /home/suer/.ccache -+ Primary config: /home/suer/.ccache/ccache.conf -+ Secondary config: /etc/ccache.conf -+ Stats updated: never -+ Hits: 0 / 0 -+ Direct: 0 / 0 -+ Preprocessed: 0 / 0 -+ Misses: 0 -+ Direct: 0 -+ Preprocessed: 0 -+Primary storage: -+ Hits: 0 / 0 -+ Misses: 0 -+ Cache size (GB): 0.00 / 5.00 (0.00 %) -+ Files: 0 -+ Cleanups: 16 -+ """ -+ - def test_parse_garbage_stats_message(self): - self.assertRaises(ValueError, CCacheStats, self.STAT_GARBAGE) - -@@ -438,6 +458,9 @@ Primary storage: - stat11 = CCacheStats(self.STAT11, True) - self.assertTrue(stat11) - -+ stat12 = CCacheStats(self.STAT12, True) -+ self.assertTrue(stat12) -+ - - if __name__ == "__main__": - main() diff --git a/srcpkgs/firefox/template b/srcpkgs/firefox/template index 9c8a17a940b1..16cab5485365 100644 --- a/srcpkgs/firefox/template +++ b/srcpkgs/firefox/template @@ -3,7 +3,7 @@ # THIS PKG MUST BE SYNCHRONIZED WITH "srcpkgs/firefox-i18n". # pkgname=firefox -version=100.0.2 +version=101.0 revision=1 build_helper="rust" short_desc="Mozilla Firefox web browser" @@ -11,7 +11,7 @@ maintainer="Duncaen " license="MPL-2.0, GPL-2.0-or-later, LGPL-2.1-or-later" homepage="https://www.mozilla.org/firefox/" distfiles="${MOZILLA_SITE}/${pkgname}/releases/${version}/source/${pkgname}-${version}.source.tar.xz" -checksum=dc109861204f6938fd8f147af89a694eb516f3d4bb64ce3f0116452d654a8417 +checksum=55ab5b517d58bbcbc837640263a8371cf1fba3d9f508e54537c4d2cbbfb86095 lib32disabled=yes From ad5611ac4cff6629f37c8ca125f683d596480ddd Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:30 +0200 Subject: [PATCH 04/97] 0ad: rebuild for icu-71.1_1 --- srcpkgs/0ad/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/0ad/template b/srcpkgs/0ad/template index a18ae2dd0a81..552d2728a7a0 100644 --- a/srcpkgs/0ad/template +++ b/srcpkgs/0ad/template @@ -1,7 +1,7 @@ # Template file for '0ad' pkgname=0ad version=0.0.25b -revision=2 +revision=3 archs="x86_64* i686* aarch64* armv7l* ppc64le*" wrksrc="${pkgname}-${version}-alpha" hostmakedepends="pkg-config perl cmake python3 rust cargo yasm tar clang" From 7bcb06de3ea3323f0573fc9c7b096b19f763cc59 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:30 +0200 Subject: [PATCH 05/97] Aegisub: rebuild for icu-71.1_1 --- srcpkgs/Aegisub/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/Aegisub/template b/srcpkgs/Aegisub/template index 1583c4853b9b..ff34249aaee4 100644 --- a/srcpkgs/Aegisub/template +++ b/srcpkgs/Aegisub/template @@ -1,7 +1,7 @@ # Template file for 'Aegisub' pkgname=Aegisub version=3.3.2 -revision=3 +revision=4 build_style=cmake build_helper=cmake-wxWidgets-gtk3 cmake_builddir="BUILD" From 4cbc359670f60bf05c3936b5829f20f16e35bb44 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:30 +0200 Subject: [PATCH 06/97] OpenRCT2: rebuild for icu-71.1_1 --- srcpkgs/OpenRCT2/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/OpenRCT2/template b/srcpkgs/OpenRCT2/template index ececf0dfc68f..b02afc17361b 100644 --- a/srcpkgs/OpenRCT2/template +++ b/srcpkgs/OpenRCT2/template @@ -6,7 +6,7 @@ _objects_version=1.0.21 _titles_version=0.1.2c _replays_version=0.0.43 version=0.3.4.1 -revision=3 +revision=4 build_style=cmake configure_args=" -DOPENRCT2_VERSION_TAG=${version} From 27d909437c214bebc602ae08de0e5d1b18d699f9 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:30 +0200 Subject: [PATCH 07/97] R: rebuild for icu-71.1_1 --- srcpkgs/R/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/R/template b/srcpkgs/R/template index d506d02764b0..20c3f3ba89ba 100644 --- a/srcpkgs/R/template +++ b/srcpkgs/R/template @@ -1,7 +1,7 @@ # Template file for 'R' pkgname=R version=4.1.3 -revision=1 +revision=2 build_style=gnu-configure configure_args="--docdir=/usr/share/doc/R rdocdir=/usr/share/doc/R --with-blas$(vopt_if openblas '=openblas') --with-lapack From 7880115e62bd43eabe40c872f7aa774f59445644 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:30 +0200 Subject: [PATCH 08/97] R-cran-stringi: rebuild for icu-71.1_1 --- srcpkgs/R-cran-stringi/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/R-cran-stringi/template b/srcpkgs/R-cran-stringi/template index cdbdc57ce1f9..fcc057cfd205 100644 --- a/srcpkgs/R-cran-stringi/template +++ b/srcpkgs/R-cran-stringi/template @@ -1,7 +1,7 @@ # Template file for 'R-cran-stringi' pkgname=R-cran-stringi version=1.7.3 -revision=2 +revision=3 build_style=R-cran makedepends="pkg-config icu-devel" short_desc="Character String Processing Facilities" From 48151f3fcfc6a735d2312be1f4485ca3436a997b Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:30 +0200 Subject: [PATCH 09/97] an: rebuild for icu-71.1_1 --- srcpkgs/an/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/an/template b/srcpkgs/an/template index 8491e86713db..a03ef758fad3 100644 --- a/srcpkgs/an/template +++ b/srcpkgs/an/template @@ -1,7 +1,7 @@ # Template file for 'an' pkgname=an version=1.2 -revision=9 +revision=10 build_style=gnu-makefile makedepends="icu-devel" depends="words-en" From ea119dcc7e2a110cfda383236ccef4ba052cbaf1 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:31 +0200 Subject: [PATCH 10/97] boost: rebuild for icu-71.1_1 --- srcpkgs/boost/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/boost/template b/srcpkgs/boost/template index 126c50770b50..e5c4b3dd478e 100644 --- a/srcpkgs/boost/template +++ b/srcpkgs/boost/template @@ -1,7 +1,7 @@ # Template file for 'boost' pkgname=boost version=1.72.0 -revision=7 +revision=8 wrksrc="${pkgname}_${version//\./_}" hostmakedepends="which bzip2-devel icu-devel python-devel python3-devel" makedepends="zlib-devel bzip2-devel icu-devel python-devel python3-devel" From 83f321f1b9ea46c3768f4e2365ccc17be65f01f7 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:31 +0200 Subject: [PATCH 11/97] brltty: rebuild for icu-71.1_1 --- srcpkgs/brltty/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/brltty/template b/srcpkgs/brltty/template index 350ecd96eb33..08707f8dc86c 100644 --- a/srcpkgs/brltty/template +++ b/srcpkgs/brltty/template @@ -1,7 +1,7 @@ # Template file for 'brltty' pkgname=brltty version=6.4 -revision=4 +revision=5 build_style=gnu-configure configure_args="--enable-gpm --with-screen-driver=lx,sc --with-tables-directory=/usr/share/brltty PYTHON=/usr/bin/python3" From c14c829c4941822a2efcd2764ab21d4daf0a697f Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:31 +0200 Subject: [PATCH 12/97] calibre: rebuild for icu-71.1_1 --- srcpkgs/calibre/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/calibre/template b/srcpkgs/calibre/template index 03f3ac6d39fa..2c096a3c5ccf 100644 --- a/srcpkgs/calibre/template +++ b/srcpkgs/calibre/template @@ -1,7 +1,7 @@ # Template file for 'calibre' pkgname=calibre version=5.43.0 -revision=1 +revision=2 build_style=python3-module pycompile_dirs="/usr/lib/calibre/" hostmakedepends="pkg-config python3-BeautifulSoup4 python3-Pillow python3-PyQt5-svg From 5330e46c640572b8074aac72ecb90ed55db4ec9e Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:31 +0200 Subject: [PATCH 13/97] clamav: rebuild for icu-71.1_1 --- srcpkgs/clamav/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/clamav/template b/srcpkgs/clamav/template index abd9f367430f..344b3b85bf47 100644 --- a/srcpkgs/clamav/template +++ b/srcpkgs/clamav/template @@ -1,7 +1,7 @@ # Template file for 'clamav' pkgname=clamav version=0.103.4 -revision=2 +revision=3 build_style=gnu-configure # XXX: system llvm is too new (< 3.7 required) # Shipped llvm does not build with gcc>=6 From e2232a281e585cd5dbbe028d3914f0a9f54a93c1 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:31 +0200 Subject: [PATCH 14/97] darktable: rebuild for icu-71.1_1 --- srcpkgs/darktable/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/darktable/template b/srcpkgs/darktable/template index ef44020cf2be..551c4a3b76c6 100644 --- a/srcpkgs/darktable/template +++ b/srcpkgs/darktable/template @@ -1,7 +1,7 @@ # Template file for 'darktable' pkgname=darktable version=3.8.0 -revision=3 +revision=4 # upstream only supports these archs: archs="x86_64* aarch64* ppc64le*" build_style=cmake From d9988d3ba499bf950958aefc744d7aa788d27b0f Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:32 +0200 Subject: [PATCH 15/97] dino: rebuild for icu-71.1_1 --- srcpkgs/dino/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/dino/template b/srcpkgs/dino/template index f3c025eb3e6a..4c8255603289 100644 --- a/srcpkgs/dino/template +++ b/srcpkgs/dino/template @@ -1,7 +1,7 @@ # Template file for 'dino' pkgname=dino version=0.3.0 -revision=1 +revision=2 build_style=cmake configure_args="-DDINO_PLUGIN_ENABLED_notification-sound=ON" hostmakedepends="cmake ninja gettext unzip pkg-config vala glib-devel" From cc418cb45f5b020438255e480c295cc8e63bd81f Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:32 +0200 Subject: [PATCH 16/97] dwdiff: rebuild for icu-71.1_1 --- srcpkgs/dwdiff/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/dwdiff/template b/srcpkgs/dwdiff/template index c02086f13c8a..77fc8e1cf2fa 100644 --- a/srcpkgs/dwdiff/template +++ b/srcpkgs/dwdiff/template @@ -1,7 +1,7 @@ # Template file for 'dwdiff' pkgname=dwdiff version=2.1.4 -revision=3 +revision=4 build_style=gnu-configure hostmakedepends="gettext pkg-config" makedepends="icu-devel" From 08029bce83c3faa5e025b349d8ba82822e95b940 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:32 +0200 Subject: [PATCH 17/97] enchant2: rebuild for icu-71.1_1 --- srcpkgs/enchant2/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/enchant2/template b/srcpkgs/enchant2/template index 2d7a2e67e125..caf9b765d99b 100644 --- a/srcpkgs/enchant2/template +++ b/srcpkgs/enchant2/template @@ -1,7 +1,7 @@ # Template file for 'enchant2' pkgname=enchant2 version=2.3.2 -revision=1 +revision=2 wrksrc="enchant-${version}" build_style=gnu-configure # so package doesn't conflict with enchant's /usr/share/enchant/enchant.ordering; From 00024a97b230c3be54f577c804214b5ba5fe2d9f Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:32 +0200 Subject: [PATCH 18/97] evolution-data-server: rebuild for icu-71.1_1 --- srcpkgs/evolution-data-server/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/evolution-data-server/template b/srcpkgs/evolution-data-server/template index 71db33706047..7d6937d97eaa 100644 --- a/srcpkgs/evolution-data-server/template +++ b/srcpkgs/evolution-data-server/template @@ -1,7 +1,7 @@ # Template file for 'evolution-data-server' pkgname=evolution-data-server version=3.42.3 -revision=1 +revision=2 build_style=cmake build_helper="gir qemu" configure_args="-DENABLE_UOA=OFF From 8dfb25634dc9e1cc514e5ed84e5cf654b23143de Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:32 +0200 Subject: [PATCH 19/97] firefox-esr: rebuild for icu-71.1_1 --- srcpkgs/firefox-esr/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/firefox-esr/template b/srcpkgs/firefox-esr/template index e259184e0247..29d330caff43 100644 --- a/srcpkgs/firefox-esr/template +++ b/srcpkgs/firefox-esr/template @@ -4,7 +4,7 @@ # pkgname=firefox-esr version=91.9.0 -revision=1 +revision=2 wrksrc="firefox-${version}" build_helper="rust" short_desc="Mozilla Firefox web browser - Extended Support Release" From 52f8c8996aac304ea79b5b00460f083c9ebcecdc Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:33 +0200 Subject: [PATCH 20/97] fsearch: rebuild for icu-71.1_1 --- srcpkgs/fsearch/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/fsearch/template b/srcpkgs/fsearch/template index 37ca90897c62..cdf4e8056ec4 100644 --- a/srcpkgs/fsearch/template +++ b/srcpkgs/fsearch/template @@ -1,7 +1,7 @@ # Template file for 'fsearch' pkgname=fsearch version=0.1.2 -revision=1 +revision=2 build_style=gnu-configure hostmakedepends="autogen automake libtool pkg-config autoconf-archive gettext-devel glib-devel" From 15a61361a6a86353717e572cc15176dab3fdd6bd Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:33 +0200 Subject: [PATCH 21/97] geary: rebuild for icu-71.1_1 --- srcpkgs/geary/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/geary/template b/srcpkgs/geary/template index d8cfc84eb310..ecca2367f1f6 100644 --- a/srcpkgs/geary/template +++ b/srcpkgs/geary/template @@ -1,7 +1,7 @@ # Template file for 'geary' pkgname=geary version=40.0 -revision=4 +revision=5 build_helper="gir" build_style=meson configure_args="-Dprofile=release -Dcontractor=enabled" From 755d81ebf57b6a47c2055cd1fb93c08aee407b3e Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:33 +0200 Subject: [PATCH 22/97] gnome-text-editor: rebuild for icu-71.1_1 --- srcpkgs/gnome-text-editor/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gnome-text-editor/template b/srcpkgs/gnome-text-editor/template index f1e474fca5ff..631dc7b77dad 100644 --- a/srcpkgs/gnome-text-editor/template +++ b/srcpkgs/gnome-text-editor/template @@ -1,7 +1,7 @@ # Template file for 'gnome-text-editor' pkgname=gnome-text-editor version=41.1 -revision=1 +revision=2 build_style=meson hostmakedepends="pkg-config gettext itstool glib-devel" makedepends="libglib-devel gtk4-devel gtksourceview5-devel enchant2-devel From 42d4441039b669b2e953a6b0f3b7d7a740405b6c Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:33 +0200 Subject: [PATCH 23/97] gnucash: rebuild for icu-71.1_1 --- srcpkgs/gnucash/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gnucash/template b/srcpkgs/gnucash/template index 9ccc3526ac8e..6625eca55296 100644 --- a/srcpkgs/gnucash/template +++ b/srcpkgs/gnucash/template @@ -1,7 +1,7 @@ # Template file for 'gnucash' pkgname=gnucash version=4.10 -revision=1 +revision=2 wrksrc="${pkgname}-${version%b}" build_style=cmake make_check_target=check From 39d0472f8f04a9739b004bba6d4c83790bb1eea7 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:33 +0200 Subject: [PATCH 24/97] gnustep-base: rebuild for icu-71.1_1 --- srcpkgs/gnustep-base/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gnustep-base/template b/srcpkgs/gnustep-base/template index 841ee0738286..8f3ad34c1856 100644 --- a/srcpkgs/gnustep-base/template +++ b/srcpkgs/gnustep-base/template @@ -1,7 +1,7 @@ # Template file for 'gnustep-base' pkgname=gnustep-base version=1.28.0 -revision=3 +revision=4 build_style=gnu-configure hostmakedepends="gnustep-make gcc-objc pkg-config which" makedepends="libobjc-devel libffi-devel libxml2-devel gnutls-devel From f551c0beef2c6a95d538c444805ea632b306eaf6 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:33 +0200 Subject: [PATCH 25/97] gnustep-gui: rebuild for icu-71.1_1 --- srcpkgs/gnustep-gui/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gnustep-gui/template b/srcpkgs/gnustep-gui/template index f97871ce2ec8..03d04576f1ec 100644 --- a/srcpkgs/gnustep-gui/template +++ b/srcpkgs/gnustep-gui/template @@ -1,7 +1,7 @@ # Template file for 'gnustep-gui' pkgname=gnustep-gui version=0.29.0 -revision=3 +revision=4 build_style=gnu-configure hostmakedepends="gnustep-make pkg-config tar" makedepends="gnustep-base-devel libjpeg-turbo-devel tiff-devel libpng-devel From 7540ca4660aa643919c18f025409c7e8fe69a14b Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:34 +0200 Subject: [PATCH 26/97] gspell: rebuild for icu-71.1_1 --- srcpkgs/gspell/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gspell/template b/srcpkgs/gspell/template index bce06d5f8fa7..00b40406ffc5 100644 --- a/srcpkgs/gspell/template +++ b/srcpkgs/gspell/template @@ -1,7 +1,7 @@ # Template file for 'gspell' pkgname=gspell version=1.9.1 -revision=1 +revision=2 build_style=gnu-configure build_helper="gir" configure_args="--disable-static $(vopt_enable gir introspection) From f688bfe53736a5cca687ccb13d84cbf388e1014f Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:34 +0200 Subject: [PATCH 27/97] harfbuzz: rebuild for icu-71.1_1 --- srcpkgs/harfbuzz/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/harfbuzz/template b/srcpkgs/harfbuzz/template index d5c501aa5413..97648451c97e 100644 --- a/srcpkgs/harfbuzz/template +++ b/srcpkgs/harfbuzz/template @@ -1,7 +1,7 @@ # Template file for 'harfbuzz' pkgname=harfbuzz version=3.3.1 -revision=1 +revision=2 build_style=meson build_helper="gir qemu" configure_args="-Dglib=enabled -Dfreetype=enabled -Dcairo=enabled -Dicu=enabled From cdaee87a71e8fd5cec474724156244b4b5176fe1 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:34 +0200 Subject: [PATCH 28/97] icu4lua: rebuild for icu-71.1_1 --- srcpkgs/icu4lua/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/icu4lua/template b/srcpkgs/icu4lua/template index 7eb90a542272..9fc0d8aaa44f 100644 --- a/srcpkgs/icu4lua/template +++ b/srcpkgs/icu4lua/template @@ -1,7 +1,7 @@ # Template file for 'icu4lua' pkgname=icu4lua version=0.2B -revision=11 +revision=12 create_wrksrc=yes build_style=gnu-makefile hostmakedepends="pkg-config unzip" From 79070b59244d061aa6c76de003ac995080a2e6ff Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:34 +0200 Subject: [PATCH 29/97] imv: rebuild for icu-71.1_1 --- srcpkgs/imv/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/imv/template b/srcpkgs/imv/template index 50d351c4ada6..c2a14a14a031 100644 --- a/srcpkgs/imv/template +++ b/srcpkgs/imv/template @@ -1,7 +1,7 @@ # Template file for 'imv' pkgname=imv version=4.3.1 -revision=2 +revision=3 wrksrc="imv-v${version}" build_style=meson hostmakedepends="asciidoc pkg-config cmake" From 1bffc0baae60347308b5ced42d41c051562ee3a7 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:34 +0200 Subject: [PATCH 30/97] kdb: rebuild for icu-71.1_1 --- srcpkgs/kdb/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kdb/template b/srcpkgs/kdb/template index d5c1eacc239a..1f9bd6bf6612 100644 --- a/srcpkgs/kdb/template +++ b/srcpkgs/kdb/template @@ -1,7 +1,7 @@ # Template file for 'kdb' pkgname=kdb version=3.2.0 -revision=7 +revision=8 build_style=cmake hostmakedepends="extra-cmake-modules doxygen pkg-config kcoreaddons" makedepends="kcoreaddons-devel postgresql-libs-devel libmariadbclient-devel From ec69a2f14e1dd6df785cc32879181d0bc83df562 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:35 +0200 Subject: [PATCH 31/97] kiwix-lib: rebuild for icu-71.1_1 --- srcpkgs/kiwix-lib/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kiwix-lib/template b/srcpkgs/kiwix-lib/template index 2daaa6fd404b..368a82b6bcfd 100644 --- a/srcpkgs/kiwix-lib/template +++ b/srcpkgs/kiwix-lib/template @@ -1,7 +1,7 @@ # Template file for 'kiwix-lib' pkgname=kiwix-lib version=9.4.1 -revision=3 +revision=4 build_style=meson hostmakedepends="pkg-config" makedepends="icu-devel libzim-devel pugixml-devel xapian-core-devel From fafee309fb3ee53e8bffd558be9f6503f60be24d Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:35 +0200 Subject: [PATCH 32/97] libbitcoin-blockchain: rebuild for icu-71.1_1 --- srcpkgs/libbitcoin-blockchain/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libbitcoin-blockchain/template b/srcpkgs/libbitcoin-blockchain/template index cc3d53b8308a..e43ab8b9ede1 100644 --- a/srcpkgs/libbitcoin-blockchain/template +++ b/srcpkgs/libbitcoin-blockchain/template @@ -1,7 +1,7 @@ # Template file for 'libbitcoin-blockchain' pkgname=libbitcoin-blockchain version=3.6.0 -revision=5 +revision=6 archs="aarch64* ppc64* x86_64*" build_style=gnu-configure configure_args="--with-boost-libdir=${XBPS_CROSS_BASE}/usr/lib From cd1d2a3b063446caa7b0f8bce415e2b017203d0a Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:35 +0200 Subject: [PATCH 33/97] libbitcoin-client: rebuild for icu-71.1_1 --- srcpkgs/libbitcoin-client/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libbitcoin-client/template b/srcpkgs/libbitcoin-client/template index 13293fda2481..17849cd906d0 100644 --- a/srcpkgs/libbitcoin-client/template +++ b/srcpkgs/libbitcoin-client/template @@ -1,7 +1,7 @@ # Template file for 'libbitcoin-client' pkgname=libbitcoin-client version=3.6.0 -revision=5 +revision=6 build_style=gnu-configure configure_args="--with-boost-libdir=${XBPS_CROSS_BASE}/usr/lib --with-boost=${XBPS_CROSS_BASE}/usr --with-gnu-ld --without-examples" From 3f921e8ea412370627607b6a989add65e23557b7 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:35 +0200 Subject: [PATCH 34/97] libbitcoin-database: rebuild for icu-71.1_1 --- srcpkgs/libbitcoin-database/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libbitcoin-database/template b/srcpkgs/libbitcoin-database/template index d67dc084e2c3..a3c48226ba2d 100644 --- a/srcpkgs/libbitcoin-database/template +++ b/srcpkgs/libbitcoin-database/template @@ -1,7 +1,7 @@ # Template file for 'libbitcoin-database' pkgname=libbitcoin-database version=3.6.0 -revision=5 +revision=6 archs="aarch64* ppc64* x86_64*" build_style=gnu-configure configure_args="--with-boost-libdir=${XBPS_CROSS_BASE}/usr/lib From ad1eefa07e7fc86e520ea7972b627dd5c5ccd7a7 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:35 +0200 Subject: [PATCH 35/97] libbitcoin-explorer: rebuild for icu-71.1_1 --- srcpkgs/libbitcoin-explorer/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libbitcoin-explorer/template b/srcpkgs/libbitcoin-explorer/template index 49d83bfb3606..a1929f350269 100644 --- a/srcpkgs/libbitcoin-explorer/template +++ b/srcpkgs/libbitcoin-explorer/template @@ -1,7 +1,7 @@ # Template file for 'libbitcoin-explorer' pkgname=libbitcoin-explorer version=3.6.0 -revision=5 +revision=6 build_style=gnu-configure configure_args="--with-bash-completiondir=/usr/share/bash-completion/completions --with-boost-libdir=${XBPS_CROSS_BASE}/usr/lib From d73a2494d4ebb6c7176b885e3a7f26c509c8812d Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:36 +0200 Subject: [PATCH 36/97] libbitcoin-network: rebuild for icu-71.1_1 --- srcpkgs/libbitcoin-network/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libbitcoin-network/template b/srcpkgs/libbitcoin-network/template index 7edbe02b1062..d130facc40de 100644 --- a/srcpkgs/libbitcoin-network/template +++ b/srcpkgs/libbitcoin-network/template @@ -1,7 +1,7 @@ # Template file for 'libbitcoin-network' pkgname=libbitcoin-network version=3.6.0 -revision=5 +revision=6 build_style=gnu-configure configure_args="--with-boost-libdir=${XBPS_CROSS_BASE}/usr/lib --with-boost=${XBPS_CROSS_BASE}/usr --with-gnu-ld" From 450a353bea538dcd0eb752074b9ebc540a092df9 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:36 +0200 Subject: [PATCH 37/97] libbitcoin-node: rebuild for icu-71.1_1 --- srcpkgs/libbitcoin-node/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libbitcoin-node/template b/srcpkgs/libbitcoin-node/template index c5fcd0094abd..23e32624b5cc 100644 --- a/srcpkgs/libbitcoin-node/template +++ b/srcpkgs/libbitcoin-node/template @@ -1,7 +1,7 @@ # Template file for 'libbitcoin-node' pkgname=libbitcoin-node version=3.6.0 -revision=5 +revision=6 archs="aarch64* ppc64* x86_64*" build_style=gnu-configure configure_args="--with-bash-completiondir=/usr/share/bash-completion/completions From 03d32ac75c548dc94f5a35f5bb292d99437bc28c Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:36 +0200 Subject: [PATCH 38/97] libbitcoin-protocol: rebuild for icu-71.1_1 --- srcpkgs/libbitcoin-protocol/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libbitcoin-protocol/template b/srcpkgs/libbitcoin-protocol/template index be5406d16baf..838d62cc9ecd 100644 --- a/srcpkgs/libbitcoin-protocol/template +++ b/srcpkgs/libbitcoin-protocol/template @@ -1,7 +1,7 @@ # Template file for 'libbitcoin-protocol' pkgname=libbitcoin-protocol version=3.6.0 -revision=5 +revision=6 build_style=gnu-configure configure_args="--with-boost-libdir=${XBPS_CROSS_BASE}/usr/lib --with-boost=${XBPS_CROSS_BASE}/usr --with-gnu-ld" From af428c85b754f1474f1acd2e9fd978bf73adee3d Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:36 +0200 Subject: [PATCH 39/97] libbitcoin-server: rebuild for icu-71.1_1 --- srcpkgs/libbitcoin-server/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libbitcoin-server/template b/srcpkgs/libbitcoin-server/template index 7c275248cdcd..fc4988deac2b 100644 --- a/srcpkgs/libbitcoin-server/template +++ b/srcpkgs/libbitcoin-server/template @@ -1,7 +1,7 @@ # Template file for 'libbitcoin-server' pkgname=libbitcoin-server version=3.6.0 -revision=5 +revision=6 archs="aarch64* ppc64* x86_64*" build_style=gnu-configure configure_args="--with-bash-completiondir=/usr/share/bash-completion/completions From 39ebfa3caa5b1bf77d346945474117e66c827f92 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:36 +0200 Subject: [PATCH 40/97] libbitcoin-system: rebuild for icu-71.1_1 --- srcpkgs/libbitcoin-system/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libbitcoin-system/template b/srcpkgs/libbitcoin-system/template index 4c7f4c8d231d..8b03fb248c42 100644 --- a/srcpkgs/libbitcoin-system/template +++ b/srcpkgs/libbitcoin-system/template @@ -1,7 +1,7 @@ # Template file for 'libbitcoin-system' pkgname=libbitcoin-system version=3.6.0 -revision=5 +revision=6 build_style=gnu-configure configure_args="--with-boost-libdir=${XBPS_CROSS_BASE}/usr/lib --with-boost=${XBPS_CROSS_BASE}/usr --with-gnu-ld --with-icu --with-png From 278d9989433c57363f7e94c57ca2f524105db1c1 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:36 +0200 Subject: [PATCH 41/97] libcdr: rebuild for icu-71.1_1 --- srcpkgs/libcdr/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libcdr/template b/srcpkgs/libcdr/template index e32884e044ed..d490cc760bfc 100644 --- a/srcpkgs/libcdr/template +++ b/srcpkgs/libcdr/template @@ -1,7 +1,7 @@ # Template file for 'libcdr' pkgname=libcdr version=0.1.7 -revision=3 +revision=4 build_style=gnu-configure configure_args="--disable-debug" hostmakedepends="pkg-config" From 12696445267c0922bc0fd01032ad46bc139b8a47 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:37 +0200 Subject: [PATCH 42/97] libe-book: rebuild for icu-71.1_1 --- srcpkgs/libe-book/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libe-book/template b/srcpkgs/libe-book/template index 95976854e5b3..a6cc63b5272c 100644 --- a/srcpkgs/libe-book/template +++ b/srcpkgs/libe-book/template @@ -1,7 +1,7 @@ # Template file for 'libe-book' pkgname=libe-book version=0.1.3 -revision=10 +revision=11 build_style=gnu-configure configure_args="--disable-werror" hostmakedepends="automake libtool gperf doxygen pkg-config" From fe86074e273679427d50d964355ebccff9170bb3 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:37 +0200 Subject: [PATCH 43/97] libgdal: rebuild for icu-71.1_1 --- srcpkgs/libgdal/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libgdal/template b/srcpkgs/libgdal/template index 870ab22b4cba..ce58be57dc87 100644 --- a/srcpkgs/libgdal/template +++ b/srcpkgs/libgdal/template @@ -1,7 +1,7 @@ # Template file for 'libgdal' pkgname=libgdal version=3.0.4 -revision=11 +revision=12 wrksrc="gdal-${version}" build_style=gnu-configure configure_args="--with-liblzma --with-webp --with-zstd --with-podofo --with-opencl=yes" From 25eacb9c8746769546a12f1d0e92939e067313a4 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:37 +0200 Subject: [PATCH 44/97] libical: rebuild for icu-71.1_1 --- srcpkgs/libical/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libical/template b/srcpkgs/libical/template index 1a247410c373..bf131ea13642 100644 --- a/srcpkgs/libical/template +++ b/srcpkgs/libical/template @@ -1,7 +1,7 @@ # Template file for 'libical' pkgname=libical version=3.0.10 -revision=2 +revision=3 build_style=cmake build_helper="gir qemu" configure_args="-DICAL_BUILD_DOCS=false From 008af52ed61be43da177e43ad3f5e08d07368fa4 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:37 +0200 Subject: [PATCH 45/97] liblcf: rebuild for icu-71.1_1 --- srcpkgs/liblcf/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/liblcf/template b/srcpkgs/liblcf/template index 6781688c22cc..02a752e617e3 100644 --- a/srcpkgs/liblcf/template +++ b/srcpkgs/liblcf/template @@ -1,7 +1,7 @@ # Template file for 'liblcf' pkgname=liblcf version=0.6.2 -revision=3 +revision=4 build_style=gnu-configure hostmakedepends="pkg-config autoconf automake libtool" makedepends="expat-devel icu-devel" From c54a327954dcb9561168eabe6cdec33d4f37811a Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:37 +0200 Subject: [PATCH 46/97] libmspub: rebuild for icu-71.1_1 --- srcpkgs/libmspub/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libmspub/template b/srcpkgs/libmspub/template index 2bc06bcfa1f1..946153be3dcb 100644 --- a/srcpkgs/libmspub/template +++ b/srcpkgs/libmspub/template @@ -1,7 +1,7 @@ # Template file for 'libmspub' pkgname=libmspub version=0.1.4 -revision=8 +revision=9 build_style=gnu-configure hostmakedepends="pkg-config" makedepends="icu-devel boost-devel librevenge-devel zlib-devel" From 3684613fe47e88bfc82c630284a22fd8fd20f013 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:38 +0200 Subject: [PATCH 47/97] libphonenumber: rebuild for icu-71.1_1 --- srcpkgs/libphonenumber/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libphonenumber/template b/srcpkgs/libphonenumber/template index a3b2436f07d1..5df38a2397bb 100644 --- a/srcpkgs/libphonenumber/template +++ b/srcpkgs/libphonenumber/template @@ -1,7 +1,7 @@ # Template file for 'libphonenumber' pkgname=libphonenumber version=8.12.39 -revision=4 +revision=5 build_wrksrc=cpp build_style=cmake build_helper=qemu From 0b0513d5822177669d16fb81a6a1aa1cf36f3814 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:38 +0200 Subject: [PATCH 48/97] libpsl: rebuild for icu-71.1_1 --- srcpkgs/libpsl/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libpsl/template b/srcpkgs/libpsl/template index 6ddb776011a7..095bac4e29a0 100644 --- a/srcpkgs/libpsl/template +++ b/srcpkgs/libpsl/template @@ -1,7 +1,7 @@ # Template file for 'libpsl' pkgname=libpsl version=0.21.1 -revision=3 +revision=4 build_style=gnu-configure hostmakedepends="pkg-config python3" makedepends="icu-devel" From f88cbbc9dd3beacb7805412d4da32c21fd089a54 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:38 +0200 Subject: [PATCH 49/97] libqalculate: rebuild for icu-71.1_1 --- srcpkgs/libqalculate/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libqalculate/template b/srcpkgs/libqalculate/template index f0f03656d4c0..2ecc17af7e13 100644 --- a/srcpkgs/libqalculate/template +++ b/srcpkgs/libqalculate/template @@ -2,7 +2,7 @@ # NOTE: keep this package synchronized with 'qalculate-gtk' and 'qalculate-qt' pkgname=libqalculate version=4.1.1 -revision=1 +revision=2 build_style=gnu-configure hostmakedepends="intltool pkg-config doxygen" makedepends="libxml2-devel cln-devel readline-devel libcurl-devel icu-devel From 9d2a54247d1a8d4743ea92815572acd8c859ad24 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:38 +0200 Subject: [PATCH 50/97] libqxp: rebuild for icu-71.1_1 --- srcpkgs/libqxp/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libqxp/template b/srcpkgs/libqxp/template index 7a25c1a1cca4..14245f506953 100644 --- a/srcpkgs/libqxp/template +++ b/srcpkgs/libqxp/template @@ -1,7 +1,7 @@ # Template file for 'libqxp' pkgname=libqxp version=0.0.2 -revision=6 +revision=7 build_style=gnu-configure hostmakedepends="pkg-config" makedepends="boost-devel librevenge-devel icu-devel" From c328d051aeafa9c30e9dc17775689072ac1b1c07 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:38 +0200 Subject: [PATCH 51/97] libreoffice: rebuild for icu-71.1_1 --- srcpkgs/libreoffice/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libreoffice/template b/srcpkgs/libreoffice/template index 7e41bc588f7b..6d35e14a3274 100644 --- a/srcpkgs/libreoffice/template +++ b/srcpkgs/libreoffice/template @@ -1,7 +1,7 @@ # Template file for 'libreoffice' pkgname=libreoffice version=7.3.3.2 -revision=1 +revision=2 build_style=meta make_build_target="build-nocheck" nocross="Several dependencies are nocross=yes" From 662db2a3c7440f5b8e8fb4399bf9f13f40a75e4f Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:39 +0200 Subject: [PATCH 52/97] libvisio: rebuild for icu-71.1_1 --- srcpkgs/libvisio/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libvisio/template b/srcpkgs/libvisio/template index 71e155a2c52f..e566ad1c9e4b 100644 --- a/srcpkgs/libvisio/template +++ b/srcpkgs/libvisio/template @@ -1,7 +1,7 @@ # Template file for 'libvisio' pkgname=libvisio version=0.1.7 -revision=4 +revision=5 build_style=gnu-configure hostmakedepends="gperf pkg-config perl" makedepends="boost-devel librevenge-devel libxml2-devel icu-devel" From ce040ffebeeb1dffbddf366219d12df9110682bf Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:39 +0200 Subject: [PATCH 53/97] libxml2: rebuild for icu-71.1_1 --- srcpkgs/libxml2/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libxml2/template b/srcpkgs/libxml2/template index be660f81aa0e..cbe0b9b37f29 100644 --- a/srcpkgs/libxml2/template +++ b/srcpkgs/libxml2/template @@ -1,7 +1,7 @@ # Template file for 'libxml2' pkgname=libxml2 version=2.9.13 -revision=2 +revision=3 build_style=gnu-configure configure_args="--with-threads --with-history --with-icu" hostmakedepends="gettext pkg-config python3" From e3e915b88290ae49f7d7dc719ab06465bbba0ab7 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:39 +0200 Subject: [PATCH 54/97] libzim: rebuild for icu-71.1_1 --- srcpkgs/libzim/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libzim/template b/srcpkgs/libzim/template index 910e099870b8..8f22c1601914 100644 --- a/srcpkgs/libzim/template +++ b/srcpkgs/libzim/template @@ -1,7 +1,7 @@ # Template file for 'libzim' pkgname=libzim version=6.3.2 -revision=2 +revision=3 build_style=meson hostmakedepends="pkg-config git" makedepends="liblzma-devel $(vopt_if zlib zlib-devel) From 27fd4e0e737d77ce4f861a4390833df741f1eedc Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:39 +0200 Subject: [PATCH 55/97] maim: rebuild for icu-71.1_1 --- srcpkgs/maim/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/maim/template b/srcpkgs/maim/template index a3bbf381c466..5df088be5f9d 100644 --- a/srcpkgs/maim/template +++ b/srcpkgs/maim/template @@ -1,7 +1,7 @@ # Template file for 'maim' pkgname=maim version=5.7.4 -revision=4 +revision=5 build_style=cmake hostmakedepends="pkg-config" makedepends="MesaLib-devel glm icu-devel libXcomposite-devel libXrandr-devel From 28dfc3bb673e502fcc51c753f3c6bf529fa1f854 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:39 +0200 Subject: [PATCH 56/97] modsecurity: rebuild for icu-71.1_1 --- srcpkgs/modsecurity/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/modsecurity/template b/srcpkgs/modsecurity/template index 4b8810b071e3..bd1dd1c2760c 100644 --- a/srcpkgs/modsecurity/template +++ b/srcpkgs/modsecurity/template @@ -1,7 +1,7 @@ # Template file for 'modsecurity' pkgname=modsecurity version=3.0.4 -revision=4 +revision=5 wrksrc="modsecurity-v${version}" build_style=gnu-configure configure_args="--enable-standalone-module --enable-htaccess-config" From c0d4c72c3bb7aed74d036db09f20b6ff7f97c8b6 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:40 +0200 Subject: [PATCH 57/97] mozjs78: rebuild for icu-71.1_1 --- srcpkgs/mozjs78/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/mozjs78/template b/srcpkgs/mozjs78/template index a008151398f5..9561ae33be39 100644 --- a/srcpkgs/mozjs78/template +++ b/srcpkgs/mozjs78/template @@ -1,7 +1,7 @@ # Template file for 'mozjs78' pkgname=mozjs78 version=78.9.0 -revision=4 +revision=5 wrksrc="firefox-${version}" build_wrksrc=js/src build_style=gnu-configure From 8b24b8d0aaa585d549cf588da8ab8ed33f891630 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:40 +0200 Subject: [PATCH 58/97] mpd: rebuild for icu-71.1_1 --- srcpkgs/mpd/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/mpd/template b/srcpkgs/mpd/template index 944431faaf10..7249957f2113 100644 --- a/srcpkgs/mpd/template +++ b/srcpkgs/mpd/template @@ -1,7 +1,7 @@ # Template file for 'mpd' pkgname=mpd version=0.23.7 -revision=1 +revision=2 build_style=meson configure_args="-Dopus=enabled -Dmikmod=enabled -Dneighbor=true -Dsoundcloud=enabled -Dpipe=true -Dtwolame=enabled -Dbzip2=enabled From 3b22f62bb4d3d87e781650000a1ec95da8731328 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:40 +0200 Subject: [PATCH 59/97] ncmpcpp: rebuild for icu-71.1_1 --- srcpkgs/ncmpcpp/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/ncmpcpp/template b/srcpkgs/ncmpcpp/template index 8daaab69f237..773deb4917d4 100644 --- a/srcpkgs/ncmpcpp/template +++ b/srcpkgs/ncmpcpp/template @@ -1,7 +1,7 @@ # Template file for 'ncmpcpp' pkgname=ncmpcpp version=0.9.2 -revision=4 +revision=5 build_style=gnu-configure configure_args=" BOOST_LIB_SUFFIX= --enable-clock --enable-outputs --enable-unicode --enable-visualizer --with-curl --with-taglib --with-fftw" From e1d448666f2fd555040ae1e0d15e0eedd1f7513e Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:40 +0200 Subject: [PATCH 60/97] nodejs: rebuild for icu-71.1_1 --- srcpkgs/nodejs/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/nodejs/template b/srcpkgs/nodejs/template index 89b85c9aedee..a571a05c8701 100644 --- a/srcpkgs/nodejs/template +++ b/srcpkgs/nodejs/template @@ -1,7 +1,7 @@ # Template file for 'nodejs' pkgname=nodejs version=16.14.0 -revision=1 +revision=2 wrksrc="node-v${version}" # Need these for host v8 for torque, see https://github.com/nodejs/node/pull/21079 hostmakedepends="which pkg-config python3 libatomic-devel zlib-devel From 0a142a36b6d99883dc7d6daf4a56d24df14a9c5c Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:40 +0200 Subject: [PATCH 61/97] nodejs-lts: rebuild for icu-71.1_1 --- srcpkgs/nodejs-lts/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/nodejs-lts/template b/srcpkgs/nodejs-lts/template index 7ef99575a323..8a57b3958db8 100644 --- a/srcpkgs/nodejs-lts/template +++ b/srcpkgs/nodejs-lts/template @@ -1,7 +1,7 @@ # Template file for 'nodejs-lts' pkgname=nodejs-lts version=12.22.10 -revision=1 +revision=2 wrksrc="node-v${version}" # Need these for host v8 for torque, see https://github.com/nodejs/node/pull/21079 hostmakedepends="pkg-config python libatomic-devel zlib-devel which From 64dec9de95452280fe8b65ac04d53a3409721430 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:40 +0200 Subject: [PATCH 62/97] nuspell: rebuild for icu-71.1_1 --- srcpkgs/nuspell/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/nuspell/template b/srcpkgs/nuspell/template index 4643db61e380..e2be5d819844 100644 --- a/srcpkgs/nuspell/template +++ b/srcpkgs/nuspell/template @@ -1,7 +1,7 @@ # Template file for 'nuspell' pkgname=nuspell version=5.0.1 -revision=2 +revision=3 build_style=cmake configure_args="-DBUILD_SHARED_LIBS=ON" makedepends="icu-devel" From a0be24341e8159fa74e144c42f053d0a3caba807 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:41 +0200 Subject: [PATCH 63/97] openttd: rebuild for icu-71.1_1 --- srcpkgs/openttd/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/openttd/template b/srcpkgs/openttd/template index f19e683080dd..cdecbd7c365b 100644 --- a/srcpkgs/openttd/template +++ b/srcpkgs/openttd/template @@ -1,7 +1,7 @@ # Template file for 'openttd' pkgname=openttd version=1.10.3 -revision=4 +revision=5 _gfxver=0.6.0 _sfxver=0.2.3 create_wrksrc=yes From 592084eb2fcab9d9aaf99d354f05860a4e1f0769 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:41 +0200 Subject: [PATCH 64/97] peaclock: rebuild for icu-71.1_1 --- srcpkgs/peaclock/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/peaclock/template b/srcpkgs/peaclock/template index cba799b3a4ee..c5916b2e0d35 100644 --- a/srcpkgs/peaclock/template +++ b/srcpkgs/peaclock/template @@ -1,7 +1,7 @@ # Template file for 'peaclock' pkgname=peaclock version=0.4.3 -revision=3 +revision=4 build_style=cmake makedepends="icu-devel" short_desc="Colourful binary clock for the terminal" From 97155aa559ba07c33ac22a517993f69dd1506b33 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:41 +0200 Subject: [PATCH 65/97] perl-XML-LibXML: rebuild for icu-71.1_1 --- srcpkgs/perl-XML-LibXML/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/perl-XML-LibXML/template b/srcpkgs/perl-XML-LibXML/template index 8b4ced43cabb..e7adb670bfa2 100644 --- a/srcpkgs/perl-XML-LibXML/template +++ b/srcpkgs/perl-XML-LibXML/template @@ -1,7 +1,7 @@ # Template file for 'perl-XML-LibXML' pkgname=perl-XML-LibXML version=2.0134 -revision=8 +revision=9 wrksrc="${pkgname/perl-/}-${version}" build_style=perl-module hostmakedepends="perl" From e919d9c203070631a2bd87e6a2b020e85cbff4ff Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:41 +0200 Subject: [PATCH 66/97] php: rebuild for icu-71.1_1 --- srcpkgs/php/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/php/template b/srcpkgs/php/template index c6a628cf6864..113f6910f0fb 100644 --- a/srcpkgs/php/template +++ b/srcpkgs/php/template @@ -1,7 +1,7 @@ # Template file for 'php' pkgname=php version=7.4.29 -revision=1 +revision=2 hostmakedepends="bison pkg-config apache-devel" makedepends="apache-devel enchant2-devel freetds-devel freetype-devel gdbm-devel gmp-devel libcurl-devel libjpeg-turbo-devel libmariadbclient-devel From b349829dad33b8be273243a36a3c2a3412238e1d Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:41 +0200 Subject: [PATCH 67/97] php8.0: rebuild for icu-71.1_1 --- srcpkgs/php8.0/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/php8.0/template b/srcpkgs/php8.0/template index c4a6df3a389e..c9dc9f9901b2 100644 --- a/srcpkgs/php8.0/template +++ b/srcpkgs/php8.0/template @@ -1,7 +1,7 @@ # Template file for 'php8.0' pkgname=php8.0 version=8.0.19 -revision=1 +revision=2 _php_version=8.0 wrksrc="php-${version}" hostmakedepends="bison pkg-config apache-devel" From 853f77790d8af4fc3d695a6899f7140450980091 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:42 +0200 Subject: [PATCH 68/97] php8.1: rebuild for icu-71.1_1 --- srcpkgs/php8.1/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/php8.1/template b/srcpkgs/php8.1/template index 9852f076d51b..ee093f6ccad2 100644 --- a/srcpkgs/php8.1/template +++ b/srcpkgs/php8.1/template @@ -1,7 +1,7 @@ # Template file for 'php8.1' pkgname=php8.1 version=8.1.6 -revision=1 +revision=2 _php_version=8.1 wrksrc="php-${version}" hostmakedepends="bison pkg-config apache-devel" From 0c07dfe0310da516525c515c55c557a239e8eaff Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:42 +0200 Subject: [PATCH 69/97] poedit: rebuild for icu-71.1_1 --- srcpkgs/poedit/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/poedit/template b/srcpkgs/poedit/template index 5031863acf00..f10aaf4c88a2 100644 --- a/srcpkgs/poedit/template +++ b/srcpkgs/poedit/template @@ -1,7 +1,7 @@ # Template file for 'poedit' pkgname=poedit version=3.0.1 -revision=2 +revision=3 build_style=gnu-configure configure_args="--with-wx-config=wx-config-gtk3" hostmakedepends="pkg-config" From a7dd014f88e7f49cab02005c044360d1dcf2a171 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:42 +0200 Subject: [PATCH 70/97] postfix: rebuild for icu-71.1_1 --- srcpkgs/postfix/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/postfix/template b/srcpkgs/postfix/template index a9994b1233fa..2d0b563cf61c 100644 --- a/srcpkgs/postfix/template +++ b/srcpkgs/postfix/template @@ -1,7 +1,7 @@ # Template file for 'postfix' pkgname=postfix version=3.7.2 -revision=1 +revision=2 hostmakedepends="perl m4" makedepends="icu-devel libldap-devel libmariadbclient-devel pcre2-devel postgresql-libs-devel sqlite-devel" From d6e6298f88604be547db6e4fc4819ddb80c08ac3 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:42 +0200 Subject: [PATCH 71/97] python3-PyICU: rebuild for icu-71.1_1 --- srcpkgs/python3-PyICU/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-PyICU/template b/srcpkgs/python3-PyICU/template index 0fcede6988d4..b8898afdc87e 100644 --- a/srcpkgs/python3-PyICU/template +++ b/srcpkgs/python3-PyICU/template @@ -1,7 +1,7 @@ # Template file for 'python3-PyICU' pkgname=python3-PyICU version=2.9 -revision=1 +revision=2 wrksrc="pyicu-v${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 713572089c7fddc5159a4c11bfbd5fef1d4a7865 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:42 +0200 Subject: [PATCH 72/97] qt5: rebuild for icu-71.1_1 --- srcpkgs/qt5/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/qt5/template b/srcpkgs/qt5/template index ee788fad2019..25f15583a42d 100644 --- a/srcpkgs/qt5/template +++ b/srcpkgs/qt5/template @@ -3,7 +3,7 @@ pkgname=qt5 version=5.15.3+20220222 # commit fcca82ca40a5d8a02a4ddd90846d070f2c58cfad # base repo: https://invent.kde.org/qt/qt/qt5 -revision=3 +revision=4 build_style=meta hostmakedepends="cmake clang flex perl glib-devel pkg-config python re2c ruby which" From 8ab0eee45e967e1bb1345dbd734b0c8c9ea8ab93 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:43 +0200 Subject: [PATCH 73/97] qt5-webengine: rebuild for icu-71.1_1 --- srcpkgs/qt5-webengine/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/qt5-webengine/template b/srcpkgs/qt5-webengine/template index 213672ab215c..af54e123bd8d 100644 --- a/srcpkgs/qt5-webengine/template +++ b/srcpkgs/qt5-webengine/template @@ -1,7 +1,7 @@ # Template file for 'qt5-webengine' pkgname=qt5-webengine version=5.15.8 -revision=1 +revision=2 _version="${version}-lts" _chromium_commit=8c0a9b4459f5200a24ab9e687a3fb32e975382e5 archs="x86_64* i686* armv[67]* ppc64* aarch64*" From a791055b139da652f4d3ccab61bd17ecff64f684 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:43 +0200 Subject: [PATCH 74/97] qt5-webkit: rebuild for icu-71.1_1 --- srcpkgs/qt5-webkit/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/qt5-webkit/template b/srcpkgs/qt5-webkit/template index f55f8b0e3e1a..ee3b44f71216 100644 --- a/srcpkgs/qt5-webkit/template +++ b/srcpkgs/qt5-webkit/template @@ -1,7 +1,7 @@ # Template file for 'qt5-webkit' pkgname=qt5-webkit version=5.212.0 -revision=13 +revision=14 _snap=1586819898 _v=${version%.*} wrksrc="qtwebkit-opensource-src-${_v}" From 593c7696264df27cc73999bb0e1159d6d39f1ab4 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:43 +0200 Subject: [PATCH 75/97] qt6-base: rebuild for icu-71.1_1 --- srcpkgs/qt6-base/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/qt6-base/template b/srcpkgs/qt6-base/template index 1f514441a7e8..cc47e18a70ff 100644 --- a/srcpkgs/qt6-base/template +++ b/srcpkgs/qt6-base/template @@ -1,7 +1,7 @@ # Template file for 'qt6-base' pkgname=qt6-base version=6.3.0 -revision=1 +revision=2 wrksrc="qtbase-everywhere-src-${version}" build_style=cmake configure_args="-DINSTALL_DATADIR=share/qt6 From 89cc70ba446a4be6b0140038a68f4676b27eda06 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:43 +0200 Subject: [PATCH 76/97] qt6-qt5compat: rebuild for icu-71.1_1 --- srcpkgs/qt6-qt5compat/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/qt6-qt5compat/template b/srcpkgs/qt6-qt5compat/template index 641b746c2176..7fcd5ad5080e 100644 --- a/srcpkgs/qt6-qt5compat/template +++ b/srcpkgs/qt6-qt5compat/template @@ -1,7 +1,7 @@ # Template file for 'qt6-qt5compat' pkgname=qt6-qt5compat version=6.3.0 -revision=1 +revision=2 wrksrc="qt5compat-everywhere-src-${version}" build_style=cmake configure_args="-DQT_HOST_PATH=/usr" From 0895f90357aecb2bd0c86e5cddc7ca2b74fe2038 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:43 +0200 Subject: [PATCH 77/97] rspamd: rebuild for icu-71.1_1 --- srcpkgs/rspamd/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/rspamd/template b/srcpkgs/rspamd/template index 9d57ca1906c9..94618056b056 100644 --- a/srcpkgs/rspamd/template +++ b/srcpkgs/rspamd/template @@ -1,7 +1,7 @@ # Template file for 'rspamd' pkgname=rspamd version=1.9.4 -revision=7 +revision=8 archs="x86_64* i686* aarch64* armv[67]* ppc64*" build_style=cmake configure_args="-DRSPAMD_USER=rspamd -DCONFDIR=/etc/rspamd From b124fb5e09785643951246d103df7a4e69c3cc5a Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:44 +0200 Subject: [PATCH 78/97] scribus: rebuild for icu-71.1_1 --- srcpkgs/scribus/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/scribus/template b/srcpkgs/scribus/template index 0ec908f7ef50..791cdea712c5 100644 --- a/srcpkgs/scribus/template +++ b/srcpkgs/scribus/template @@ -1,7 +1,7 @@ # Template file for 'scribus' pkgname=scribus version=1.5.8 -revision=1 +revision=2 build_style=cmake configure_args="-DCMAKE_SKIP_RPATH=TRUE -DQT_PREFIX=${XBPS_CROSS_BASE}/usr -DWANT_GRAPHICSMAGICK=1" From ec882e8bbcd028f9298a6a66fa2672ad8a870cd4 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:44 +0200 Subject: [PATCH 79/97] sile: rebuild for icu-71.1_1 --- srcpkgs/sile/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/sile/template b/srcpkgs/sile/template index 850802987968..d1b02196e58e 100644 --- a/srcpkgs/sile/template +++ b/srcpkgs/sile/template @@ -1,7 +1,7 @@ # Template file for 'sile' pkgname=sile version=0.9.5.1 -revision=6 +revision=7 build_style=gnu-configure hostmakedepends="pkg-config" makedepends="harfbuzz-devel lua51-devel lua51-lpeg lua51-luaexpat From 66da6ff697640f0eb4e30ad631e92d846f02e847 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:44 +0200 Subject: [PATCH 80/97] slop: rebuild for icu-71.1_1 --- srcpkgs/slop/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/slop/template b/srcpkgs/slop/template index 9659f2818c1e..f99cb0294e09 100644 --- a/srcpkgs/slop/template +++ b/srcpkgs/slop/template @@ -1,7 +1,7 @@ # Template file for 'slop' pkgname=slop version=7.6 -revision=1 +revision=2 build_style=cmake hostmakedepends="pkg-config" makedepends="glew-devel glm icu-devel libXrender-devel" From 62a6c3a25a2dac85f95461c8aa5c6ec44f62ec70 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:44 +0200 Subject: [PATCH 81/97] sword: rebuild for icu-71.1_1 --- srcpkgs/sword/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/sword/template b/srcpkgs/sword/template index 4b396dc13a8f..c87a9c0a55ef 100644 --- a/srcpkgs/sword/template +++ b/srcpkgs/sword/template @@ -1,7 +1,7 @@ # Template file for 'sword' pkgname=sword version=1.8.1 -revision=8 +revision=9 build_style=gnu-configure configure_args="--without-conf --with-icuregex" hostmakedepends="libtool automake pkg-config" From aa8f0873758f74dfd35bfb6071c72d42f35fe3f0 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:44 +0200 Subject: [PATCH 82/97] tectonic: rebuild for icu-71.1_1 --- srcpkgs/tectonic/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/tectonic/template b/srcpkgs/tectonic/template index ca804d594da3..920576d17e60 100644 --- a/srcpkgs/tectonic/template +++ b/srcpkgs/tectonic/template @@ -1,7 +1,7 @@ # Template file for 'tectonic' pkgname=tectonic version=0.8.2 -revision=1 +revision=2 wrksrc="tectonic-tectonic-${version}" build_style=cargo configure_args="--features=external-harfbuzz" From 3273117fd2fddb41dca0ac5149853038d420056e Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:44 +0200 Subject: [PATCH 83/97] tepl: rebuild for icu-71.1_1 --- srcpkgs/tepl/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/tepl/template b/srcpkgs/tepl/template index 556e4b81a2b0..2991585cf549 100644 --- a/srcpkgs/tepl/template +++ b/srcpkgs/tepl/template @@ -1,7 +1,7 @@ # Template file for 'tepl' pkgname=tepl version=6.00.0 -revision=3 +revision=4 build_style=meson build_helper=gir configure_args="$(vopt_bool gir gir)" From eb07cc153a1e54ae571d1141df7cdc7f8e45b4c2 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:45 +0200 Subject: [PATCH 84/97] tesseract-ocr: rebuild for icu-71.1_1 --- srcpkgs/tesseract-ocr/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/tesseract-ocr/template b/srcpkgs/tesseract-ocr/template index a1a41dabcb6d..eaf1e226aa9c 100644 --- a/srcpkgs/tesseract-ocr/template +++ b/srcpkgs/tesseract-ocr/template @@ -1,7 +1,7 @@ # Template file for 'tesseract-ocr' pkgname=tesseract-ocr version=4.1.1 -revision=6 +revision=7 _tessdataver=4.0.0 wrksrc="tesseract-${version}" build_style=gnu-configure From 707ee7ed39bf6f03f25df9634e999d82861d2c6a Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:45 +0200 Subject: [PATCH 85/97] texlive: rebuild for icu-71.1_1 --- srcpkgs/texlive/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/texlive/template b/srcpkgs/texlive/template index b8bb1919fded..7a922bc07f2b 100644 --- a/srcpkgs/texlive/template +++ b/srcpkgs/texlive/template @@ -1,7 +1,7 @@ # Template file for 'texlive' pkgname=texlive version=20210325 -revision=3 +revision=4 wrksrc="texlive-${version}-source" build_wrksrc="build" build_style=gnu-configure From 14a79c36486207375a76a9b151f993d33c083d52 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:45 +0200 Subject: [PATCH 86/97] thunderbird: rebuild for icu-71.1_1 --- srcpkgs/thunderbird/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/thunderbird/template b/srcpkgs/thunderbird/template index d27434e30e22..fab2f55245e9 100644 --- a/srcpkgs/thunderbird/template +++ b/srcpkgs/thunderbird/template @@ -4,7 +4,7 @@ # pkgname=thunderbird version=91.9.0 -revision=1 +revision=2 build_helper="rust" short_desc="Standalone Mail/News reader" maintainer="Érico Nogueira " From 73444ea218c1c0b4bd88b6357d91226b8526b294 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:45 +0200 Subject: [PATCH 87/97] tracker: rebuild for icu-71.1_1 --- srcpkgs/tracker/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/tracker/template b/srcpkgs/tracker/template index ce41975c713d..e8db24cc4c7c 100644 --- a/srcpkgs/tracker/template +++ b/srcpkgs/tracker/template @@ -1,7 +1,7 @@ # Template file for 'tracker' pkgname=tracker version=2.3.6 -revision=3 +revision=4 build_style=meson build_helper="gir" configure_args="-Ddocs=false -Dfts=true -Dfunctional_tests=false From 80a2b24423a5d04af58781a9c435c61b51cf8dff Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:45 +0200 Subject: [PATCH 88/97] tracker-miners: rebuild for icu-71.1_1 --- srcpkgs/tracker-miners/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/tracker-miners/template b/srcpkgs/tracker-miners/template index 1d31d2f3882a..2acba5d5773e 100644 --- a/srcpkgs/tracker-miners/template +++ b/srcpkgs/tracker-miners/template @@ -1,7 +1,7 @@ # Template file for 'tracker-miners' pkgname=tracker-miners version=2.3.5 -revision=3 +revision=4 build_style=meson configure_args="-Dtracker_core=system -Ddocs=false -Dextract=true -Dfunctional_tests=false -Dcue=enabled -Dexif=enabled -Dflac=enabled From 73a25ae5fc0579a8229fc15f0810c193e7228856 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:46 +0200 Subject: [PATCH 89/97] tracker3: rebuild for icu-71.1_1 --- srcpkgs/tracker3/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/tracker3/template b/srcpkgs/tracker3/template index 3ae12716faa5..698a6e2bb7ec 100644 --- a/srcpkgs/tracker3/template +++ b/srcpkgs/tracker3/template @@ -1,7 +1,7 @@ # Template file for 'tracker3' pkgname=tracker3 version=3.2.1 -revision=1 +revision=2 wrksrc=tracker-${version} build_style=meson build_helper="gir" From 5e40adf952310c37ad14d7981b4628fdf78e2be5 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:46 +0200 Subject: [PATCH 90/97] tracker3-miners: rebuild for icu-71.1_1 --- srcpkgs/tracker3-miners/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/tracker3-miners/template b/srcpkgs/tracker3-miners/template index adc11e7970c1..b6a657f66d99 100644 --- a/srcpkgs/tracker3-miners/template +++ b/srcpkgs/tracker3-miners/template @@ -1,7 +1,7 @@ # Template file for 'tracker3-miners' pkgname=tracker3-miners version=3.2.1 -revision=1 +revision=2 wrksrc=tracker-miners-${version} build_style=meson # missing libgrss for miner_rss From 09a7d55b36742784eb179bbf59a1c14f2a7f2f80 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:46 +0200 Subject: [PATCH 91/97] unar: rebuild for icu-71.1_1 --- srcpkgs/unar/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/unar/template b/srcpkgs/unar/template index b94c7369fd0e..f8a7f134da9d 100644 --- a/srcpkgs/unar/template +++ b/srcpkgs/unar/template @@ -1,7 +1,7 @@ # Template file for 'unar' pkgname=unar version=1.10.7 -revision=8 +revision=9 archs="~*-musl" # regexec incompatible build_wrksrc="XADMaster" build_style=gnu-makefile From 73a89064ea1c4933b3254d6ba207bda10727ee50 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:46 +0200 Subject: [PATCH 92/97] vte3: rebuild for icu-71.1_1 --- srcpkgs/vte3/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/vte3/template b/srcpkgs/vte3/template index d75cd4edef2f..aaaa69bfe51f 100644 --- a/srcpkgs/vte3/template +++ b/srcpkgs/vte3/template @@ -1,7 +1,7 @@ # Template file for 'vte3' pkgname=vte3 version=0.68.0 -revision=1 +revision=2 wrksrc="vte-${version}" build_style=meson build_helper="gir" From b1cfce886edac7227e7a9d7284cec56dd76a41ef Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:46 +0200 Subject: [PATCH 93/97] webkit2gtk: rebuild for icu-71.1_1 --- srcpkgs/webkit2gtk/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/webkit2gtk/template b/srcpkgs/webkit2gtk/template index e688a2984482..e103f2ce06c8 100644 --- a/srcpkgs/webkit2gtk/template +++ b/srcpkgs/webkit2gtk/template @@ -2,7 +2,7 @@ # ping q66 before touching this pkgname=webkit2gtk version=2.34.6 -revision=1 +revision=2 wrksrc="webkitgtk-${version}" build_style=cmake build_helper="gir" From ab74adc28a4587a878df7fd7b4e594b2b47b6fcd Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:47 +0200 Subject: [PATCH 94/97] widelands: rebuild for icu-71.1_1 --- srcpkgs/widelands/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/widelands/template b/srcpkgs/widelands/template index ecda7cbea232..17351e8a0bf7 100644 --- a/srcpkgs/widelands/template +++ b/srcpkgs/widelands/template @@ -4,7 +4,7 @@ pkgname=widelands reverts="21_5 21_4 21_3 21_2 21_1 20_4 20_3 20_2 20_1 19_10 19_9 19_8 19_7 19_6 19_5 19_4 19_3 19_2 19_1 18_5 18_4 18_3 18_2 18_1" version=1.0 -revision=3 +revision=4 build_style=cmake configure_args="-DOPENGL_INCLUDE_DIR=${XBPS_CROSS_BASE}/usr/include -DOPTION_BUILD_WEBSITE_TOOLS=OFF -DWL_INSTALL_BASEDIR=/usr/share/widelands From 281f75e4380200715dc99053ab48f0ea32511e1f Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:47 +0200 Subject: [PATCH 95/97] xerces-c: rebuild for icu-71.1_1 --- srcpkgs/xerces-c/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/xerces-c/template b/srcpkgs/xerces-c/template index 8c90f2dded12..18ed832daa08 100644 --- a/srcpkgs/xerces-c/template +++ b/srcpkgs/xerces-c/template @@ -1,7 +1,7 @@ # Template file for 'xerces-c' pkgname=xerces-c version=3.2.3 -revision=5 +revision=6 build_style=gnu-configure hostmakedepends="automake libtool pkg-config" makedepends="libcurl-devel icu-devel" From a3c79f98de1961eebb31502d90e6783f0fa0231f Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:47 +0200 Subject: [PATCH 96/97] yaz: rebuild for icu-71.1_1 --- srcpkgs/yaz/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/yaz/template b/srcpkgs/yaz/template index d8f67566509f..a96c1256d974 100644 --- a/srcpkgs/yaz/template +++ b/srcpkgs/yaz/template @@ -1,7 +1,7 @@ # Template file for 'yaz' pkgname=yaz version=5.30.3 -revision=3 +revision=4 build_style=gnu-configure configure_args="--enable-shared --with-memcached --with-xml2 --with-xslt --with-icu --with-gnutls" From a734b2467d534bbbc5a237354fee648bac573635 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 7 Jun 2022 22:19:47 +0200 Subject: [PATCH 97/97] znc: rebuild for icu-71.1_1 --- srcpkgs/znc/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/znc/template b/srcpkgs/znc/template index e24567f4eb7a..c1156243f9bf 100644 --- a/srcpkgs/znc/template +++ b/srcpkgs/znc/template @@ -1,7 +1,7 @@ # Template file for 'znc' pkgname=znc version=1.8.2 -revision=10 +revision=11 build_style=gnu-configure configure_args=" --enable-python