summaryrefslogtreecommitdiff
path: root/dev-python/paste
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2026-03-25 19:17:47 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2026-03-25 19:17:47 +0000
commita6c077a14ab69684019380246b01943bdbe4d7a1 (patch)
tree337a02c526cb76a9462cf0e31ba52fc7aa725d36 /dev-python/paste
parent9463004333272cee4a8781c51c51e53f1b5dafcb (diff)
downloadbaldeagleos-repo-a6c077a14ab69684019380246b01943bdbe4d7a1.tar.gz
baldeagleos-repo-a6c077a14ab69684019380246b01943bdbe4d7a1.tar.xz
baldeagleos-repo-a6c077a14ab69684019380246b01943bdbe4d7a1.zip
Adding metadata
Diffstat (limited to 'dev-python/paste')
-rw-r--r--dev-python/paste/paste-3.10.1.ebuild24
1 files changed, 13 insertions, 11 deletions
diff --git a/dev-python/paste/paste-3.10.1.ebuild b/dev-python/paste/paste-3.10.1.ebuild
index 99dea7f349be..0daea1a031a0 100644
--- a/dev-python/paste/paste-3.10.1.ebuild
+++ b/dev-python/paste/paste-3.10.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2025 Gentoo Authors
+# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -20,20 +20,22 @@ LICENSE="MIT"
SLOT="0"
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~x64-macos"
+BDEPEND="
+ test? (
+ dev-python/pkg-resources[${PYTHON_USEDEP}]
+ )
+"
+
+EPYTEST_PLUGINS=()
distutils_enable_tests pytest
distutils_enable_sphinx docs
+EPYTEST_DESELECT=(
+ # Internet
+ tests/test_proxy.py
+)
+
python_compile() {
distutils-r1_python_compile
find "${BUILD_DIR}" -name '*.pth' -delete || die
}
-
-python_test() {
- local EPYTEST_DESELECT=(
- # Internet
- tests/test_proxy.py
- )
-
- local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
- epytest
-}