summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2023-12-30 19:31:03 +0100
committerMichał Górny <mgorny@gentoo.org>2023-12-30 19:31:03 +0100
commitfe33ea75337a9b485d086e4562c60a5a172226c1 (patch)
tree4ffc57deacd49754def72c7f897eaaf34414512e /dev-python/pylint-venv
parentdev-python/pykka: Remove old (diff)
downloadgentoo-fe33ea75337a9b485d086e4562c60a5a172226c1.tar.gz
gentoo-fe33ea75337a9b485d086e4562c60a5a172226c1.tar.bz2
gentoo-fe33ea75337a9b485d086e4562c60a5a172226c1.zip
dev-python/pylint-venv: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/pylint-venv')
-rw-r--r--dev-python/pylint-venv/Manifest1
-rw-r--r--dev-python/pylint-venv/pylint-venv-3.0.2.ebuild41
2 files changed, 0 insertions, 42 deletions
diff --git a/dev-python/pylint-venv/Manifest b/dev-python/pylint-venv/Manifest
index 21e85658ab37..b07f4f95033c 100644
--- a/dev-python/pylint-venv/Manifest
+++ b/dev-python/pylint-venv/Manifest
@@ -1,2 +1 @@
-DIST pylint-venv-3.0.2.gh.tar.gz 15046 BLAKE2B 3c07e00739541c4b9b7c28c9b6cf91e8dee27885adcac8ec88b347f6c580ee0a0c905271eb5b5256ccf0ea975604bf98560ce271a27cbfd2d5790d1143ba6af4 SHA512 716491ffbb5e6642cd61cee62c720a594d85b4cf44feb2d53d3e120dbdea813234776a95341ac10acbdd64354cc3875659f1d3bbc5f45a87ac5232e1e7f89473
DIST pylint-venv-3.0.3.gh.tar.gz 15432 BLAKE2B 2a0315967aa7ac9628a7633360249d3bf5904d2e9939fe1c962ad7066694fd5b073df71e89f0ff4a6c278c3ccf6b41cd70c0b2928b58bbaa19a7910f18f7b697 SHA512 83632d7063f8e14bcf9213a059e8e6e20222518e5cc3d19a7cc3761e11ece2aaea9b2e648f0cacdb37e6995fd85371920ed8bcc7a28545c571d12da8e8b3d795
diff --git a/dev-python/pylint-venv/pylint-venv-3.0.2.ebuild b/dev-python/pylint-venv/pylint-venv-3.0.2.ebuild
deleted file mode 100644
index 02d3f783d513..000000000000
--- a/dev-python/pylint-venv/pylint-venv-3.0.2.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=poetry
-PYTHON_COMPAT=( python3_{10..11} )
-
-inherit distutils-r1
-
-DESCRIPTION="Init-hook to use the same Pylint with different virtual environments"
-HOMEPAGE="
- https://pypi.org/project/pylint-venv/
- https://github.com/jgosmann/pylint-venv/
-"
-SRC_URI="
- https://github.com/jgosmann/pylint-venv/archive/v${PV}.tar.gz
- -> ${P}.gh.tar.gz
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- >=dev-python/pylint-2.14.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
- test? (
- >=dev-python/pylint-2.14.0[${PYTHON_USEDEP}]
- )
-"
-
-python_test() {
- # we need to set PYTHONPATH explicitly since the test runs installed
- # pylint (i.e. starts outside the test venv)
- local -x PYTHONPATH=${S}:${PYTHONPATH}
- bash test/test.sh || die "Test failed with ${EPYTHON}"
-}