Antonio Rojas pushed to branch main at Arch Linux / Packaging / Packages /
python-zict
Commits:
0d56f18b by Antonio Rojas at 2025-12-26T21:23:52+01:00
upgpkg: 3.0.0-5: Python 3.14 rebuild
- - - - -
2 changed files:
- .SRCINFO
- PKGBUILD
Changes:
=====================================
.SRCINFO
=====================================
@@ -1,7 +1,7 @@
pkgbase = python-zict
pkgdesc = Useful Mutable Mappings
pkgver = 3.0.0
- pkgrel = 4
+ pkgrel = 5
url = https://github.com/dask/zict/
arch = any
license = BSD
@@ -14,6 +14,8 @@ pkgbase = python-zict
depends = python
depends = python-heapdict
source =
https://files.pythonhosted.org/packages/source/z/zict/zict-3.0.0.tar.gz
+ source = https://github.com/dask/zict/commit/b142286c.patch
sha256sums =
e321e263b6a97aafc0790c3cfb3c04656b7066e6738c37fffcca95d803c9fba5
+ sha256sums =
5dcc494602737d1f3d67e0604f6f2a67120d385a0bb0946cd82f41afdf4db13a
pkgname = python-zict
=====================================
PKGBUILD
=====================================
@@ -3,7 +3,7 @@
_pkg=zict
pkgname=python-${_pkg}
pkgver=3.0.0
-pkgrel=4
+pkgrel=5
pkgdesc="Useful Mutable Mappings"
arch=(any)
url="https://github.com/dask/zict/"
@@ -11,9 +11,16 @@ license=(BSD)
makedepends=(python-setuptools)
depends=(python python-heapdict)
checkdepends=(python-pytest-timeout python-pytest-repeat python-pytest-asyncio
python-lmdb python-psutil)
-source=(https://files.pythonhosted.org/packages/source/${_pkg::1}/${_pkg}/${_pkg}-${pkgver}.tar.gz)
+source=(https://files.pythonhosted.org/packages/source/${_pkg::1}/${_pkg}/${_pkg}-${pkgver}.tar.gz
+ https://github.com/dask/zict/commit/b142286c.patch)
#source=(${url}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('e321e263b6a97aafc0790c3cfb3c04656b7066e6738c37fffcca95d803c9fba5')
+sha256sums=('e321e263b6a97aafc0790c3cfb3c04656b7066e6738c37fffcca95d803c9fba5'
+ '5dcc494602737d1f3d67e0604f6f2a67120d385a0bb0946cd82f41afdf4db13a')
+
+prepare() {
+ cd $_pkg-$pkgver
+ patch -p1 -i ../b142286c.patch # Fix test hangs
+}
build() {
cd ${_pkg}-${pkgver}
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/python-zict/-/commit/0d56f18bf2d11aa045da4f5909ef758d64fc139e
--
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/python-zict/-/commit/0d56f18bf2d11aa045da4f5909ef758d64fc139e
You're receiving this email because of your account on gitlab.archlinux.org.