diff options
author | Roberto Oliveira <robertoguimaraes8@gmail.com> | 2018-04-13 21:22:53 +0000 |
---|---|---|
committer | Roberto Oliveira <robertoguimaraes8@gmail.com> | 2018-04-13 21:32:27 +0000 |
commit | 0fb852b2055834920232ee0dff7bc4e198af543f (patch) | |
tree | 73164916004250c916aa91712e71135114afe13e | |
parent | 74968f90983e424fe36590f3034c8247e1b7e446 (diff) | |
download | aports-0fb852b2055834920232ee0dff7bc4e198af543f.tar.bz2 aports-0fb852b2055834920232ee0dff7bc4e198af543f.tar.xz |
testing/py-defusedxml: new aport
XML bomb protection for Python stdlib modules
-rw-r--r-- | testing/py-defusedxml/APKBUILD | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/testing/py-defusedxml/APKBUILD b/testing/py-defusedxml/APKBUILD new file mode 100644 index 0000000000..5d819d0eef --- /dev/null +++ b/testing/py-defusedxml/APKBUILD @@ -0,0 +1,53 @@ +# Contributor: Roberto Oliveira <robertoguimaraes8@gmail.com> +# Maintainer: Roberto Oliveira <robertoguimaraes8@gmail.com> +pkgname=py-defusedxml +_pkgname=defusedxml +pkgver=0.5.0 +pkgrel=0 +pkgdesc="XML bomb protection for Python stdlib modules" +url="https://github.com/tiran/defusedxml" +arch="noarch" +license="GPL" +makedepends="python2-dev python3-dev py-setuptools" +subpackages="py2-${pkgname#py-}:_py2 py3-${pkgname#py-}:_py3" +source="$pkgname-$pkgver.tar.gz::https://github.com/tiran/$_pkgname/archive/v$pkgver.tar.gz" +builddir="$srcdir/$_pkgname-$pkgver" + +build() { + cd "$builddir" + python2 setup.py build + python3 setup.py build +} + +check() { + cd "$builddir" + python2 setup.py test + python3 setup.py test +} + +package() { + mkdir -p "$pkgdir" +} + +_py2() { + replaces="$pkgname" + depends="${depends//py-/py2-}" + _py python2 +} + +_py3() { + depends="${depends//py-/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" +} + +sha512sums="38685b8de49b61cf0e4b2c69a6d6b48a14beb6f68a0445cd2de557f3530bef2619a2c02b7c290db8a0530b01a74f81b1aac460ebe8cf92df0fb1e825307781d2 py-defusedxml-0.5.0.tar.gz" |