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 690F61388C0 for ; Wed, 17 Feb 2016 08:57:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C8FF721C00A; Wed, 17 Feb 2016 08:57:23 +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 1BB2021C00A for ; Wed, 17 Feb 2016 08:57:23 +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 D1FD7340D11 for ; Wed, 17 Feb 2016 08:57:21 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7C3E215F5 for ; Wed, 17 Feb 2016 08:57:19 +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: <1455699431.aca9e49fb889b0108ccc71bb5bd4dd39099ba91d.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/influxdb/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/influxdb/Manifest dev-python/influxdb/influxdb-2.12.0.ebuild dev-python/influxdb/metadata.xml X-VCS-Directories: dev-python/influxdb/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: aca9e49fb889b0108ccc71bb5bd4dd39099ba91d X-VCS-Branch: master Date: Wed, 17 Feb 2016 08:57:19 +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: 839814f3-8c41-49f7-9459-37a8a9f6f16d X-Archives-Hash: c98b5e72fe87f4197975763647dd3d68 commit: aca9e49fb889b0108ccc71bb5bd4dd39099ba91d Author: Justin Lecher gentoo org> AuthorDate: Wed Feb 17 08:08:19 2016 +0000 Commit: Justin Lecher gentoo org> CommitDate: Wed Feb 17 08:57:11 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aca9e49f dev-python/influxdb: New package, ebuild written by me Package-Manager: portage-2.2.27 Signed-off-by: Justin Lecher gentoo.org> dev-python/influxdb/Manifest | 1 + dev-python/influxdb/influxdb-2.12.0.ebuild | 36 ++++++++++++++++++++++++++++++ dev-python/influxdb/metadata.xml | 11 +++++++++ 3 files changed, 48 insertions(+) diff --git a/dev-python/influxdb/Manifest b/dev-python/influxdb/Manifest new file mode 100644 index 0000000..4393e81 --- /dev/null +++ b/dev-python/influxdb/Manifest @@ -0,0 +1 @@ +DIST influxdb-2.12.0.tar.gz 48091 SHA256 b57f31205b4ef14aeca62dc9968c4a262ee5c29b44bff0d7fa6956d7bd4fbcf9 SHA512 2975cbf606833f56c30572cfb377f3a9b69b0e8c228419d5d1d93196ee55ee38e1455838b47c0834f7f1021da72ec721aa73d02934718848271a2287ccb281c6 WHIRLPOOL 6c6483eb759858d7139d08c59f4f9c9c8d4a0d59146825701169a355554175620070413ec5bfe0a90a48c746290fac592b43151f1fb4db003869faad258d74d8 diff --git a/dev-python/influxdb/influxdb-2.12.0.ebuild b/dev-python/influxdb/influxdb-2.12.0.ebuild new file mode 100644 index 0000000..a5055d5 --- /dev/null +++ b/dev-python/influxdb/influxdb-2.12.0.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +PYTHON_COMPAT=( python{2_7,3_{3,4,5}} ) + +inherit distutils-r1 + +DESCRIPTION="InfluxDB client" +HOMEPAGE="https://github.com/influxdb/influxdb-python http://pypi.python.org/pypi/influxdb" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="test" + +RDEPEND=" + dev-python/python-dateutil[${PYTHON_USEDEP}] + >=dev-python/six-1.9.0[${PYTHON_USEDEP}] + dev-python/pytz[${PYTHON_USEDEP}] + >=dev-python/requests-1.0.3[${PYTHON_USEDEP}] +" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + dev-python/mock[${PYTHON_USEDEP}] + dev-python/nose[${PYTHON_USEDEP}] + dev-python/requests-mock[${PYTHON_USEDEP}] + )" + +python_test() { + nosetests --verbose || die +} diff --git a/dev-python/influxdb/metadata.xml b/dev-python/influxdb/metadata.xml new file mode 100644 index 0000000..8e21775 --- /dev/null +++ b/dev-python/influxdb/metadata.xml @@ -0,0 +1,11 @@ + + + + + python@gentoo.org + Python + + + influxdb + +