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/hatch-fancy-pypi-readme/
Date: Thu, 22 Sep 2022 07:40:59
Message-Id: 1663832447.84174dcad533cf0fd4aa22e17e43b40a5c43cdf2.mgorny@gentoo
1 commit: 84174dcad533cf0fd4aa22e17e43b40a5c43cdf2
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 22 07:14:51 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 22 07:40:47 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84174dca
7
8 dev-python/hatch-fancy-pypi-readme: Bump to 22.7.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/hatch-fancy-pypi-readme/Manifest | 1 +
13 .../hatch-fancy-pypi-readme-22.7.0.ebuild | 37 ++++++++++++++++++++++
14 2 files changed, 38 insertions(+)
15
16 diff --git a/dev-python/hatch-fancy-pypi-readme/Manifest b/dev-python/hatch-fancy-pypi-readme/Manifest
17 index 172765ae3b7b..bf73e6338d45 100644
18 --- a/dev-python/hatch-fancy-pypi-readme/Manifest
19 +++ b/dev-python/hatch-fancy-pypi-readme/Manifest
20 @@ -1 +1,2 @@
21 DIST hatch-fancy-pypi-readme-22.3.0.gh.tar.gz 22107 BLAKE2B 7358a35ed9176d5107d406c1f99cfcf17ce409224dcad55ac845087e2fd6cc9ab88e5ea929e3b1304bbff6464cbbbd0b0d9716bcfe199dcd887c809cd6a9356a SHA512 93fe293ddce6dde450bc427d8fa492cf2b1f7d4a0e2d754873f765f588a962ca2c7c48b515ba613503bed6100b302ed91bbedb4d6a9f8d7bc10ab4b1418164e8
22 +DIST hatch-fancy-pypi-readme-22.7.0.gh.tar.gz 25457 BLAKE2B 7426e6d8407b6b137524e651fdd4637980cdd781735c79df5172d3c9c45e5b7f07957e2591cc84c7eb750ac494770a68a8a7590dc7131eeb48c44bdb5a9995ac SHA512 4c6a02ac3774ee87f1cd725fae341739c3037aae772361e5664539fd0d8c09ba359245ddc925e028387a0359856979e35588d23824a66584a10f9fcac108b7d4
23
24 diff --git a/dev-python/hatch-fancy-pypi-readme/hatch-fancy-pypi-readme-22.7.0.ebuild b/dev-python/hatch-fancy-pypi-readme/hatch-fancy-pypi-readme-22.7.0.ebuild
25 new file mode 100644
26 index 000000000000..f954065f6873
27 --- /dev/null
28 +++ b/dev-python/hatch-fancy-pypi-readme/hatch-fancy-pypi-readme-22.7.0.ebuild
29 @@ -0,0 +1,37 @@
30 +# Copyright 2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +DISTUTILS_USE_PEP517=hatchling
36 +PYTHON_COMPAT=( pypy3 python3_{8..11} )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Fancy PyPI READMEs with Hatch"
41 +HOMEPAGE="
42 + https://pypi.org/project/hatch-fancy-pypi-readme/
43 + https://github.com/hynek/hatch-fancy-pypi-readme/
44 +"
45 +SRC_URI="
46 + https://github.com/hynek/hatch-fancy-pypi-readme/archive/${PV}.tar.gz
47 + -> ${P}.gh.tar.gz
48 +"
49 +
50 +LICENSE="MIT"
51 +SLOT="0"
52 +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
53 +
54 +RDEPEND="
55 + dev-python/hatchling[${PYTHON_USEDEP}]
56 + $(python_gen_cond_dep '
57 + dev-python/tomli[${PYTHON_USEDEP}]
58 + ' 3.8 3.9 3.10)
59 +"
60 +
61 +distutils_enable_tests pytest
62 +
63 +EPYTEST_DESELECT=(
64 + # fails without Internet (via pip)
65 + tests/test_end_to_end.py
66 +)