From b590c8d7572b727d565cc0b8ff660d43569845de Mon Sep 17 00:00:00 2001 From: root Date: Fri, 12 Jun 2026 19:09:37 -0500 Subject: Adding metadata --- dev-python/cli-helpers/Manifest | 2 ++ dev-python/cli-helpers/cli-helpers-2.14.0.ebuild | 43 ++++++++++++++++++++++++ dev-python/cli-helpers/cli-helpers-2.15.0.ebuild | 43 ++++++++++++++++++++++++ dev-python/cli-helpers/cli-helpers-9999.ebuild | 30 +++++++++++++++++ dev-python/cli-helpers/metadata.xml | 9 +++++ 5 files changed, 127 insertions(+) create mode 100644 dev-python/cli-helpers/Manifest create mode 100644 dev-python/cli-helpers/cli-helpers-2.14.0.ebuild create mode 100644 dev-python/cli-helpers/cli-helpers-2.15.0.ebuild create mode 100644 dev-python/cli-helpers/cli-helpers-9999.ebuild create mode 100644 dev-python/cli-helpers/metadata.xml (limited to 'dev-python/cli-helpers') diff --git a/dev-python/cli-helpers/Manifest b/dev-python/cli-helpers/Manifest new file mode 100644 index 000000000000..514d704ecbb3 --- /dev/null +++ b/dev-python/cli-helpers/Manifest @@ -0,0 +1,2 @@ +DIST cli_helpers-2.14.0.gh.tar.gz 38065 BLAKE2B 7ea60cbafd7942a87ae5cc6ccbfb367307ea33b9208655e13358832b6cfd473e9627c6cfb1099cc5e2ce0c8fa44220708c089c0bfa79c17c6078edbcb6cb1937 SHA512 d432b09906d5ec6c64888313af0ed0daea02e8ed799afa576db44d5c87b3b657d6b88f2f9ed1656cbab522a9bc8e88a35cdbb1f81fd4ccd1b10a4beeb8be74f7 +DIST cli_helpers-2.15.0.gh.tar.gz 38164 BLAKE2B 1939c2850089d1b0c555397b6d4b9bb5810bdfa51b65ae4b4c4ac19160b84b5d76f673cfd6d04e0966af63ff34b3e34b1e6b6a2070328ffc81cfd816178a17b0 SHA512 3c4913e4252c796c0b57648628d6cf4cfdfb9dfdd8ad17435fb86ef32cfe1d17951cd8fcf1eec292dc2e65485a18a606da00fa67cc7d18e6eb5193751f31b462 diff --git a/dev-python/cli-helpers/cli-helpers-2.14.0.ebuild b/dev-python/cli-helpers/cli-helpers-2.14.0.ebuild new file mode 100644 index 000000000000..820dcce7de91 --- /dev/null +++ b/dev-python/cli-helpers/cli-helpers-2.14.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=setuptools +PYTHON_COMPAT=( python3_{13..14} ) + +inherit distutils-r1 + +MY_P=cli_helpers-${PV} +DESCRIPTION="Python helpers for common CLI tasks" +HOMEPAGE=" + https://cli-helpers.rtfd.io/ + https://github.com/dbcli/cli_helpers/ + https://pypi.org/project/cli-helpers/ +" +SRC_URI=" + https://github.com/dbcli/cli_helpers/archive/v${PV}.tar.gz + -> ${MY_P}.gh.tar.gz +" +S=${WORKDIR}/${MY_P} + +LICENSE="BSD" +SLOT="0" +KEYWORDS="amd64 ~arm64 x86" + +RDEPEND=" + >=dev-python/configobj-5.0.5[${PYTHON_USEDEP}] + >=dev-python/pygments-1.6[${PYTHON_USEDEP}] + >=dev-python/tabulate-0.10.0[${PYTHON_USEDEP}] + dev-python/wcwidth[${PYTHON_USEDEP}] +" + +EPYTEST_PLUGINS=() +distutils_enable_tests pytest + +src_prepare() { + distutils-r1_src_prepare + + # unpin deps + sed -i -e 's:~=:>=:' setup.py || die +} diff --git a/dev-python/cli-helpers/cli-helpers-2.15.0.ebuild b/dev-python/cli-helpers/cli-helpers-2.15.0.ebuild new file mode 100644 index 000000000000..fd5388c4374f --- /dev/null +++ b/dev-python/cli-helpers/cli-helpers-2.15.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=setuptools +PYTHON_COMPAT=( python3_{13..14} ) + +inherit distutils-r1 + +MY_P=cli_helpers-${PV} +DESCRIPTION="Python helpers for common CLI tasks" +HOMEPAGE=" + https://cli-helpers.rtfd.io/ + https://github.com/dbcli/cli_helpers/ + https://pypi.org/project/cli-helpers/ +" +SRC_URI=" + https://github.com/dbcli/cli_helpers/archive/v${PV}.tar.gz + -> ${MY_P}.gh.tar.gz +" +S=${WORKDIR}/${MY_P} + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" + +RDEPEND=" + >=dev-python/configobj-5.0.5[${PYTHON_USEDEP}] + >=dev-python/pygments-1.6[${PYTHON_USEDEP}] + >=dev-python/tabulate-0.10.0[${PYTHON_USEDEP}] + dev-python/wcwidth[${PYTHON_USEDEP}] +" + +EPYTEST_PLUGINS=() +distutils_enable_tests pytest + +src_prepare() { + distutils-r1_src_prepare + + # unpin deps + sed -i -e 's:~=:>=:' setup.py || die +} diff --git a/dev-python/cli-helpers/cli-helpers-9999.ebuild b/dev-python/cli-helpers/cli-helpers-9999.ebuild new file mode 100644 index 000000000000..b92b1ab7c5bb --- /dev/null +++ b/dev-python/cli-helpers/cli-helpers-9999.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{13..14} ) + +inherit distutils-r1 git-r3 + +DESCRIPTION="Python helpers for common CLI tasks" +HOMEPAGE=" + https://cli-helpers.rtfd.io/ + https://github.com/dbcli/cli_helpers/ + https://pypi.org/project/cli-helpers/ +" +EGIT_REPO_URI="https://github.com/dbcli/cli_helpers.git" + +LICENSE="BSD" +SLOT="0" + +RDEPEND=" + >=dev-python/configobj-5.0.5[${PYTHON_USEDEP}] + >=dev-python/pygments-2.4.0[${PYTHON_USEDEP}] + >=dev-python/tabulate-0.8.0[${PYTHON_USEDEP}] + dev-python/wcwidth[${PYTHON_USEDEP}] +" + +EPYTEST_PLUGINS=() +distutils_enable_tests pytest diff --git a/dev-python/cli-helpers/metadata.xml b/dev-python/cli-helpers/metadata.xml new file mode 100644 index 000000000000..d34971a915e9 --- /dev/null +++ b/dev-python/cli-helpers/metadata.xml @@ -0,0 +1,9 @@ + + + + + python@gentoo.org + + + baldeagleos-repo + -- cgit v1.3.1