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 81E7F1388C1 for ; Tue, 24 Nov 2015 19:32:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4B2CB21C0CC; Tue, 24 Nov 2015 19:32:06 +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 1F9A721C0C8 for ; Tue, 24 Nov 2015 19:32:05 +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 CB5E334016B for ; Tue, 24 Nov 2015 19:32:03 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8C6FFA4A for ; Tue, 24 Nov 2015 19:32:01 +0000 (UTC) From: "Gilles Dartiguelongue" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Gilles Dartiguelongue" Message-ID: <1448392805.994ee985eeb46525dd88b63ae134f58a3929b98d.eva@gentoo> Subject: [gentoo-commits] dev/eva:master commit in: dev-python/arrow/ X-VCS-Repository: dev/eva X-VCS-Files: dev-python/arrow/Manifest dev-python/arrow/arrow-0.7.0.ebuild dev-python/arrow/metadata.xml X-VCS-Directories: dev-python/arrow/ X-VCS-Committer: eva X-VCS-Committer-Name: Gilles Dartiguelongue X-VCS-Revision: 994ee985eeb46525dd88b63ae134f58a3929b98d X-VCS-Branch: master Date: Tue, 24 Nov 2015 19:32:01 +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: 33158a1f-51f1-4280-8ef9-3d9de3457e20 X-Archives-Hash: 9daf00d45ce0b8f869f3dc02b66418ad commit: 994ee985eeb46525dd88b63ae134f58a3929b98d Author: Gilles Dartiguelongue gentoo org> AuthorDate: Tue Nov 24 18:41:00 2015 +0000 Commit: Gilles Dartiguelongue gentoo org> CommitDate: Tue Nov 24 19:20:05 2015 +0000 URL: https://gitweb.gentoo.org/dev/eva.git/commit/?id=994ee985 dev-python/arrow: initial ebuild Disappeared from gentoo-x86 it seems. dev-python/arrow/Manifest | 11 +++++++++++ dev-python/arrow/arrow-0.7.0.ebuild | 29 +++++++++++++++++++++++++++++ dev-python/arrow/metadata.xml | 12 ++++++++++++ 3 files changed, 52 insertions(+) diff --git a/dev-python/arrow/Manifest b/dev-python/arrow/Manifest new file mode 100644 index 0000000..0c1f820 --- /dev/null +++ b/dev-python/arrow/Manifest @@ -0,0 +1,11 @@ +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA512 + +DIST arrow-0.7.0.tar.gz 75385 SHA256 2a5333007af117a05a488b69c9ae15c26c23eefa25f084992b025d387e03a17b SHA512 f429fabdd8b937e304579f17d316b32398d000e74b6283ec5859fc04f04d983d2d6375d22dccbf9e884f22e43df6ca1f557b0ca09bf39e0d6f02d495d3b17eb1 WHIRLPOOL 6957429092c167e13e5b1c0bbabc748f9f6a4ea7cc55365cd24abdbe446a564fc59b7078dbe8404f0118a4877c015b8260d54476d6580a40285b528c2c87ee50 +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v2 + +iEYEAREKAAYFAlZUuFoACgkQ1fmVwcYIWAYfcgCdEKlB9x0ZsDZJYqeXlsyRRUmV +Ej0AoKKF9Lc+bQfFkO+bwzR0wK6NNCWj +=5XO+ +-----END PGP SIGNATURE----- diff --git a/dev-python/arrow/arrow-0.7.0.ebuild b/dev-python/arrow/arrow-0.7.0.ebuild new file mode 100644 index 0000000..c0b3291 --- /dev/null +++ b/dev-python/arrow/arrow-0.7.0.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +PYTHON_COMPAT=( python2_7 python{3_4,3_5} ) + +inherit distutils-r1 + +DESCRIPTION="Better dates and times in python" +HOMEPAGE="https://github.com/crsmithdev/arrow/" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +RDEPEND=" + >=dev-python/python-dateutil-2.1[${PYTHON_USEDEP}] +" +DEPEND="${RDEPEND} + test? ( + dev-python/nose[${PYTHON_USEDEP}] + dev-python/simplejson[${PYTHON_USEDEP}] ) +" +# FIXME: missing for running unittests: +# dev-python/nose-cov-1.6[${PYTHON_USEDEP}] +# dev-python/chai diff --git a/dev-python/arrow/metadata.xml b/dev-python/arrow/metadata.xml new file mode 100644 index 0000000..37752b3 --- /dev/null +++ b/dev-python/arrow/metadata.xml @@ -0,0 +1,12 @@ + + + + + eva@gentoo.org + Gilles Dartiguelongue + + + arrow + crsmithdev/arrow + +