From c292a4085b96e72ac831bbcf4b6545cf368d9926 Mon Sep 17 00:00:00 2001 From: Guoyi Zhang Date: Thu, 6 Feb 2025 16:24:14 +1100 Subject: [PATCH] python-custom_inherit: patch after py3.12 --- BioArchLinux/python-custom_inherit/PKGBUILD | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/BioArchLinux/python-custom_inherit/PKGBUILD b/BioArchLinux/python-custom_inherit/PKGBUILD index 28f4450d1a..fd31e26a54 100644 --- a/BioArchLinux/python-custom_inherit/PKGBUILD +++ b/BioArchLinux/python-custom_inherit/PKGBUILD @@ -10,8 +10,14 @@ license=('MIT') depends=('python') makedepends=('python-setuptools') #source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz") -source=("https://github.com/rsokl/custom_inherit/archive/refs/tags/v${pkgver}.tar.gz") -sha256sums=('ee1968bf4b1d22310e6a76a58ad9b0c99876d9bf9239b3b99c7e2aff857e9e68') +source=("https://github.com/rsokl/custom_inherit/archive/refs/tags/v${pkgver}.tar.gz" + "49.patch::https://github.com/rsokl/custom_inherit/pull/49.patch") +sha256sums=('ee1968bf4b1d22310e6a76a58ad9b0c99876d9bf9239b3b99c7e2aff857e9e68' + '5fb5dab520b568de13219ecdafd61d44e7600fe72865bc44fefe52bc28bf530f') +prepare() { + cd "$srcdir/$_name-$pkgver" + patch -p1 < $srcdir/49.patch +} build() { cd "$srcdir/$_name-$pkgver"