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