blob: d2da505c182fade90b735ecb6c3853e5830f752d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
# Copyright 2023-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=hatchling
PYTHON_COMPAT=( pypy3 python3_{10..13} )
inherit distutils-r1 pypi
# To update test shim, use https://github.com/projg2/pipx-repack-wheels
TEST_SHIM=pipx-1.7.1-test-shim
DESCRIPTION="Install and Run Python Applications in Isolated Environments"
HOMEPAGE="
https://pipx.pypa.io/stable/
https://pypi.org/project/pipx/
https://github.com/pypa/pipx/
"
# no tests in sdist
SRC_URI="
https://github.com/pypa/pipx/archive/${PV}.tar.gz
-> ${P}.gh.tar.gz
test? (
https://dev.gentoo.org/~mgorny/dist/${TEST_SHIM}.tar.xz
$(pypi_wheel_url pip 23.3.2)
$(pypi_wheel_url pip 24.0)
)
"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="
>=dev-python/argcomplete-1.9.4[${PYTHON_USEDEP}]
>=dev-python/packaging-20.0[${PYTHON_USEDEP}]
>=dev-python/platformdirs-2.1[${PYTHON_USEDEP}]
$(python_gen_cond_dep '
dev-python/tomli[${PYTHON_USEDEP}]
' 3.10)
>=dev-python/userpath-1.9.1[${PYTHON_USEDEP}]
"
BDEPEND="
dev-python/hatch-vcs[${PYTHON_USEDEP}]
test? (
dev-python/ensurepip-pip
dev-python/ensurepip-setuptools
dev-python/ensurepip-wheel
dev-python/pypiserver[${PYTHON_USEDEP}]
)
"
EPYTEST_XDIST=1
distutils_enable_tests pytest
export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
src_prepare() {
if use test; then
cp -vs "${BROOT}"/usr/lib/python/ensurepip/{pip,setuptools,wheel}-*.whl \
"${WORKDIR}/${TEST_SHIM}/" || die
# needed for pinned pin version test
cp -vs "${DISTDIR}"/pip-23.3.2-py3-none-any.whl \
"${WORKDIR}/${TEST_SHIM}/" || die
cp -vs "${DISTDIR}"/pip-24.0-py3-none-any.whl \
"${WORKDIR}/${TEST_SHIM}/" || die
mkdir -p .pipx_tests/package_cache || die
> scripts/update_package_cache.py || die
# sigh
sed -e 's:server = str.*:server = "pypi-server":' \
-i tests/conftest.py || die
fi
distutils-r1_src_prepare
}
python_configure() {
if use test; then
local v=$(
"${EPYTHON}" - <<-EOF
import sys
print(".".join(str(x) for x in sys.version_info[:2]))
EOF
)
if [[ ! -e .pipx_tests/package_cache/${v} ]]; then
ln -s "${WORKDIR}/${TEST_SHIM}" \
".pipx_tests/package_cache/${v}" || die
fi
fi
}
python_test() {
local EPYTEST_DESELECT=(
# Internet
tests/test_run.py::test_run_ensure_null_pythonpath
tests/test_run.py::test_run_script_from_internet
'tests/test_install.py::test_install_package_specs[pycowsay-git+https://github.com/cs01/pycowsay.git@master]'
tests/test_install.py::test_force_install_changes
'tests/test_install.py::test_install_package_specs[nox-https://github.com/wntrblm/nox/archive/2022.1.7.zip]'
tests/test_interpreter.py::test_fetch_missing_python
tests/test_list.py::test_list_standalone_interpreter
tests/test_standalone_interpreter.py
)
local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
epytest -o tmp_path_retention_policy=all
}
|