diff --git a/dev-python/zipp/Manifest b/dev-python/zipp/Manifest index 7f66494083..aff50c4409 100644 --- a/dev-python/zipp/Manifest +++ b/dev-python/zipp/Manifest @@ -1 +1,2 @@ DIST zipp-3.21.0.tar.gz 24545 BLAKE2B 3a21098768c54efb1bcb049f25a7b04a16d5f02eacc6e2107dfbc358ec3e595478b407e78fa0d831f5a8f2dadd92287812bc1259db925859aeedc1174378ab2d SHA512 f57489283d979dbeb3234f66f5b6b298876209ba79cf0d7a2562f0ce4747a87fd1494d26a35734c6729620d1edfa3bf8f56769de2ae9576ac9cff074caa39331 +DIST zipp-3.22.0.tar.gz 25257 BLAKE2B b4a6b67b428b696724354b3fcca57b6ecd7a4e65543016e3fbfe7def09fc6125245492edcd37d909c33869118017ec7875f18ef9befe459ead809629c17dae5a SHA512 fcdf53f5058a1036b5a637343d40528373147e480694f85b94d2ca030545169e8bc2271bbd2ad5779eb14841d5dd2630a829192b3ffcefddff956e81d44622a9 diff --git a/dev-python/zipp/zipp-3.22.0.ebuild b/dev-python/zipp/zipp-3.22.0.ebuild new file mode 100644 index 0000000000..e4c938b1e3 --- /dev/null +++ b/dev-python/zipp/zipp-3.22.0.ebuild @@ -0,0 +1,27 @@ +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3+ pypy3 ) +DISTUTILS_USE_PEP517="setuptools" +inherit distutils-r1 + +DESCRIPTION="Backport of pathlib-compatible object wrapper for zip files" +HOMEPAGE="https://github.com/jaraco/zipp" +SRC_URI="https://files.pythonhosted.org/packages/12/b6/7b3d16792fdf94f146bed92be90b4eb4563569eca91513c8609aebf0c167/zipp-3.22.0.tar.gz -> zipp-3.22.0.tar.gz" + +DEPEND=" + dev-python/setuptools_scm[${PYTHON_USEDEP}]" +RDEPEND=" + dev-python/toml[${PYTHON_USEDEP}] + dev-python/setuptools_scm[${PYTHON_USEDEP}]" +IUSE="" +SLOT="0" +LICENSE="MIT" +KEYWORDS="*" +S="${WORKDIR}/zipp-3.22.0" + +src_prepare() { + sed -i -e 's/license = "MIT"/license = { text = "MIT" }/' pyproject.toml || die + distutils-r1_src_prepare +}