summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBritney Fransen <brfransen@gmail.com>2025-05-17 15:12:12 (GMT)
committerBritney Fransen <brfransen@gmail.com>2025-05-17 15:12:12 (GMT)
commitb83d10ba1914681a50a65e8db55d93ee282bb136 (patch)
treee3be9eb1c83212d86a545e6f35c876d38ebef00e
parent574a7395b3002b68fcd105a1529c01b9a9a3a2d6 (diff)
downloadlinhes_pkgbuild-b83d10ba1914681a50a65e8db55d93ee282bb136.zip
linhes_pkgbuild-b83d10ba1914681a50a65e8db55d93ee282bb136.tar.gz
linhes_pkgbuild-b83d10ba1914681a50a65e8db55d93ee282bb136.tar.bz2
python-url-normalize: update to 2.2.1
-rw-r--r--linhes/python-url-normalize/PKGBUILD34
1 files changed, 16 insertions, 18 deletions
diff --git a/linhes/python-url-normalize/PKGBUILD b/linhes/python-url-normalize/PKGBUILD
index 895753d..f25ef29 100644
--- a/linhes/python-url-normalize/PKGBUILD
+++ b/linhes/python-url-normalize/PKGBUILD
@@ -5,33 +5,31 @@
_base=url-normalize
pkgname=python-${_base}
pkgdesc="URL normalization for Python"
-pkgver=1.4.3
-pkgrel=19
-arch=('any')
+pkgver=2.2.1
+pkgrel=1
+arch=(any)
url="https://github.com/niksite/${_base}"
license=(MIT)
-depends=(python-six)
-makedepends=(python-build python-installer python-poetry)
-checkdepends=(python-pytest-socket)
-source=(${_base}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz)
-sha512sums=('46eaa1753b37e89d56cb19818144a7cf5b38653811720eb506732c35bb3732ef0c556420b22a9ee2c08e70e5b408aab7f44cea5e15d1ebe3d717c0c77706bfb8')
+depends=(python-idna)
+makedepends=(python-build python-installer python-setuptools python-wheel)
+# checkdepends=(python-pytest)
+source=(${_base}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz)
+sha512sums=('51f57bf6d94863662789321b8965c0ca833d34d0c8095f2a39303a410f61c24f04a56e83258dafaa8a4250b0d1b44ad3c3a63430da2b04f4d906d84a71208f46')
build() {
cd ${_base}-${pkgver}
- # Note: set `GIT_CEILING_DIRECTORIES` to prevent poetry
- # from incorrectly using a parent git checkout info.
- # https://github.com/pypa/build/issues/384#issuecomment-947675975
- GIT_CEILING_DIRECTORIES="${PWD}/.." python -m build --wheel --skip-dependency-check --no-isolation
+ python -m build --wheel --skip-dependency-check --no-isolation
}
-check() {
- cd ${_base}-${pkgver}
- # https://github.com/niksite/url-normalize/blob/master/tox.ini#L17
- pytest -o addopts=--disable-socket tests
-}
+# check() {
+# cd ${_base}-${pkgver}
+# python -m venv --system-site-packages test-env
+# test-env/bin/python -m installer dist/*.whl
+# test-env/bin/python -m pytest tests
+# }
package() {
cd ${_base}-${pkgver}
- python -m installer --destdir="${pkgdir}" dist/*.whl
+ PYTHONPYCACHEPREFIX="${PWD}/.cache/cpython/" python -m installer --destdir="${pkgdir}" dist/*.whl
install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
}