53 lines
1 KiB
Bash
53 lines
1 KiB
Bash
# Maintainer: George Rawlinson <grawlinson@archlinux.org>
|
|
|
|
pkgname=python-pydeps
|
|
_name=${pkgname#python-}
|
|
pkgver=1.10.22
|
|
pkgrel=1
|
|
pkgdesc='Python module dependency graphs'
|
|
arch=('any')
|
|
url='https://github.com/thebjorn/pydeps'
|
|
license=('BSD')
|
|
depends=(
|
|
'python'
|
|
'python-yaml'
|
|
'python-stdlib-list'
|
|
'graphviz'
|
|
)
|
|
makedepends=('git' 'python-setuptools')
|
|
checkdepends=('python-pytest')
|
|
_commit='72003a33ee0c0a5807bd973382ebf8c1075e80de'
|
|
source=("$pkgname::git+$url.git#commit=$_commit")
|
|
b2sums=('SKIP')
|
|
|
|
pkgver() {
|
|
cd "$pkgname"
|
|
|
|
git describe --tags | sed 's/^v//'
|
|
}
|
|
|
|
build() {
|
|
cd "$pkgname"
|
|
|
|
python setup.py build
|
|
}
|
|
|
|
check() {
|
|
cd "$pkgname"
|
|
|
|
# figure out why package can't find pip
|
|
# (even if it is installed as a dependency)
|
|
pytest --ignore tests/test_package_names.py
|
|
}
|
|
|
|
package() {
|
|
cd "$pkgname"
|
|
|
|
python setup.py install --root="$pkgdir" --optimize=1
|
|
|
|
# documentation
|
|
install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" README.rst
|
|
|
|
# license
|
|
install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
|
|
}
|