From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id BC67C1388BF for ; Fri, 19 Feb 2016 09:27:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 92BD221C040; Fri, 19 Feb 2016 09:27:47 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0553021C040 for ; Fri, 19 Feb 2016 09:27:46 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id ED18F340BA0 for ; Fri, 19 Feb 2016 09:27:45 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6F7038F5 for ; Fri, 19 Feb 2016 09:27:43 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1455564488.e2051fb7321b3539d2d2c4d983981852d8aefe03.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: dev-python/prov/ X-VCS-Repository: proj/sci X-VCS-Files: dev-python/prov/metadata.xml dev-python/prov/prov-1.4.0.ebuild X-VCS-Directories: dev-python/prov/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: e2051fb7321b3539d2d2c4d983981852d8aefe03 X-VCS-Branch: master Date: Fri, 19 Feb 2016 09:27:43 +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: b7717dfd-55da-4ab4-9dcb-a5f6aafabb9a X-Archives-Hash: 3f2637af6cfecabbb80620b522a9bdf5 commit: e2051fb7321b3539d2d2c4d983981852d8aefe03 Author: Horea Christian mail ru> AuthorDate: Mon Feb 15 19:28:08 2016 +0000 Commit: Justin Lecher gentoo org> CommitDate: Mon Feb 15 19:28:08 2016 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=e2051fb7 dev-python/prov: new package Package-Manager: portage-2.2.27 dev-python/prov/metadata.xml | 18 ++++++++++++++++++ dev-python/prov/prov-1.4.0.ebuild | 32 ++++++++++++++++++++++++++++++++ 2 files changed, 50 insertions(+) diff --git a/dev-python/prov/metadata.xml b/dev-python/prov/metadata.xml new file mode 100644 index 0000000..30c719d --- /dev/null +++ b/dev-python/prov/metadata.xml @@ -0,0 +1,18 @@ + + + + + h.chr@mail.ru + TheChymera + + + sci@gentoo.org + Gentoo Science Project + + + A library for W3C Provenance Data Model supporting PROV-JSON and PROV-XML import/export + + + prov + + diff --git a/dev-python/prov/prov-1.4.0.ebuild b/dev-python/prov/prov-1.4.0.ebuild new file mode 100644 index 0000000..aaf9e0b --- /dev/null +++ b/dev-python/prov/prov-1.4.0.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" + +PYTHON_COMPAT=( python2_7 ) + +inherit distutils-r1 + +DESCRIPTION="W3C provenance data dodel library" +HOMEPAGE="https://pypi.python.org/pypi/prov" +SRC_URI="mirror://pypi/p/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +DEPEND=" + test? ( dev-python/pydotplus[${PYTHON_USEDEP}] ) + dev-python/setuptools[${PYTHON_USEDEP}] + " +RDEPEND="dev-python/python-dateutil[${PYTHON_USEDEP}] + dev-python/lxml[${PYTHON_USEDEP}] + >=dev-python/networkx-1.10[${PYTHON_USEDEP}] + >=dev-python/six-1.10[${PYTHON_USEDEP}] + " + +src_test() { + ${PYTHON} -m unittest discover +}