From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 68ADC1396D0 for ; Mon, 14 Aug 2017 08:24:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 782E5E0BB3; Mon, 14 Aug 2017 08:24:06 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 510DAE0BB3 for ; Mon, 14 Aug 2017 08:24:06 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 433B1341777 for ; Mon, 14 Aug 2017 08:24:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AD92B7832 for ; Mon, 14 Aug 2017 08:24:03 +0000 (UTC) From: "Tobias Klausmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Tobias Klausmann" Message-ID: <1502699038.576703e5fbb22dcbfbcb1ca1ee293b1297ce11f7.klausman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/progressbar/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/progressbar/progressbar-2.3-r3.ebuild X-VCS-Directories: dev-python/progressbar/ X-VCS-Committer: klausman X-VCS-Committer-Name: Tobias Klausmann X-VCS-Revision: 576703e5fbb22dcbfbcb1ca1ee293b1297ce11f7 X-VCS-Branch: master Date: Mon, 14 Aug 2017 08:24:03 +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: adda0acf-4ba9-4909-b91f-0e6f0eac4a87 X-Archives-Hash: 4a02095b0fc071a73520f29b965ad20b commit: 576703e5fbb22dcbfbcb1ca1ee293b1297ce11f7 Author: Tobias Klausmann gentoo org> AuthorDate: Mon Aug 14 08:23:33 2017 +0000 Commit: Tobias Klausmann gentoo org> CommitDate: Mon Aug 14 08:23:58 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=576703e5 dev-python/progressbar: Indicate Py3.6 supported and demote to ~arch Package-Manager: Portage-2.3.7, Repoman-2.3.3 dev-python/progressbar/progressbar-2.3-r3.ebuild | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/dev-python/progressbar/progressbar-2.3-r3.ebuild b/dev-python/progressbar/progressbar-2.3-r3.ebuild new file mode 100644 index 00000000000..12c361e9329 --- /dev/null +++ b/dev-python/progressbar/progressbar-2.3-r3.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=5 +PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy pypy3) + +inherit distutils-r1 + +DESCRIPTION="Text progressbar library for python" +HOMEPAGE="https://pypi.python.org/pypi/progressbar" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="|| ( LGPL-2.1 BSD )" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc ~x86 ~amd64-linux ~x86-linux" +IUSE="" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" +RDEPEND="" + +PATCHES=( "${FILESDIR}/progressbar-2.3-python3.3.patch" )