summaryrefslogtreecommitdiff
path: root/dev-python/nox
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2026-04-05 07:14:28 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2026-04-05 07:14:28 +0000
commit3f9f4e97c1ac6ba1b1d0590e4c70afeb592c172b (patch)
tree6f557e790667e96e8b85eea50c54fb4182cc83b8 /dev-python/nox
parenteb879137397b2780739bdbeddd7ea01439186c1c (diff)
downloadbaldeagleos-repo-3f9f4e97c1ac6ba1b1d0590e4c70afeb592c172b.tar.gz
baldeagleos-repo-3f9f4e97c1ac6ba1b1d0590e4c70afeb592c172b.tar.xz
baldeagleos-repo-3f9f4e97c1ac6ba1b1d0590e4c70afeb592c172b.zip
Adding metadata
Diffstat (limited to 'dev-python/nox')
-rw-r--r--dev-python/nox/Manifest1
-rw-r--r--dev-python/nox/nox-2025.11.12.ebuild65
2 files changed, 0 insertions, 66 deletions
diff --git a/dev-python/nox/Manifest b/dev-python/nox/Manifest
index ef9c61902c93..57ae9a674393 100644
--- a/dev-python/nox/Manifest
+++ b/dev-python/nox/Manifest
@@ -1,2 +1 @@
-DIST nox-2025.11.12.gh.tar.gz 4030743 BLAKE2B f5d611c37179bb850757d24077a8f4c00a4cd76c26c79ce93eb549c27fd116fdbd1d5380f027dc1355c40ed710b7b1190a15df8294e9a448bdd685ca1c26306c SHA512 fe660f99263ef950e79ae70bd4beeee88046bf2f838e36e33ac74fba5bdd3d36f898a2d7194716f832222a13061f52ad6c03da7f4e3fc5c296ca6db04a48e13f
DIST nox-2026.02.09.gh.tar.gz 4031394 BLAKE2B 6d2c04dec43c09ef2163c04f73ea0833c1963abae7c13a96d6f526e2f936b976d19e4fe79e5272d7b86bed920e9cb362c60fae655a07296d7b509c959096a8e0 SHA512 3ae5901f7f001e5cc607e99d8360697343dd8c7717f2f5b55937b2a759617d0493b37779672cefa0f18153529f46945b10db6a8352e222b0508bc683fc6fbd3f
diff --git a/dev-python/nox/nox-2025.11.12.ebuild b/dev-python/nox/nox-2025.11.12.ebuild
deleted file mode 100644
index 0363029d0463..000000000000
--- a/dev-python/nox/nox-2025.11.12.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 2023-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=hatchling
-PYTHON_COMPAT=( python3_{10..14} )
-
-inherit distutils-r1
-
-DESCRIPTION="Flexible test automation for Python"
-HOMEPAGE="
- https://github.com/wntrblm/nox/
- https://pypi.org/project/nox/
-"
-SRC_URI="
- https://github.com/wntrblm/nox/archive/${PV}.tar.gz
- -> ${P}.gh.tar.gz
-"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64"
-
-RDEPEND="
- >=dev-python/argcomplete-1.9.4[${PYTHON_USEDEP}]
- >=dev-python/attrs-24.1[${PYTHON_USEDEP}]
- >=dev-python/colorlog-2.6.1[${PYTHON_USEDEP}]
- >=dev-python/dependency-groups-1.1[${PYTHON_USEDEP}]
- >=dev-python/humanize-4[${PYTHON_USEDEP}]
- >=dev-python/packaging-21[${PYTHON_USEDEP}]
- >=dev-python/virtualenv-20.15[${PYTHON_USEDEP}]
-"
-BDEPEND="
- test? (
- >=dev-python/pbs-installer-2025.01.06[${PYTHON_USEDEP}]
- )
-"
-
-EPYTEST_PLUGINS=()
-distutils_enable_tests pytest
-
-python_test() {
- local EPYTEST_DESELECT=(
- # TODO: conda?
- 'tests/test_sessions.py::TestSessionRunner::test__create_venv_options[nox.virtualenv.CondaEnv.create-conda-CondaEnv]'
- # Internet
- tests/test_virtualenv.py::test_uv_install
- tests/test_main.py::test_noxfile_script_mode
- )
-
- case ${EPYTHON} in
- pypy3*)
- EPYTEST_DESELECT+=(
- # hardcoded CPython assumption
- tests/test_tox_to_nox.py::test_commands_with_requirements
- tests/test_tox_to_nox.py::test_skipinstall
- tests/test_tox_to_nox.py::test_trivial
- tests/test_tox_to_nox.py::test_usedevelop
- )
- ;;
- esac
-
- epytest -o tmp_path_retention_policy=all
-}