public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:master commit in: dev-python/sphinxcontrib-zopeext/
@ 2023-04-13  7:02 Florian Schmaus
  0 siblings, 0 replies; 3+ messages in thread
From: Florian Schmaus @ 2023-04-13  7:02 UTC (permalink / raw
  To: gentoo-commits

commit:     443f0588020e6fc0fc9df1bcbc6d05947eb808d3
Author:     Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Thu Apr 13 02:43:34 2023 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Thu Apr 13 02:43:34 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=443f0588

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

Signed-off-by: Julien Roy <julien <AT> jroy.ca>

 dev-python/sphinxcontrib-zopeext/Manifest          |  1 +
 dev-python/sphinxcontrib-zopeext/metadata.xml      | 14 +++++++++++
 .../sphinxcontrib-zopeext-0.4.2.ebuild             | 27 ++++++++++++++++++++++
 3 files changed, 42 insertions(+)

diff --git a/dev-python/sphinxcontrib-zopeext/Manifest b/dev-python/sphinxcontrib-zopeext/Manifest
new file mode 100644
index 000000000..d4ae803f7
--- /dev/null
+++ b/dev-python/sphinxcontrib-zopeext/Manifest
@@ -0,0 +1 @@
+DIST sphinxcontrib_zopeext-0.4.2.tar.gz 13887 BLAKE2B ce77989ff34fa76bf1263f0764a872a840cea2cf7817ab1697a8176b1bf4444f4791430b2aab8cd72026a5e56248c9dc43d1052e0e1a891456388f86bb8551d3 SHA512 acf78a943ff6842184b347251398df3e20f045601bbba755152f891ee8a5d08e137dea5dbbc38f8a82ea5f045681dce6ac83a2329d74d378d56758031111c317

diff --git a/dev-python/sphinxcontrib-zopeext/metadata.xml b/dev-python/sphinxcontrib-zopeext/metadata.xml
new file mode 100644
index 000000000..d63299c08
--- /dev/null
+++ b/dev-python/sphinxcontrib-zopeext/metadata.xml
@@ -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>

diff --git a/dev-python/sphinxcontrib-zopeext/sphinxcontrib-zopeext-0.4.2.ebuild b/dev-python/sphinxcontrib-zopeext/sphinxcontrib-zopeext-0.4.2.ebuild
new file mode 100644
index 000000000..1828bf93e
--- /dev/null
+++ b/dev-python/sphinxcontrib-zopeext/sphinxcontrib-zopeext-0.4.2.ebuild
@@ -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
+}


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/sphinxcontrib-zopeext/
@ 2023-04-20  4:39 Haelwenn Monnier
  0 siblings, 0 replies; 3+ messages in thread
From: Haelwenn Monnier @ 2023-04-20  4:39 UTC (permalink / raw
  To: gentoo-commits

commit:     5f66b372931a2a254477711cb5bf0eb7087e22c7
Author:     Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Wed Apr 19 23:19:23 2023 +0000
Commit:     Haelwenn Monnier <contact <AT> hacktivis <DOT> me>
CommitDate: Wed Apr 19 23:19:23 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5f66b372

dev-python/sphinxcontrib-zopeext: importlib_metadata -> importlib-metadata

Signed-off-by: Julien Roy <julien <AT> jroy.ca>

 dev-python/sphinxcontrib-zopeext/sphinxcontrib-zopeext-0.4.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/sphinxcontrib-zopeext/sphinxcontrib-zopeext-0.4.2.ebuild b/dev-python/sphinxcontrib-zopeext/sphinxcontrib-zopeext-0.4.2.ebuild
index 1828bf93e..5780bb9fb 100644
--- a/dev-python/sphinxcontrib-zopeext/sphinxcontrib-zopeext-0.4.2.ebuild
+++ b/dev-python/sphinxcontrib-zopeext/sphinxcontrib-zopeext-0.4.2.ebuild
@@ -16,7 +16,7 @@ SLOT="0"
 KEYWORDS="~amd64"
 
 RDEPEND="
-	dev-python/importlib_metadata[${PYTHON_USEDEP}]
+	dev-python/importlib-metadata[${PYTHON_USEDEP}]
 	dev-python/zope-interface[${PYTHON_USEDEP}]
 "
 


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/sphinxcontrib-zopeext/
@ 2023-12-17 23:39 David Roman
  0 siblings, 0 replies; 3+ messages in thread
From: David Roman @ 2023-12-17 23:39 UTC (permalink / raw
  To: gentoo-commits

commit:     60c8a406c96c4a2a5e37a184621202135cd78489
Author:     David Roman <davidroman96 <AT> gmail <DOT> com>
AuthorDate: Sun Dec 17 23:37:23 2023 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Sun Dec 17 23:37:23 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=60c8a406

dev-python/sphinxcontrib-zopeext: enable py3.11, py3.12

Signed-off-by: David Roman <davidroman96 <AT> gmail.com>

 .../sphinxcontrib-zopeext/sphinxcontrib-zopeext-0.4.2-r1.ebuild    | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/dev-python/sphinxcontrib-zopeext/sphinxcontrib-zopeext-0.4.2-r1.ebuild b/dev-python/sphinxcontrib-zopeext/sphinxcontrib-zopeext-0.4.2-r1.ebuild
index 23f6b96eeb..f65ba17030 100644
--- a/dev-python/sphinxcontrib-zopeext/sphinxcontrib-zopeext-0.4.2-r1.ebuild
+++ b/dev-python/sphinxcontrib-zopeext/sphinxcontrib-zopeext-0.4.2-r1.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=pdm
-PYTHON_COMPAT=( python3_10 )
+PYTHON_COMPAT=( python3_{10,11,12} )
 
 inherit distutils-r1 pypi
 
@@ -18,11 +18,11 @@ KEYWORDS="~amd64"
 RDEPEND="
 	dev-python/importlib-metadata[${PYTHON_USEDEP}]
 	dev-python/zope-interface[${PYTHON_USEDEP}]
+	dev-python/sphinx[${PYTHON_USEDEP}]
 "
 BDEPEND="
 	test? (
 		dev-python/pytest-cov[${PYTHON_USEDEP}]
-		dev-python/sphinx-testing[${PYTHON_USEDEP}]
 	)
 "
 
@@ -31,3 +31,6 @@ PATCHES=(
 )
 
 distutils_enable_tests pytest
+
+# Tests requires sphinx-testing which has been removed from ::gentoo
+RESTRICT="test"


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2023-12-17 23:39 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-04-20  4:39 [gentoo-commits] repo/proj/guru:master commit in: dev-python/sphinxcontrib-zopeext/ Haelwenn Monnier
  -- strict thread matches above, loose matches on Subject: below --
2023-12-17 23:39 David Roman
2023-04-13  7:02 Florian Schmaus

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox