dev-python/cliff: Bump to 4.16.0

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2026-08-25 06:19:30 +02:00
parent fb5305a931
commit 50b3ebf64b
2 changed files with 44 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST cliff-4.15.0.tar.gz 89822 BLAKE2B 07b76a574654aff3d9d663968a7294fa11ba45655ff6e31d9304f91121a643872c8949d5bda8e6ec1f4b877f35a1073c50e40b8be4e40a1e9888a9a93354ebc4 SHA512 1a3353b5aa4313afe6e82c300fb8caa5530227992d123467c42b10db049b968e3219892e1b438057fa7afb50b7f38ef2b4d4d0241c632cc0ea2944bb8bb635c1
DIST cliff-4.16.0.tar.gz 90041 BLAKE2B beb71dada65a83ede4c16e1a0bdaea66a62b16fa7a5d94384aa30fb71e3a3730d456172d323679dc62d481f13b557821468f89de130b1a5fcaaea73f2f78ee13 SHA512 70f1d3d2b25ff7e4567175c0ff70d2f3fcf7dd5aa148340df5a13e321b152bca21f1f618f00858beeb289659f289fe240f45d9ff407fe0d192a933fe0e11c7d9

View File

@@ -0,0 +1,43 @@
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=pbr
PYTHON_COMPAT=( python3_{12..15} )
inherit distutils-r1 pypi
DESCRIPTION="Command Line Interface Formulation Framework"
HOMEPAGE="
https://opendev.org/openstack/cliff/
https://github.com/openstack/cliff/
https://pypi.org/project/cliff/
"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc64 ~riscv ~s390 ~x86"
RDEPEND="
>=dev-python/autopage-0.4.0[${PYTHON_USEDEP}]
>=dev-python/cmd2-4.0.0[${PYTHON_USEDEP}]
dev-python/prettytable[${PYTHON_USEDEP}]
>=dev-python/pyparsing-2.1.0[${PYTHON_USEDEP}]
>=dev-python/pyyaml-3.12.0[${PYTHON_USEDEP}]
>=dev-python/stevedore-5.6.0[${PYTHON_USEDEP}]
"
BDEPEND="
test? (
>=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
>=dev-python/sphinx-5.0.0[${PYTHON_USEDEP}]
>=dev-python/testtools-2.8.0[${PYTHON_USEDEP}]
)
"
distutils_enable_tests unittest
python_test() {
local -x COLUMNS=80
eunittest
}