dev-python/multipledispatch: new dep of dev-python/cons, add 0.6.0

Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Arthur Zamarin 2021-12-11 21:36:17 +02:00 committed by Michał Górny
parent ce342520c0
commit 2152d1607d
No known key found for this signature in database
GPG Key ID: 639ADAE2329E240E
3 changed files with 45 additions and 0 deletions

View File

@ -0,0 +1 @@
DIST multipledispatch-0.6.0.gh.tar.gz 23692 BLAKE2B 4f73f05382c4aefbe3706839a18ba68d8ca0ed025744fe67d2069a770c517821d726913e5757dfe0ebe4628738b4b3dc83c76049f2beb4411b3679f574cc5f8d SHA512 34cefbceef1c756d06f0fbcf34709b70750928e21b1d5f02eef61eec3d5b8ce29475bfe4c53943f3fa9264b4de1f2524d813c6723927e576cd83771b6a4fcaf8

View File

@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>python@gentoo.org</email>
<name>Python</name>
</maintainer>
<stabilize-allarches/>
<upstream>
<remote-id type="pypi">multipledispatch</remote-id>
<remote-id type="github">mrocklin/multipledispatch</remote-id>
<doc>https://multiple-dispatch.readthedocs.io/</doc>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,30 @@
# Copyright 2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="Multiple dispatch"
HOMEPAGE="
https://pypi.org/project/multipledispatch/
https://github.com/mrocklin/multipledispatch/
"
SRC_URI="
https://github.com/mrocklin/multipledispatch/archive/${PV}.tar.gz
-> ${P}.gh.tar.gz
"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="dev-python/six[${PYTHON_USEDEP}]"
distutils_enable_tests pytest
EPYTEST_DESELECT=(
multipledispatch/tests/test_core.py::test_multipledispatch
multipledispatch/tests/test_benchmark.py
)