diff options
author | Thamognya Kodi <contact@thamognya.com> | 2022-06-13 21:42:21 +0700 |
---|---|---|
committer | Florian Schmaus <flow@gentoo.org> | 2022-06-21 09:00:43 +0200 |
commit | 526c2c69df0f08ea44120c940729a1f90149502c (patch) | |
tree | 2ae52f34da0245e9272a32480135e25a4f544f53 /app-text/asciidoc/asciidoc-10.2.0.ebuild | |
parent | media-sound/beets: sync live (diff) | |
download | gentoo-526c2c69df0f08ea44120c940729a1f90149502c.tar.gz gentoo-526c2c69df0f08ea44120c940729a1f90149502c.tar.bz2 gentoo-526c2c69df0f08ea44120c940729a1f90149502c.zip |
app-text/asciidoc: bump to 10.20, take maintainership
Signed-off-by: Thamognya Kodi <contact@thamognya.com>
Closes: https://github.com/gentoo/gentoo/pull/25876
Signed-off-by: Florian Schmaus <flow@gentoo.org>
Diffstat (limited to 'app-text/asciidoc/asciidoc-10.2.0.ebuild')
-rw-r--r-- | app-text/asciidoc/asciidoc-10.2.0.ebuild | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/app-text/asciidoc/asciidoc-10.2.0.ebuild b/app-text/asciidoc/asciidoc-10.2.0.ebuild new file mode 100644 index 000000000000..9f376b493bd3 --- /dev/null +++ b/app-text/asciidoc/asciidoc-10.2.0.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2022 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_{8..10} 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/" +# Could use the github tarball but we need autotools then +#SRC_URI="https://github.com/asciidoc-py/asciidoc-py/releases/download/${PV}/${P}.tar.gz" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" + +RDEPEND="app-text/docbook-xml-dtd:4.5 + >=app-text/docbook-xsl-stylesheets-1.75 + dev-libs/libxslt + dev-libs/libxml2:2" + +DOC_CONTENTS=" +If you are going to use a2x, please also look at a2x(1) under +REQUISITES for a list of runtime dependencies. +" + +src_install() { + distutils-r1_src_install + + # TODO: Consider using Debian patch to allow /usr/share? + insinto /usr/share/asciidoc + doins -r asciidoc/resources/. + + 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" +} |