mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-05 12:38:09 -07:00
dev-python/partd: initial import
Package-Manager: portage-2.2.28
This commit is contained in:
1
dev-python/partd/Manifest
Normal file
1
dev-python/partd/Manifest
Normal file
@@ -0,0 +1 @@
|
||||
DIST partd-0.3.2.tar.gz 17097 SHA256 0b8a2f313d07548ab5fbca89fae27d63ce81709ee544609b9e515d9c604ca910 SHA512 7d48af79d6a42d7adbca85df1199d266ae115b4160fcaa9ba6a026b92ae813d9a37594dfab06f969a38799f13f23c80bbcd89be4ec4fdd8ad9f85718598707de WHIRLPOOL 4a7abf38f897cc09d061ffa5ccd2eb3f16a8496c60bd36feb170a52bea6789c1597921b69e97f875c8fb72a1b8549787f073f26fb70818038ce6e888afa6d7f0
|
||||
19
dev-python/partd/metadata.xml
Normal file
19
dev-python/partd/metadata.xml
Normal 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>
|
||||
33
dev-python/partd/partd-0.3.2.ebuild
Normal file
33
dev-python/partd/partd-0.3.2.ebuild
Normal 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
|
||||
}
|
||||
Reference in New Issue
Block a user