diff options
author | Fabian Affolter <fabian@affolter-engineering.ch> | 2013-09-10 08:52:54 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2013-10-02 09:02:52 +0000 |
commit | 8e7ae4f535ac0ee77daa300389ec7b8c7405d844 (patch) | |
tree | cb6687066b1dd09c2658d6756d9e98886f5b9052 | |
parent | 4b15a1da18708af2b1653c315f0a1717e5106bb6 (diff) | |
download | aports-8e7ae4f535ac0ee77daa300389ec7b8c7405d844.tar.bz2 aports-8e7ae4f535ac0ee77daa300389ec7b8c7405d844.tar.xz |
testing/py-sphinxcontrib-fulltoc: new aport
Sphinx fulltoc extension
https://pypi.python.org/pypi/sphinxcontrib-fulltoc
-rw-r--r-- | testing/py-sphinxcontrib-fulltoc/APKBUILD | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/testing/py-sphinxcontrib-fulltoc/APKBUILD b/testing/py-sphinxcontrib-fulltoc/APKBUILD new file mode 100644 index 0000000000..34b6b427c1 --- /dev/null +++ b/testing/py-sphinxcontrib-fulltoc/APKBUILD @@ -0,0 +1,41 @@ +# Contributor: Fabian Affolter <fabian@affolter-engineering.ch> +# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch> +pkgname=py-sphinxcontrib-fulltoc +_pkgname=sphinxcontrib-fulltoc +pkgver=1.0 +pkgrel=0 +pkgdesc="Sphinx fulltoc extension" +url="https://pypi.python.org/pypi/sphinxcontrib-fulltoc" +arch="noarch" +license="BSD" +depends="python py-sphinx" +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="729a9da6d8cabfc0c4cdf732d2d6e021 sphinxcontrib-fulltoc-1.0.tar.gz" +sha256sums="dcf42cc91f62e923a371be5485872e83298cf6f77cee2c7840e4bcea51c55b9d sphinxcontrib-fulltoc-1.0.tar.gz" +sha512sums="995448efa409490856457664f5961bb97553c29e3092991c3afdcdd98e413e72a12513213571b99f656b2201c9196a82df222ca9731827572d3e142daa32a4c8 sphinxcontrib-fulltoc-1.0.tar.gz" |