dev-python/pdoc3: initial import

Signed-off-by: Florian Schmaus <flo@geekplace.eu>
This commit is contained in:
Florian Schmaus
2021-03-25 10:09:40 +01:00
parent df303668e0
commit 4c202f4250
3 changed files with 47 additions and 0 deletions

View File

@@ -0,0 +1 @@
DIST pdoc3-0.9.2.tar.gz 84803 BLAKE2B 5ff52a630722b9504d1de83bb236aaaafde95417ac163b79b3585156484a12b71a16de55d00ab7377b9e44eec7902384f1f648a514b8e7392da6f5e79f6f229f SHA512 653231a124239ec189dc5aa4dec59245c6d20e4ff6ca9cb7fa468410b712b766288f4c59f8c0d0b8c1a4190ce84603455ec0ad7c7b1e0dc4f28cd279bb69685f

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>flo@geekplace.eu</email>
<name>Florian Schmaus</name>
</maintainer>
<upstream>
<remote-id type="pypi">pdoc3</remote-id>
<remote-id type="github">pdoc3/pdoc</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,34 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{7..9} )
DISTUTILS_USE_SETUPTOOLS=rdepend
inherit distutils-r1
DESCRIPTION="Auto-generate API documentation for Python projects"
HOMEPAGE="https://pdoc3.github.io/pdoc/"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
SLOT="0"
LICENSE="AGPL-3"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
RDEPEND="
dev-python/mako[${PYTHON_USEDEP}]
>=dev-python/markdown-3.0[${PYTHON_USEDEP}]
"
DEPEND="
${RDEPEND}
dev-python/wheel[${PYTHON_USEDEP}]
"
python_prepare_all() {
distutils-r1_python_prepare_all
sed -i \
-e "/setuptools_git/d" \
-e "/setuptools_scm/d" \
setup.py || die
}