commit: 1c2ed6ba415d086c25e817251ded912e3a9724bf
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 2 04:29:10 2025 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Aug 2 05:20:35 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c2ed6ba
dev-python/click: Bump to 8.2.2
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/click/Manifest | 1 +
dev-python/click/click-8.2.2.ebuild | 40 +++++++++++++++++++++++++++++++++++++
2 files changed, 41 insertions(+)
diff --git a/dev-python/click/Manifest b/dev-python/click/Manifest
index 1b3823ab8ac3..951c47ea194d 100644
--- a/dev-python/click/Manifest
+++ b/dev-python/click/Manifest
@@ -1 +1,2 @@
DIST click-8.2.1.gh.tar.gz 399811 BLAKE2B
1d28aab3fc8c2e3f977aeb5aedeaddde591d6c6ecf3d3421c4107e954f4116a9f7f6ef8ea2a42a001f0b2995bda695bd34210232a11dc83af2192dbb0c0fe462
SHA512
420ba1989410af0949317f9651c6b292da68605b86b4cf0e2382eaba1defbc9eb4b9d97e0a71e5cdb51a61a1f578e81fd864e1abb0cdcd0a8ee26a899c802afe
+DIST click-8.2.2.gh.tar.gz 373284 BLAKE2B
117e4750f6bed34bf39cc64b8063fd28f1acf3e93fd1e09a2d876aacebcb14e1a9ff0c3030f66caa2aba67d2fbd13e2ffff60954ff8c134b87902989cc951df6
SHA512
3eaa13c40354c84769c919a4326903e35860af4922478d2d2c2c4596faf6399809d71289d0d1d7656ca6bf8407a38102244bd02dea7a296bbe8231fb77bfd5fc
diff --git a/dev-python/click/click-8.2.2.ebuild
b/dev-python/click/click-8.2.2.ebuild
new file mode 100644
index 000000000000..c55ebbacb3f1
--- /dev/null
+++ b/dev-python/click/click-8.2.2.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=flit
+PYTHON_COMPAT=( python3_{11..14} pypy3_11 )
+
+inherit distutils-r1
+
+DESCRIPTION="A Python package for creating beautiful command line interfaces"
+HOMEPAGE="
+ https://palletsprojects.com/p/click/
+ https://github.com/pallets/click/
+ https://pypi.org/project/click/
+"
+SRC_URI="
+ https://github.com/pallets/${PN}/archive/${PV}.tar.gz
+ -> ${P}.gh.tar.gz
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64
~riscv ~s390 ~sparc ~x86 ~x64-macos"
+IUSE="examples"
+
+distutils_enable_sphinx docs \
+ '>=dev-python/docutils-0.14' \
+ dev-python/myst-parser \
+ dev-python/pallets-sphinx-themes \
+ dev-python/sphinxcontrib-log-cabinet \
+ dev-python/sphinx-tabs
+
+EPYTEST_PLUGINS=()
+distutils_enable_tests pytest
+
+python_install_all() {
+ use examples && dodoc -r examples
+ distutils-r1_python_install_all
+}