Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/click/
Date: Thu, 28 Apr 2022 18:48:50
Message-Id: 1651171718.5cba805a97a00647a1aff79f03d864ed393c6c51.mgorny@gentoo
1 commit: 5cba805a97a00647a1aff79f03d864ed393c6c51
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 28 18:32:48 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 28 18:48:38 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5cba805a
7
8 dev-python/click: Bump to 8.1.3
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/click/Manifest | 1 +
13 dev-python/click/click-8.1.3.ebuild | 38 +++++++++++++++++++++++++++++++++++++
14 2 files changed, 39 insertions(+)
15
16 diff --git a/dev-python/click/Manifest b/dev-python/click/Manifest
17 index cb0bcdbd3f9f..b5f1c1ff93b9 100644
18 --- a/dev-python/click/Manifest
19 +++ b/dev-python/click/Manifest
20 @@ -3,3 +3,4 @@ DIST click-8.0.4.tar.gz 332977 BLAKE2B 71366fa8436fb6997675ecb84d98f43b40a646466
21 DIST click-8.1.0.tar.gz 333449 BLAKE2B c0f5dfb245c5c8a71e9aa5200393d021f4e77ae73fa9a8cdef4abc35546d2ff0b7b1322776002dc28b37e8311141fc3db8a39b5cfbb8947781326b6417494563 SHA512 7d9fcd74392baa55e0fd9050e7382d4b8b542856d4fee79ec5a4d6185ddeb47abaed1de6771e30aaec6cee5cff7166dd8ab7fefbc6aefa1856adc58b9fecc0c7
22 DIST click-8.1.1.tar.gz 333663 BLAKE2B c7b0de884c3ea5365d3227f5a4e81a41531dfa100705b203745bed15826cc7e9ace112c959ab5f4eabac510623d83ceeedf6ea36a40aaf8f997cbb6b3ba1abfb SHA512 b553d140f1425001575d7584367bd90cea6d20760b4a811efb0fb164f0d62d631f54514b033ceb1130d510f35cfb330f4af6d93d1e70dd1ea929b878304b9140
23 DIST click-8.1.2.gh.tar.gz 333755 BLAKE2B cf579db101e296a0626445e0823d8c72bc6cd40f0ec667c3179465050d0aa7d7a94ed1416d583f7c9afde8e5ea41738c26b000f87c95074a9d93837c039d687a SHA512 8781965212a0732990e47050db8ae5e37633986b23cd7895d74f06007c61993f8ea45183376761987931caf00dd68c22900bc8d3930d4416853374cfd170a0e5
24 +DIST click-8.1.3.gh.tar.gz 333961 BLAKE2B ed80d9be1e5740f1e4af62e97cd78488dc99d59da4a6dc9c99fb62b08c32ca2b889e3678a2841052922d102d8ac83df19e3e2d0ff41c46387e695d3718c7702d SHA512 29194ee3877e013a2fe1037870522c5b5a78136ca60da9109f29312a3e52c767867f5eec2d90ca385cd0508f77555b9d6ad8f5141dc31900ddc9307a2207a818
25
26 diff --git a/dev-python/click/click-8.1.3.ebuild b/dev-python/click/click-8.1.3.ebuild
27 new file mode 100644
28 index 000000000000..4da31f5189e1
29 --- /dev/null
30 +++ b/dev-python/click/click-8.1.3.ebuild
31 @@ -0,0 +1,38 @@
32 +# Copyright 1999-2022 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=8
36 +
37 +DISTUTILS_USE_PEP517=setuptools
38 +PYTHON_COMPAT=( python3_{8..10} pypy3 )
39 +
40 +inherit distutils-r1
41 +
42 +DESCRIPTION="A Python package for creating beautiful command line interfaces"
43 +HOMEPAGE="
44 + https://palletsprojects.com/p/click/
45 + https://github.com/pallets/click/
46 + https://pypi.org/project/click/
47 +"
48 +SRC_URI="
49 + https://github.com/pallets/${PN}/archive/${PV}.tar.gz
50 + -> ${P}.gh.tar.gz
51 +"
52 +
53 +LICENSE="BSD"
54 +SLOT="0"
55 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos"
56 +IUSE="examples"
57 +
58 +distutils_enable_sphinx docs \
59 + '>=dev-python/docutils-0.14' \
60 + dev-python/pallets-sphinx-themes \
61 + dev-python/sphinxcontrib-log_cabinet \
62 + dev-python/sphinx-issues \
63 + dev-python/sphinx-tabs
64 +distutils_enable_tests pytest
65 +
66 +python_install_all() {
67 + use examples && dodoc -r examples
68 + distutils-r1_python_install_all
69 +}