Jakub Klinkovský pushed to branch main at Arch Linux / Packaging / Packages /
python-pyarrow
Commits:
1a7e470a by Caleb Maclennan at 2024-11-18T21:57:37+01:00
Remove bogus runtime dependency, actually a build time dep
- - - - -
2 changed files:
- .SRCINFO
- PKGBUILD
Changes:
=====================================
.SRCINFO
=====================================
@@ -18,12 +18,12 @@ pkgbase = python-pyarrow
makedepends = python-wheel
makedepends = python-cffi
makedepends = python-pandas
+ makedepends = python-setuptools-scm
depends = arrow
depends = gcc-libs
depends = glibc
depends = python
depends = python-numpy
- depends = python-setuptools-scm
optdepends = python-cffi: interact with C code
optdepends = python-pandas: Pandas integration
optdepends = python-fsspec: Filesystem Spec support
=====================================
PKGBUILD
=====================================
@@ -1,5 +1,6 @@
# Maintainer: Bruno Pagani <[email protected]>
# Maintainer: Konstantin Gizdov <arch at kge dot pw>
+# Contributor: Caleb Maclennan <[email protected]>
# Contributor: Guillaume Horel <[email protected]>
_pkg=arrow
@@ -11,11 +12,11 @@ pkgdesc="Columnar in-memory analytics layer for big data —
Python module."
arch=(x86_64)
url="https://arrow.apache.org"
license=(Apache-2.0)
-depends=(arrow gcc-libs glibc python python-numpy python-setuptools-scm)
+depends=(arrow gcc-libs glibc python python-numpy)
optdepends=('python-cffi: interact with C code'
'python-pandas: Pandas integration'
'python-fsspec: Filesystem Spec support')
-makedepends=(git cmake cython python-build python-installer python-wheel
python-cffi python-pandas)
+makedepends=(git cmake cython python-build python-installer python-wheel
python-cffi python-pandas python-setuptools-scm)
checkdepends=(python-brotli python-hypothesis python-pandas python-pytest
python-pytz)
source=(
https://archive.apache.org/dist/${_pkg}/${_pkg}-${pkgver}/apache-${_pkg}-${pkgver}.tar.gz{,.asc}
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/python-pyarrow/-/commit/1a7e470ac43551592f1046a643b4f994fcc5f4dc
--
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/python-pyarrow/-/commit/1a7e470ac43551592f1046a643b4f994fcc5f4dc
You're receiving this email because of your account on gitlab.archlinux.org.