David Runge pushed to branch main at Arch Linux / Packaging / Packages / python-fastnumbers
Commits: f84b1364 by David Runge at 2023-11-29T11:52:12+01:00 Use bash arrays with one entry per line for easier handling Signed-off-by: David Runge <[email protected]> - - - - - 5370e8df by David Runge at 2023-11-29T11:57:32+01:00 Switch to upstream provided source tarball Signed-off-by: David Runge <[email protected]> - - - - - 56c638bb by David Runge at 2023-11-29T11:58:00+01:00 Add all direct dependencies Signed-off-by: David Runge <[email protected]> - - - - - d2a8f484 by David Runge at 2023-11-29T12:03:40+01:00 upgpkg: 5.1.0-1 - - - - - 2 changed files: - + .SRCINFO - PKGBUILD Changes: ===================================== .SRCINFO ===================================== @@ -0,0 +1,24 @@ +pkgbase = python-fastnumbers + pkgdesc = Super-fast and clean conversions to numbers + pkgver = 5.1.0 + pkgrel = 1 + url = https://github.com/SethMMorton/fastnumbers + arch = x86_64 + license = MIT + checkdepends = python-hypothesis + checkdepends = python-numpy + checkdepends = python-pytest + checkdepends = python-typing_extensions + makedepends = python-build + makedepends = python-installer + makedepends = python-setuptools + makedepends = python-wheel + depends = gcc-libs + depends = glibc + depends = python + optdepends = python-numpy: for conversion to numpy arrays + source = fastnumbers-5.1.0.tar.gz::https://github.com/SethMMorton/fastnumbers/archive/refs/tags/5.1.0.tar.gz + sha512sums = d2a1e1430f1ec5f2540c4ab1ddd2e855fdeb98079389849d33289505af2542631f2690769ec4ca92a079650947fcb564dff84c399eae2d1034b266df25a8851f + b2sums = 905200063bcb1d053420b54d580db795714fac7da4fe981cbe0f559fb6eaf9861349effee72533442f1afb4811d79e9cd2534f207c15b253bfce349bec2371ba + +pkgname = python-fastnumbers ===================================== PKGBUILD ===================================== @@ -2,21 +2,35 @@ _name=fastnumbers pkgname=python-fastnumbers -pkgver=5.0.1 -pkgrel=2 +pkgver=5.1.0 +pkgrel=1 pkgdesc="Super-fast and clean conversions to numbers" arch=(x86_64) url="https://github.com/SethMMorton/fastnumbers" license=(MIT) -depends=(python) -makedepends=(python-build python-installer python-setuptools python-wheel) -checkdepends=(python-hypothesis python-numpy python-pytest python-typing_extensions) +depends=( + gcc-libs + glibc + python +) +makedepends=( + python-build + python-installer + python-setuptools + python-wheel +) +checkdepends=( + python-hypothesis + python-numpy + python-pytest + python-typing_extensions +) optdepends=( 'python-numpy: for conversion to numpy arrays' ) -source=(https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz) -sha512sums=('fce2c2b71863d26bd8e93f11530a63f07ef00ea1006ea35c3d31091a352d72d4b97a3b358ba67f14522fd62e2a8e13ce3460ab3c75bbf950f664ab0eee1a7341') -b2sums=('ad7bcf62413399b1b90ece384215b1f7f19984af3b5cf6cad419052c5c76d211a2b28abcee5ffa3de57137c63f3494418589d55bd39f3037c931bde13ce02b90') +source=($_name-$pkgver.tar.gz::$url/archive/refs/tags/$pkgver.tar.gz) +sha512sums=('d2a1e1430f1ec5f2540c4ab1ddd2e855fdeb98079389849d33289505af2542631f2690769ec4ca92a079650947fcb564dff84c399eae2d1034b266df25a8851f') +b2sums=('905200063bcb1d053420b54d580db795714fac7da4fe981cbe0f559fb6eaf9861349effee72533442f1afb4811d79e9cd2534f207c15b253bfce349bec2371ba') build() { cd $_name-$pkgver View it on GitLab: https://gitlab.archlinux.org/archlinux/packaging/packages/python-fastnumbers/-/compare/be002f8721dbb6e36b03b59182057d8477a5a585...d2a8f4847cf265f99b566b463564f550f4b21a93 -- View it on GitLab: https://gitlab.archlinux.org/archlinux/packaging/packages/python-fastnumbers/-/compare/be002f8721dbb6e36b03b59182057d8477a5a585...d2a8f4847cf265f99b566b463564f550f4b21a93 You're receiving this email because of your account on gitlab.archlinux.org.
