mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-02-15 15:37:28 -08:00
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 <pacho@gentoo.org> Bug: https://bugs.gentoo.org/678422 Signed-Off-By: Tony Vroon <chainsaw@gentoo.org> Package-Manager: Portage-2.3.62, Repoman-2.3.11
22 lines
562 B
Bash
22 lines
562 B
Bash
# 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}"
|