summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBritney Fransen <brfransen@gmail.com>2018-10-12 18:36:31 (GMT)
committerBritney Fransen <brfransen@gmail.com>2018-10-12 18:36:31 (GMT)
commit401d16a21ac9c9840ab10f523e635a1424694045 (patch)
tree5c06a7f4373578d939393e31f5baace89c7b6cba
parentf908aafc640049e09128336d6806916c2e72890c (diff)
downloadlinhes_pkgbuild-401d16a21ac9c9840ab10f523e635a1424694045.zip
linhes_pkgbuild-401d16a21ac9c9840ab10f523e635a1424694045.tar.gz
linhes_pkgbuild-401d16a21ac9c9840ab10f523e635a1424694045.tar.bz2
python-psutil: initial inclusion
-rw-r--r--abs/core/python_modules/python-psutil/PKGBUILD61
1 files changed, 61 insertions, 0 deletions
diff --git a/abs/core/python_modules/python-psutil/PKGBUILD b/abs/core/python_modules/python-psutil/PKGBUILD
new file mode 100644
index 0000000..1d05b76
--- /dev/null
+++ b/abs/core/python_modules/python-psutil/PKGBUILD
@@ -0,0 +1,61 @@
+# Maintainer: Sébastien Luttringer
+
+pkgbase=python-psutil
+pkgname=('python-psutil' 'python2-psutil')
+pkgver=5.4.7
+pkgrel=1
+arch=('x86_64')
+url='https://github.com/giampaolo/psutil'
+license=('custom: BSD')
+makedepends=('python' 'python-setuptools' 'python2' 'python2-setuptools')
+checkdepends=('net-tools' 'procps-ng' 'python2-nose' 'python-nose')
+source=("https://github.com/giampaolo/psutil/archive/release-$pkgver.tar.gz")
+md5sums=('e8d6259eafe5925e7c522868aedd2caa')
+
+build() {
+ cd psutil-release-$pkgver
+
+ msg python
+ python setup.py build --build-lib=build/python
+
+ msg python2
+ python2 setup.py build --build-lib=build/python2
+ find build/python2 -type f -exec \
+ sed -i '1s,^#! \?/usr/bin/\(env \|\)python$,#!/usr/bin/python2,' {} \;
+}
+
+check() {
+ cd psutil-release-$pkgver
+
+ msg python
+ export PYTHONPATH="$PWD/build/python"
+ cd psutil/tests/
+ # FIXME: dynamic loading so
+
+
+ msg python2
+ export PYTHONPATH="$PWD/build/python2"
+ #python2 psutil/tests/runner.py
+}
+
+package_python-psutil() {
+ pkgdesc='A cross-platform process and system utilities module for Python'
+ depends=('python')
+
+ cd psutil-release-$pkgver
+ python setup.py build --build-lib=build/python \
+ install --root="$pkgdir" --optimize=1
+ install -D -m 644 LICENSE "$pkgdir/"usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-psutil() {
+ pkgdesc='A cross-platform process and system utilities module for Python2'
+ depends=('python2')
+
+ cd psutil-release-$pkgver
+ python2 setup.py build --build-lib=build/python2 \
+ install --root="$pkgdir" --optimize=1
+ install -D -m 644 LICENSE "$pkgdir/"usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et: