repo/gentoo:master commit in: dev-python/nox/
MichaŠGórny <[email protected]>
| Newsgroups | gmane.linux.gentoo.cvs |
|---|---|
| Message-ID | <1787117912.a66eb52e4b060267afcae54eff46192ee3f9e3b0.mgorny@gentoo> |
commit: a66eb52e4b060267afcae54eff46192ee3f9e3b0
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 19 05:15:22 2026 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Aug 19 05:38:32 2026 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a66eb52e
dev-python/nox: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/nox/Manifest | 1 -
dev-python/nox/nox-2026.07.11.ebuild | 53 ------------------------------------
2 files changed, 54 deletions(-)
diff --git a/dev-python/nox/Manifest b/dev-python/nox/Manifest
index a9055870274d..05966780c206 100644
--- a/dev-python/nox/Manifest
+++ b/dev-python/nox/Manifest
@@ -1,2 +1 @@
-DIST nox-2026.07.11.gh.tar.gz 4043049 BLAKE2B 79deb482a34dfc6ca6036c6b10396460332cfb005685c31b5458d409905f6867d2997659cf002a710964bf34aace88029ed29cd621923b0ea52c1cf3fdef12cb SHA512 b36c8df34e88708a25b0967bb620e8950714120d2a81c1d5b3f209420a4d4ff5ea89141b41a8279824718f9fdc6eea3170d00207295d517e462a2a50fa57bdf6
DIST nox-2026.08.10.gh.tar.gz 4076351 BLAKE2B 3167238fe7ec495c6bae8f1effde518e85dce9e55df22c47a1af09f7c1b55a2a65570532138604e791ae8cbc31cfd896110a4c7670864bba6f24bf044430d936 SHA512 ffe1053023e1fa48f115b3aeacf1c771ae8f12ff58217eeb304604f4702ac763317b572652094d2a7c76f3f5af5a6478bc0bcc870c8dc66e4af71f98358d05d9
diff --git a/dev-python/nox/nox-2026.07.11.ebuild b/dev-python/nox/nox-2026.07.11.ebuild
deleted file mode 100644
index 0327e7a3e440..000000000000
--- a/dev-python/nox/nox-2026.07.11.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 2023-2026 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=hatchling
-PYTHON_COMPAT=( python3_{12..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-22[${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
- )
-
- epytest -o tmp_path_retention_policy=all
-}