* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/repoze-sphinx-autointerface/
@ 2023-02-04 21:30 Julien Roy
0 siblings, 0 replies; 4+ messages in thread
From: Julien Roy @ 2023-02-04 21:30 UTC (permalink / raw
To: gentoo-commits
commit: 37e62beb06fe9ccf554a4fdb6922bccedf06ab99
Author: Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Sat Feb 4 21:06:59 2023 +0000
Commit: Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Sat Feb 4 21:06:59 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=37e62beb
dev-python/repoze-sphinx-autointerface: new package, add 1.0.0
Signed-off-by: Julien Roy <julien <AT> jroy.ca>
dev-python/repoze-sphinx-autointerface/Manifest | 1 +
.../repoze-sphinx-autointerface/metadata.xml | 22 +++++++++++++
.../repoze-sphinx-autointerface-1.0.0.ebuild | 37 ++++++++++++++++++++++
3 files changed, 60 insertions(+)
diff --git a/dev-python/repoze-sphinx-autointerface/Manifest b/dev-python/repoze-sphinx-autointerface/Manifest
new file mode 100644
index 000000000..dfcde440c
--- /dev/null
+++ b/dev-python/repoze-sphinx-autointerface/Manifest
@@ -0,0 +1 @@
+DIST repoze-sphinx-autointerface-1.0.0.gh.tar.gz 10708 BLAKE2B d9013cd47088a130431a02a07b84c97daa4c8562b53c8c3d9691cfc67fa978dcf93592f86234d76e6cf8458f2ee3f01debe362a10a94df4ad004d120fa42f816 SHA512 58b3c22d5486defa0b50e76cbcdece8f7d9f82f6066178b9c50e4c1a6fb6a82e50e386b2c662d5026d2fd4831d392cbc23493c34d09bc225610f661ebc68db3f
diff --git a/dev-python/repoze-sphinx-autointerface/metadata.xml b/dev-python/repoze-sphinx-autointerface/metadata.xml
new file mode 100644
index 000000000..f5d1dc6f7
--- /dev/null
+++ b/dev-python/repoze-sphinx-autointerface/metadata.xml
@@ -0,0 +1,22 @@
+<?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>
diff --git a/dev-python/repoze-sphinx-autointerface/repoze-sphinx-autointerface-1.0.0.ebuild b/dev-python/repoze-sphinx-autointerface/repoze-sphinx-autointerface-1.0.0.ebuild
new file mode 100644
index 000000000..a69acf572
--- /dev/null
+++ b/dev-python/repoze-sphinx-autointerface/repoze-sphinx-autointerface-1.0.0.ebuild
@@ -0,0 +1,37 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{9..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/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
+}
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/repoze-sphinx-autointerface/
@ 2023-04-10 4:26 Julien Roy
0 siblings, 0 replies; 4+ messages in thread
From: Julien Roy @ 2023-04-10 4:26 UTC (permalink / raw
To: gentoo-commits
commit: f9ece69e0a103e8dbc6e9b5444caa55299e4715f
Author: Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Mon Apr 10 04:06:38 2023 +0000
Commit: Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Mon Apr 10 04:06:38 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f9ece69e
dev-python/repoze-sphinx-autointerface: add 1.0.0-r1
use pypi.eclass
add dev-python/sphinx dependency
Closes: https://bugs.gentoo.org/893380
Signed-off-by: Julien Roy <julien <AT> jroy.ca>
.../repoze-sphinx-autointerface-1.0.0-r1.ebuild | 40 ++++++++++++++++++++++
1 file changed, 40 insertions(+)
diff --git a/dev-python/repoze-sphinx-autointerface/repoze-sphinx-autointerface-1.0.0-r1.ebuild b/dev-python/repoze-sphinx-autointerface/repoze-sphinx-autointerface-1.0.0-r1.ebuild
new file mode 100644
index 000000000..8f2d47307
--- /dev/null
+++ b/dev-python/repoze-sphinx-autointerface/repoze-sphinx-autointerface-1.0.0-r1.ebuild
@@ -0,0 +1,40 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{9..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
+}
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/repoze-sphinx-autointerface/
@ 2023-04-10 4:26 Julien Roy
0 siblings, 0 replies; 4+ messages in thread
From: Julien Roy @ 2023-04-10 4:26 UTC (permalink / raw
To: gentoo-commits
commit: acb8acfca90b23aa218a8cea8eabaca11c8d05c3
Author: Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Mon Apr 10 04:26:47 2023 +0000
Commit: Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Mon Apr 10 04:26:47 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=acb8acfc
dev-python/repoze-sphinx-autointerface: drop 1.0.0
Signed-off-by: Julien Roy <julien <AT> jroy.ca>
.../repoze-sphinx-autointerface-1.0.0.ebuild | 37 ----------------------
1 file changed, 37 deletions(-)
diff --git a/dev-python/repoze-sphinx-autointerface/repoze-sphinx-autointerface-1.0.0.ebuild b/dev-python/repoze-sphinx-autointerface/repoze-sphinx-autointerface-1.0.0.ebuild
deleted file mode 100644
index a69acf572..000000000
--- a/dev-python/repoze-sphinx-autointerface/repoze-sphinx-autointerface-1.0.0.ebuild
+++ /dev/null
@@ -1,37 +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_{9..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/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
-}
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/repoze-sphinx-autointerface/
@ 2024-01-04 2:21 Julien Roy
0 siblings, 0 replies; 4+ messages in thread
From: Julien Roy @ 2024-01-04 2:21 UTC (permalink / raw
To: gentoo-commits
commit: f1db2ec8b5fab112c0cc3eccad1e8a77a07ed3fc
Author: Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Thu Jan 4 02:18:53 2024 +0000
Commit: Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Thu Jan 4 02:18:53 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f1db2ec8
dev-python/repoze-sphinx-autointerface: treeclean
Signed-off-by: Julien Roy <julien <AT> jroy.ca>
dev-python/repoze-sphinx-autointerface/Manifest | 1 -
.../repoze-sphinx-autointerface/metadata.xml | 22 ------------
.../repoze-sphinx-autointerface-1.0.0-r1.ebuild | 40 ----------------------
3 files changed, 63 deletions(-)
diff --git a/dev-python/repoze-sphinx-autointerface/Manifest b/dev-python/repoze-sphinx-autointerface/Manifest
deleted file mode 100644
index dfcde440c5..0000000000
--- a/dev-python/repoze-sphinx-autointerface/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST repoze-sphinx-autointerface-1.0.0.gh.tar.gz 10708 BLAKE2B d9013cd47088a130431a02a07b84c97daa4c8562b53c8c3d9691cfc67fa978dcf93592f86234d76e6cf8458f2ee3f01debe362a10a94df4ad004d120fa42f816 SHA512 58b3c22d5486defa0b50e76cbcdece8f7d9f82f6066178b9c50e4c1a6fb6a82e50e386b2c662d5026d2fd4831d392cbc23493c34d09bc225610f661ebc68db3f
diff --git a/dev-python/repoze-sphinx-autointerface/metadata.xml b/dev-python/repoze-sphinx-autointerface/metadata.xml
deleted file mode 100644
index f5d1dc6f72..0000000000
--- a/dev-python/repoze-sphinx-autointerface/metadata.xml
+++ /dev/null
@@ -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>
diff --git a/dev-python/repoze-sphinx-autointerface/repoze-sphinx-autointerface-1.0.0-r1.ebuild b/dev-python/repoze-sphinx-autointerface/repoze-sphinx-autointerface-1.0.0-r1.ebuild
deleted file mode 100644
index f40be84918..0000000000
--- a/dev-python/repoze-sphinx-autointerface/repoze-sphinx-autointerface-1.0.0-r1.ebuild
+++ /dev/null
@@ -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
-}
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-01-04 2:21 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-04 2:21 [gentoo-commits] repo/proj/guru:dev commit in: dev-python/repoze-sphinx-autointerface/ Julien Roy
-- strict thread matches above, loose matches on Subject: below --
2023-04-10 4:26 Julien Roy
2023-04-10 4:26 Julien Roy
2023-02-04 21:30 Julien Roy
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox