From 334f910df0a0d434061c7004cba80f27206bb355 Mon Sep 17 00:00:00 2001 From: Leo Date: Sun, 2 Jun 2019 02:27:11 -0300 Subject: [PATCH] testing/py3-pylev: new aport Pure Python3 Levenshtein implementation https://github.com/toastdriven/pylev Closes GH-8381 --- testing/py3-pylev/APKBUILD | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 testing/py3-pylev/APKBUILD diff --git a/testing/py3-pylev/APKBUILD b/testing/py3-pylev/APKBUILD new file mode 100644 index 00000000000..ae4a93da1c1 --- /dev/null +++ b/testing/py3-pylev/APKBUILD @@ -0,0 +1,25 @@ +# Contributor: Leo +# Maintainer: Leo +pkgname=py3-pylev +_realname=pylev +pkgver=1.3.0 +pkgrel=0 +pkgdesc="Pure Python3 Levenshtein implementation" +options="!check" # No tests on pypi, no tags on github +url="https://github.com/toastdriven/pylev" +arch="noarch" +license="BSD-3-Clause" +depends="python3" +makedepends="py3-setuptools" +source="https://files.pythonhosted.org/packages/source/${_realname:0:1}/$_realname/$_realname-$pkgver.tar.gz" +builddir="$srcdir/$_realname-$pkgver" + +build() { + python3 setup.py build +} + +package() { + python3 setup.py install --prefix=/usr --root="$pkgdir" +} + +sha512sums="096831d55dda5606544bce03c18542b0331c38feb538dd37c67cc2e9b2111d381632669ee2dcd3d7dc9a87d284892371ded1c322d0edc61f529152c282556f4c pylev-1.3.0.tar.gz"