diff options
author | prspkt <prspkt@protonmail.com> | 2019-06-06 17:10:59 +0300 |
---|---|---|
committer | prspkt <prspkt@protonmail.com> | 2019-06-07 00:09:02 +0300 |
commit | e0d7646c74a160df977d9695a23b11cd3d8db34e (patch) | |
tree | 3a01509ac1f1dd00f1ab423284f71cfe25cd6bab /testing/py3-sphinxcontrib-nwdiag/APKBUILD | |
parent | 7ef0d9b9d64bab1a73608cfb209b9097df17ee35 (diff) | |
download | aports-e0d7646c74a160df977d9695a23b11cd3d8db34e.tar.bz2 aports-e0d7646c74a160df977d9695a23b11cd3d8db34e.tar.xz |
testing/py-sphinxcontrib-nwdiag: drop python2
Diffstat (limited to 'testing/py3-sphinxcontrib-nwdiag/APKBUILD')
-rw-r--r-- | testing/py3-sphinxcontrib-nwdiag/APKBUILD | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/testing/py3-sphinxcontrib-nwdiag/APKBUILD b/testing/py3-sphinxcontrib-nwdiag/APKBUILD new file mode 100644 index 0000000000..4154c5fd69 --- /dev/null +++ b/testing/py3-sphinxcontrib-nwdiag/APKBUILD @@ -0,0 +1,43 @@ +# Contributor: Fabian Affolter <fabian@affolter-engineering.ch> +# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch> +pkgname=py3-sphinxcontrib-nwdiag +_pkgname=sphinxcontrib-nwdiag +pkgver=0.9.5 +pkgrel=2 +pkgdesc="Sphinx "nwdiag" extension" +url="https://pypi.python.org/pypi/sphinxcontrib-nwdiag" +arch="noarch" +license="BSD" +depends="py3-nwdiag py3-sphinx" +makedepends="py3-setuptools" +source="https://files.pythonhosted.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 +} + +replaces="py-sphinxcontrib-nwdiag" # for backwards compatibility +provides="py-sphinxcontrib-nwdiag=$pkgver-r$pkgrel" # for backwards compatibility + +build() { + cd "$builddir" + python2 setup.py build || return 1 + python3 setup.py build || return 1 +} + +package() { + cd "$builddir" + python3 setup.py install --prefix=/usr --root="$pkgdir" +} + + +md5sums="7b5d2db632f446b56601eed8f2bd2025 sphinxcontrib-nwdiag-0.9.5.tar.gz" +sha256sums="5b0ce78c1f7ccbbf33ca624574b117fa5334c8c17f98306a1e1b30e79db93491 sphinxcontrib-nwdiag-0.9.5.tar.gz" +sha512sums="2c570d4614aa362c43b2f0bcb901f6bca18f91451f50c901805f85f61184e1b531ea5ee2a82b5bca24e34f0a71470b9bdb9057dcaa82cc1c11eb41306561c5c1 sphinxcontrib-nwdiag-0.9.5.tar.gz" |