| author | Urja (ARMLFS builder)
<urja+armlfs@urja.dev> 2025-12-23 14:42:53 UTC |
| committer | Urja (ARMLFS builder)
<urja+armlfs@urja.dev> 2025-12-23 14:42:53 UTC |
| parent | a22d39ebd8c75acf68a785c5be9288fbce8230e9 |
| .SRCINFO | +5 | -5 |
| PKGBUILD | +3 | -3 |
diff --git a/.SRCINFO b/.SRCINFO index d4fa0d1..72031d4 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,18 +1,18 @@ pkgbase = python-cffi pkgdesc = Foreign Function Interface for Python calling C code - pkgver = 1.16.0 + pkgver = 2.0.0 pkgrel = 2 url = https://cffi.readthedocs.org/ - arch = x86_64 + arch = armv7h + arch = aarch64 license = MIT - checkdepends = python-pytest makedepends = python-build makedepends = python-installer makedepends = python-setuptools makedepends = python-wheel depends = python-pycparser optdepends = python-setuptools: "limited api" version checking in cffi.setuptools_ext - source = https://github.com/python-cffi/cffi/archive/v1.16.0/python-cffi-1.16.0.tar.gz - sha512sums = 2115f4d2431f36b18494182d2abb378a750c970dfdf083cfc287b004e52830efe703f07f71a17c89060b47eaa3b52e7b2390017d1980eb39695bdaf31bac3bb5 + source = https://github.com/python-cffi/cffi/archive/v2.0.0/python-cffi-2.0.0.tar.gz + sha512sums = a71b74e642e11eb50e9bb4ae0e7116bdb3c4a7c9622a3766d84506fa7994c02e09644b41b439b95ca99b0303e91891897cff38018d498eb087e0961f0ad4fb8b pkgname = python-cffi diff --git a/PKGBUILD b/PKGBUILD index c067a8b..b45aa66 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ # Contributor: lilydjwg <lilydjwg@gmail.com> pkgname=python-cffi -pkgver=1.16.0 +pkgver=2.0.0 pkgrel=2 pkgdesc="Foreign Function Interface for Python calling C code" arch=('armv7h' 'aarch64') @@ -13,11 +13,11 @@ optdepends=('python-setuptools: "limited api" version checking in cffi.setuptool makedepends=('python-build' 'python-installer' 'python-setuptools' 'python-wheel') #checkdepends=('python-pytest') source=("https://github.com/python-cffi/cffi/archive/v$pkgver/$pkgname-$pkgver.tar.gz") -sha512sums=('2115f4d2431f36b18494182d2abb378a750c970dfdf083cfc287b004e52830efe703f07f71a17c89060b47eaa3b52e7b2390017d1980eb39695bdaf31bac3bb5') +sha512sums=('a71b74e642e11eb50e9bb4ae0e7116bdb3c4a7c9622a3766d84506fa7994c02e09644b41b439b95ca99b0303e91891897cff38018d498eb087e0961f0ad4fb8b') build() { cd cffi-$pkgver - rm pyproject.toml # crude hack to ignore setuptools version check that fails +# rm pyproject.toml # crude hack to ignore setuptools version check that fails python -m build -nw }