From 08a633919552ff4f797ab2990a0bfdd7bb2b5cac Mon Sep 17 00:00:00 2001 From: prspkt Date: Thu, 25 Jul 2019 01:39:15 +0300 Subject: [PATCH] community/py-text-unidecode: drop python2 --- community/py-text-unidecode/APKBUILD | 57 --------------------------- community/py3-text-unidecode/APKBUILD | 31 +++++++++++++++ 2 files changed, 31 insertions(+), 57 deletions(-) delete mode 100644 community/py-text-unidecode/APKBUILD create mode 100644 community/py3-text-unidecode/APKBUILD diff --git a/community/py-text-unidecode/APKBUILD b/community/py-text-unidecode/APKBUILD deleted file mode 100644 index 4b8aa17f461..00000000000 --- a/community/py-text-unidecode/APKBUILD +++ /dev/null @@ -1,57 +0,0 @@ -# Maintainer: Drew DeVault -pkgname=py-text-unidecode -_pkgname=text-unidecode -pkgver=1.2 -pkgrel=1 -pkgdesc="The most basic Text::Unidecode port" -url=https://github.com/kmike/text-unidecode/ -arch=noarch -license="Artistic-1.0-cl8" -subpackages="py2-${pkgname#py-}:_py2 py3-${pkgname#py-}:_py3" -makedepends="py-setuptools python2-dev python3-dev" -checkdepends="pytest" -source="$pkgname-$pkgver.tar.gz::https://github.com/kmike/$_pkgname/archive/$pkgver.tar.gz" -builddir=$srcdir/$_pkgname-$pkgver - -prepare() { - cd "$builddir" - cp -r "$builddir" "$builddir"-py3 -} - -build() { - cd "$builddir" - python2 setup.py build - cd "$builddir"-py3 - python3 setup.py build -} - -check() { - cd "$builddir" - PYTHONPATH=src pytest-2 - cd "$builddir"-py3 - PYTHONPATH=src pytest-3 -} - -package() { - mkdir -p "$pkgdir" -} - -_py2() { - cd "$builddir" - _py python2 -} - -_py3() { - cd "$builddir"-py3 - _py python3 -} - -_py() { - python="$1" - pkgdesc="$pkgdesc (for $python)" - depends="$depends $python" - install_if="$pkgname=$pkgver-r$pkgrel $python" - $python setup.py install --prefix=/usr --root="$subpkgdir" -} - -sha512sums="ce4bd80f8343ebca031a39f1fbe802cd86e3535a67d5e16f8a7f32442ab334e4e5e4d1cf74e8a55ef265765c879bfde87beffd31ff988efff1947f7c883694f9 py-text-unidecode-1.2.tar.gz" diff --git a/community/py3-text-unidecode/APKBUILD b/community/py3-text-unidecode/APKBUILD new file mode 100644 index 00000000000..a2182af2639 --- /dev/null +++ b/community/py3-text-unidecode/APKBUILD @@ -0,0 +1,31 @@ +# Maintainer: Drew DeVault +pkgname=py3-text-unidecode +_pkgname=text-unidecode +pkgver=1.2 +pkgrel=2 +pkgdesc="The most basic Text::Unidecode port" +url=https://github.com/kmike/text-unidecode/ +arch=noarch +license="Artistic-1.0-cl8" +depends="python3" +makedepends="py3-setuptools" +checkdepends="pytest" +source="$pkgname-$pkgver.tar.gz::https://github.com/kmike/$_pkgname/archive/$pkgver.tar.gz" +builddir=$srcdir/$_pkgname-$pkgver + +replaces=py-text-unidecode # Backwards compatibility +provides=py-text-unidecode=$pkgver-r$pkgrel # Backwards compatibility + +build() { + python3 setup.py build +} + +check() { + PYTHONPATH=src pytest-3 +} + +package() { + python3 setup.py install --prefix=/usr --root="$pkgdir" +} + +sha512sums="ce4bd80f8343ebca031a39f1fbe802cd86e3535a67d5e16f8a7f32442ab334e4e5e4d1cf74e8a55ef265765c879bfde87beffd31ff988efff1947f7c883694f9 py3-text-unidecode-1.2.tar.gz"