From 50b3ebf64b48af85db4da0a292b9bea2c116dcff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Tue, 25 Aug 2026 06:19:30 +0200 Subject: [PATCH] dev-python/cliff: Bump to 4.16.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michał Górny --- dev-python/cliff/Manifest | 1 + dev-python/cliff/cliff-4.16.0.ebuild | 43 ++++++++++++++++++++++++++++ 2 files changed, 44 insertions(+) create mode 100644 dev-python/cliff/cliff-4.16.0.ebuild diff --git a/dev-python/cliff/Manifest b/dev-python/cliff/Manifest index bb4da40bf8864..ecbfc109a49d4 100644 --- a/dev-python/cliff/Manifest +++ b/dev-python/cliff/Manifest @@ -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 diff --git a/dev-python/cliff/cliff-4.16.0.ebuild b/dev-python/cliff/cliff-4.16.0.ebuild new file mode 100644 index 0000000000000..efdeff0338c1c --- /dev/null +++ b/dev-python/cliff/cliff-4.16.0.ebuild @@ -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 +}