diff options
-rw-r--r-- | testing/lshell/APKBUILD | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/testing/lshell/APKBUILD b/testing/lshell/APKBUILD index 69a17d02eb..5b64c47cf7 100644 --- a/testing/lshell/APKBUILD +++ b/testing/lshell/APKBUILD @@ -2,22 +2,22 @@ # Maintainer: Fabian Affolter <fabian@affolter-engineering.ch> pkgname=lshell pkgver=0.9.18 -pkgrel=3 -pkgdesc="Python-based limited Shell" +pkgrel=4 +pkgdesc="Python3-based limited Shell" url="https://github.com/ghantoos/lshell" arch="noarch" license="GPL-3.0-or-later" -depends="python2" -makedepends="py-setuptools" +depends="python3" +makedepends="py3-setuptools" subpackages="$pkgname-doc" -source="$pkgname-$pkgver.tar.gz::https://github.com/ghantoos/$pkgname/archive/$pkgver.tar.gz" +source="$pkgname-$pkgver.tar.gz::https://github.com/ghantoos/lshell/archive/$pkgver.tar.gz" build() { - python2 setup.py build + python3 setup.py build } package() { - python2 setup.py install --prefix=/usr --root="$pkgdir" + python3 setup.py install --prefix=/usr --root="$pkgdir" } sha512sums="546e55fd04d9913adbf6ff181d365f0aff8c94131229d4be994b29e94b925943fb32f99dc145172938535565f69405d0edad5bd2d9b7125f8770d0f0c591fece lshell-0.9.18.tar.gz" |