Date: Monday, August 19, 2013 @ 12:19:08 Author: angvp Revision: 96015
archrelease: copy trunk to community-testing-i686, community-testing-x86_64 Added: python-psutil/repos/community-testing-i686/ python-psutil/repos/community-testing-i686/PKGBUILD (from rev 96014, python-psutil/trunk/PKGBUILD) python-psutil/repos/community-testing-x86_64/ python-psutil/repos/community-testing-x86_64/PKGBUILD (from rev 96014, python-psutil/trunk/PKGBUILD) -----------------------------------+ community-testing-i686/PKGBUILD | 43 ++++++++++++++++++++++++++++++++++++ community-testing-x86_64/PKGBUILD | 43 ++++++++++++++++++++++++++++++++++++ 2 files changed, 86 insertions(+) Copied: python-psutil/repos/community-testing-i686/PKGBUILD (from rev 96014, python-psutil/trunk/PKGBUILD) =================================================================== --- community-testing-i686/PKGBUILD (rev 0) +++ community-testing-i686/PKGBUILD 2013-08-19 10:19:08 UTC (rev 96015) @@ -0,0 +1,43 @@ +# $Id$ +# Maintainer: Sébastien Luttringer + +pkgbase=python-psutil +pkgname=('python-psutil' 'python2-psutil') +pkgver=1.0.1 +pkgrel=2 +arch=('i686' 'x86_64') +url='http://code.google.com/p/psutil/' +license=('custom: BSD') +makedepends=('python' 'python-setuptools' 'python2' 'python2-setuptools') +source=("https://psutil.googlecode.com/files/psutil-$pkgver.tar.gz") +sha1sums=('3d3abb8b7a5479b7299a8d170ec25179410f24d1') + +build() { + cd psutil-$pkgver + python setup.py build --build-lib=build/python + python2 setup.py build --build-lib=build/python2 + find build/python2 -type f -exec \ + sed -i '1s,^#! \?/usr/bin/\(env \|\)python$,#!/usr/bin/python2,' {} \; +} + +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-testing-x86_64/PKGBUILD (from rev 96014, python-psutil/trunk/PKGBUILD) =================================================================== --- community-testing-x86_64/PKGBUILD (rev 0) +++ community-testing-x86_64/PKGBUILD 2013-08-19 10:19:08 UTC (rev 96015) @@ -0,0 +1,43 @@ +# $Id$ +# Maintainer: Sébastien Luttringer + +pkgbase=python-psutil +pkgname=('python-psutil' 'python2-psutil') +pkgver=1.0.1 +pkgrel=2 +arch=('i686' 'x86_64') +url='http://code.google.com/p/psutil/' +license=('custom: BSD') +makedepends=('python' 'python-setuptools' 'python2' 'python2-setuptools') +source=("https://psutil.googlecode.com/files/psutil-$pkgver.tar.gz") +sha1sums=('3d3abb8b7a5479b7299a8d170ec25179410f24d1') + +build() { + cd psutil-$pkgver + python setup.py build --build-lib=build/python + python2 setup.py build --build-lib=build/python2 + find build/python2 -type f -exec \ + sed -i '1s,^#! \?/usr/bin/\(env \|\)python$,#!/usr/bin/python2,' {} \; +} + +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: