mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-06 02:17:34 -08:00
dev-python/pipx: Bump to 1.8.0
Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
parent
eae858a281
commit
8f488f6d7d
@ -2,3 +2,4 @@ DIST pip-23.3.2-py3-none-any.whl 2109393 BLAKE2B 278b9941f93951508ae2f508b1b5a9f
|
||||
DIST pip-24.0-py3-none-any.whl 2110226 BLAKE2B 6a0c8c9796cd574ef1d709de40a8530a15e50158143e332b79e5ad3edceda6ce93c5ef4df49b169062598618dcc6967c2115ac2c10b05abf345318204f1eeffc SHA512 5d7462a584105bccaa9cf376f5a8c5827ead099c813c8af7392d478a4398f373d9e8cac7bbad2db51b335411ab966b21e119b1b1234c9a7ab70c6ddfc9306da6
|
||||
DIST pipx-1.7.1-test-shim.tar.xz 72696 BLAKE2B 276db812b311774d1ad5177402084eec5d3287f72416a8bd67db99530b0ee3ba538e196b8f6ce4ade8bd73b81be238d656366c2048abb90e584be1565b25e33b SHA512 e7c6d604487e1d9a7a7b5c1cd35e758e056d7cc8f9ca4a79ad45617d44d0e857ef336cf012ea08a7e0aa0773ca4c3f9995fe3bdcd3baff048281473464c39256
|
||||
DIST pipx-1.7.1.gh.tar.gz 391902 BLAKE2B eb2801c8b2a12a8096ff2fb6882b970cce154cf3f65a87e59ab321d36ce05a9bba03ac818e2148136e00e86fe44d6efd5a39d1c535e4e135feb48b7487f1dde3 SHA512 6375d413974477f488eb8c8d95594f39cf7c54e4c09639c95cb82ed58467266c0124259b1a1fc07596ac0fbffc9fd2ff2fffe58083d78e67ca9f056f2353852f
|
||||
DIST pipx-1.8.0.gh.tar.gz 446941 BLAKE2B 7247fe0d76e65d8996039b569d8c163b665a4372a7fb065fe9b5495809444698b8e2c7f8edf727a66d7a04f03ac0f57d9a19962c40f3f132bb9afcf74691410a SHA512 76c534a12f085964499c0a2f67535e892c72008b4f01396cbc9e6dd7bbace85433f3f0539ddfa44d1b26425cc7f022eeecaefc0f80aad920066a7d9b2e71a84a
|
||||
|
||||
109
dev-python/pipx/pipx-1.8.0.ebuild
Normal file
109
dev-python/pipx/pipx-1.8.0.ebuild
Normal file
@ -0,0 +1,109 @@
|
||||
# Copyright 2023-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
DISTUTILS_USE_PEP517=hatchling
|
||||
PYTHON_COMPAT=( pypy3_11 python3_{11..14} )
|
||||
|
||||
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_RERUNS=5
|
||||
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
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user