summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoridealseal <realidealseal@protonmail.com>2024-12-26 22:25:48 +0100
committerJoonas Niilola <juippis@gentoo.org>2025-01-21 16:34:32 +0200
commitf5613665d96d1945be235e16180003e6f02ec102 (patch)
tree8ac8b80ca92ecb95cfc832f9997829c7d70d3102 /app-admin/ansible-lint
parentapp-admin/ansible-lint: Bump to 24.12.2 (diff)
downloadgentoo-f5613665d96d1945be235e16180003e6f02ec102.tar.gz
gentoo-f5613665d96d1945be235e16180003e6f02ec102.tar.bz2
gentoo-f5613665d96d1945be235e16180003e6f02ec102.zip
app-admin/ansible-lint: drop 24.12.1
Signed-off-by: idealseal <realidealseal@protonmail.com> Closes: https://github.com/gentoo/gentoo/pull/39852 Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'app-admin/ansible-lint')
-rw-r--r--app-admin/ansible-lint/Manifest1
-rw-r--r--app-admin/ansible-lint/ansible-lint-24.12.1.ebuild61
2 files changed, 0 insertions, 62 deletions
diff --git a/app-admin/ansible-lint/Manifest b/app-admin/ansible-lint/Manifest
index 69e4cd904d4b..2e7029a8cbbe 100644
--- a/app-admin/ansible-lint/Manifest
+++ b/app-admin/ansible-lint/Manifest
@@ -1,3 +1,2 @@
-DIST ansible_lint-24.12.1.tar.gz 549529 BLAKE2B ccc72d7cfe54f7c9507a5da0abafb6ff5788fcc9a38cb9d47b21fc66e4100b64970d17867c61a774cedaf481e6866d5061efe0091156a2bf7a52970dbd773eed SHA512 57620b706a72d1ac77e12d205d39a5f66fd87502fee54feb3193fe40349940de4791676389d9d1b4f4df3bce693abb51f6a119b4b675cf0fa24e32fffd7f8a95
DIST ansible_lint-24.12.2.tar.gz 548046 BLAKE2B 07a1907b4d542dafd27681229206de2b6f8a6ed1c106d2a1986b3e6d27641cdeec8ab77e541357b8b578beb0ab7b48cd96ecb2b2d3b283fae3099429d553cb02 SHA512 0050f5c14165dc4114846096518d500fe2c400f05a6a943d36331042b02f8ae038ede8924a6a036e846eafa03c6bde8e24699b41cef85bcf6d770289f71fc162
DIST ansible_lint-24.9.2.tar.gz 536244 BLAKE2B db7195d569698a2c5d43b0b0293dc2fa97cf3f5de8807b95e43f991b12432cdaedaa0b4a7165cd7af5a67142062eaa981ccb642888153d97296ae4125fe4019d SHA512 ae570ae86e31b83ab89e1b4c7f0996165ecb40299a8374fd5baac4ff955aa17f0a05542a7d14683e43e680fc6e55acb862589fa48b86b82a11dc31bf6a0d6aab
diff --git a/app-admin/ansible-lint/ansible-lint-24.12.1.ebuild b/app-admin/ansible-lint/ansible-lint-24.12.1.ebuild
deleted file mode 100644
index 8d50f543c782..000000000000
--- a/app-admin/ansible-lint/ansible-lint-24.12.1.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517="setuptools"
-PYTHON_COMPAT=( python3_{11..13} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Checks ansible playbooks for practices and behaviour that can be improved"
-HOMEPAGE="https://github.com/ansible/ansible-lint"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv"
-
-# Upstream has stated explicitly that all tests require Internet access
-PROPERTIES="test_network"
-RESTRICT="test"
-
-RDEPEND="
- >=app-admin/ansible-core-2.18.1[${PYTHON_USEDEP}]
- >=dev-python/ansible-compat-24.10.0[${PYTHON_USEDEP}]
- >=dev-python/black-24.8.0[${PYTHON_USEDEP}]
- >=dev-python/filelock-3.14.0[${PYTHON_USEDEP}]
- dev-python/importlib-metadata[${PYTHON_USEDEP}]
- >=dev-python/jsonschema-4.17.0[${PYTHON_USEDEP}]
- >=dev-python/packaging-24.0[${PYTHON_USEDEP}]
- >=dev-python/pathspec-0.10.3[${PYTHON_USEDEP}]
- >=dev-python/pyyaml-6.0.1-r1[${PYTHON_USEDEP}]
- >=dev-python/ruamel-yaml-0.18.6[${PYTHON_USEDEP}]
- >=dev-python/wcmatch-8.5.2[${PYTHON_USEDEP}]
- >=dev-util/yamllint-1.35.1[${PYTHON_USEDEP}]
- dev-vcs/git"
-BDEPEND="
- >=dev-python/setuptools-scm-7.0.5[${PYTHON_USEDEP}]
- test? (
- dev-python/mypy[${PYTHON_USEDEP}]
- dev-python/jmespath[${PYTHON_USEDEP}]
- dev-python/pytest-mock[${PYTHON_USEDEP}]
- >=dev-python/pytest-plus-0.6[${PYTHON_USEDEP}]
- >=dev-python/pytest-xdist-2.5.0[${PYTHON_USEDEP}]
- )"
-
-PATCHES=(
- "${FILESDIR}"/${PN}-24.7.0-warnings.patch
-)
-
-# test_call_from_outside_venv doesn't play nicely with the sandbox
-# irrespective of whether Internet access is allowed or not
-EPYTEST_DESELECT=(
- test/test_main.py::test_call_from_outside_venv
-)
-
-distutils_enable_tests pytest
-
-# Test suite fails to start without this
-python_test() {
- epytest test
-}