diff options
author | 2023-09-25 20:47:20 +0200 | |
---|---|---|
committer | 2023-09-25 20:47:20 +0200 | |
commit | 5ded5f382f4e274676e57ee75a07599320d39126 (patch) | |
tree | 71193a5f22f9b7fa224d57eed7102e57613bea85 /dev-python/pytest-ordering | |
parent | dev-python/poetry-core: Remove old (diff) | |
download | gentoo-5ded5f382f4e274676e57ee75a07599320d39126.tar.gz gentoo-5ded5f382f4e274676e57ee75a07599320d39126.tar.bz2 gentoo-5ded5f382f4e274676e57ee75a07599320d39126.zip |
dev-python/pytest-ordering: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/pytest-ordering')
-rw-r--r-- | dev-python/pytest-ordering/Manifest | 1 | ||||
-rw-r--r-- | dev-python/pytest-ordering/pytest-ordering-0.6.ebuild | 36 |
2 files changed, 0 insertions, 37 deletions
diff --git a/dev-python/pytest-ordering/Manifest b/dev-python/pytest-ordering/Manifest index ef887d6f8750..70e461ee5ebf 100644 --- a/dev-python/pytest-ordering/Manifest +++ b/dev-python/pytest-ordering/Manifest @@ -1,2 +1 @@ DIST pytest-ordering-0.6.gh.tar.gz 11046 BLAKE2B 468ae5f04029b96ed3058b7f429aec0aaf96092453b229c3de5eab174702af2c1a9fe83171c68d282c4a144b3dd736daf9ed87b9e139a7bd175114f504049ebc SHA512 fd3aec83914f64d1295e1a1bf3fdc580c6824a749a1da8cebae275fef940d6ed6e5dcafad321d94f504a153e13e298b6544dc3c2db716a6b25d3148c2365fe15 -DIST pytest-ordering-0.6.tar.gz 11046 BLAKE2B 468ae5f04029b96ed3058b7f429aec0aaf96092453b229c3de5eab174702af2c1a9fe83171c68d282c4a144b3dd736daf9ed87b9e139a7bd175114f504049ebc SHA512 fd3aec83914f64d1295e1a1bf3fdc580c6824a749a1da8cebae275fef940d6ed6e5dcafad321d94f504a153e13e298b6544dc3c2db716a6b25d3148c2365fe15 diff --git a/dev-python/pytest-ordering/pytest-ordering-0.6.ebuild b/dev-python/pytest-ordering/pytest-ordering-0.6.ebuild deleted file mode 100644 index 86c954d52401..000000000000 --- a/dev-python/pytest-ordering/pytest-ordering-0.6.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{9..11} ) - -inherit distutils-r1 - -DESCRIPTION="pytest plugin to run your tests in a specific order" -HOMEPAGE=" - https://github.com/ftobia/pytest-ordering/ - https://pypi.org/project/pytest-ordering/ -" -SRC_URI="https://github.com/ftobia/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86" - -RDEPEND="dev-python/pytest[${PYTHON_USEDEP}]" - -PATCHES=( - "${FILESDIR}/${P}-fix-pytest-6.patch" -) - -distutils_enable_tests --install pytest -distutils_enable_sphinx docs/source - -python_prepare_all() { - # TypeError: `args` parameter expected to be a list or tuple of strings, got: '--markers' (type: <class 'str'>) - sed -i -e 's:test_run_marker_registered:_&:' \ - tests/test_ordering.py || die - - distutils-r1_python_prepare_all -} |