From 7ff3e291e40837cbf59a3ef684ffd7401089ebf0 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 16 Sep 2013 08:37:19 +0000 Subject: testing/py-stencil: new aport A Python module to creates files and directories from templates https://github.com/trilan/stencil --- testing/py-stencil/APKBUILD | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 testing/py-stencil/APKBUILD (limited to 'testing/py-stencil') diff --git a/testing/py-stencil/APKBUILD b/testing/py-stencil/APKBUILD new file mode 100644 index 0000000000..88a43dc545 --- /dev/null +++ b/testing/py-stencil/APKBUILD @@ -0,0 +1,41 @@ +# Contributor: Fabian Affolter +# Maintainer: Fabian Affolter +pkgname=py-stencil +_pkgname=Stencil +pkgver=0.2.1 +pkgrel=0 +pkgdesc="A Python module to creates files and directories from templates" +url="https://github.com/trilan/stencil" +arch="noarch" +license="BSD" +depends="python" +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="a4146fde69df3ee95b4d9c7a596f3fd3 Stencil-0.2.1.tar.gz" +sha256sums="c68196d1f0b27a2981d98c61d28de5777c766f10356207dd8f068e2469c2c2ac Stencil-0.2.1.tar.gz" +sha512sums="18d42d8b30141a55074ea8c6dcd0d07bcdd65f3effe7eef2fa525b6580e3cef30a28ee22a61c94432316a898ed2fe6408c12279be9e8c82108ea220bf79b549c Stencil-0.2.1.tar.gz" -- cgit v1.2.3