From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BEA7C139085 for ; Fri, 20 Jan 2017 03:14:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EC823234089; Fri, 20 Jan 2017 03:14:41 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C18C7234089 for ; Fri, 20 Jan 2017 03:14:41 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 566F43413AA for ; Fri, 20 Jan 2017 03:14:40 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1F60229BD for ; Fri, 20 Jan 2017 03:14:39 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1484882070.1d28625c3979b2027c62c2a1313323cd86129a29.zmedico@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/vine/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/vine/Manifest dev-python/vine/metadata.xml dev-python/vine/vine-1.1.3.ebuild X-VCS-Directories: dev-python/vine/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 1d28625c3979b2027c62c2a1313323cd86129a29 X-VCS-Branch: master Date: Fri, 20 Jan 2017 03:14:39 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 9167cd7a-f056-48f7-8b3d-928c04417141 X-Archives-Hash: f0c5f08376a73b66deeb1217e4847653 commit: 1d28625c3979b2027c62c2a1313323cd86129a29 Author: Zac Medico gentoo org> AuthorDate: Fri Jan 20 03:09:40 2017 +0000 Commit: Zac Medico gentoo org> CommitDate: Fri Jan 20 03:14:30 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d28625c dev-python/vine: add package Package-Manager: Portage-2.3.3, Repoman-2.3.1 dev-python/vine/Manifest | 1 + dev-python/vine/metadata.xml | 11 +++++++++++ dev-python/vine/vine-1.1.3.ebuild | 29 +++++++++++++++++++++++++++++ 3 files changed, 41 insertions(+) diff --git a/dev-python/vine/Manifest b/dev-python/vine/Manifest new file mode 100644 index 00000000..2113631 --- /dev/null +++ b/dev-python/vine/Manifest @@ -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 index 00000000..3117410 --- /dev/null +++ b/dev-python/vine/metadata.xml @@ -0,0 +1,11 @@ + + + + + zmedico@gentoo.org + + + vine + celery/vine + + diff --git a/dev-python/vine/vine-1.1.3.ebuild b/dev-python/vine/vine-1.1.3.ebuild new file mode 100644 index 00000000..b9f372e --- /dev/null +++ b/dev-python/vine/vine-1.1.3.ebuild @@ -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 +}