blob: 3a636a7c4a921a00f0b5fcb0582cd2c403bcfa33 (
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
|
# Contributor: Rasmus Thomsen <oss@cogitri.dev>
# Maintainer: Rasmus Thomsen <oss@cogitri.dev>
pkgname=py3-iniherit
pkgver=0.3.9
pkgrel=0
pkgdesc="A ConfigParser subclass with file-specified inheritance"
url="http://github.com/cadithealth/iniherit"
arch="noarch"
license="MIT"
depends="py3-six"
makedepends="python3-dev py3-setuptools"
checkdepends="py3-nose py3-coverage"
options="!check" # broken, recurse until they hit the recursion limit
source="https://pypi.io/packages/source/i/iniherit/iniherit-$pkgver.tar.gz"
builddir="$srcdir/iniherit-$pkgver"
build() {
python3 setup.py build
}
check() {
python3 setup.py test
}
package() {
python3 setup.py install --prefix=/usr --root="$pkgdir"
}
sha512sums="097e300c0066e9b035dd28dda87a392102e7f45130471e903e222bdaf209a154f92e08db22f4b6547bdbe25f1e5350e2cec4064b0ed7d86fbed0f0f623946c27 iniherit-0.3.9.tar.gz"
|