Antonio Rojas pushed to branch main at Arch Linux / Packaging / Packages /
git-filter-repo
Commits:
0534b59d by Antonio Rojas at 2025-12-26T12:15:38+01:00
upgpkg: 2.47.0-3: Python 3.14 rebuild
- - - - -
2 changed files:
- .SRCINFO
- PKGBUILD
Changes:
=====================================
.SRCINFO
=====================================
@@ -1,7 +1,7 @@
pkgbase = git-filter-repo
pkgdesc = Quickly rewrite git repository history (filter-branch
replacement)
pkgver = 2.47.0
- pkgrel = 2
+ pkgrel = 3
url = https://github.com/newren/git-filter-repo
arch = any
license = MIT OR GLP-2.0-or-later
@@ -13,6 +13,8 @@ pkgbase = git-filter-repo
depends = git
depends = python
source =
https://github.com/newren/git-filter-repo/releases/download/v2.47.0/git-filter-repo-2.47.0.tar.xz
+ source = https://github.com/newren/git-filter-repo/commit/c1d8461e.patch
sha256sums =
4662cbe5918196a9f1b5b3e1211a32e61cff1812419c21df4f47c5439f09e902
+ sha256sums =
2e3f83e2df7db421634b2b3561ee87b326d205835cb05721b4e26b106e7869f2
pkgname = git-filter-repo
=====================================
PKGBUILD
=====================================
@@ -3,7 +3,7 @@
pkgname=git-filter-repo
pkgver=2.47.0
-pkgrel=2
+pkgrel=3
pkgdesc='Quickly rewrite git repository history (filter-branch replacement)'
arch=(any)
url="https://github.com/newren/$pkgname"
@@ -14,8 +14,14 @@ makedepends=(python-{build,installer,wheel}
python-setuptools-scm)
checkdepends=(rsync)
_archive="$pkgname-$pkgver"
-source=("$url/releases/download/v$pkgver/$_archive.tar.xz")
-sha256sums=('4662cbe5918196a9f1b5b3e1211a32e61cff1812419c21df4f47c5439f09e902')
+source=("$url/releases/download/v$pkgver/$_archive.tar.xz"
+ https://github.com/newren/git-filter-repo/commit/c1d8461e.patch)
+sha256sums=('4662cbe5918196a9f1b5b3e1211a32e61cff1812419c21df4f47c5439f09e902'
+ '2e3f83e2df7db421634b2b3561ee87b326d205835cb05721b4e26b106e7869f2')
+
+prepare() {
+ patch -d $_archive -p1 < c1d8461e.patch # Fix tests with python 3.14
+}
build() {
cd "$_archive"
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/git-filter-repo/-/commit/0534b59dd87753b816b0b3d3d93be5a44ea1e783
--
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/git-filter-repo/-/commit/0534b59dd87753b816b0b3d3d93be5a44ea1e783
You're receiving this email because of your account on gitlab.archlinux.org.