mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 13:27:09 +02:00
53 lines
1.2 KiB
Plaintext
53 lines
1.2 KiB
Plaintext
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
pkgname=py-asn1-modules
|
|
_pkgname=pyasn1-modules
|
|
pkgver=0.2.1
|
|
pkgrel=0
|
|
pkgdesc="A collection of ASN.1-based protocols modules"
|
|
url="https://pypi.python.org/pypi/pyasn1-modules"
|
|
arch="noarch"
|
|
license="BSD"
|
|
depends=""
|
|
makedepends="python2-dev python3-dev py-asn1"
|
|
subpackages="py3-${pkgname/py-/}:_py3 py2-${pkgname/py-/}:_py2"
|
|
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
|
|
builddir="$srcdir"/$_pkgname-$pkgver
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
python2 setup.py build
|
|
python3 setup.py build
|
|
}
|
|
|
|
check() {
|
|
cd "$builddir"
|
|
python2 setup.py test
|
|
python3 setup.py test
|
|
}
|
|
|
|
package() {
|
|
mkdir -p "$pkgdir"
|
|
}
|
|
|
|
_py() {
|
|
local python=$1
|
|
pkgdesc="$pkgdesc - $python"
|
|
install_if="$pkgname=$pkgver-r$pkgrel $python"
|
|
cd "$builddir"
|
|
$python setup.py install --prefix=/usr --root="$subpkgdir"
|
|
}
|
|
|
|
_py2() {
|
|
_py python2
|
|
depends="py2-openssl py2-asn1"
|
|
replaces="$pkgname"
|
|
}
|
|
|
|
_py3() {
|
|
_py python3
|
|
depends="py3-openssl py3-asn1"
|
|
}
|
|
|
|
|
|
sha512sums="2d8b6bee59434fee41747625236c1d7eb5081a1cef66aa0a0e9e75869c3641a418d21544edafe65f1808ad0dacd9cf1047dd036ff5ce668bb3bf1f6e662e4a5e pyasn1-modules-0.2.1.tar.gz"
|