blob: a0ab1148dea1a6475eb22860ac037d57776e20f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_SINGLE_IMPL=1
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{10..13} pypy3 )
inherit distutils-r1 optfeature readme.gentoo-r1
DESCRIPTION="A plain text human readable/writable document format"
HOMEPAGE="
https://asciidoc.org/
https://github.com/asciidoc-py/asciidoc-py/
"
SRC_URI="https://github.com/asciidoc-py/asciidoc-py/releases/download/${PV}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
RDEPEND="
app-text/docbook-xml-dtd:4.5
>=app-text/docbook-xsl-stylesheets-1.75
dev-libs/libxslt
dev-libs/libxml2:2
"
BDEPEND="
test? ( $(python_gen_cond_dep '
dev-python/pytest-mock[${PYTHON_USEDEP}]
') )
"
DOC_CONTENTS="
If you are going to use a2x, please also look at a2x(1) under
REQUISITES for a list of runtime dependencies.
"
distutils_enable_tests pytest
src_install() {
distutils-r1_src_install
# TODO: Consider using Debian patch to allow /usr/share?
insinto /usr/share/asciidoc
doins -r asciidoc/resources/.
doman doc/*.1 # bug 834835
readme.gentoo_create_doc
}
pkg_postinst() {
readme.gentoo_print_elog
optfeature "music filter support" \
"media-sound/lilypond virtual/imagemagick-tools"
optfeature "source filter support" \
"dev-util/source-highlight dev-python/pygments app-text/highlight"
optfeature "latex filter support" \
"dev-texlive/texlive-latex app-text/dvipng" \
"dev-texlive/texlive-latex app-text/dvisvgm"
optfeature "graphviz filter support" "media-gfx/graphviz"
}
|