mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 02:52:13 +08:00
58 lines
1.8 KiB
Bash
58 lines
1.8 KiB
Bash
pkgbase=python-psutil
|
|
pkgname=('python3-psutil' 'python2-psutil')
|
|
pkgver=3.2.0
|
|
pkgrel=1
|
|
arch=('x86_64')
|
|
url='https://github.com/giampaolo/psutil'
|
|
license=('custom: BSD')
|
|
makedepends=('python3' 'python3-setuptools' 'python2' 'python2-setuptools' 'python2-mock' 'python3-mock')
|
|
checkdepends=('net-tools' 'procps-ng')
|
|
source=("https://pypi.python.org/packages/source/p/psutil/psutil-${pkgver}.tar.gz")
|
|
sha512sums=('b577a2c4c683f7c0af6dc138a1e26ffd57b6f555bb4f2c1c662f6177607def10e7fa4dbf2defdaad1b4c7637e036f1743896745f9d8e88ebe816b5a2dbdca552')
|
|
|
|
build() {
|
|
cd psutil-${pkgver}
|
|
|
|
msg2 python3
|
|
python3 setup.py build --build-lib=build/python3
|
|
|
|
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 python3
|
|
export PYTHONPATH="$PWD/build/python3"
|
|
#python test/test_psutil.py
|
|
python3 test/test_memory_leaks.py
|
|
|
|
msg2 python2
|
|
export PYTHONPATH="$PWD/build/python2"
|
|
#python2 test/test_psutil.py
|
|
python2 test/test_memory_leaks.py
|
|
}
|
|
|
|
package_python3-psutil() {
|
|
pkgdesc='A cross-platform process and system utilities module for Python'
|
|
depends=('glibc' 'python3')
|
|
|
|
cd psutil-${pkgver}
|
|
python3 setup.py build --build-lib=build/python3 \
|
|
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
|
|
}
|