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 F3B9759CAF for ; Wed, 6 Apr 2016 13:21:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B3F4621C00C; Wed, 6 Apr 2016 13:21:09 +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 50FDC21C00C for ; Wed, 6 Apr 2016 13:21:09 +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 0AEF0340D24 for ; Wed, 6 Apr 2016 13:21:08 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CAD7076 for ; Wed, 6 Apr 2016 13:21:04 +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: <1459948851.59f05a4e4e20537a3f522a5e64986a9abc862726.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-r2.ebuild X-VCS-Directories: dev-python/progressbar/ X-VCS-Committer: klausman X-VCS-Committer-Name: Tobias Klausmann X-VCS-Revision: 59f05a4e4e20537a3f522a5e64986a9abc862726 X-VCS-Branch: master Date: Wed, 6 Apr 2016 13:21:04 +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: ff99b31a-60df-410c-893f-16e1b780ada4 X-Archives-Hash: 6d222440d671f3a93af20f2a35e5b610 commit: 59f05a4e4e20537a3f522a5e64986a9abc862726 Author: Tobias Klausmann gentoo org> AuthorDate: Wed Apr 6 13:20:51 2016 +0000 Commit: Tobias Klausmann gentoo org> CommitDate: Wed Apr 6 13:20:51 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59f05a4e dev-python/progressbar: Enable pypy3 support Since all of progressbar's deps now support pypy3, we can enable it for progressbar itself, too. Package-Manager: portage-2.2.28 dev-python/progressbar/progressbar-2.3-r2.ebuild | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/dev-python/progressbar/progressbar-2.3-r2.ebuild b/dev-python/progressbar/progressbar-2.3-r2.ebuild new file mode 100644 index 0000000..f7983ac --- /dev/null +++ b/dev-python/progressbar/progressbar-2.3-r2.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy pypy3) + +inherit distutils-r1 + +DESCRIPTION="Text progressbar library for python" +HOMEPAGE="https://code.google.com/p/python-progressbar/ https://pypi.python.org/pypi/progressbar" +SRC_URI="https://python-${PN}.googlecode.com/files/${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" )