dev-python/zict: initial import

Package-Manager: Portage-2.3.4, Repoman-2.3.2
This commit is contained in:
Sébastien Fabbro
2017-03-08 18:34:07 +00:00
parent cfa182139e
commit ea3adf4950
3 changed files with 44 additions and 0 deletions

1
dev-python/zict/Manifest Normal file
View File

@@ -0,0 +1 @@
DIST zict-0.1.1.tar.gz 10557 SHA256 e4e2758d8f202a5bb7fd94f45b87cccf2092bfc97786cc0c8321ab35d72e098a SHA512 fcf608c5c22c8d61168ce35699da3459862a0d470fd73c1d138ab08e4e09945bb43674cc3f35ee483026d978c3bd3d12edbec48f8c3194f73ccdf182cd5d8388 WHIRLPOOL dc1136c1a7fcef1069bc07078a74d80ae6301d7283a25fdbaf5a9ce2d02c6d16dc34506be2393570c1ea3c07fbf476acb80cc9c9063d2c6a75454881446571c8

View File

@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>python@gentoo.org</email>
<name>Python</name>
</maintainer>
<upstream>
<remote-id type="pypi">zict</remote-id>
<remote-id type="github">dask/zict</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,31 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python2_7 python3_{4,5} )
inherit distutils-r1
DESCRIPTION="Mutable mapping tools"
HOMEPAGE="http://github.com/dask/zict/"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="dev-python/HeapDict[${PYTHON_USEDEP}]"
DEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/HeapDict[${PYTHON_USEDEP}]
dev-python/lmdb[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)
"
python_test() {
py.test || die
}