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: Sun, 18 Apr 2021 07:06:01
Message-Id: 1618729532.4e6abd518d6a761ed28b497990ccd9bea1c86b43.mgorny@gentoo
1 commit: 4e6abd518d6a761ed28b497990ccd9bea1c86b43
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Apr 18 06:44:18 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Apr 18 07:05:32 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e6abd51
7
8 dev-python/docutils: Bump to 0.17.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.17.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 2834bf3be7d..620663d1277 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.17.tar.gz 2014148 BLAKE2B 56d03d755651e9c022eb7ff79dd83bab8f8bbb2c8b6528c673b04b69db2c11084599bf7cc294ded3a024c4c1a688f232ff0f3c9f7a1ecafe1f857513d35123fd SHA512 e99886dc6420f6325426ebbe0d1528249592e372fe2a052548c9cd9c2fd87506cc8b74384a3cf4afb97a1d936a906e157e084785639aad59c4abbc672c33b689
24
25 diff --git a/dev-python/docutils/docutils-0.17.1.ebuild b/dev-python/docutils/docutils-0.17.1.ebuild
26 new file mode 100644
27 index 00000000000..3f2c2cceb54
28 --- /dev/null
29 +++ b/dev-python/docutils/docutils-0.17.1.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=7
35 +
36 +PYTHON_COMPAT=( python3_{7..9} 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 +}