diff options
| author | root <root@alpha.trunkmasters.com> | 2026-06-04 16:24:49 -0500 |
|---|---|---|
| committer | root <root@alpha.trunkmasters.com> | 2026-06-04 16:24:49 -0500 |
| commit | a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch) | |
| tree | 0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-python/pytest-order | |
| parent | bfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff) | |
| download | baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip | |
Adding metadata
Diffstat (limited to 'dev-python/pytest-order')
| -rw-r--r-- | dev-python/pytest-order/Manifest | 3 | ||||
| -rw-r--r-- | dev-python/pytest-order/metadata.xml | 13 | ||||
| -rw-r--r-- | dev-python/pytest-order/pytest-order-1.3.0.ebuild | 43 | ||||
| -rw-r--r-- | dev-python/pytest-order/pytest-order-1.4.0.ebuild | 37 |
4 files changed, 0 insertions, 96 deletions
diff --git a/dev-python/pytest-order/Manifest b/dev-python/pytest-order/Manifest deleted file mode 100644 index 69891c3c3c28..000000000000 --- a/dev-python/pytest-order/Manifest +++ /dev/null @@ -1,3 +0,0 @@ -DIST pytest_order-1.3.0.tar.gz 47544 BLAKE2B 9f061910babc8f9ffe25180cc3d4c708c97fbd6afd167ce5d937b57977de1694c2be2abf1995ad91d6aa15c2593d14e39576ada3dfc4e33132cc1a813ea44d5e SHA512 e6accdf49fee88b4911eca991a404e00071a58291bdd564a361640ede68e4c3f80ad79522075258f9e7451dd704627c2950922015f66068dd4969e9da20caef9 -DIST pytest_order-1.4.0.tar.gz 49891 BLAKE2B 8cd9b4586ba5093b96ea96a777717a736e64d6dc0502b6919feaab6c694a4d01d3a5e57dc80879aee767d193e9bbb307abc0dbcb4d5c6022fb3c0ea47518c266 SHA512 11213fd825a5092d273a3a3508816097f5f376ea9457cd445be796bdeb2a672bfaedd8acbd278f3012152faf0cb5ec8de647fe86499745e541409a32bb888ec0 -DIST pytest_order-1.4.0.tar.gz.provenance 9826 BLAKE2B f5a825ad31ed44d024e334fe4f2a6d00c22932c61b7ff622ae16a64bbf8c176601eee95f4ba27149ddf63bffbd3c80f62c59d2da87d034794d4f2c645a93f554 SHA512 6b7ae442c1de7df9e17cb336bdac232fb3688d64df7a98323cfc649fe23595bef8f95ccd6158a718e3fdf34bcdf326e0610ee40486193d1cfeb08fe5eeffe19a diff --git a/dev-python/pytest-order/metadata.xml b/dev-python/pytest-order/metadata.xml deleted file mode 100644 index 55a542a2853e..000000000000 --- a/dev-python/pytest-order/metadata.xml +++ /dev/null @@ -1,13 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="person"> - <email>nowa@gentoo.org</email> - <name>Nowa Ammerlaan</name> - </maintainer> - <stabilize-allarches/> - <upstream> - <remote-id type="github">pytest-dev/pytest-order</remote-id> - <remote-id type="pypi">pytest-order</remote-id> - </upstream> -</pkgmetadata> diff --git a/dev-python/pytest-order/pytest-order-1.3.0.ebuild b/dev-python/pytest-order/pytest-order-1.3.0.ebuild deleted file mode 100644 index c815b0a8fb4b..000000000000 --- a/dev-python/pytest-order/pytest-order-1.3.0.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{13..14} ) - -inherit distutils-r1 pypi - -DESCRIPTION="pytest plugin to run your tests in a specific order" -HOMEPAGE=" - https://github.com/pytest-dev/pytest-order/ - https://pypi.org/project/pytest-order/ -" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" - -RDEPEND=" - >=dev-python/pytest-6.4.2[${PYTHON_USEDEP}] -" - -BDEPEND=" - test? ( - dev-python/pytest-mock[${PYTHON_USEDEP}] - dev-python/pytest-xdist[${PYTHON_USEDEP}] - ) -" - -EPYTEST_PLUGINS=( "${PN}" pytest-{mock,xdist} ) -EPYTEST_PLUGIN_LOAD_VIA_ENV=1 -distutils_enable_tests pytest -distutils_enable_sphinx docs/source - -EPYTEST_DESELECT=( - # these require pytest-dependency - tests/test_dependency.py::test_order_dependencies_no_auto_mark - tests/test_dependency.py::test_order_dependencies_auto_mark - tests/test_order_group_scope_dep.py::test_class_group_scope_module_scope - tests/test_order_group_scope_named_dep.py::test_class_group_scope_module_scope -) diff --git a/dev-python/pytest-order/pytest-order-1.4.0.ebuild b/dev-python/pytest-order/pytest-order-1.4.0.ebuild deleted file mode 100644 index 9447e07196dd..000000000000 --- a/dev-python/pytest-order/pytest-order-1.4.0.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2026 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYPI_VERIFY_REPO=https://github.com/pytest-dev/pytest-order -PYTHON_COMPAT=( python3_{13..14} ) - -inherit distutils-r1 pypi - -DESCRIPTION="pytest plugin to run your tests in a specific order" -HOMEPAGE=" - https://github.com/pytest-dev/pytest-order/ - https://pypi.org/project/pytest-order/ -" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" - -RDEPEND=" - >=dev-python/pytest-7.4[${PYTHON_USEDEP}] -" - -EPYTEST_PLUGINS=( "${PN}" pytest-{mock,xdist} ) -EPYTEST_PLUGIN_LOAD_VIA_ENV=1 -distutils_enable_tests pytest -distutils_enable_sphinx docs/source - -EPYTEST_DESELECT=( - # these require pytest-dependency - tests/test_dependency.py::test_order_dependencies_no_auto_mark - tests/test_dependency.py::test_order_dependencies_auto_mark - tests/test_order_group_scope_dep.py::test_class_group_scope_module_scope - tests/test_order_group_scope_named_dep.py::test_class_group_scope_module_scope -) |
