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 10D44138334 for ; Thu, 30 May 2019 17:08:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1C76FE08A6; Thu, 30 May 2019 17:08:46 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 EF735E08A6 for ; Thu, 30 May 2019 17:08:44 +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 4E2F23452EA for ; Thu, 30 May 2019 17:08:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D2B775E6 for ; Thu, 30 May 2019 17:08:40 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1559236040.181c5f62ce81f845f77c29c7fda438971338487e.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/progressbar/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/progressbar/Manifest dev-python/progressbar/progressbar-2.5.ebuild X-VCS-Directories: dev-python/progressbar/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 181c5f62ce81f845f77c29c7fda438971338487e X-VCS-Branch: master Date: Thu, 30 May 2019 17:08:40 +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: 8537d808-4ff6-4efe-ba9d-e4b3e7bf0371 X-Archives-Hash: 457f312e7ee09fc8819eeb4c29642f37 commit: 181c5f62ce81f845f77c29c7fda438971338487e Author: David Seifert gentoo org> AuthorDate: Thu May 30 17:07:20 2019 +0000 Commit: David Seifert gentoo org> CommitDate: Thu May 30 17:07:20 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=181c5f62 dev-python/progressbar: Bump to version 2.5 Package-Manager: Portage-2.3.67, Repoman-2.3.13 Signed-off-by: David Seifert gentoo.org> dev-python/progressbar/Manifest | 1 + dev-python/progressbar/progressbar-2.5.ebuild | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+) diff --git a/dev-python/progressbar/Manifest b/dev-python/progressbar/Manifest index d610bdbc93e..aa723f556b9 100644 --- a/dev-python/progressbar/Manifest +++ b/dev-python/progressbar/Manifest @@ -1 +1,2 @@ DIST progressbar-2.3.tar.gz 9420 BLAKE2B 025f2d42fb0ef11a2e4b974ba6a8cd44c48a7f828ec40a08347492d393acac46fa9c29962d39fe296af655e94ab2075885c73ed6953e2d739aeb6f5f0c0aa13f SHA512 06fdc8b6664642bd864be8023355316fba23bcc4deb0c5877c5dfa91da5d233301a8f39342f133cbb63f37a20de7b8b24910ac8073127fcbdf43b5200d60ed5f +DIST progressbar-2.5.tar.gz 10046 BLAKE2B fdbef570f48a0c61659bf02b3cc4e0f64d9e4e2edda970edb79fd4aac5fe2cc1bd0a7421458100cab7cbfd3d9d8cf905774113e336ff2d687d5e06b04a4e113a SHA512 86a56a573b903b947baac98b26f88e40072603007fdf5cda3e4a7e797fe4c4c42fd1a4b1ddb1c9ca9a062659d3647c428e33949e2df9e20b0f56a9a4099de51b diff --git a/dev-python/progressbar/progressbar-2.5.ebuild b/dev-python/progressbar/progressbar-2.5.ebuild new file mode 100644 index 00000000000..1aa5f92eea0 --- /dev/null +++ b/dev-python/progressbar/progressbar-2.5.ebuild @@ -0,0 +1,20 @@ +# 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{,3} ) + +inherit distutils-r1 + +DESCRIPTION="Text progressbar library for python" +HOMEPAGE="https://pypi.org/project/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="" + +BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" +DEPEND="${BDEPEND}"