From 299f46e3cfdfee27ad4fc16949066835fa27b194 Mon Sep 17 00:00:00 2001 From: Marcin Puc Date: Tue, 22 Aug 2023 15:00:53 +0200 Subject: [PATCH 01/26] libgit2: update to 1.7.2 --- common/shlibs | 2 +- .../patches/fix-missing-oid-type.patch | 24 ------------------- srcpkgs/libgit2/template | 8 +++---- 3 files changed, 5 insertions(+), 29 deletions(-) delete mode 100644 srcpkgs/libgit2/patches/fix-missing-oid-type.patch diff --git a/common/shlibs b/common/shlibs index 61e838157b2ab..22b58806cddf1 100644 --- a/common/shlibs +++ b/common/shlibs @@ -1327,7 +1327,7 @@ libunwind-ppc64.so.8 libunwind-1.5.0_3 libunwind-setjmp.so.0 libunwind-1.5.0_3 libmicrohttpd.so.12 libmicrohttpd-0.9.73_1 libmicrodns.so.1 libmicrodns-0.2.0_1 -libgit2.so.1.6 libgit2-1.6.4_1 +libgit2.so.1.7 libgit2-1.7.2_1 libgit2-glib-1.0.so.0 libgit2-glib-0.23.4_1 libagg.so.2 agg-2.5_1 libzzip-0.so.13 zziplib-0.13.62_1 diff --git a/srcpkgs/libgit2/patches/fix-missing-oid-type.patch b/srcpkgs/libgit2/patches/fix-missing-oid-type.patch deleted file mode 100644 index 8d24809f244a1..0000000000000 --- a/srcpkgs/libgit2/patches/fix-missing-oid-type.patch +++ /dev/null @@ -1,24 +0,0 @@ -From 47ebf589250159d6a98bd91625aefd2e1383ec26 Mon Sep 17 00:00:00 2001 -From: Oliver Reiche -Date: Wed, 3 May 2023 12:57:06 +0200 -Subject: [PATCH] Fix missing oid type for "fake" repositories - -... otherwise git_tree__parse_raw() will fail to obtain -the correct oid size, which causes the entire parse to fail. ---- - src/libgit2/repository.c | 2 ++ - 1 file changed, 2 insertions(+) - -diff --git a/src/libgit2/repository.c b/src/libgit2/repository.c -index 804e436abeb..c45c5855058 100644 ---- a/src/libgit2/repository.c -+++ b/src/libgit2/repository.c -@@ -1152,6 +1152,8 @@ int git_repository_wrap_odb(git_repository **repo_out, git_odb *odb) - repo = repository_alloc(); - GIT_ERROR_CHECK_ALLOC(repo); - -+ repo->oid_type = GIT_OID_DEFAULT; -+ - git_repository_set_odb(repo, odb); - *repo_out = repo; - diff --git a/srcpkgs/libgit2/template b/srcpkgs/libgit2/template index 035b2cebae821..5c4e1a48a75c7 100644 --- a/srcpkgs/libgit2/template +++ b/srcpkgs/libgit2/template @@ -1,9 +1,9 @@ # Template file for 'libgit2' pkgname=libgit2 -version=1.6.4 -revision=2 +version=1.7.2 +revision=1 build_style=cmake -configure_args="-DENABLE_REPRODUCIBLE_BUILDS=ON -DUSE_SSH=ON" +configure_args="-DENABLE_REPRODUCIBLE_BUILDS=ON -DUSE_SSH=ON -DUSE_HTTP_PARSER=system" hostmakedepends="python3 pkg-config" makedepends="zlib-devel openssl-devel http-parser-devel libssh2-devel" short_desc="Git linkable library" @@ -11,7 +11,7 @@ maintainer="Orphaned " license="custom:GPL-2.0-or-later WITH GCC-exception-2.0" homepage="https://libgit2.org" distfiles="https://github.com/libgit2/libgit2/archive/refs/tags/v${version}.tar.gz" -checksum=d25866a4ee275a64f65be2d9a663680a5cf1ed87b7ee4c534997562c828e500d +checksum=de384e29d7efc9330c6cdb126ebf88342b5025d920dcb7c645defad85195ea7f if [ "$XBPS_CHECK_PKGS" ]; then configure_args+=" -DBUILD_TESTS=ON" From feb6c2dcc025fbf0522cfe1ee8411a7e1f0615e4 Mon Sep 17 00:00:00 2001 From: Marcin Puc Date: Fri, 8 Sep 2023 15:40:22 +0200 Subject: [PATCH 02/26] python3-pygit2: update to 1.13.3 --- srcpkgs/python3-pygit2/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/python3-pygit2/template b/srcpkgs/python3-pygit2/template index 848b4abcdaae1..34d2aef692020 100644 --- a/srcpkgs/python3-pygit2/template +++ b/srcpkgs/python3-pygit2/template @@ -1,7 +1,7 @@ # Template file for 'python3-pygit2' pkgname=python3-pygit2 -version=1.12.1 -revision=2 +version=1.13.3 +revision=1 build_style=python3-pep517 hostmakedepends="pkg-config python3-devel python3-cffi python3-setuptools python3-wheel" makedepends="python3-devel libgit2-devel python3-cached-property libssh2-devel @@ -14,4 +14,4 @@ license="LGPL-2.0-only" homepage="https://www.pygit2.org/" changelog="https://github.com/libgit2/pygit2/blob/master/CHANGELOG.rst" distfiles="${PYPI_SITE}/p/pygit2/pygit2-${version}.tar.gz" -checksum=8218922abedc88a65d5092308d533ca4c4ed634aec86a3493d3bdf1a25aeeff3 +checksum=0257c626011e4afb99bdb20875443f706f84201d4c92637f02215b98eac13ded From b7ebd5f695a2c3776ceacae900431b7b209fc281 Mon Sep 17 00:00:00 2001 From: Marcin Puc Date: Tue, 22 Aug 2023 15:06:27 +0200 Subject: [PATCH 03/26] libgit2-glib: rebuild for libgit2-1.7 --- srcpkgs/libgit2-glib/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libgit2-glib/template b/srcpkgs/libgit2-glib/template index 358f81b03d780..63919df2ca93f 100644 --- a/srcpkgs/libgit2-glib/template +++ b/srcpkgs/libgit2-glib/template @@ -1,7 +1,7 @@ # Template file for 'libgit2-glib' pkgname=libgit2-glib version=1.1.0 -revision=5 +revision=6 build_style=meson build_helper="gir" configure_args="-Dintrospection=$(vopt_if gir true false) From a2246013748dc0ad8bd0481e1f1c876a9e1e312e Mon Sep 17 00:00:00 2001 From: Marcin Puc Date: Sun, 17 Sep 2023 15:23:20 +0200 Subject: [PATCH 04/26] calligra: rebuild for libgit2-1.7 --- srcpkgs/calligra/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/calligra/template b/srcpkgs/calligra/template index 421700baadd3c..bb226c8b1a95e 100644 --- a/srcpkgs/calligra/template +++ b/srcpkgs/calligra/template @@ -1,7 +1,7 @@ # Template file for 'calligra' pkgname=calligra version=3.2.1 -revision=18 +revision=19 build_style=cmake configure_args="-Wno-dev -DCALLIGRA_SHOULD_BUILD_UNMAINTAINED=ON -DBUILD_TESTING=OFF" From 3ff41469e02780c893dd5bf755071e5f39ced4c9 Mon Sep 17 00:00:00 2001 From: Marcin Puc Date: Sun, 17 Sep 2023 10:39:09 +0200 Subject: [PATCH 05/26] juCi++: rebuild for libgit2-1.7 --- srcpkgs/juCi++/template | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/srcpkgs/juCi++/template b/srcpkgs/juCi++/template index 4cb4644663800..cac95cb09f1d0 100644 --- a/srcpkgs/juCi++/template +++ b/srcpkgs/juCi++/template @@ -1,10 +1,10 @@ # Template file for 'juCi++' pkgname=juCi++ version=1.7.2 -revision=6 +revision=7 _libclangmm_commit="9704b9b6de0982a588fa41741157d5640afedf30" _tiny_commit="839ff806dc447ff49af80f9a9eaa7949f770f8e5" -create_wrksrc=yes +build_wrksrc=jucipp-v${version} build_style=cmake hostmakedepends="pkg-config" makedepends="aspell-devel clang boost-devel gtksourceviewmm-devel libgit2-devel" @@ -26,10 +26,8 @@ case "$XBPS_TARGET_MACHINE" in esac post_extract() { - mv jucipp-v$version/* . - rmdir lib/libclangmm lib/tiny-process-library - mv libclangmm-${_libclangmm_commit} ${wrksrc}/lib/libclangmm - mv tiny-process-library-${_tiny_commit} lib/tiny-process-library + mv -T libclangmm-${_libclangmm_commit} ${build_wrksrc}/lib/libclangmm + mv -T tiny-process-library-${_tiny_commit} ${build_wrksrc}/lib/tiny-process-library } post_install() { From fc72725f5ceda0bb505de17c1905cff1fe46d788 Mon Sep 17 00:00:00 2001 From: Marcin Puc Date: Fri, 8 Sep 2023 18:24:28 +0200 Subject: [PATCH 06/26] justbuild: rebuild for libgit2-1.7 --- srcpkgs/justbuild/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/justbuild/template b/srcpkgs/justbuild/template index 2a885a0d22b50..fe12f1242995c 100644 --- a/srcpkgs/justbuild/template +++ b/srcpkgs/justbuild/template @@ -1,7 +1,7 @@ # Template file for 'justbuild' pkgname=justbuild version=1.2.4 -revision=1 +revision=2 create_wrksrc=yes hostmakedepends="jo pandoc pkg-config python3 tar unzip wget" makedepends="abseil-cpp-devel c-ares-devel catch2 fmt-devel grpc-devel json-c++ From 4f8aa4694ded93e2796b13f82c64760b2ac5889f Mon Sep 17 00:00:00 2001 From: Marcin Puc Date: Fri, 8 Sep 2023 18:35:31 +0200 Subject: [PATCH 07/26] kup: rebuild for libgit2-1.7 --- srcpkgs/kup/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kup/template b/srcpkgs/kup/template index b61a1a8c1dfa2..dd3f1dc81df5a 100644 --- a/srcpkgs/kup/template +++ b/srcpkgs/kup/template @@ -1,7 +1,7 @@ # Template file for 'kup' pkgname=kup version=0.9.1 -revision=3 +revision=4 build_style=cmake hostmakedepends="extra-cmake-modules kdoctools qt5-qmake qt5-host-tools kcoreaddons kpackage gettext kconfig" From 489dad7087ae5b1d5ead1413abc2cf6f9c40bcf9 Mon Sep 17 00:00:00 2001 From: Marcin Puc Date: Sat, 16 Sep 2023 16:43:57 +0200 Subject: [PATCH 08/26] horizon: rebuild for libgit2-1.7 --- srcpkgs/horizon/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/horizon/template b/srcpkgs/horizon/template index 47d681f66d75b..16bbf70822d67 100644 --- a/srcpkgs/horizon/template +++ b/srcpkgs/horizon/template @@ -1,7 +1,7 @@ # Template file for 'horizon' pkgname=horizon version=2.5.0 -revision=2 +revision=3 build_style=gnu-makefile make_build_args="GOLD=" make_install_target="install install-man" From 1bf7b7f9834d255552f27b5a5a69e14ec354eabd Mon Sep 17 00:00:00 2001 From: Marcin Puc Date: Fri, 8 Sep 2023 18:43:42 +0200 Subject: [PATCH 09/26] Fritzing: rebuild for libgit2-1.7 --- srcpkgs/Fritzing/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/Fritzing/template b/srcpkgs/Fritzing/template index 5bdc29d7ff700..74191baecb95b 100644 --- a/srcpkgs/Fritzing/template +++ b/srcpkgs/Fritzing/template @@ -1,7 +1,7 @@ # Template file for 'Fritzing' pkgname=Fritzing version=0.9.3b -revision=7 +revision=8 _partshash=359eb1933622e4c4fa456ad043543681984a4d64 # 2018-03-14 create_wrksrc=yes build_wrksrc="app" From 3b9089a889ffb399d9984c601692b325b85ee6a7 Mon Sep 17 00:00:00 2001 From: Marcin Puc Date: Fri, 8 Sep 2023 19:09:16 +0200 Subject: [PATCH 10/26] DarkRadiant: rebuild for libgit2-1.7 --- srcpkgs/DarkRadiant/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/DarkRadiant/template b/srcpkgs/DarkRadiant/template index 3a4caeccf8bb8..dc2e7dce866a8 100644 --- a/srcpkgs/DarkRadiant/template +++ b/srcpkgs/DarkRadiant/template @@ -1,7 +1,7 @@ # Template file for 'DarkRadiant' pkgname=DarkRadiant version=3.8.0 -revision=4 +revision=5 build_style=cmake build_helper=cmake-wxWidgets-gtk3 hostmakedepends="pkg-config ruby-asciidoctor" From 4d5c5945cb772e723a9860d8f6639770319dcd78 Mon Sep 17 00:00:00 2001 From: Marcin Puc Date: Fri, 8 Sep 2023 19:16:52 +0200 Subject: [PATCH 11/26] slcp: rebuild for libgit2-1.7 --- srcpkgs/slcp/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/slcp/template b/srcpkgs/slcp/template index 77982f8185be2..5614d4aa82eb0 100644 --- a/srcpkgs/slcp/template +++ b/srcpkgs/slcp/template @@ -1,7 +1,7 @@ # Template file for 'slcp' pkgname=slcp version=0.2 -revision=14 +revision=15 build_style=gnu-makefile makedepends="libgit2-devel" short_desc="Simple shell prompt written in C" From 46dc051b04f0fe92b897ae32ce2b5f72f0a12a73 Mon Sep 17 00:00:00 2001 From: Marcin Puc Date: Fri, 8 Sep 2023 19:18:04 +0200 Subject: [PATCH 12/26] stagit: rebuild for libgit2-1.7 --- srcpkgs/stagit/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/stagit/template b/srcpkgs/stagit/template index 5bc0ec404d99a..a12180fa1e788 100644 --- a/srcpkgs/stagit/template +++ b/srcpkgs/stagit/template @@ -1,7 +1,7 @@ # Template file for 'stagit' pkgname=stagit version=1.2 -revision=2 +revision=3 build_style=gnu-makefile make_install_args="MANPREFIX=/usr/share/man" makedepends="libgit2-devel" From c72a891217b3bc76a1c2efefdc658e9d83f4a261 Mon Sep 17 00:00:00 2001 From: Marcin Puc Date: Fri, 8 Sep 2023 19:23:26 +0200 Subject: [PATCH 13/26] geany-plugins: rebuild for libgit2-1.7 --- srcpkgs/geany-plugins/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/geany-plugins/template b/srcpkgs/geany-plugins/template index f0bb0b04ed80b..fec1cd543ac62 100644 --- a/srcpkgs/geany-plugins/template +++ b/srcpkgs/geany-plugins/template @@ -1,7 +1,7 @@ # Template file for 'geany-plugins' pkgname=geany-plugins version=1.38.0 -revision=3 +revision=4 build_style=gnu-configure configure_args="--enable-all-plugins --disable-devhelp --disable-webhelper --disable-debugger --disable-geanypy --disable-multiterm" From a6b8362f9743dab5a1f4cea654d1f6de75389ecb Mon Sep 17 00:00:00 2001 From: Marcin Puc Date: Fri, 8 Sep 2023 19:31:30 +0200 Subject: [PATCH 14/26] gnome-builder: rebuild for libgit2-1.7 --- srcpkgs/gnome-builder/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gnome-builder/template b/srcpkgs/gnome-builder/template index a85de84f5dd0d..45b89ab3bb159 100644 --- a/srcpkgs/gnome-builder/template +++ b/srcpkgs/gnome-builder/template @@ -1,7 +1,7 @@ # Template file for 'gnome-builder' pkgname=gnome-builder version=44.1 -revision=5 +revision=6 build_style=meson build_helper=qemu configure_args="-Dhelp=true -Dnetwork_tests=false" From 4eb4a7d2df723266e274e123f7903d4d8ef39b3b Mon Sep 17 00:00:00 2001 From: Marcin Puc Date: Tue, 22 Aug 2023 16:46:36 +0200 Subject: [PATCH 15/26] common/build-helper/rust.sh: force using system libgit2 library --- common/build-helper/rust.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/common/build-helper/rust.sh b/common/build-helper/rust.sh index 22bfd980ba9e3..df064355f7e00 100644 --- a/common/build-helper/rust.sh +++ b/common/build-helper/rust.sh @@ -70,3 +70,6 @@ export LIBSQLITE3_SYS_USE_PKG_CONFIG=1 # jemalloc-sys export JEMALLOC_SYS_WITH_LG_PAGE=16 + +# libgit2-sys +export LIBGIT2_NO_VENDOR=1 From 48914346813393a45b9bb8d366c9efe5661c886f Mon Sep 17 00:00:00 2001 From: Marcin Puc Date: Thu, 30 Nov 2023 10:27:06 +0100 Subject: [PATCH 16/26] cargo: rebuild for libgit2-1.7 --- srcpkgs/cargo/patches/downgrade-git2.patch | 67 ---------------------- srcpkgs/cargo/template | 2 +- 2 files changed, 1 insertion(+), 68 deletions(-) delete mode 100644 srcpkgs/cargo/patches/downgrade-git2.patch diff --git a/srcpkgs/cargo/patches/downgrade-git2.patch b/srcpkgs/cargo/patches/downgrade-git2.patch deleted file mode 100644 index 89002151bf348..0000000000000 --- a/srcpkgs/cargo/patches/downgrade-git2.patch +++ /dev/null @@ -1,67 +0,0 @@ -diff --git a/Cargo.lock b/Cargo.lock -index a2d339b..6cdf579 100644 ---- a/Cargo.lock -+++ b/Cargo.lock -@@ -995,11 +995,11 @@ dependencies = [ - - [[package]] - name = "git2" --version = "0.18.1" -+version = "0.17.2" - source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "fbf97ba92db08df386e10c8ede66a2a0369bd277090afd8710e19e38de9ec0cd" -+checksum = "7b989d6a7ca95a362cf2cfc5ad688b3a467be1f87e480b8dad07fee8c79b0044" - dependencies = [ -- "bitflags 2.4.0", -+ "bitflags 1.3.2", - "libc", - "libgit2-sys", - "log", -@@ -1010,9 +1010,9 @@ dependencies = [ - - [[package]] - name = "git2-curl" --version = "0.19.0" -+version = "0.18.0" - source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "78e26b61608c573ffd26fc79061a823aa5147449a1afe1f61679a21e2031f7c3" -+checksum = "f8f8b7432b72928cff76f69e59ed5327f94a52763731e71274960dee72fe5f8c" - dependencies = [ - "curl", - "git2", -@@ -2021,9 +2021,9 @@ checksum = "a08173bc88b7955d1b3145aa561539096c421ac8debde8cbc3612ec635fee29b" - - [[package]] - name = "libgit2-sys" --version = "0.16.1+1.7.1" -+version = "0.15.2+1.6.4" - source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "f2a2bb3680b094add03bb3732ec520ece34da31a8cd2d633d1389d0f0fb60d0c" -+checksum = "a80df2e11fb4a61f4ba2ab42dbe7f74468da143f1a75c74e11dee7c813f694fa" - dependencies = [ - "cc", - "libc", -diff --git a/Cargo.toml b/Cargo.toml -index 3fb36b4..ed19d0d 100644 ---- a/Cargo.toml -+++ b/Cargo.toml -@@ -40,8 +40,8 @@ curl = "0.4.44" - curl-sys = "0.4.68" - filetime = "0.2.22" - flate2 = { version = "1.0.28", default-features = false, features = ["zlib"] } --git2 = "0.18.1" --git2-curl = "0.19.0" -+git2 = "0.17.2" -+git2-curl = "0.18.0" - gix = { version = "0.55.2", default-features = false, features = ["blocking-http-transport-curl", "progress-tree", "revision"] } - gix-features-for-configuration-only = { version = "0.35.0", package = "gix-features", features = [ "parallel" ] } - glob = "0.3.1" -@@ -58,7 +58,7 @@ itertools = "0.11.0" - jobserver = "0.1.27" - lazycell = "1.3.0" - libc = "0.2.149" --libgit2-sys = "0.16.1" -+libgit2-sys = "0.15.2" - libloading = "0.8.1" - memchr = "2.6.4" - miow = "0.6.0" diff --git a/srcpkgs/cargo/template b/srcpkgs/cargo/template index 99195fe824eae..3848701de6d24 100644 --- a/srcpkgs/cargo/template +++ b/srcpkgs/cargo/template @@ -1,7 +1,7 @@ # Template file for 'cargo' pkgname=cargo version=1.75.0 -revision=1 +revision=2 _cargo_revision=0.76.0 build_helper=rust hostmakedepends="cargo-bootstrap rust python3 curl pkg-config zlib-devel" From 0901944d56e01af2d0a86c7feacedcc079023aaf Mon Sep 17 00:00:00 2001 From: Marcin Puc Date: Fri, 8 Sep 2023 16:29:28 +0200 Subject: [PATCH 17/26] bat: rebuild for libgit2-1.7 --- srcpkgs/bat/patches/downgrade-git2.patch | 13 ------------- srcpkgs/bat/template | 6 +----- 2 files changed, 1 insertion(+), 18 deletions(-) delete mode 100644 srcpkgs/bat/patches/downgrade-git2.patch diff --git a/srcpkgs/bat/patches/downgrade-git2.patch b/srcpkgs/bat/patches/downgrade-git2.patch deleted file mode 100644 index c228946832069..0000000000000 --- a/srcpkgs/bat/patches/downgrade-git2.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/Cargo.toml b/Cargo.toml -index e31fbc3..cc4cdf9 100644 ---- a/Cargo.toml -+++ b/Cargo.toml -@@ -69,7 +69,7 @@ os_str_bytes = { version = "~6.4", optional = true } - run_script = { version = "^0.10.0", optional = true} - - [dependencies.git2] --version = "0.18" -+version = "0.17" - optional = true - default-features = false - diff --git a/srcpkgs/bat/template b/srcpkgs/bat/template index 55ef7ae8fa22a..a7f31c22a57ae 100644 --- a/srcpkgs/bat/template +++ b/srcpkgs/bat/template @@ -1,7 +1,7 @@ # Template file for 'bat' pkgname=bat version=0.24.0 -revision=1 +revision=2 build_style=cargo hostmakedepends="pkg-config" makedepends="libgit2-devel oniguruma-devel" @@ -15,10 +15,6 @@ checksum=907554a9eff239f256ee8fe05a922aad84febe4fe10a499def72a4557e9eedfb export BAT_ASSETS_GEN_DIR="${XBPS_BUILDDIR}/${pkgname}-${version}" -post_patch() { - cargo update --package git2@0.18.0 --precise 0.17.2 -} - post_install() { vlicense LICENSE-MIT vdoc README.md From d12d6cdf9d5cba742aef0afc1270cd7c9c62d4e4 Mon Sep 17 00:00:00 2001 From: Marcin Puc Date: Fri, 8 Sep 2023 17:09:09 +0200 Subject: [PATCH 18/26] cargo-update: rebuild for libgit2-1.7 --- srcpkgs/cargo-update/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/cargo-update/template b/srcpkgs/cargo-update/template index 95abc2f1a94d7..c318b07004df9 100644 --- a/srcpkgs/cargo-update/template +++ b/srcpkgs/cargo-update/template @@ -1,7 +1,7 @@ # Template file for 'cargo-update' pkgname=cargo-update version=13.3.0 -revision=1 +revision=2 build_style=cargo hostmakedepends="pkg-config go-md2man" makedepends="libcurl-devel libgit2-devel libssh2-devel openssl-devel" From 81758c9d9e0ff17803530398526df684aaa96cd0 Mon Sep 17 00:00:00 2001 From: Marcin Puc Date: Fri, 8 Sep 2023 17:14:39 +0200 Subject: [PATCH 19/26] cocogitto: rebuild for libgit2-1.7 --- srcpkgs/cocogitto/patches/downgrade-git2.patch | 13 ------------- srcpkgs/cocogitto/template | 6 +----- 2 files changed, 1 insertion(+), 18 deletions(-) delete mode 100644 srcpkgs/cocogitto/patches/downgrade-git2.patch diff --git a/srcpkgs/cocogitto/patches/downgrade-git2.patch b/srcpkgs/cocogitto/patches/downgrade-git2.patch deleted file mode 100644 index 8273f1eb15df0..0000000000000 --- a/srcpkgs/cocogitto/patches/downgrade-git2.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/Cargo.toml b/Cargo.toml -index e84724f..9a01b29 100644 ---- a/Cargo.toml -+++ b/Cargo.toml -@@ -20,7 +20,7 @@ codegen-units = 1 - panic = "abort" - - [dependencies] --git2 = { version = "0.18.1", default-features = false, features = [] } -+git2 = { version = "0.17", default-features = false, features = [] } - anyhow = "^1" - colored = "^2" - chrono = { version = "0.4.19", features = ["serde"] } diff --git a/srcpkgs/cocogitto/template b/srcpkgs/cocogitto/template index e0cf7481a0231..bba0f594098bd 100644 --- a/srcpkgs/cocogitto/template +++ b/srcpkgs/cocogitto/template @@ -1,7 +1,7 @@ # Template file for 'cocogitto' pkgname=cocogitto version=6.0.1 -revision=1 +revision=2 build_style=cargo build_helper=qemu hostmakedepends="pkg-config" @@ -17,10 +17,6 @@ checksum=2a0e332b7028ffcfeb113c734b4bf506c34362730e371b03a3e4a71142099330 # Test suite is not atomic, relies on user environment such as git user configuration make_check=no -post_patch() { - cargo update --package git2@0.18.1 --precise 0.17.2 -} - post_install() { local cog="${DESTDIR}/usr/bin/cog" for shell in bash zsh fish; do From e6abd1bde8adeae06fbaf829250a248b81af7767 Mon Sep 17 00:00:00 2001 From: Marcin Puc Date: Fri, 8 Sep 2023 17:22:12 +0200 Subject: [PATCH 20/26] delta: rebuild for libgit2-1.7 --- srcpkgs/delta/patches/bump-git2.patch | 4 ++-- srcpkgs/delta/template | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/srcpkgs/delta/patches/bump-git2.patch b/srcpkgs/delta/patches/bump-git2.patch index 05255c23c9ccb..c670fe74abb6c 100644 --- a/srcpkgs/delta/patches/bump-git2.patch +++ b/srcpkgs/delta/patches/bump-git2.patch @@ -1,5 +1,5 @@ diff --git a/Cargo.toml b/Cargo.toml -index 8c0c6d8..4fdaa9d 100644 +index 8c0c6d8..c14a125 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -46,7 +46,7 @@ vte = "0.11.0" @@ -7,7 +7,7 @@ index 8c0c6d8..4fdaa9d 100644 [dependencies.git2] -version = "0.16.1" -+version = "0.17" ++version = "0.18" default-features = false features = [] diff --git a/srcpkgs/delta/template b/srcpkgs/delta/template index e0e2c44370d7b..6dbd1cfb88d55 100644 --- a/srcpkgs/delta/template +++ b/srcpkgs/delta/template @@ -1,7 +1,7 @@ # Template file for 'delta' pkgname=delta version=0.16.5 -revision=2 +revision=3 build_style=cargo hostmakedepends="pkg-config" makedepends="libgit2-devel oniguruma-devel" @@ -14,7 +14,7 @@ distfiles="https://github.com/dandavison/delta/archive/refs/tags/${version}.tar. checksum=00d4740e9da4f543f34a2a0503615f8190d307d1180dfb753b6911aa6940197f post_patch() { - cargo update --package git2@0.16.1 --precise 0.17.2 + cargo update --package git2@0.16.1 --precise 0.18.1 } post_install() { From 8c2880bf26a4cb8f8c479cff869358798730b524 Mon Sep 17 00:00:00 2001 From: Marcin Puc Date: Sun, 17 Sep 2023 10:29:54 +0200 Subject: [PATCH 21/26] eza: rebuild for libgit2-1.7 --- srcpkgs/eza/patches/downgrade-git2.patch | 13 ------------- srcpkgs/eza/template | 6 +----- 2 files changed, 1 insertion(+), 18 deletions(-) delete mode 100644 srcpkgs/eza/patches/downgrade-git2.patch diff --git a/srcpkgs/eza/patches/downgrade-git2.patch b/srcpkgs/eza/patches/downgrade-git2.patch deleted file mode 100644 index 9f4eb5bee96aa..0000000000000 --- a/srcpkgs/eza/patches/downgrade-git2.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/Cargo.toml b/Cargo.toml -index e6c3e0e..39a34d0 100644 ---- a/Cargo.toml -+++ b/Cargo.toml -@@ -59,7 +59,7 @@ default-features = false - features = ["format"] - - [dependencies.git2] --version = "0.18" -+version = "0.17" - optional = true - default-features = false - diff --git a/srcpkgs/eza/template b/srcpkgs/eza/template index 7fc570a911e39..17a2e68052750 100644 --- a/srcpkgs/eza/template +++ b/srcpkgs/eza/template @@ -1,7 +1,7 @@ # Template file for 'eza' pkgname=eza version=0.18.0 -revision=1 +revision=2 build_style=cargo hostmakedepends="pandoc pkg-config" makedepends="libgit2-devel" @@ -13,10 +13,6 @@ changelog="https://raw.githubusercontent.com/eza-community/eza/main/CHANGELOG.md distfiles="https://github.com/eza-community/eza/archive/refs/tags/v${version}.tar.gz" checksum=50f6187fa10eb7d2405477ed2b4dfbda7e51d3746b3660664f39b50d74c856a1 -post_patch() { - cargo update --package git2@0.18.1 --precise 0.17.2 -} - post_install() { vcompletion completions/bash/eza bash vcompletion completions/fish/eza.fish fish From d321ee2a77ecb8318fa65a622528d64c08b9517d Mon Sep 17 00:00:00 2001 From: Marcin Puc Date: Fri, 8 Sep 2023 17:27:24 +0200 Subject: [PATCH 22/26] git-absorb: rebuild for libgit2-1.7 --- srcpkgs/git-absorb/patches/downgrade-git2.patch | 13 ------------- srcpkgs/git-absorb/template | 6 +----- 2 files changed, 1 insertion(+), 18 deletions(-) delete mode 100644 srcpkgs/git-absorb/patches/downgrade-git2.patch diff --git a/srcpkgs/git-absorb/patches/downgrade-git2.patch b/srcpkgs/git-absorb/patches/downgrade-git2.patch deleted file mode 100644 index afcacd4a8df05..0000000000000 --- a/srcpkgs/git-absorb/patches/downgrade-git2.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/Cargo.toml b/Cargo.toml -index 97dc720..85435bc 100644 ---- a/Cargo.toml -+++ b/Cargo.toml -@@ -21,7 +21,7 @@ name = "git-absorb" - path = "src/main.rs" - - [dependencies.git2] --version = "~0.18" -+version = "~0.17" - default-features = false - - [dependencies] diff --git a/srcpkgs/git-absorb/template b/srcpkgs/git-absorb/template index ae05cdf3a3e8d..863e443c255ce 100644 --- a/srcpkgs/git-absorb/template +++ b/srcpkgs/git-absorb/template @@ -1,7 +1,7 @@ # Template file for 'git-absorb' pkgname=git-absorb version=0.6.11 -revision=2 +revision=3 build_style=cargo build_helper=qemu hostmakedepends="pkg-config" @@ -13,10 +13,6 @@ homepage="https://github.com/tummychow/git-absorb" distfiles="https://github.com/tummychow/git-absorb/archive/refs/tags/${version}.tar.gz" checksum=36c3b2c7bcd1d9db5d1dedd02d6b0ac58faaeb6fd50df7ff01f5cf87e5367b52 -post_patch() { - cargo update --package git2@0.18.1 --precise 0.17.2 -} - post_install() { vlicense LICENSE.md vman Documentation/git-absorb.1 From a3f6dde243a8e6d49a06f9ec4769120179d31043 Mon Sep 17 00:00:00 2001 From: Marcin Puc Date: Fri, 8 Sep 2023 17:35:46 +0200 Subject: [PATCH 23/26] git-cliff: rebuild for libgit2-1.7 --- srcpkgs/git-cliff/patches/downgrade-git2.patch | 13 ------------- srcpkgs/git-cliff/template | 6 +----- 2 files changed, 1 insertion(+), 18 deletions(-) delete mode 100644 srcpkgs/git-cliff/patches/downgrade-git2.patch diff --git a/srcpkgs/git-cliff/patches/downgrade-git2.patch b/srcpkgs/git-cliff/patches/downgrade-git2.patch deleted file mode 100644 index eda09bc98e9e9..0000000000000 --- a/srcpkgs/git-cliff/patches/downgrade-git2.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/git-cliff-core/Cargo.toml b/git-cliff-core/Cargo.toml -index fbcfbb2..7209a63 100644 ---- a/git-cliff-core/Cargo.toml -+++ b/git-cliff-core/Cargo.toml -@@ -28,7 +28,7 @@ toml = "0.8.1" - lazy-regex = "3.0.2" - - [dependencies.git2] --version = "0.18.1" -+version = "0.17" - default-features = false - optional = true - diff --git a/srcpkgs/git-cliff/template b/srcpkgs/git-cliff/template index d42b45d881562..4ef4320a9ad95 100644 --- a/srcpkgs/git-cliff/template +++ b/srcpkgs/git-cliff/template @@ -1,7 +1,7 @@ # Template file for 'git-cliff' pkgname=git-cliff version=1.4.0 -revision=1 +revision=2 archs="x86_64* i686* aarch64* arm*" # ring build_style=cargo build_helper=qemu @@ -17,10 +17,6 @@ changelog="https://raw.githubusercontent.com/orhun/git-cliff/main/CHANGELOG.md" distfiles="https://github.com/orhun/git-cliff/archive/refs/tags/v${version}.tar.gz" checksum=8ec9a2c9cd0e97a8111a82bcf2fce415f40818897bdc76a2c5cc63d99114ec30 -post_patch() { - cargo update --package git2@0.18.1 --precise 0.17.2 -} - post_install() { vdoc README.md From 560fad25b87551880076acea60de9e266ec0c2ee Mon Sep 17 00:00:00 2001 From: Marcin Puc Date: Fri, 8 Sep 2023 17:38:46 +0200 Subject: [PATCH 24/26] git-series: rebuild for libgit2-1.7 --- srcpkgs/git-series/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/git-series/template b/srcpkgs/git-series/template index fe5e461fcbf25..af9a680b13acd 100644 --- a/srcpkgs/git-series/template +++ b/srcpkgs/git-series/template @@ -1,7 +1,7 @@ # Template file for 'git-series' pkgname=git-series version=0.9.1 -revision=17 +revision=18 build_style=cargo hostmakedepends="cmake pkg-config perl" makedepends="libgit2-devel libcurl-devel" From 22c882e968c2a40b894e4c924cfb604ca7aa3cb7 Mon Sep 17 00:00:00 2001 From: Marcin Puc Date: Fri, 8 Sep 2023 17:54:49 +0200 Subject: [PATCH 25/26] gitui: rebuild for libgit2-1.7 --- srcpkgs/gitui/patches/bump-git2.patch | 13 +++++++++++++ srcpkgs/gitui/template | 6 +++++- 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 srcpkgs/gitui/patches/bump-git2.patch diff --git a/srcpkgs/gitui/patches/bump-git2.patch b/srcpkgs/gitui/patches/bump-git2.patch new file mode 100644 index 0000000000000..905f593d6e96e --- /dev/null +++ b/srcpkgs/gitui/patches/bump-git2.patch @@ -0,0 +1,13 @@ +diff --git a/asyncgit/Cargo.toml b/asyncgit/Cargo.toml +index df03ba1..b405ac9 100644 +--- a/asyncgit/Cargo.toml ++++ b/asyncgit/Cargo.toml +@@ -16,7 +16,7 @@ bitflags = "1" + crossbeam-channel = "0.5" + easy-cast = "0.5" + fuzzy-matcher = "0.3" +-git2 = "0.17" ++git2 = "0.18" + log = "0.4" + # git2 = { path = "../../extern/git2-rs", features = ["vendored-openssl"]} + # git2 = { git="https://github.com/extrawurst/git2-rs.git", rev="fc13dcc", features = ["vendored-openssl"]} diff --git a/srcpkgs/gitui/template b/srcpkgs/gitui/template index 8a04297c2871d..5a90f553b775c 100644 --- a/srcpkgs/gitui/template +++ b/srcpkgs/gitui/template @@ -1,7 +1,7 @@ # Template file for 'gitui' pkgname=gitui version=0.24.3 -revision=1 +revision=2 build_style=cargo make_check_args="-- --skip components::textinput::tests::test_visualize_newline" hostmakedepends="pkg-config python3" @@ -14,6 +14,10 @@ changelog="https://github.com/extrawurst/gitui/raw/master/CHANGELOG.md" distfiles="https://github.com/extrawurst/gitui/archive/refs/tags/v${version}.tar.gz" checksum=a5fc6b52a4db0037c3351b9743af49c8bb9ccff4dda5bdb064bab9e59f68fde2 +post_patch() { + cargo update --package git2@0.17.2 --precise 0.18.1 +} + post_install() { vlicense LICENSE.md } From ea2b70b978e110ab92ffb057a3d4ec57e4b8bbd1 Mon Sep 17 00:00:00 2001 From: Marcin Puc Date: Fri, 8 Sep 2023 18:00:14 +0200 Subject: [PATCH 26/26] lsd: rebuild for libgit2-1.7 --- srcpkgs/lsd/patches/bump-git2.patch | 4 ++-- srcpkgs/lsd/template | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/srcpkgs/lsd/patches/bump-git2.patch b/srcpkgs/lsd/patches/bump-git2.patch index 54319caba11e9..058c4b684cd72 100644 --- a/srcpkgs/lsd/patches/bump-git2.patch +++ b/srcpkgs/lsd/patches/bump-git2.patch @@ -1,5 +1,5 @@ diff --git a/Cargo.toml b/Cargo.toml -index 30fa892..460cf13 100644 +index 30fa892..1b0d83b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -45,7 +45,7 @@ vsort = "0.1.0" @@ -7,7 +7,7 @@ index 30fa892..460cf13 100644 [target."cfg(not(all(windows, target_arch = \"x86\", target_env = \"gnu\")))".dependencies] # if ssl feature is enabled compilation will fail on arm-unknown-linux-gnueabihf and i686-pc-windows-gnu -git2 = { version = "0.16", optional = true, default-features = false } -+git2 = { version = "0.17", optional = true, default-features = false } ++git2 = { version = "0.18", optional = true, default-features = false } [target.'cfg(unix)'.dependencies] users = "0.11.*" diff --git a/srcpkgs/lsd/template b/srcpkgs/lsd/template index b07f510bff495..34713e80ba628 100644 --- a/srcpkgs/lsd/template +++ b/srcpkgs/lsd/template @@ -1,7 +1,7 @@ # Template file for 'lsd' pkgname=lsd version=1.0.0 -revision=1 +revision=2 build_style=cargo hostmakedepends="pkg-config" makedepends="libgit2-devel" @@ -25,7 +25,7 @@ fi export SHELL_COMPLETIONS_DIR="${wrksrc}" post_patch() { - cargo update --package git2@0.16.1 --precise 0.17.2 + cargo update --package git2@0.16.1 --precise 0.18.1 } post_install() {