dev-python/sphinxcontrib-zopeext: new package, add 0.4.2

Signed-off-by: Julien Roy <julien@jroy.ca>
This commit is contained in:
Julien Roy
2023-04-12 22:43:34 -04:00
parent 4a1d235963
commit 443f058802
3 changed files with 42 additions and 0 deletions

View File

@@ -0,0 +1 @@
DIST sphinxcontrib_zopeext-0.4.2.tar.gz 13887 BLAKE2B ce77989ff34fa76bf1263f0764a872a840cea2cf7817ab1697a8176b1bf4444f4791430b2aab8cd72026a5e56248c9dc43d1052e0e1a891456388f86bb8551d3 SHA512 acf78a943ff6842184b347251398df3e20f045601bbba755152f891ee8a5d08e137dea5dbbc38f8a82ea5f045681dce6ac83a2329d74d378d56758031111c317

View File

@@ -0,0 +1,14 @@
<?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>
<upstream>
<bugs-to>https://github.com/sphinx-contrib/zopeext/issues</bugs-to>
<changelog>https://github.com/sphinx-contrib/zopeext/blob/main/CHANGES</changelog>
<remote-id type="github">sphinx-contrib/zopeext</remote-id>
<remote-id type="pypi">sphinxcontrib-zopeext</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,27 @@
# Copyright 2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=pdm
PYTHON_COMPAT=( python3_{9..11} )
inherit distutils-r1 pypi
DESCRIPTION="Sphinx extension for using Zope interfaces"
HOMEPAGE="https://github.com/sphinx-contrib/zopeext"
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="
dev-python/importlib_metadata[${PYTHON_USEDEP}]
dev-python/zope-interface[${PYTHON_USEDEP}]
"
src_unpack() {
default
sed -i -e "s/pdm-backend/pdm-pep517/" "${S}/pyproject.toml" || die
sed -i -e "s/pdm\.backend/pdm.pep517.api/" "${S}/pyproject.toml" || die
}