dev-python/sphinxcontrib-fulltoc: initial import

Signed-off-by: Viorel Munteanu <ceamac.paragon@gmail.com>
This commit is contained in:
Viorel Munteanu
2022-01-03 23:19:26 +02:00
parent 80b0e3f6f5
commit daa6a6872e
3 changed files with 48 additions and 0 deletions

View File

@@ -0,0 +1 @@
DIST sphinxcontrib-fulltoc-1.2.tar.gz 12366 BLAKE2B 229fed6e70f6908152b88ad192fcc19df862905d5c99580f0bd9be8dc44f2a6355c14d6121e69f6e9beec3111d2328d05158052712cc0e5f287f1872ed792e9b SHA512 ea622e1918711390d58061e3608ea8e4d72ccc104c7f80577060c0cc8d608d78b5bdbf097302cf3f96153643266b4edc1a70d039b3f2e1ec555a230cd06671c9

View File

@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>ceamac.paragon@gmail.com</email>
<description>Primary maintainer</description>
</maintainer>
<upstream>
<remote-id type="github">sphinx-contrib/fulltoc</remote-id>
<remote-id type="pypi">sphinxcontrib-fulltoc</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,35 @@
# Copyright 2021-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="python-dbus-next is a Python library for DBus"
HOMEPAGE="
https://github.com/sphinx-contrib/fulltoc
https://pypi.org/project/sphinxcontrib-fulltoc
https://sphinxcontrib-fulltoc.readthedocs.io
"
SRC_URI="https://github.com/sphinx-contrib/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
DEPEND=""
RDEPEND="${DEPEND}"
BDEPEND="dev-python/pbr[${PYTHON_USEDEP}]"
export OSLO_PACKAGE_VERSION=${PV}
S="${WORKDIR}/fulltoc-${PV}"
distutils_enable_tests setup.py
python_install_all() {
distutils-r1_python_install_all
find "${D}" -name '*.pth' -delete || die
}