[arch-commits] Commit in (4 files)

David Runge dvzrv at archlinux.org
Sun Jan 26 11:00:23 UTC 2020


    Date: Sunday, January 26, 2020 @ 11:00:22
  Author: dvzrv
Revision: 555670

Adding python-publicsuffix2 as depends for python-authheaders (replacing python-publicsuffix).

Added:
  python-publicsuffix2/
  python-publicsuffix2/repos/
  python-publicsuffix2/trunk/
  python-publicsuffix2/trunk/PKGBUILD

----------+
 PKGBUILD |   47 +++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 47 insertions(+)

Added: python-publicsuffix2/trunk/PKGBUILD
===================================================================
--- python-publicsuffix2/trunk/PKGBUILD	                        (rev 0)
+++ python-publicsuffix2/trunk/PKGBUILD	2020-01-26 11:00:22 UTC (rev 555670)
@@ -0,0 +1,47 @@
+# Maintainer: David Runge <dvzrv at archlinux.org>
+
+_name=publicsuffix2
+pkgname=python-publicsuffix2
+_version=2.2019-12-21
+pkgver=2.20191221
+pkgrel=1
+pkgdesc="Library to deal with publicsuffix data"
+arch=('any')
+url="https://github.com/nexB/python-publicsuffix2"
+license=('MIT' 'MPL2')
+depends=('python')
+makedepends=('python-requests' 'python-setuptools')
+checkdepends=('python-pytest')
+# tests are not included in pypi sdist tarball and bizarre tagging:
+# https://github.com/nexB/python-publicsuffix2/issues/12
+# source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${_major}.${_date//./}.tar.gz")
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/nexB/${pkgname}/archive/release-${_version}.tar.gz")
+sha512sums=('983bdb17b76d10eb73cf69f0ba7590806bf6786ae0c30526593ce1ab97f3b22c967f9acae83b880dd56be41a29eae9cca5726926667eb74013d0d1078433bf05')
+
+prepare() {
+  mv -v "$pkgname-release-${_version}" "$pkgname-$pkgver"
+  cd "$pkgname-$pkgver"
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  python setup.py build
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  export PYTHONPATH="build/lib:${PYTHONPATH}"
+  pytest -v
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  python setup.py install --skip-build \
+    --optimize=1 \
+    --prefix=/usr \
+    --root="${pkgdir}"
+  install -vDm 644 {AUTHORS,CHANGELOG,README}.rst \
+    -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -vDm 644 "${_name}.LICENSE" \
+    -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}



More information about the arch-commits mailing list