diff options
-rw-r--r-- | app-portage/gentle/Manifest | 1 | ||||
-rw-r--r-- | app-portage/gentle/gentle-0.3.1.ebuild | 43 |
2 files changed, 44 insertions, 0 deletions
diff --git a/app-portage/gentle/Manifest b/app-portage/gentle/Manifest index 44e009a44f2b..c9ad182b5c39 100644 --- a/app-portage/gentle/Manifest +++ b/app-portage/gentle/Manifest @@ -1 +1,2 @@ DIST gentle_mxml-0.3.0.tar.gz 34317 BLAKE2B caa5ce9e529a13c7df58b1b5622f1837bea1c05a77df7c85eefd087df204fcab14bbc0884b5dbfb056b4613520110e3a291a8f78cb4e798d6f32208e98d7da26 SHA512 a77154e43e17e12e514a5d579792d757b2e69c2aaa95a80af6e355eaaa8fcd2bd3e18373a96db7ad64804a1ce67dca32d9c0af2ac9bf11d5f18f0328d6501969 +DIST gentle_mxml-0.3.1.tar.gz 141735 BLAKE2B 6720ff9af32d83beac66e5e8fc71cc33a7554edb000b835d4f770da199806ebfbc3bdd95954b738f21768da6b6f8315cb870e2185b8066d5f69cad85128f60ec SHA512 4722e37c635d7f1b492bf52f3f4003deda1ba65c79be56228009875241048d6976b38e836e62f6d90adb8ec1bc545ff903487759ad581ffc0bb2e371d25dd780 diff --git a/app-portage/gentle/gentle-0.3.1.ebuild b/app-portage/gentle/gentle-0.3.1.ebuild new file mode 100644 index 000000000000..b24f526fe46e --- /dev/null +++ b/app-portage/gentle/gentle-0.3.1.ebuild @@ -0,0 +1,43 @@ +# Copyright 2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{10..11} ) +DISTUTILS_USE_PEP517=flit +PYPI_PN="gentle-mxml" +inherit distutils-r1 optfeature pypi + +DESCRIPTION="Gentoo Lazy Entry - a metadata.xml generator" +HOMEPAGE=" + https://gentle.sysrq.in + https://pypi.org/project/gentle-mxml/ +" + +LICENSE="WTFPL-2" +SLOT="0" +KEYWORDS="~amd64" + +BDEPEND=" + test? ( + app-text/xmldiff[${PYTHON_USEDEP}] + dev-python/pkginfo[${PYTHON_USEDEP}] + dev-python/pyyaml[${PYTHON_USEDEP}] + dev-python/rdflib[${PYTHON_USEDEP}] + $(python_gen_cond_dep \ + 'dev-python/tomli[${PYTHON_USEDEP}]' 3.10) + ) +" + +distutils_enable_tests pytest + +distutils_enable_sphinx docs \ + dev-python/insipid-sphinx-theme \ + dev-python/sphinx-prompt + +pkg_postinst() { + optfeature "PKG-INFO support" dev-python/pkginfo + optfeature "yaml support" dev-python/pyyaml + optfeature "rdf support" dev-python/rdflib + optfeature "toml support" dev-python/tomli +} |