mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-05 12:38:09 -07:00
dev-python/pipenv: add 2022.9.24
Signed-off-by: Oz N Tiram <oz.tiram@gmail.com> Bug: https://bugs.gentoo.org/717666 Closes: https://github.com/gentoo/gentoo/pull/27570 Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
This commit is contained in:
committed by
Arthur Zamarin
parent
df6132e8eb
commit
03b9a32a3f
@@ -1 +1,2 @@
|
||||
DIST pipenv-2022.8.5.gh.tar.gz 11841656 BLAKE2B 28869e75c1130285807b067720e696463106ed0ef1f4e685c95277d6e58e1d0371ed7afb1de4955d7a4b21b57b81163ea821e227ef26fc35b39dfc6df8dea873 SHA512 17ea8e99aaa54972baa25e2380e0a19c75f7d6cf5a8c238786f7c7c8269ef25ef316b8087483c9716e97493bcf4fe606eb9af7f082c09dd326547ec3cb4a406e
|
||||
DIST pipenv-2022.9.24.gh.tar.gz 11543711 BLAKE2B e875068383c8ca55864bfcb53288ae9a02adc578c09ad7392bf50a7ebe07e2eb5944bc225cfefad2ca8265d8dcbb17af96b34e8c0fd51a709921148207021f2b SHA512 d29a728d914d8c762469fd2d72de7be41050165b4587c3304ebc03235a1946967f78473651e1834e5a69a35395d0cf9087e1515fd746450057774fc22e61e092
|
||||
|
||||
88
dev-python/pipenv/pipenv-2022.9.24.ebuild
Normal file
88
dev-python/pipenv/pipenv-2022.9.24.ebuild
Normal file
@@ -0,0 +1,88 @@
|
||||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
PYTHON_COMPAT=( python3_{8..11} )
|
||||
|
||||
inherit distutils-r1 multiprocessing
|
||||
|
||||
MY_PV=${PV/_beta/b}
|
||||
DESCRIPTION="Python Development Workflow for Humans"
|
||||
HOMEPAGE="https://github.com/pypa/pipenv https://pypi.org/project/pipenv/"
|
||||
SRC_URI="https://github.com/pypa/pipenv/archive/v${MY_PV}.tar.gz -> ${P}.gh.tar.gz"
|
||||
S="${WORKDIR}"/${PN}-${MY_PV}
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~riscv ~x86"
|
||||
|
||||
RDEPEND="
|
||||
dev-python/attrs[${PYTHON_USEDEP}]
|
||||
>=dev-python/cerberus-1.3.2[${PYTHON_USEDEP}]
|
||||
dev-python/click[${PYTHON_USEDEP}]
|
||||
>=dev-python/colorama-0.4.4[${PYTHON_USEDEP}]
|
||||
>=dev-python/idna-3.2[${PYTHON_USEDEP}]
|
||||
>=dev-python/pexpect-4.8.0[${PYTHON_USEDEP}]
|
||||
dev-python/pip[${PYTHON_USEDEP}]
|
||||
dev-python/pyparsing[${PYTHON_USEDEP}]
|
||||
>=dev-python/python-dateutil-2.8.2[${PYTHON_USEDEP}]
|
||||
>=dev-python/virtualenv-20.0.35[${PYTHON_USEDEP}]
|
||||
dev-python/virtualenv-clone[${PYTHON_USEDEP}]
|
||||
>=dev-python/requests-2.26.0[${PYTHON_USEDEP}]
|
||||
dev-python/toml[${PYTHON_USEDEP}]
|
||||
>=dev-python/tomli-2.0.1[${PYTHON_USEDEP}]
|
||||
dev-python/tomlkit[${PYTHON_USEDEP}]
|
||||
>=dev-python/wheel-0.36.0[${PYTHON_USEDEP}]
|
||||
"
|
||||
|
||||
BDEPEND="
|
||||
${RDEPEND}
|
||||
test? (
|
||||
dev-python/flaky[${PYTHON_USEDEP}]
|
||||
dev-python/mock[${PYTHON_USEDEP}]
|
||||
dev-python/pytz[${PYTHON_USEDEP}]
|
||||
)
|
||||
"
|
||||
|
||||
distutils_enable_tests pytest
|
||||
|
||||
# IMPORTANT: The following sed command patches the vendor direcotry
|
||||
# in the pipenv source. Attempts to simply bump the version of the
|
||||
# package without checking that it works is likely to fail
|
||||
# The vendored packages should eventually all be removed
|
||||
# see: https://bugs.gentoo.org/717666
|
||||
src_prepare() {
|
||||
local pkgName
|
||||
local jobs=$(makeopts_jobs)
|
||||
local packages=( attr cerberus click colorama idna importlib_metadata \
|
||||
importlib_resources pexpect pyparsing requests toml tomli tomlkit urllib3 )
|
||||
for pkgName in ${packages[@]}; do
|
||||
find ./ -type f -print0 | \
|
||||
xargs --max-procs="${jobs}" --null \
|
||||
sed --in-place \
|
||||
-e "s/from pipenv.vendor import ${pkgName}/import ${pkgName}/g" \
|
||||
-e "s/from pipenv.vendor.${pkgName}\(.*\) import \(\w*\)/from ${pkgName}\1 import \2/g"\
|
||||
-e "s/import pipenv.vendor.${pkgName} as ${pkgName}/import ${pkgName}/g" \
|
||||
-e "s/from .vendor import ${pkgName}/import ${pkgName}/g" || die "Failed to sed for ${pkgName}"
|
||||
done
|
||||
|
||||
distutils-r1_src_prepare
|
||||
|
||||
# remove vendored versions
|
||||
for pkgName in ${packages[@]}; do
|
||||
find ./pipenv/vendor -regextype posix-extended -regex ".*${pkgName}$" -prune -exec rm -rvf {} + || die
|
||||
# package names can be foo-bar, their module will be however foo_bar
|
||||
find ./pipenv/vendor -regextype posix-extended -regex ".*${pkgName/_/-}" -prune -exec rm -rvf {} + || die
|
||||
done
|
||||
|
||||
find ./pipenv/vendor -regextype posix-extended -regex '.*cached[_-]property.*' -prune -exec rm -rvf {} + || die
|
||||
|
||||
# not actually used by pipenv, but included in pipenv
|
||||
rm -vR "${S}/${PN}/vendor/wheel/" || die
|
||||
}
|
||||
|
||||
python_test() {
|
||||
epytest -m "not cli and not needs_internet" tests/unit/
|
||||
}
|
||||
Reference in New Issue
Block a user