mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-02 02:52:46 +02:00
52 lines
1.4 KiB
Plaintext
52 lines
1.4 KiB
Plaintext
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
pkgname=py-voluptuous
|
|
_pkgname=voluptuous
|
|
pkgver=0.9.3
|
|
pkgrel=0
|
|
pkgdesc="A Python data validation library"
|
|
url="https://github.com/alecthomas/voluptuous"
|
|
arch="noarch"
|
|
license="MIT"
|
|
makedepends="python2-dev python3-dev py-setuptools"
|
|
subpackages="py2-${pkgname#py-}:_py2 py3-${pkgname#py-}:_py3"
|
|
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 || return 1
|
|
python3 setup.py build || return 1
|
|
}
|
|
|
|
package() {
|
|
mkdir -p "$pkgdir"
|
|
}
|
|
|
|
_py2() {
|
|
replaces="$pkgname"
|
|
_py python2
|
|
}
|
|
|
|
_py3() {
|
|
_py python3
|
|
}
|
|
|
|
_py() {
|
|
local python="$1"
|
|
pkgdesc="$pkgdesc (for $python)"
|
|
depends="$depends $python"
|
|
install_if="$pkgname=$pkgver-r$pkgrel $python"
|
|
|
|
cd "$builddir"
|
|
$python setup.py install --prefix=/usr --root="$subpkgdir"
|
|
# fix permissions
|
|
chmod a+r -R \
|
|
"$subpkgdir"/usr/lib/python*/site-packages/voluptuous-${pkgver}-py*.egg-info \
|
|
|| return 1
|
|
}
|
|
|
|
md5sums="3dfccea158f4d48c1b7ad23d48eabb6e voluptuous-0.9.3.tar.gz"
|
|
sha256sums="ed5a11fda273754caabb6becd5fe172ee2621cd2c8ff8279433173bb7b0ec568 voluptuous-0.9.3.tar.gz"
|
|
sha512sums="1c82f9fdca1751fb3e5fa1a0c956e40e3c5ba76623a97f38dee7511c4dac430432f8f0469e1b08d6057056905643f98cc5b19c040386eb5c897dec1940c4eb45 voluptuous-0.9.3.tar.gz"
|