diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-08-28 23:40:55 -0300 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-08-29 02:17:07 -0300 |
commit | 220a5e824dc44dcd5f68fa191c2ae78b3f5cce19 (patch) | |
tree | 93aceb80519b41d298ff907182bb19f8b708fd2e /community/py3-soupsieve | |
parent | 2c0858f3ef941a9d37004dd2805a5f417f41bf76 (diff) | |
download | aports-220a5e824dc44dcd5f68fa191c2ae78b3f5cce19.tar.bz2 aports-220a5e824dc44dcd5f68fa191c2ae78b3f5cce19.tar.xz |
community/py3-soupsieve: move from testing
Diffstat (limited to 'community/py3-soupsieve')
-rw-r--r-- | community/py3-soupsieve/APKBUILD | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/community/py3-soupsieve/APKBUILD b/community/py3-soupsieve/APKBUILD new file mode 100644 index 0000000000..d1a7502f4c --- /dev/null +++ b/community/py3-soupsieve/APKBUILD @@ -0,0 +1,24 @@ +# Contributor: Leo <thinkabit.ukim@gmail.com> +# Maintainer: Leo <thinkabit.ukim@gmail.com> +pkgname=py3-soupsieve +pkgver=1.9.3 +pkgrel=0 +pkgdesc="A modern CSS selector implementation for Beautiful Soup" +options="!check" # Circular dependency on py3-beautifulsoup4 +url="https://github.com/facelessuser/soupsieve" +arch="noarch" +license="MIT" +depends="python3" +makedepends="py3-setuptools" +source="$pkgname-$pkgver.tar.gz::https://github.com/facelessuser/soupsieve/archive/$pkgver.tar.gz" +builddir="$srcdir/soupsieve-$pkgver" + +build() { + python3 setup.py build +} + +package() { + python3 setup.py install --prefix=/usr --root="$pkgdir" +} + +sha512sums="e8db91905aae0532482b6872b47cd600214ecd1a54ec73d7068bf7177e3bd33182e9f6585a5b43350aab8f3bcc412c739ef8eb5b7778e9c44cf53f73254ec06a py3-soupsieve-1.9.3.tar.gz" |