mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-20 23:32:47 +01:00
42 lines
1.2 KiB
Plaintext
42 lines
1.2 KiB
Plaintext
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
pkgname=py-raet
|
|
_pkgname=raet
|
|
pkgver=0.3.3
|
|
pkgrel=0
|
|
pkgdesc="An asynchronous encrypted transaction based protocol"
|
|
url="http://raet.docs.saltstack.com/"
|
|
arch="noarch"
|
|
license="BSD"
|
|
depends="python py-libnacl py-ioflo"
|
|
depends_dev=""
|
|
makedepends="python-dev py-setuptools"
|
|
install=""
|
|
subpackages=""
|
|
source="http://pypi.python.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
|
|
|
|
_builddir="$srcdir"/$_pkgname-$pkgver
|
|
prepare() {
|
|
local i
|
|
cd "$_builddir"
|
|
for i in $source; do
|
|
case $i in
|
|
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
python setup.py build || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
python setup.py install --prefix=/usr --root="$pkgdir" || return 1
|
|
}
|
|
|
|
md5sums="ed8e90dadd23431412adb4ac1cef727f raet-0.3.3.tar.gz"
|
|
sha256sums="e6ec3bdde86153af6a942a878e567f4200386b02a724b0dd604ac57d74d5554a raet-0.3.3.tar.gz"
|
|
sha512sums="4c0a062d5e93802e385a4b2f26d14b2e44f5e9cf29f897dcffb0eb8441c2c65745bbc8dfad1b3e6f693f2b39b63af48941851f70dbce5d731dea96f21784af4d raet-0.3.3.tar.gz"
|