diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-10-22 07:37:39 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2020-10-22 07:37:39 +0200 |
commit | 67226953d07042126dbdc9d7cb161e395498c423 (patch) | |
tree | aabd5552efaac43fd39890bbe5f108bf9c3f3e0a /dev-python/pytrie | |
parent | dev-python/boto3: Bump to 1.16.2 (diff) | |
download | gentoo-67226953d07042126dbdc9d7cb161e395498c423.tar.gz gentoo-67226953d07042126dbdc9d7cb161e395498c423.tar.bz2 gentoo-67226953d07042126dbdc9d7cb161e395498c423.zip |
dev-python/pytrie: Bump to 0.4.0
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/pytrie')
-rw-r--r-- | dev-python/pytrie/Manifest | 1 | ||||
-rw-r--r-- | dev-python/pytrie/pytrie-0.4.0.ebuild | 23 |
2 files changed, 24 insertions, 0 deletions
diff --git a/dev-python/pytrie/Manifest b/dev-python/pytrie/Manifest index 59d298f575e6..8d6ecfaf5fda 100644 --- a/dev-python/pytrie/Manifest +++ b/dev-python/pytrie/Manifest @@ -1 +1,2 @@ DIST pytrie-0.3.1.tar.gz 94678 BLAKE2B 12631652ea33d2f1575f86bc8c42982543f8fa146debc9cb86e1139ff089f0657e04e50bad97b9bc344f4a270d102ee98e03fd389eb2c56ba3baac32b2288670 SHA512 72cb4ffff53d01545658b27b6c0b798736404f95013bfe34586c51c8823cc923ac4b3a8e874a938b26e3045784ce98ce2d8e51ab70dc435ff50075ffaf9d6c51 +DIST pytrie-0.4.0.tar.gz 95139 BLAKE2B de57b4c36429c3e2d9ec7cb89e6515fd0a131e890bbfec17797a9a03b932ca2370cf283c67b4a99bb742b275c6f005789af410b875e857d30e6ba9e959403899 SHA512 c951568774c1e35d2b2bd5a52e5368da5ef2ffc83476d60882aa842debcd53c5eb0ed19f497a09f78c6a736ffba57702eda3aa0f3afa74dd0d1e770c17885c74 diff --git a/dev-python/pytrie/pytrie-0.4.0.ebuild b/dev-python/pytrie/pytrie-0.4.0.ebuild new file mode 100644 index 000000000000..f9c007f91c08 --- /dev/null +++ b/dev-python/pytrie/pytrie-0.4.0.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6..9} ) + +inherit distutils-r1 + +MY_PN="PyTrie" +MY_P="${MY_PN}-${PV}" +DESCRIPTION="A pure Python implementation of the trie data structure" +HOMEPAGE="https://github.com/gsakkis/pytrie/ https://pypi.org/project/PyTrie/" +SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${MY_P}" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux" + +RDEPEND="dev-python/sortedcontainers[${PYTHON_USEDEP}]" + +distutils_enable_tests setup.py |