commit: 32ffff2d9360443c91f06d9d868b57bef54ace61 Author: Sebastian Pipping <sping <AT> gentoo <DOT> org> AuthorDate: Fri Mar 28 17:50:02 2025 +0000 Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org> CommitDate: Fri Mar 28 17:53:37 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32ffff2d
app-text/wiki2beamer: Python 3.13 Closes: https://bugs.gentoo.org/952257 Signed-off-by: Sebastian Pipping <sping <AT> gentoo.org> app-text/wiki2beamer/wiki2beamer-0.10.0-r4.ebuild | 45 +++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/app-text/wiki2beamer/wiki2beamer-0.10.0-r4.ebuild b/app-text/wiki2beamer/wiki2beamer-0.10.0-r4.ebuild new file mode 100644 index 000000000000..cc22bb6f5260 --- /dev/null +++ b/app-text/wiki2beamer/wiki2beamer-0.10.0-r4.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +PYTHON_COMPAT=( python3_{9..13} ) +DISTUTILS_USE_PEP517=setuptools + +inherit python-single-r1 + +DESCRIPTION="Tool to produce LaTeX Beamer code from wiki-like input" + +MY_P=wiki2beamer-v${PV} +HOMEPAGE="https://wiki2beamer.github.io/" +SRC_URI="https://github.com/wiki2beamer/wiki2beamer/archive/${MY_P}.tar.gz" + +S="${WORKDIR}/wiki2beamer-${MY_P}" + +LICENSE="GPL-2+ FDL-1.3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc +examples" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +RDEPEND="${PYTHON_DEPS}" +DEPEND="${RDEPEND} + app-arch/unzip + doc? ( dev-ruby/asciidoctor )" + +PATCHES=( + "${FILESDIR}"/${P}-doc-examples-makefile.patch + "${FILESDIR}"/${P}-doc-man-makefile.patch +) + +src_compile() { + use doc && emake -C doc/man/ wiki2beamer.1 +} + +src_install() { + use examples && dodoc -r doc/examples + + use doc && doman doc/man/${PN}.1 + dodoc ChangeLog README.md + + python_doscript code/${PN} +}