blob: e0fbd9eba46893a8bafab86e01fcda70a09e684a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
# Maintainer(Aur): Konstantin Shalygin <k0ste@k0ste.ru>
# Contributor(Aur): Konstantin Shalygin <k0ste@k0ste.ru>
# Contributor(Aur): Sebastien Leduc <sebastien@sleduc.fr>
# parabola changes and rationale:
# - Bumped version to 2.3.0
# Patch status: sent in Aur, waiting review:
# https://aur.archlinux.org/pkgbase/python-redmine/#news
pkgbase='python-redmine'
pkgname=('python-redmine' 'python2-redmine')
pkgver=2.3.0
pkgrel=1
pkgdesc="Python library for communicating with a Redmine project management application"
arch=("any")
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}"
}
|