dev-python/vine: add package
authorZac Medico <zmedico@gentoo.org>
Fri, 20 Jan 2017 03:09:40 +0000 (19:09 -0800)
committerZac Medico <zmedico@gentoo.org>
Fri, 20 Jan 2017 03:14:30 +0000 (19:14 -0800)
Package-Manager: Portage-2.3.3, Repoman-2.3.1

dev-python/vine/Manifest [new file with mode: 0644]
dev-python/vine/metadata.xml [new file with mode: 0644]
dev-python/vine/vine-1.1.3.ebuild [new file with mode: 0644]

diff --git a/dev-python/vine/Manifest b/dev-python/vine/Manifest
new file mode 100644 (file)
index 0000000..2113631
--- /dev/null
@@ -0,0 +1 @@
+DIST vine-1.1.3.tar.gz 52520 SHA256 87b95da19249373430a8fafca36f1aecb7aa0f1cc78545877857afc46aea2441 SHA512 7652b1527021b2f45f3a372c65a6f196c22edad60ab1e8adbafe7174b7dae912f24eaf34788672c762ea9145ebf3d48265fa4ad99f3084d85769242f4e8bd87f WHIRLPOOL 18e8e6d640612595fa445c1903cca5d5ad79567cb627bb44ce7d10d9e774dfae5f110f40919e33b391b071312f084b1cd29d8c1ed6a73d035093cde5969f1a22
diff --git a/dev-python/vine/metadata.xml b/dev-python/vine/metadata.xml
new file mode 100644 (file)
index 0000000..3117410
--- /dev/null
@@ -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>
diff --git a/dev-python/vine/vine-1.1.3.ebuild b/dev-python/vine/vine-1.1.3.ebuild
new file mode 100644 (file)
index 0000000..b9f372e
--- /dev/null
@@ -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
+}