# Maintainer(Aur): Konstantin Shalygin # Contributor: Konstantin Shalygin # Contributor: Sebastien Leduc # parabola changes and rationale: # - Switched from any to ('armv7h' 'i686' 'x86_64') because # at the time of writing, the python version is not the same # on all the supported architectures: # armv7h: Python 3.10.1 (main, Dec 26 2021, 17:22:10) [GCC 10.2.0] on linux # i686: Python 3.9.9 (main, Nov 27 2021, 18:13:53) # x86_64: Python 3.10.1 (main, Dec 18 2021, 23:53:45) [GCC 11.1.0] on linux # - Added pkgrel+=.parabola1 to enable to rebuild the package # if needed. pkgbase='python-redmine' pkgname=('python-redmine' 'python2-redmine') pkgver=2.3.0 pkgrel=1 pkgrel+=.parabola2 pkgdesc="Python library for communicating with a Redmine project management application" arch=('armv7h' 'i686' 'x86_64') url="https://${pkgbase}.com/" makedepends=('python' 'python-setuptools' 'python2' 'python2-setuptools') checkdepends=('python-nose' 'python-mock' 'python-requests' 'python-coverage') license=('Apache') source=("https://github.com/maxtepkeev/${pkgbase}/archive/v${pkgver}.tar.gz") sha256sums=('9c60667b79c1c93a1530d3b299beeb2278b34a33c03ac9bedd99e0d9fc9b0f3b') build() { cd "${srcdir}/${pkgbase}-${pkgver}" python setup.py build } check() { cd "${srcdir}/${pkgbase}-${pkgver}" nosetests --with-coverage --cover-erase --cover-package=redminelib } package_python-redmine() { depends=('python-requests') cd "${srcdir}/${pkgbase}-${pkgver}" python setup.py install -O1 --root="${pkgdir}" } package_python2-redmine() { depends=('python2-requests') cd "${srcdir}/${pkgbase}-${pkgver}" python2 setup.py install -O1 --root="${pkgdir}" }