diff options
Diffstat (limited to 'dev-python/click')
-rw-r--r-- | dev-python/click/Manifest | 4 | ||||
-rw-r--r-- | dev-python/click/click-8.1.8.ebuild | 2 | ||||
-rw-r--r-- | dev-python/click/click-8.2.0.ebuild | 38 |
3 files changed, 42 insertions, 2 deletions
diff --git a/dev-python/click/Manifest b/dev-python/click/Manifest index 3dc7ad0d16cb..5c3c4e44a7e3 100644 --- a/dev-python/click/Manifest +++ b/dev-python/click/Manifest @@ -1,3 +1,5 @@ DIST click-8.1.8.gh.tar.gz 342860 BLAKE2B f55518e66473c43e78d5127d7a4467cce5a7e25c84dae2f740e9cfa1682213e5c243ff4da90768a25374921b5d2d482525b6975818f5383ebcde77f298c9694d SHA512 f9f501210d202026a8449df1eef570f5399887a3efda9499d4a4180bbe96bc232809929bf80f9a65037583e84dfa8af3f0c348353c41121c815a9ead2c58d3aa -EBUILD click-8.1.8.ebuild 954 BLAKE2B 9528dec6dec1aea8048ff5b45485fb3bd36216c0ea9a331a00e44b4f7a1aaee908175631b73b5085c173d98dd8ab8ac91f00e90bef07f2b159204df831c0c708 SHA512 ec6c2201680cae048bc3146da89f9504189a9b45e4f9b69301ccd0375d9bc1d78f0466c3f343789e921f6efa07c89dc5afaea39ab881179ea09ac195bf5b230c +DIST click-8.2.0.gh.tar.gz 349577 BLAKE2B 202b867151db653447f3ac26dcfe2871f3513b656851911aabb131d4ab35a50d3ab48ea7ec4e0db76fe0f39f153c3280cbd12a2b0f5bc9041596eeade826e1cb SHA512 0046970e99d2cce2ae40322ea6606cc8af241b5ee50f61830984b10a0ae20c107d0c56c049bf7d8c5bdebd98ef36c0d018e8a649551aabc8fb91554bd438101a +EBUILD click-8.1.8.ebuild 954 BLAKE2B 21f27231c047c586dc23ec51ffa8fea9f69811e80584e944a66c7da3ea6ad99d24d9efee925cbd11cc4cf492f1a969d9e0c479657b7878546a94e8685b946254 SHA512 6470d90f8dbbe7ff61a9bc209f429fb5517973751a21f903d128bb19ac74865571aca416e31b2455fe61394849a35f578a2d1eade32aaeadff764a607d830bc8 +EBUILD click-8.2.0.ebuild 956 BLAKE2B 2112ae2b71562647206bae24906a94d5edb80c23f370587cb52c5f5f514f0eb4558c369bc10c8dd3bbda677b633ba54877d62423343dae2a4094a8f5ef8f3c5a SHA512 b75ec839f9d09b814f7fbca7c55858ec4375f43fe0dee9774664a4e83e91c3b64036bbfeda238b7f2dfb317e4457c6bd728825c7f84ab33d5fe58ac5fca77d68 MISC metadata.xml 386 BLAKE2B e460c7d70bbd848cd239d9e1ba5dc234c7de2a2bc0c77bfefb6aed1fa6d954de18508d4db44e77495f90a141180fa2602b15d3699aaaa99a48520a7e37a098f4 SHA512 ef8dd0545e92bb8fdc107fd6170068d35f44abad698226ea4724c450aebc0f32c76eb90b9fc936f9c85b8a93637f6006e889796e2bb3b7da5f57c1419f6b3794 diff --git a/dev-python/click/click-8.1.8.ebuild b/dev-python/click/click-8.1.8.ebuild index cda25a85f8e1..97bda27a93d9 100644 --- a/dev-python/click/click-8.1.8.ebuild +++ b/dev-python/click/click-8.1.8.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=flit -PYTHON_COMPAT=( python3_{10..13} pypy3 pypy3_11 ) +PYTHON_COMPAT=( python3_{10..14} pypy3 pypy3_11 ) inherit distutils-r1 diff --git a/dev-python/click/click-8.2.0.ebuild b/dev-python/click/click-8.2.0.ebuild new file mode 100644 index 000000000000..612d85078bbd --- /dev/null +++ b/dev-python/click/click-8.2.0.ebuild @@ -0,0 +1,38 @@ +# 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/pallets-sphinx-themes \ + dev-python/sphinxcontrib-log-cabinet \ + dev-python/sphinx-issues \ + dev-python/sphinx-tabs +distutils_enable_tests pytest + +python_install_all() { + use examples && dodoc -r examples + distutils-r1_python_install_all +} |