diff options
author | Patrice Clement <monsieurp@gentoo.org> | 2018-08-04 17:02:36 +0200 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2018-08-05 15:52:49 +0200 |
commit | e899a0dacc1d32144b22330922d8e15200cdd4ed (patch) | |
tree | 81f6dc034eecc6b78bd62f7b6c793081a0c4fbb8 /dev-python/pytrie | |
parent | dev-python/intelhex: version bump. (diff) | |
download | gentoo-e899a0dacc1d32144b22330922d8e15200cdd4ed.tar.gz gentoo-e899a0dacc1d32144b22330922d8e15200cdd4ed.tar.bz2 gentoo-e899a0dacc1d32144b22330922d8e15200cdd4ed.zip |
dev-python/pytrie: version bump.
Package-Manager: Portage-2.3.40, Repoman-2.3.9
Diffstat (limited to 'dev-python/pytrie')
-rw-r--r-- | dev-python/pytrie/Manifest | 1 | ||||
-rw-r--r-- | dev-python/pytrie/pytrie-0.3.1.ebuild | 23 |
2 files changed, 24 insertions, 0 deletions
diff --git a/dev-python/pytrie/Manifest b/dev-python/pytrie/Manifest index bea1151a8d1c..68f7c5f18451 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.3.tar.gz 228709 BLAKE2B 84c415722a724ac668624b3da29bfe29998c2ec8662ad21ab0035bb2a694e94759e9d09de980842887972b5c1690d699e43de41bf9f62e84ef3fbee86477d0a2 SHA512 f1dc6f810e51385fa4dcf2cbec76cf7fe5c184208f8d6dccf6212d43260591580126095e68d28ab6c8b01a631e6e16b275fa088643ae81568493ca231dcc6161 diff --git a/dev-python/pytrie/pytrie-0.3.1.ebuild b/dev-python/pytrie/pytrie-0.3.1.ebuild new file mode 100644 index 000000000000..8ebd37d75307 --- /dev/null +++ b/dev-python/pytrie/pytrie-0.3.1.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +PYTHON_COMPAT=( python2_7 python3_{4,5,6} ) + +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" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" + +DEPEND="dev-python/sortedcontainers[${PYTHON_USEDEP}]" +RDEPEND="${DEPEND}" + +S="${WORKDIR}/${MY_P}" |