commit: 72f7634df61c78afe557babe583a7216cd115dfb Author: Viorel Munteanu <ceamac <AT> gentoo <DOT> org> AuthorDate: Fri Mar 28 07:49:29 2025 +0000 Commit: Viorel Munteanu <ceamac <AT> gentoo <DOT> org> CommitDate: Fri Mar 28 07:53:17 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72f7634d
app-text/txt2tags: enable py3.13 Closes: https://bugs.gentoo.org/952256 Signed-off-by: Viorel Munteanu <ceamac <AT> gentoo.org> app-text/txt2tags/txt2tags-3.9-r1.ebuild | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/app-text/txt2tags/txt2tags-3.9-r1.ebuild b/app-text/txt2tags/txt2tags-3.9-r1.ebuild new file mode 100644 index 000000000000..5a847bc19e61 --- /dev/null +++ b/app-text/txt2tags/txt2tags-3.9-r1.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..13} ) +inherit distutils-r1 + +DESCRIPTION="Generate marked up documents (HTML, etc.)from a plain text file with markup" +HOMEPAGE="https://txt2tags.org" +SRC_URI="https://codeload.github.com/txt2tags/txt2tags/tar.gz/${PV} -> ${P}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos" + +python_test() { + cd test || die + "${EPYTHON}" run.py || die "Tests failed with ${EPYTHON}" +}
