summaryrefslogtreecommitdiffstats
path: root/linhes/python-url-normalize/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'linhes/python-url-normalize/PKGBUILD')
-rw-r--r--linhes/python-url-normalize/PKGBUILD37
1 files changed, 0 insertions, 37 deletions
diff --git a/linhes/python-url-normalize/PKGBUILD b/linhes/python-url-normalize/PKGBUILD
deleted file mode 100644
index 895753d..0000000
--- a/linhes/python-url-normalize/PKGBUILD
+++ /dev/null
@@ -1,37 +0,0 @@
-# Maintainer: Carlos Aznarán <caznaranl@uni.pe>
-# Maintainer: Jordan Cook <JCook83@gmail.com>
-# Contributor: Benoit Pierre <benoit.pierre@gmail.com>
-# Contributor: Marc Plano-Lesay <kernald@enoent.fr>
-_base=url-normalize
-pkgname=python-${_base}
-pkgdesc="URL normalization for Python"
-pkgver=1.4.3
-pkgrel=19
-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')
-
-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
-}
-
-check() {
- cd ${_base}-${pkgver}
- # https://github.com/niksite/url-normalize/blob/master/tox.ini#L17
- pytest -o addopts=--disable-socket tests
-}
-
-package() {
- cd ${_base}-${pkgver}
- python -m installer --destdir="${pkgdir}" dist/*.whl
- install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}