diff options
author | V3n3RiX <venerix@koprulu.sector> | 2021-12-22 14:08:05 +0000 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2021-12-22 14:08:05 +0000 |
commit | 93a93e9a3b53c1a73142a305ea1f8136846942ee (patch) | |
tree | b9791a06ab3284e27b568412c59316c66240c682 /dev-python/sphinx-jinja | |
parent | 2771f79232c273bc2a57d23bf335dd81ccf6af28 (diff) |
gentoo resync : 22.12.2021
Diffstat (limited to 'dev-python/sphinx-jinja')
-rw-r--r-- | dev-python/sphinx-jinja/Manifest | 2 | ||||
-rw-r--r-- | dev-python/sphinx-jinja/sphinx-jinja-1.2.1-r1.ebuild | 29 |
2 files changed, 31 insertions, 0 deletions
diff --git a/dev-python/sphinx-jinja/Manifest b/dev-python/sphinx-jinja/Manifest index d7a123b90ecd..bd12131c540f 100644 --- a/dev-python/sphinx-jinja/Manifest +++ b/dev-python/sphinx-jinja/Manifest @@ -1,3 +1,5 @@ DIST sphinx-jinja-1.1.0.tar.gz 7306 BLAKE2B 17b8df65f32e0b39eeed406b9bd71974a2b4399154b6d3bf13d9011c0d415b856345ec2fffff8fed39f893b7adb5fa1c012ebf80319ac6af74739e7fe9372229 SHA512 acbe1c2f2044b8e202db60a9964c509a33206c113ca2833dc43bb4849bc91e26b0c84959d8c8f2e5331c33c2e9de73c0348a3841740a5b7d260a43bf4876949f +DIST sphinx-jinja-1.2.1.gh.tar.gz 16963 BLAKE2B 6ec67c6e212fa9e99705c02633416d1397a5ae36dc66984f2839609b9924930b6b5b49ff56b0b712f1326f6651f44d2ba3a15c0061cb6131517f6a463b12552b SHA512 31905aef35b87e5b44bc777a5bd01c5b9fe9350c849b918407710a6b75e26a1f217cd2524874ebb2b97c20c53c4f3fd678b1f166f8100eb81b489f23d114d24b EBUILD sphinx-jinja-1.1.0.ebuild 858 BLAKE2B 489745ed965b4bcb5aa4c447aeac73bf6ff21e1599786aa21b3c0cb9a311c160860351c0f088dfc71cf78b7b041a46649908016d3441b0b4c0705383b656442e SHA512 794118f3a62fc7cfba94b1af47a1c5c332ade37ab555abf45d5922624fe764988fb080976774c4e80ad3e1650774286997226fcebdbf66b05879ff26d80c6177 +EBUILD sphinx-jinja-1.2.1-r1.ebuild 744 BLAKE2B 102fe8b1ad8336911b5d565743f7e56dbcc5fb88da85f8c7ec8547c3be9a50c15386214eef8322d2ba1c610d9cc2f8c6e2f61497e6e979cd22783358bbf0ac94 SHA512 2f3bff4b05390c7d29184cbe66ac27c765f6da0b3a1fbbd7b50a8256f70e307f51501f9177fdd935a7a98b9f601a5db83a2b7fc0ac360b7d7543e1ea415f9cfe MISC metadata.xml 421 BLAKE2B 99ffa81ad81b8ae46f1dc4eba44492940d1097ea09e3d6fe171249756b35114b6becdd5eff3ed4d81154e63a7ded579b37728cd88e5e3dfb659a17c79921df02 SHA512 c60a68b7c6b7c89bc2707f8f5972d7680541e3f27c7f1ee8c963b7efdae606e5df031cb759d58a55bd02fda07df3e94e35a50e99a4a8bf9eebec66ab33eb7333 diff --git a/dev-python/sphinx-jinja/sphinx-jinja-1.2.1-r1.ebuild b/dev-python/sphinx-jinja/sphinx-jinja-1.2.1-r1.ebuild new file mode 100644 index 000000000000..95004b796bcd --- /dev/null +++ b/dev-python/sphinx-jinja/sphinx-jinja-1.2.1-r1.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) +DISTUTILS_USE_SETUPTOOLS=pyproject.toml +inherit distutils-r1 + +DESCRIPTION="A sphinx extension to include jinja based templates into a sphinx doc" +HOMEPAGE="https://github.com/tardyp/sphinx-jinja https://pypi.org/project/sphinx-jinja/" +SRC_URI=" + https://github.com/tardyp/sphinx-jinja/archive/${PV}.tar.gz + -> ${P}.gh.tar.gz +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND="dev-python/sphinx[${PYTHON_USEDEP}]" + +distutils_enable_tests pytest + +python_install() { + # Avoid namespace collision: bug #829747 + rm "${BUILD_DIR}"/lib/sphinxcontrib/__init__.py || die + distutils-r1_python_install +} |