mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-23 19:25:25 +03:00
35 lines
896 B
Text
35 lines
896 B
Text
# Contributor: Clayton Craft <clayton@craftyguy.net>
|
|
# Maintainer: Clayton Craft <clayton@craftyguy.net>
|
|
pkgname=py3-ipdb
|
|
pkgver=0.13.11
|
|
pkgrel=0
|
|
pkgdesc="IPython debugger"
|
|
url="https://github.com/gotcha/ipdb"
|
|
arch="all"
|
|
license="BSD"
|
|
depends="ipython"
|
|
makedepends="py3-setuptools py3-toml"
|
|
checkdepends="py3-mock"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/gotcha/ipdb/archive/$pkgver.tar.gz"
|
|
builddir="$srcdir/ipdb-$pkgver"
|
|
options="!check"
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
check() {
|
|
python3 setup.py test
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --skip-build --prefix=/usr --root="$pkgdir"
|
|
|
|
ln -s ipdb3 "$pkgdir"/usr/bin/ipdb
|
|
|
|
install -Dm644 COPYING.txt "$pkgdir"/usr/share/licenses/$pkgname/COPYING.txt
|
|
}
|
|
|
|
sha512sums="
|
|
fa3fc9ef183419f7ab76caf2234f8b36640baacd722240fb5f9a45555797a9e011a0503d935643a50f88cc334c4d167710d65b0b1c4527c319f2d612cc8bfe9c py3-ipdb-0.13.11.tar.gz
|
|
"
|