blob: 2c48f033f7309c6a7bc17841280ebb6259ee8cd5 (
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
47
48
49
50
51
52
53
54
|
# Contributor: Keith Maxwell <keith.maxwell@gmail.com>
# Maintainer: Keith Maxwell <keith.maxwell@gmail.com>
pkgname=py-entrypoints
_pyname=entrypoints
pkgver=0.3
pkgrel=0
pkgdesc="Discover and load entry points from installed packages."
url="https://github.com/takluyver/entrypoints"
arch="noarch"
license="MIT"
checkdepends="py3-pytest py2-pytest py2-configparser"
source="https://files.pythonhosted.org/packages/source/e/${_pyname}/${_pyname}-${pkgver}.tar.gz"
subpackages="py2-${pkgname#py-}:_py2 py3-${pkgname#py-}:_py3"
builddir="$srcdir/$_pyname-$pkgver"
prepare() {
default_prepare
cp -R "${builddir}" "${builddir}-py2"
}
build() {
cd "$builddir"
python3 setup.py build
cd "$builddir-py2"
python2 setup.py build
}
check() {
cd "$builddir"
pytest-3
cd "$builddir-py2"
pytest-2
}
package() {
mkdir -p "${pkgdir}"
}
_py3() {
depends="python3"
install_if="$pkgname=$pkgver-r$pkgrel python3"
cd "$builddir"
python3 setup.py install --prefix=/usr --root="$subpkgdir"
}
_py2() {
depends="python2 py2-configparser"
install_if="$pkgname=$pkgver-r$pkgrel python2"
cd "$builddir-py2"
python2 setup.py install --prefix=/usr --root="$subpkgdir"
}
sha512sums="aa1274362d3a4b00266103319ca51aa266605b4999c89a9d0673eb61bfae9e646cb0ec6b86c95544493f6fe048385a2c7641d64adca8f45815546fb1e663c858 entrypoints-0.3.tar.gz"
|