commit:     3fa584cc6ffef8106c80b4310fa8368f9f0151f8
Author:     Marc Joliet <marcec <AT> gmx <DOT> de>
AuthorDate: Tue Dec 15 13:36:08 2020 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Thu Dec 17 15:04:43 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3fa584cc

app-text/asciidoc-9.0.4: version bump

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Marc Joliet <marcec <AT> gmx.de>
Closes: https://bugs.gentoo.org/759979
Closes: https://github.com/gentoo/gentoo/pull/18666
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 app-text/asciidoc/Manifest              |  1 +
 app-text/asciidoc/asciidoc-9.0.4.ebuild | 86 +++++++++++++++++++++++++++++++++
 2 files changed, 87 insertions(+)

diff --git a/app-text/asciidoc/Manifest b/app-text/asciidoc/Manifest
index 99b52aacb62..cdfb8656f38 100644
--- a/app-text/asciidoc/Manifest
+++ b/app-text/asciidoc/Manifest
@@ -1 +1,2 @@
 DIST asciidoc-9.0.2.tar.gz 1144308 BLAKE2B 
5f5deca6b8c15d4b86e2bd6fdb131908eecd862a5fdbbd8418937050d335a25ad012a3b1bc716379f5623db676176fc6da1a09691c2b42a213a6230281626b69
 SHA512 
ea8f64ce54d2f1aa38eceb3c1c9be17b388776de58038f3b888ac5ebed76337fa2779e43eb7f47174adf0a0446ee808dbd1e4f8f7e1d7db99db7c4c8584d5624
+DIST asciidoc-9.0.4.tar.gz 1111102 BLAKE2B 
3c073e20e0b4cb1c3e43d45217240675d5a1349c5d27c8e03c4499505c17ad0a149f9495a42e28490f9c89f29dc25a1216e9145a6fd1483e589b5fee49a6279f
 SHA512 
9e24aaaf33ab56cf1dfa510a6be9722af364633234c9ffb20eeee3d0ba756059290f443de53b040570654a316ab4782a177c31377fc69747814da75760fcc88b

diff --git a/app-text/asciidoc/asciidoc-9.0.4.ebuild 
b/app-text/asciidoc/asciidoc-9.0.4.ebuild
new file mode 100644
index 00000000000..bc94bbefaca
--- /dev/null
+++ b/app-text/asciidoc/asciidoc-9.0.4.ebuild
@@ -0,0 +1,86 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6,7,8,9} pypy3 )
+
+inherit autotools optfeature python-single-r1 readme.gentoo-r1
+
+DESCRIPTION="A plain text human readable/writable document format"
+HOMEPAGE="https://asciidoc.org/ https://github.com/asciidoc/asciidoc-py3/";
+SRC_URI="https://github.com/${PN}/${PN}-py3/archive/${PV/_/}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE="doc test"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+RESTRICT="!test? ( test )"
+
+RDEPEND="${PYTHON_DEPS}
+       app-text/docbook-xml-dtd:4.5
+       >=app-text/docbook-xsl-stylesheets-1.75
+       dev-libs/libxslt
+       dev-libs/libxml2:2
+       "
+DEPEND="
+       test? (
+               ${PYTHON_DEPS}
+               app-text/dvipng
+               app-text/dvisvgm
+               dev-texlive/texlive-latex
+               dev-util/source-highlight
+               media-gfx/graphviz
+               media-gfx/imagemagick
+               media-sound/lilypond
+       )"
+
+DOC_CONTENTS="
+If you are going to use a2x, please also look at a2x(1) under
+REQUISITES for a list of runtime dependencies.
+"
+
+DOCS=( BUGS.txt CHANGELOG.txt README.asciidoc
+          docbook-xsl/asciidoc-docbook-xsl.txt dblatex/dblatex-readme.txt
+          filters/code/code-filter-readme.txt )
+
+S="${WORKDIR}/${PN}-py3-${PV/_/}"
+
+src_prepare() {
+       default
+       # Only needed for prefix - harmless (does nothing) otherwise
+       sed -i -e "s:^CONF_DIR=.*:CONF_DIR='${EPREFIX}/etc/asciidoc':" \
+               asciidoc.py || die
+
+       # enforce usage of the configured version of Python
+       sed -i -e "s:python3:${EPYTHON}:" Makefile.in || die
+
+       eautoreconf
+}
+
+src_configure() {
+       econf --sysconfdir="${EPREFIX}"/usr/share
+}
+
+src_install() {
+       default
+
+       if use doc; then
+               emake DESTDIR="${D}" docs
+       fi
+
+       python_fix_shebang "${ED}"/usr/bin/*.py
+
+       readme.gentoo_create_doc
+}
+
+pkg_postinst() {
+       readme.gentoo_print_elog
+
+       optfeature "\"music\" filter support" "media-sound/lilypond 
media-gfx/imagemagick"
+       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
+}

Reply via email to