dev-python/bashate: Version bump to 0.6.0
authorNicolas Bock <nicolasbock@gentoo.org>
Thu, 31 Jan 2019 18:02:01 +0000 (11:02 -0700)
committerMatthew Thode <prometheanfire@gentoo.org>
Mon, 11 Feb 2019 20:42:57 +0000 (14:42 -0600)
Package-Manager: Portage-2.3.51, Repoman-2.3.11
Signed-off-by: Nicolas Bock <nicolasbock@gentoo.org>
Signed-off-by: Matthew Thode <prometheanfire@gentoo.org>
dev-python/bashate/Manifest
dev-python/bashate/bashate-0.6.0.ebuild [new file with mode: 0644]

index e0d742a128f700d607493c394020217c4095f098..17847e9b95549b9b45daebdcbae810b03f7ef5d0 100644 (file)
@@ -1 +1,2 @@
 DIST bashate-0.3.1.tar.gz 16016 BLAKE2B 72bcb6ef2c8dda48b40351f37971473b9c2137f3a727a355f1742f20355aee8a3898d4aaf61e0e6538b22adbe3ebd34bb30d67d0fb6b5f3535c9b46c1544ce5d SHA512 dfa3e8f98879169cef445cc9a788b4ed051630330e2270c721e472f080899d6742cd3deb571049ba6b943ada0fc77a70f5a7e4742a54d1ca6d5f075a92a00ffb
+DIST bashate-0.6.0.tar.gz 30980 BLAKE2B 5b210edaa44a0652a03f30a641a072dba1482e1ca3b42c6b7140a52349ddb271f0137373a4d2f364032c22c176d6caf14be2635038df8a4e86585773d17a1f97 SHA512 bb64d8de0143bf2662497b1571ce654f4ceeb7d1dea3f625705b609ab70ed3b4bca6266c4eba7c2e7d99a1520fb9566a4a4daefa34c9c16538537b446c1da255
diff --git a/dev-python/bashate/bashate-0.6.0.ebuild b/dev-python/bashate/bashate-0.6.0.ebuild
new file mode 100644 (file)
index 0000000..3348f8a
--- /dev/null
@@ -0,0 +1,34 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python2_7 python3_{4,5,6,7} )
+DISTUTILS_IN_SOURCE_BUILD=TRUE
+
+# time
+RESTRICT="test"
+
+inherit distutils-r1
+
+DESCRIPTION="A pep8 equivalent for bash scripts"
+HOMEPAGE="https://pypi.org/project/bashate/"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+DEPEND="
+       dev-python/setuptools[${PYTHON_USEDEP}]
+       >=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
+       !~dev-python/pbr-2.1.0
+"
+RDEPEND="
+       >=dev-python/Babel-2.3.4[${PYTHON_USEDEP}]
+       !~dev-pythn/Babel-2.4.0
+"
+
+python_install_all() {
+       distutils-r1_python_install_all
+}