summaryrefslogtreecommitdiff
path: root/dev-python/pytest-jobserver
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
commita3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-python/pytest-jobserver
parentbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff)
downloadbaldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip
Adding metadata
Diffstat (limited to 'dev-python/pytest-jobserver')
-rw-r--r--dev-python/pytest-jobserver/Manifest2
-rw-r--r--dev-python/pytest-jobserver/metadata.xml12
-rw-r--r--dev-python/pytest-jobserver/pytest-jobserver-1.1.0.ebuild42
3 files changed, 0 insertions, 56 deletions
diff --git a/dev-python/pytest-jobserver/Manifest b/dev-python/pytest-jobserver/Manifest
deleted file mode 100644
index 062309b278ad..000000000000
--- a/dev-python/pytest-jobserver/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST pytest_jobserver-1.1.0.tar.gz 11754 BLAKE2B 94954dc6db8b1a698701bb6cb4e9c190526e7874a440c9059d8b251e5ffec899229de4a4d1f9b1e74c1e1fbf390a78179d5b2957d1bb4db7b88e6fc9dea27f59 SHA512 0d6dfde282fe060ac187d9475fc8a6600254341ae7a062f95c9ef259a94bfaaab4e374363651989ecff3fbd8b2603a5802effbb53692dfa5b1658a1715239221
-DIST pytest_jobserver-1.1.0.tar.gz.provenance 9701 BLAKE2B e6fb380757ae3f7843fc3e04e02aa4381f66432738df6ee29a2d17f280128344e61172ac294bfdc88a09fd937a2617ff276ed0232d3693303c2fd0332170d9a1 SHA512 423e35342da9a76e668243b69f5dba305c4699ab8a50b1ba6a9622b249bb031afda85f4b63ccf4e5e7fbcd56a9abdea066f2d096edb76aa28ad6da262bb7cd38
diff --git a/dev-python/pytest-jobserver/metadata.xml b/dev-python/pytest-jobserver/metadata.xml
deleted file mode 100644
index cf7ca257edba..000000000000
--- a/dev-python/pytest-jobserver/metadata.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>python@gentoo.org</email>
- </maintainer>
- <stabilize-allarches/>
- <upstream>
- <remote-id type="github">tommilligan/pytest-jobserver</remote-id>
- <remote-id type="pypi">pytest-jobserver</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-python/pytest-jobserver/pytest-jobserver-1.1.0.ebuild b/dev-python/pytest-jobserver/pytest-jobserver-1.1.0.ebuild
deleted file mode 100644
index f19364db61b2..000000000000
--- a/dev-python/pytest-jobserver/pytest-jobserver-1.1.0.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 2025-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/tommilligan/pytest-jobserver
-PYTHON_COMPAT=( python3_{13..14} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Limit parallel tests with POSIX jobserver"
-HOMEPAGE="
- https://github.com/tommilligan/pytest-jobserver/
- https://pypi.org/project/pytest-jobserver/
-"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ppc ~riscv ~s390 ~x86"
-
-RDEPEND="
- dev-python/pytest[${PYTHON_USEDEP}]
-"
-
-EPYTEST_PLUGIN_LOAD_VIA_ENV=1
-EPYTEST_PLUGINS=( "${PN}" pytest-xdist )
-distutils_enable_tests pytest
-
-python_test() {
- local EPYTEST_DESELECT=(
- pytest_jobserver/test/test_plugin.py::test_xdist_makeflags_fails
- # broken by implicit slot fix
- pytest_jobserver/test/test_plugin.py::test_jobserver_token_fixture
- pytest_jobserver/test/test_plugin.py::test_server_xdist
- )
-
- unset A MAKEFLAGS
-
- # missing conftest.py
- epytest -p pytester
-}