mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-25 20:25:28 +03:00
34 lines
986 B
Text
34 lines
986 B
Text
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
pkgname=py3-redmine
|
|
_pkgname=python-redmine
|
|
pkgver=2.3.0
|
|
pkgrel=0
|
|
pkgdesc="A simple library for communicating with redmine"
|
|
url="https://github.com/maxtepkeev/python-redmine"
|
|
arch="noarch"
|
|
license="Apache-2.0"
|
|
depends="python3 py3-requests"
|
|
makedepends="py3-setuptools"
|
|
checkdepends="py3-nose"
|
|
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
|
|
builddir="$srcdir"/$_pkgname-$pkgver
|
|
|
|
replaces="py-redmine" # Backwards compatibility
|
|
provides="py-redmine=$pkgver-r$pkgrel" # Backwards compatibility
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
check() {
|
|
nosetests
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="
|
|
a317743a561cde65c17356a317d3aed082149d648aaa7487858c8533ceb286d08b6610d742321f6593fef8b61b1a4526963ddffc4ab180a83795d66773154b70 python-redmine-2.3.0.tar.gz
|
|
"
|