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 90186139894 for ; Mon, 24 Aug 2015 10:12:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 534A9141FC; Mon, 24 Aug 2015 10:12:27 +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 05791141E5 for ; Mon, 24 Aug 2015 10:12:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5AFDA3408B8 for ; Mon, 24 Aug 2015 10:12:25 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9F04E180 for ; Mon, 24 Aug 2015 10:12:21 +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: <1440411131.3ac330bc39d63fc6084bc01881452a86015cd7cb.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/progress/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/progress/Manifest dev-python/progress/metadata.xml dev-python/progress/progress-1.2.ebuild X-VCS-Directories: dev-python/progress/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 3ac330bc39d63fc6084bc01881452a86015cd7cb X-VCS-Branch: master Date: Mon, 24 Aug 2015 10:12:21 +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: 028c9e43-b8be-4a85-ac1f-3aedebee17a1 X-Archives-Hash: c94cfd87064dcc894020e38af1623b0b commit: 3ac330bc39d63fc6084bc01881452a86015cd7cb Author: Justin Lecher gentoo org> AuthorDate: Mon Aug 24 07:06:06 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Mon Aug 24 10:12:11 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ac330bc dev-python/progress: New package, ebuild written by me Package-Manager: portage-2.2.20.1 Signed-off-by: Justin Lecher gentoo.org> dev-python/progress/Manifest | 1 + dev-python/progress/metadata.xml | 5 +++++ dev-python/progress/progress-1.2.ebuild | 29 +++++++++++++++++++++++++++++ 3 files changed, 35 insertions(+) diff --git a/dev-python/progress/Manifest b/dev-python/progress/Manifest new file mode 100644 index 0000000..f9eb1c3 --- /dev/null +++ b/dev-python/progress/Manifest @@ -0,0 +1 @@ +DIST progress-1.2.tar.gz 4951 SHA256 5b6a50f9ac76820f619d7789b5354881c8c10060a64047e415868d8f503cc2eb SHA512 bd09e63a1cc1b24260b66e6f963deaeb6da87b08c376a4e2da179badc23eeb3e9ca213872d1da8caa5e2475cc1b7bb2022389bb8d7f1c9e1ca8f755406648116 WHIRLPOOL 1c6294b4a504f57eb94b50a4c1cf3454203df239315b1f5d5ef62c0ab0152c61b66eae7bdca70bd9230c78585a8620c997f4d67e1011cc89390279b7954ae67f diff --git a/dev-python/progress/metadata.xml b/dev-python/progress/metadata.xml new file mode 100644 index 0000000..301d220 --- /dev/null +++ b/dev-python/progress/metadata.xml @@ -0,0 +1,5 @@ + + + + python + diff --git a/dev-python/progress/progress-1.2.ebuild b/dev-python/progress/progress-1.2.ebuild new file mode 100644 index 0000000..534cc24 --- /dev/null +++ b/dev-python/progress/progress-1.2.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 python3_{3,4} pypy pypy3 ) + +inherit bash-completion-r1 distutils-r1 + +DESCRIPTION="Easy to use progress bars" +HOMEPAGE="https://pypi.python.org/pypi/progress http://github.com/verigak/progress/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +SLOT="0" +LICENSE="ISC" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="" + +RDEPEND="" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}]" + +# Not bundled +RESTRICT="test" + +python_test() { + "${PYTHON}" test_progress.py || die +}