diff options
author | Leo <thinkabit.ukim@gmail.com> | 2020-03-16 02:48:47 -0300 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2020-04-02 01:43:47 +0000 |
commit | aad2afe051973fa7fd6f4f9b83703c09445ff17c (patch) | |
tree | 4266144bb0c3984f784b0dd910d33fa98a72c353 /community/py3-itsdangerous | |
parent | aad758e364da9a69d0d519b619cc6eb2c7d150f8 (diff) | |
download | aports-aad2afe051973fa7fd6f4f9b83703c09445ff17c.tar.bz2 aports-aad2afe051973fa7fd6f4f9b83703c09445ff17c.tar.xz |
community/py3-*: move from main/ and modernize
Diffstat (limited to 'community/py3-itsdangerous')
-rw-r--r-- | community/py3-itsdangerous/APKBUILD | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/community/py3-itsdangerous/APKBUILD b/community/py3-itsdangerous/APKBUILD new file mode 100644 index 0000000000..316e26fd22 --- /dev/null +++ b/community/py3-itsdangerous/APKBUILD @@ -0,0 +1,27 @@ +# Contributor: Fabian Affolter <fabian@affolter-engineering.ch> +# Maintainer: +pkgname=py3-itsdangerous +_pkgname=itsdangerous +pkgver=0.24 +pkgrel=6 +pkgdesc="Python3 helper to pass trusted data to untrusted environments" +url="https://github.com/mitsuhiko/itsdangerous" +arch="noarch" +license="BSD-3-Clause" +depends="python3" +makedepends="py3-setuptools" +source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz" +builddir="$srcdir/$_pkgname-$pkgver" + +replaces="py-itsdangerous" # Backwards compatibility +provides="py-itsdangerous=$pkgver-r$pkgrel" # Backwards compatibility + +build() { + python3 setup.py build +} + +package() { + python3 setup.py install --prefix=/usr --root="$pkgdir" +} + +sha512sums="2863b6e5fda178db59bd214c6d24d04422c1021bb41bf11598aba1cbc43053aff3bb1e0539940b5769de04b68c03e8bd01d728dcbfc4bd0ba05867688574a297 itsdangerous-0.24.tar.gz" |