[arch-commits] Commit in python-helpdev/repos (community-any community-any/PKGBUILD)

Bruno Pagani archange at archlinux.org
Thu Feb 20 18:30:49 UTC 2020


    Date: Thursday, February 20, 2020 @ 18:30:48
  Author: archange
Revision: 577300

archrelease: copy trunk to community-any

Added:
  python-helpdev/repos/community-any/
  python-helpdev/repos/community-any/PKGBUILD
    (from rev 577299, python-helpdev/trunk/PKGBUILD)

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

Copied: python-helpdev/repos/community-any/PKGBUILD (from rev 577299, python-helpdev/trunk/PKGBUILD)
===================================================================
--- community-any/PKGBUILD	                        (rev 0)
+++ community-any/PKGBUILD	2020-02-20 18:30:48 UTC (rev 577300)
@@ -0,0 +1,33 @@
+# Maintainer: Bruno Pagani <archange at archlinux.org>
+
+_pkg=helpdev
+pkgname=python-${_pkg}
+pkgver=0.6.10
+pkgrel=1
+pkgdesc="Helping users and developers to get information about the environment to report bugs"
+arch=(any)
+url="https://gitlab.com/dpizetta/helpdev"
+license=(MIT CCPL)
+depends=(python-importlib-metadata python-psutil)
+makedepends=(python-setuptools)
+checkdepends=(python-pytest python-pip)
+#PyPi does not have tests nor LICENSE
+#source=(https://files.pythonhosted.org/packages/source/${_pkg::1}/${_pkg}/${_pkg}-${pkgver}.tar.gz)
+source=(${url}/-/archive/v${pkgver}/${_pkg}-v${pkgver}.tar.bz2)
+sha256sums=('ca478a30dbe0742f7a513b4017e83672e946f5c3c5b6c394d4386e54c0c63a19')
+
+build() {
+  cd ${_pkg}-v${pkgver}
+  python setup.py build
+}
+
+check() {
+  cd ${_pkg}-v${pkgver}
+  PYTHONPATH="${PWD}/build/lib/" pytest tests
+}
+
+package() {
+  cd ${_pkg}-v${pkgver}
+  python setup.py install --prefix=/usr --root="${pkgdir}" --skip-build --optimize=1
+  install -Dm644 LICENSE.rst -t "${pkgdir}"/usr/share/licenses/${pkgname}
+}



More information about the arch-commits mailing list