mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 13:27:09 +02:00
31 lines
767 B
Plaintext
31 lines
767 B
Plaintext
# Contributor: Bart Ribbers <bribbers@disroot.org>
|
|
# Maintainer: Bart Ribbers <bribbers@disroot.org>
|
|
pkgname=py3-rope
|
|
pkgver=1.8.0
|
|
pkgrel=0
|
|
pkgdesc="Python refactoring library"
|
|
url="https://github.com/python-rope/rope"
|
|
arch="noarch"
|
|
license="LGPL-3.0-only"
|
|
depends="python3 py3-pytoolconfig"
|
|
makedepends="py3-setuptools"
|
|
subpackages="$pkgname-pyc"
|
|
source="https://github.com/python-rope/rope/archive/$pkgver/rope-$pkgver.tar.gz"
|
|
builddir="$srcdir/rope-$pkgver"
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
check() {
|
|
python3 -m unittest
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --skip-build --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="
|
|
3575de1f83f254bbd2140dc37752d38e683339ad6950fdd251f709b1f3cde279e9110f214ab28da5d082413a49ff6c74a45433c45beb5150d6a4b810fc94be30 rope-1.8.0.tar.gz
|
|
"
|