diff options
author | Roberto Oliveira <robertoguimaraes8@gmail.com> | 2017-10-31 18:18:58 +0000 |
---|---|---|
committer | Roberto Oliveira <robertoguimaraes8@gmail.com> | 2017-10-31 18:19:00 +0000 |
commit | 41bde66c32b9e4716d3eecb2504c117c4d06524b (patch) | |
tree | cfc63889f79ef3ce4d590338b4678fa1c88160f5 | |
parent | 4fda1a88cbf7b40b851c4e954045828a8e566ae9 (diff) | |
download | aports-41bde66c32b9e4716d3eecb2504c117c4d06524b.tar.bz2 aports-41bde66c32b9e4716d3eecb2504c117c4d06524b.tar.xz |
testing/py-ansi2html: add missing dependencies
ansi2html python script requires py-setuptools and py-six
to run.
-rw-r--r-- | testing/py-ansi2html/APKBUILD | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/testing/py-ansi2html/APKBUILD b/testing/py-ansi2html/APKBUILD index a7eb8914db..262cb1153b 100644 --- a/testing/py-ansi2html/APKBUILD +++ b/testing/py-ansi2html/APKBUILD @@ -3,14 +3,14 @@ pkgname=py-ansi2html _pkgname=ansi2html pkgver=1.1.1 -pkgrel=0 +pkgrel=1 pkgdesc="Convert text with ANSI color codes to HTML" url="http://github.com/ralphbean/ansi2html/" arch="noarch" license="GPL3+" -depends="python2" +depends="python2 py-setuptools py-six" depends_dev="" -makedepends="python2-dev py-setuptools" +makedepends="python2-dev" install="" subpackages="" source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz" @@ -27,6 +27,4 @@ package() { python2 setup.py install --prefix=/usr --root="$pkgdir" || return 1 } -md5sums="39c0454667def0f7e22d91d1001d8fc4 ansi2html-1.1.1.tar.gz" -sha256sums="5c8a482e92fd49005c083d5ed5aa946d424a71eda60be27fda005bbb5ed8c53f ansi2html-1.1.1.tar.gz" sha512sums="5f08e6e3e89797f23759da7aac8cbd17e86ffcac37af8db8c345423c69744d88a1517cb0f17dc9c366b509b972484d25877cce8c7466a7a463eea24af17133de ansi2html-1.1.1.tar.gz" |