dev-python/vine: add package

Package-Manager: Portage-2.3.3, Repoman-2.3.1
This commit is contained in:
Zac Medico
2017-01-19 19:09:40 -08:00
parent bc0d399d85
commit 1d28625c39
3 changed files with 41 additions and 0 deletions

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

@@ -0,0 +1 @@
DIST vine-1.1.3.tar.gz 52520 SHA256 87b95da19249373430a8fafca36f1aecb7aa0f1cc78545877857afc46aea2441 SHA512 7652b1527021b2f45f3a372c65a6f196c22edad60ab1e8adbafe7174b7dae912f24eaf34788672c762ea9145ebf3d48265fa4ad99f3084d85769242f4e8bd87f WHIRLPOOL 18e8e6d640612595fa445c1903cca5d5ad79567cb627bb44ce7d10d9e774dfae5f110f40919e33b391b071312f084b1cd29d8c1ed6a73d035093cde5969f1a22

View File

@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>zmedico@gentoo.org</email>
</maintainer>
<upstream>
<remote-id type="pypi">vine</remote-id>
<remote-id type="github">celery/vine</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,29 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
PYTHON_COMPAT=( python2_7 python3_{4,5} pypy pypy3 )
inherit distutils-r1
DESCRIPTION="Python Promises"
HOMEPAGE="https://pypi.python.org/pypi/${PN} https://github.com/celery/${PN}"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"
RDEPEND=""
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
test? (
>=dev-python/case-1.3.1[${PYTHON_USEDEP}]
>=dev-python/pytest-3.0[${PYTHON_USEDEP}]
)"
python_test() {
esetup.py test
}