dev-python/repoze-sphinx-autointerface: treeclean

Signed-off-by: Julien Roy <julien@jroy.ca>
This commit is contained in:
Julien Roy
2024-01-03 21:18:53 -05:00
parent 1b4f882a86
commit f1db2ec8b5
3 changed files with 0 additions and 63 deletions

View File

@@ -1 +0,0 @@
DIST repoze-sphinx-autointerface-1.0.0.gh.tar.gz 10708 BLAKE2B d9013cd47088a130431a02a07b84c97daa4c8562b53c8c3d9691cfc67fa978dcf93592f86234d76e6cf8458f2ee3f01debe362a10a94df4ad004d120fa42f816 SHA512 58b3c22d5486defa0b50e76cbcdece8f7d9f82f6066178b9c50e4c1a6fb6a82e50e386b2c662d5026d2fd4831d392cbc23493c34d09bc225610f661ebc68db3f

View File

@@ -1,22 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<name>Julien Roy</name>
<email>julien@jroy.ca</email>
</maintainer>
<longdescription>
This package defines an extension for the Sphinx documentation system. The extension allows generation of API documentation by introspection of zope.interface instances in code.
</longdescription>
<upstream>
<maintainer>
<name>Agendaless Consulting</name>
<email>repoze-dev@lists.repoze.org</email>
</maintainer>
<changelog>https://github.com/repoze/repoze.sphinx.autointerface/blob/master/CHANGES.rst</changelog>
<doc>https://github.com/repoze/repoze.sphinx.autointerface/</doc>
<bugs-to>https://github.com/repoze/repoze.sphinx.autointerface/issues</bugs-to>
<remote-id type="github">repoze/repoze.sphinx.autointerface</remote-id>
<remote-id type="pypi">repoze.sphinx.autointerface</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -1,40 +0,0 @@
# Copyright 2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{10..11} )
inherit distutils-r1
DESCRIPTION="Auto-generate Sphinx API docs from Zope interfaces"
HOMEPAGE="https://github.com/repoze/repoze.sphinx.autointerface/"
SRC_URI="https://github.com/repoze/repoze.sphinx.autointerface/archive/${PV}.tar.gz -> ${P}.gh.tar.gz"
S="${WORKDIR}/repoze.sphinx.autointerface-${PV}"
LICENSE="BSD-with-disclosure"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="
dev-python/zope-interface[${PYTHON_USEDEP}]
test? (
dev-python/sphinx[${PYTHON_USEDEP}]
dev-python/zope-testrunner[${PYTHON_USEDEP}]
)
"
DEPEND="${RDEPEND}"
distutils_enable_tests unittest
src_prepare() {
# strip rdep specific to namespaces
sed -i -e "/'setuptools'/d" setup.py || die
distutils-r1_src_prepare
}
python_compile() {
distutils-r1_python_compile
find "${BUILD_DIR}" -name '*.pth' -delete || die
}