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 17F5359CA3 for ; Tue, 15 Mar 2016 03:26:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B18D3E0762; Tue, 15 Mar 2016 03:25:57 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 44581E0762 for ; Tue, 15 Mar 2016 03:25:57 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 7EC80340A6A for ; Tue, 15 Mar 2016 03:25:55 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 54DDF857 for ; Tue, 15 Mar 2016 03:25:53 +0000 (UTC) From: "Tim Harder" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Tim Harder" Message-ID: <1458012311.4e8460d29e9ce2d93c29a38f879c5ff2a8d02eff.radhermit@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/aniso8601/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/aniso8601/aniso8601-1.1.0-r1.ebuild X-VCS-Directories: dev-python/aniso8601/ X-VCS-Committer: radhermit X-VCS-Committer-Name: Tim Harder X-VCS-Revision: 4e8460d29e9ce2d93c29a38f879c5ff2a8d02eff X-VCS-Branch: master Date: Tue, 15 Mar 2016 03:25:53 +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: a41de72e-3361-404c-ac24-68069f030269 X-Archives-Hash: bb72a0e007114d2dc2187d8ce2feff23 commit: 4e8460d29e9ce2d93c29a38f879c5ff2a8d02eff Author: Tim Harder gentoo org> AuthorDate: Tue Mar 15 03:14:28 2016 +0000 Commit: Tim Harder gentoo org> CommitDate: Tue Mar 15 03:25:11 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e8460d2 dev-python/aniso8601: add missing python-dateutil rdep and py35 support dev-python/aniso8601/aniso8601-1.1.0-r1.ebuild | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/dev-python/aniso8601/aniso8601-1.1.0-r1.ebuild b/dev-python/aniso8601/aniso8601-1.1.0-r1.ebuild new file mode 100644 index 0000000..0970448 --- /dev/null +++ b/dev-python/aniso8601/aniso8601-1.1.0-r1.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} pypy pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="A library for parsing ISO 8601 strings" +HOMEPAGE="https://bitbucket.org/nielsenb/aniso8601/ https://pypi.python.org/pypi/aniso8601/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" +RDEPEND="dev-python/python-dateutil[${PYTHON_USEDEP}]" + +python_test() { + "${PYTHON}" -m unittest discover ${PN}/tests || die "Tests fail with ${EPYTHON}" +}