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/docutils/
Date: Tue, 23 Nov 2021 22:05:04
Message-Id: 1637705091.c0a31436fa9836dbbe2ee5bb3c32bf2c8c22b77a.mgorny@gentoo
1 commit: c0a31436fa9836dbbe2ee5bb3c32bf2c8c22b77a
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Nov 23 20:59:40 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Nov 23 22:04:51 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0a31436
7
8 dev-python/docutils: Bump to 0.18.1
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/docutils/Manifest | 1 +
13 dev-python/docutils/docutils-0.18.1.ebuild | 67 ++++++++++++++++++++++++++++++
14 2 files changed, 68 insertions(+)
15
16 diff --git a/dev-python/docutils/Manifest b/dev-python/docutils/Manifest
17 index 8e8b24c8fb7b..11b536632913 100644
18 --- a/dev-python/docutils/Manifest
19 +++ b/dev-python/docutils/Manifest
20 @@ -1,3 +1,4 @@
21 DIST docutils-0.16.tar.gz 1962041 BLAKE2B 64d045d43433e944686b5d9077de0b544d49d041adf398f9b66612db432860853df4a84f4c4b44461789b3039f83e3847547062b2f5bc5d2bde3a0f1ffc9ffba SHA512 4e0c6662924cac6b8f28bb77a4f50eafd637c1083990a23dbd905d8a05362a18dae96e63408ed43b595b693ca755c7961d1282129d3215ed3774af0dddcc0466
22 DIST docutils-0.17.1.tar.gz 2016138 BLAKE2B aa0b6525ba2e3eaebc17010806952ed5f40919876fcb813f50cc05b628dfd22e6073a9a4b2bfe989089ae68d9b7111ae3a97dda2bde5c0536f8fb76c0942fe29 SHA512 5ec2087116bd5356fdffc54f07f6b0355aac5fa9d6caeefa77e8d201fd4706c0d419193c4d9a3964ae493da3091fe2c7dc36b74f81a1e1b9282173658b06e71b
23 +DIST docutils-0.18.1.tar.gz 2043249 BLAKE2B 3959199236baade9601d61c3f6d7b6f840fbefdd46d9ea05869fde2cd2c800356a01faba891f51e220c85e66f3029f49f616f2046b85041b674c64825a4242ec SHA512 44404a6cc9d4c1e79c73a6ffee2898e459c9925ab9661e5d41394e13b3d861334cf0c5efcd18e87eb03041374e326cfd00539a6b2ec5979678889e8a536c9542
24 DIST docutils-0.18.tar.gz 2036219 BLAKE2B cb18016eaf674df18880cfac07484a68cfc158b68adc8c6ff5944b39407460a7feab192fb1c4bbef0293dacf58463e95c04bba53de578cf4e7c9ab8de14f6ed7 SHA512 c61bbe26b5f771dbfa4df94249bf19575088160f82a4a5cdf427a78d2675de915e9d979fffd515e353259ac57a08e7096c970f06ae20d7ca6f48d223072f0096
25
26 diff --git a/dev-python/docutils/docutils-0.18.1.ebuild b/dev-python/docutils/docutils-0.18.1.ebuild
27 new file mode 100644
28 index 000000000000..59a8486954f7
29 --- /dev/null
30 +++ b/dev-python/docutils/docutils-0.18.1.ebuild
31 @@ -0,0 +1,67 @@
32 +# Copyright 1999-2021 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=8
36 +
37 +PYTHON_COMPAT=( python3_{8..10} pypy3 )
38 +
39 +inherit distutils-r1
40 +
41 +DESCRIPTION="Python Documentation Utilities"
42 +HOMEPAGE="https://docutils.sourceforge.io/ https://pypi.org/project/docutils/"
43 +#SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
44 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
45 +
46 +LICENSE="BSD-2 GPL-3 public-domain"
47 +SLOT="0"
48 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
49 +IUSE=""
50 +
51 +RDEPEND="dev-python/pygments[${PYTHON_USEDEP}]"
52 +BDEPEND="${RDEPEND}"
53 +
54 +python_compile_all() {
55 + # Generate html docs from reStructured text sources.
56 +
57 + # Place html4css1.css in base directory to ensure that the generated reference to it is correct.
58 + cp docutils/writers/html4css1/html4css1.css . || die
59 +
60 + cd tools || die
61 + "${EPYTHON}" buildhtml.py --input-encoding=utf-8 \
62 + --stylesheet-path=../html4css1.css, --traceback ../docs || die
63 +}
64 +
65 +src_test() {
66 + cd test || die
67 + distutils-r1_src_test
68 +}
69 +
70 +python_test() {
71 + "${EPYTHON}" alltests.py -v || die "Testing failed with ${EPYTHON}"
72 +}
73 +
74 +python_install() {
75 + distutils-r1_python_install
76 +
77 + # Install tools.
78 + python_doscript tools/{buildhtml,quicktest}.py
79 +}
80 +
81 +install_txt_doc() {
82 + local doc="${1}"
83 + local dir="txt/$(dirname ${doc})"
84 + docinto "${dir}"
85 + dodoc "${doc}"
86 +}
87 +
88 +python_install_all() {
89 + local DOCS=( *.txt )
90 + local HTML_DOCS=( docs tools docutils/writers/html4css1/html4css1.css )
91 +
92 + distutils-r1_python_install_all
93 +
94 + local doc
95 + while IFS= read -r -d '' doc; do
96 + install_txt_doc "${doc}"
97 + done < <(find docs tools -name '*.txt' -print0)
98 +}