app-admin/ansible-lint: Version bump to 4.0.1
authorTony Vroon <chainsaw@gentoo.org>
Thu, 24 Jan 2019 12:59:23 +0000 (12:59 +0000)
committerTony Vroon <chainsaw@gentoo.org>
Thu, 24 Jan 2019 12:59:36 +0000 (12:59 +0000)
Version bump as requested by "Lik".
X86 keyword lost over dev-python/setuptools_scm_git_archive
dependency.

Closes: https://bugs.gentoo.org/675860
Signed-Off-By: Tony Vroon <chainsaw@gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

app-admin/ansible-lint/Manifest
app-admin/ansible-lint/ansible-lint-4.0.1.ebuild [new file with mode: 0644]

index fe02f30c4c875d6e93f74e90c3afa413c5bfd185..55d1c603f5e92c85ec593d1269985a2ea63628d7 100644 (file)
@@ -1 +1,2 @@
 DIST ansible-lint-3.4.23.tar.gz 36922 BLAKE2B a012155d9608ce0517f152837cc7f5f8330848f3e6b6b8b62b1985c9aae5260d3b8c2e9016f945a30b8433387549a9421970d9f56fc32ff9aac25a71dc150285 SHA512 4b2357327319f2cc2c0863ed74af3c799afa97f6e8e1885f9c621a9b0b4ed4b33c731f4a0e8557bf7d03f4e1680a06e60b8602b48fbb55c55325f1dda31a51e7
+DIST ansible-lint-4.0.1.tar.gz 2909257 BLAKE2B c030b6fc58eaeeec42e40dd5bc46e5181916433b905bfc4a82382bf6bba8536d2639172aab0e2928ce1dd5489f322e19ab1c0ea5abb637562616addb9733e81a SHA512 a2f3bd44287a2c72f79c5fbb4c02446484cf764d386d403694325bce172e2b195dd4812e0f89e5f4e1930db124e2b383e4f067bed5d4858c354c0ae0b3fb03e4
diff --git a/app-admin/ansible-lint/ansible-lint-4.0.1.ebuild b/app-admin/ansible-lint/ansible-lint-4.0.1.ebuild
new file mode 100644 (file)
index 0000000..6b0d14d
--- /dev/null
@@ -0,0 +1,36 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 python3_6 )
+
+inherit distutils-r1
+
+DESCRIPTION="Checks ansible playbooks for practices and behaviour that can be improved"
+HOMEPAGE="https://github.com/ansible/ansible-lint"
+SRC_URI="https://github.com/ansible/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+
+CDEPEND="app-admin/ansible[${PYTHON_USEDEP}]
+               dev-python/pyyaml[${PYTHON_USEDEP}]
+               dev-python/six[${PYTHON_USEDEP}]"
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+               dev-python/setuptools-git[${PYTHON_USEDEP}]
+               dev-python/setuptools_scm[${PYTHON_USEDEP}]
+               dev-python/setuptools_scm_git_archive[${PYTHON_USEDEP}]
+               test? (
+                       dev-python/flake8[${PYTHON_USEDEP}]
+                       dev-python/nose[${PYTHON_USEDEP}]
+                       dev-python/wheel[${PYTHON_USEDEP}]
+               )
+               ${CDEPEND}"
+RDEPEND="${CDEPEND}"
+
+python_test() {
+       nosetests || die
+}