dev-python/partd: initial import

Package-Manager: portage-2.2.28
This commit is contained in:
Sébastien Fabbro
2016-03-18 00:15:01 +00:00
parent ca160d8078
commit 974a66953f
3 changed files with 53 additions and 0 deletions

View File

@@ -0,0 +1 @@
DIST partd-0.3.2.tar.gz 17097 SHA256 0b8a2f313d07548ab5fbca89fae27d63ce81709ee544609b9e515d9c604ca910 SHA512 7d48af79d6a42d7adbca85df1199d266ae115b4160fcaa9ba6a026b92ae813d9a37594dfab06f969a38799f13f23c80bbcd89be4ec4fdd8ad9f85718598707de WHIRLPOOL 4a7abf38f897cc09d061ffa5ccd2eb3f16a8496c60bd36feb170a52bea6789c1597921b69e97f875c8fb72a1b8549787f073f26fb70818038ce6e888afa6d7f0

View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>cluster@gentoo.org</email>
<name>Gentoo Cluster Project</name>
</maintainer>
<maintainer type="project">
<email>python@gentoo.org</email>
<name>Python</name>
</maintainer>
<longdescription lang="en">
Partd stores key-value pairs. Values are raw bytes. We append on old values.
Partd excels at shuffling operations.
</longdescription>
<upstream>
<remote-id type="pypi">partd</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,33 @@
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
PYTHON_COMPAT=( python2_7 python3_{4,5} )
inherit distutils-r1
DESCRIPTION="Appendable key-value storage"
HOMEPAGE="http://github.com/dask/partd/"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="doc test"
RDEPEND=""
DEPEND="${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/locket[${PYTHON_USEDEP}]
dev-python/numpy[${PYTHON_USEDEP}]
dev-python/pandas[${PYTHON_USEDEP}]
dev-python/pyzmq[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/toolz[${PYTHON_USEDEP}] )"
python_test() {
py.test partd --verbose || die
}