[arch-commits] Commit in python-psutil/repos (4 files)
Sébastien Luttringer
seblu at nymeria.archlinux.org
Tue Mar 18 00:21:41 UTC 2014
Date: Tuesday, March 18, 2014 @ 01:21:41
Author: seblu
Revision: 107564
archrelease: copy trunk to community-staging-i686, community-staging-x86_64
Added:
python-psutil/repos/community-staging-i686/
python-psutil/repos/community-staging-i686/PKGBUILD
(from rev 107563, python-psutil/trunk/PKGBUILD)
python-psutil/repos/community-staging-x86_64/
python-psutil/repos/community-staging-x86_64/PKGBUILD
(from rev 107563, python-psutil/trunk/PKGBUILD)
-----------------------------------+
community-staging-i686/PKGBUILD | 62 ++++++++++++++++++++++++++++++++++++
community-staging-x86_64/PKGBUILD | 62 ++++++++++++++++++++++++++++++++++++
2 files changed, 124 insertions(+)
Copied: python-psutil/repos/community-staging-i686/PKGBUILD (from rev 107563, python-psutil/trunk/PKGBUILD)
===================================================================
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-03-18 00:21:41 UTC (rev 107564)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+
+pkgbase=python-psutil
+pkgname=('python-psutil' 'python2-psutil')
+pkgver=2.0.0
+pkgrel=2
+arch=('i686' 'x86_64')
+url='http://code.google.com/p/psutil/'
+license=('custom: BSD')
+makedepends=('python' 'python-setuptools' 'python2' 'python2-setuptools')
+checkdepends=('net-tools' 'procps-ng')
+source=("https://pypi.python.org/packages/source/p/psutil/psutil-$pkgver.tar.gz")
+md5sums=('9ee83ff3d68396f91ebdf71ae83b152d')
+
+build() {
+ cd psutil-$pkgver
+
+ msg2 python
+ python setup.py build --build-lib=build/python
+
+ msg2 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-$pkgver
+#
+# msg2 python
+# export PYTHONPATH="$PWD/build/python"
+# #python test/test_psutil.py
+# python test/test_memory_leaks.py
+#
+# msg2 python2
+# export PYTHONPATH="$PWD/build/python2"
+# #python2 test/test_psutil.py
+# python2 test/test_memory_leaks.py
+#}
+
+package_python-psutil() {
+ pkgdesc='A cross-platform process and system utilities module for Python'
+ depends=('glibc' 'python')
+
+ cd psutil-$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=('glibc' 'python2')
+
+ cd psutil-$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:
Copied: python-psutil/repos/community-staging-x86_64/PKGBUILD (from rev 107563, python-psutil/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2014-03-18 00:21:41 UTC (rev 107564)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+
+pkgbase=python-psutil
+pkgname=('python-psutil' 'python2-psutil')
+pkgver=2.0.0
+pkgrel=2
+arch=('i686' 'x86_64')
+url='http://code.google.com/p/psutil/'
+license=('custom: BSD')
+makedepends=('python' 'python-setuptools' 'python2' 'python2-setuptools')
+checkdepends=('net-tools' 'procps-ng')
+source=("https://pypi.python.org/packages/source/p/psutil/psutil-$pkgver.tar.gz")
+md5sums=('9ee83ff3d68396f91ebdf71ae83b152d')
+
+build() {
+ cd psutil-$pkgver
+
+ msg2 python
+ python setup.py build --build-lib=build/python
+
+ msg2 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-$pkgver
+#
+# msg2 python
+# export PYTHONPATH="$PWD/build/python"
+# #python test/test_psutil.py
+# python test/test_memory_leaks.py
+#
+# msg2 python2
+# export PYTHONPATH="$PWD/build/python2"
+# #python2 test/test_psutil.py
+# python2 test/test_memory_leaks.py
+#}
+
+package_python-psutil() {
+ pkgdesc='A cross-platform process and system utilities module for Python'
+ depends=('glibc' 'python')
+
+ cd psutil-$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=('glibc' 'python2')
+
+ cd psutil-$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:
More information about the arch-commits
mailing list