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 256D4138334 for ; Wed, 22 May 2019 14:48:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C9ABEE089A; Wed, 22 May 2019 14:48:47 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 AEB74E089A for ; Wed, 22 May 2019 14:48:47 +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 108EF344E21 for ; Wed, 22 May 2019 14:48:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 098CD5D9 for ; Wed, 22 May 2019 14:48:44 +0000 (UTC) From: "Tony Vroon" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Tony Vroon" Message-ID: <1558536480.7ab4ef0541af8ed467f00b2663fc441692a91e8b.chainsaw@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/progressbar2/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/progressbar2/Manifest dev-python/progressbar2/progressbar2-3.39.3.ebuild X-VCS-Directories: dev-python/progressbar2/ X-VCS-Committer: chainsaw X-VCS-Committer-Name: Tony Vroon X-VCS-Revision: 7ab4ef0541af8ed467f00b2663fc441692a91e8b X-VCS-Branch: master Date: Wed, 22 May 2019 14:48:44 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: bd134691-3e26-4d2e-ba50-6f95a2c05a27 X-Archives-Hash: a8843a0ae3ff68d4e927721fec9c0f8c commit: 7ab4ef0541af8ed467f00b2663fc441692a91e8b Author: Tony Vroon gentoo org> AuthorDate: Wed May 22 12:48:34 2019 +0000 Commit: Tony Vroon gentoo org> CommitDate: Wed May 22 14:48:00 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ab4ef05 dev-python/progressbar2: Version bump to 3.39.3 & widen PYTHON_COMPAT This fixes non-timed progress bars: https://github.com/WoLpH/python-progressbar/issues/185 Widen PYTHON_COMPAT based on upstream tox.ini suggesting Python 3.7 is in fact supported. Previous 3.5 cap was based on the PyPi homepage for the package. Suggested-by: Pacho Ramos gentoo.org> Bug: https://bugs.gentoo.org/678422 Signed-Off-By: Tony Vroon gentoo.org> Package-Manager: Portage-2.3.62, Repoman-2.3.11 dev-python/progressbar2/Manifest | 1 + dev-python/progressbar2/progressbar2-3.39.3.ebuild | 21 +++++++++++++++++++++ 2 files changed, 22 insertions(+) diff --git a/dev-python/progressbar2/Manifest b/dev-python/progressbar2/Manifest index f378e476ae0..090df1fe6d2 100644 --- a/dev-python/progressbar2/Manifest +++ b/dev-python/progressbar2/Manifest @@ -1 +1,2 @@ DIST progressbar2-3.39.2.tar.gz 131723 BLAKE2B d8ff04986e125d17b67d86399308c4f7ca55c1dc744e2cd42042fb61ec0b93e61f6af1308e884e24e1b423a5ff66e3074b30ce75c0fb7af85acb700288a7bcc0 SHA512 efbf08a09665542fc361757c2a649ecc3bff0077e68b2669f4dfe1635e7730cf3cd0c6a3ae13e059adada31dc77b291098c21746ed9b5e0929260d2788345d6b +DIST progressbar2-3.39.3.tar.gz 131839 BLAKE2B 2cbf1ecf04947b3a393b5cc473a696528cdaf38f132a1b0faab5e45dff76aecdee497ca1b2810b9ec5e3b180acfa8e2af1d195e5804c058a7d8880fc3b0a330f SHA512 b8944b319f1133fe7abdd256bed8803e9f426208af5ddc58935121845e81b9f65878e536bd5a1e4810eaa6906b24d114e8681dddf1f77c1bf96cb231f6473a5e diff --git a/dev-python/progressbar2/progressbar2-3.39.3.ebuild b/dev-python/progressbar2/progressbar2-3.39.3.ebuild new file mode 100644 index 00000000000..5e98c5dd5bf --- /dev/null +++ b/dev-python/progressbar2/progressbar2-3.39.3.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python2_7 python3_{5,6,7} pypy pypy3) + +inherit distutils-r1 + +DESCRIPTION="Text progressbar library for python" +HOMEPAGE="https://pypi.org/project/progressbar2/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64" + +CDEPEND="!dev-python/progressbar[${PYTHON_USEDEP}] + dev-python/python-utils[${PYTHON_USEDEP}] + dev-python/setuptools[${PYTHON_USEDEP}]" +RDEPEND="${CDEPEND}" +BDEPEND="${CDEPEND}"