public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:master commit in: dev-python/zope-testrunner/
@ 2023-02-06  8:21 Viorel Munteanu
  0 siblings, 0 replies; 4+ messages in thread
From: Viorel Munteanu @ 2023-02-06  8:21 UTC (permalink / raw
  To: gentoo-commits

commit:     8d916d9cbf0346625148eba5bc72b1b61183d42f
Author:     Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Sat Feb  4 21:06:08 2023 +0000
Commit:     Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
CommitDate: Sat Feb  4 21:06:15 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8d916d9c

dev-python/zope-testrunner: new package, add 5.6

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

 dev-python/zope-testrunner/Manifest                |  1 +
 dev-python/zope-testrunner/metadata.xml            | 19 +++++++
 .../zope-testrunner/zope-testrunner-5.6.ebuild     | 59 ++++++++++++++++++++++
 3 files changed, 79 insertions(+)

diff --git a/dev-python/zope-testrunner/Manifest b/dev-python/zope-testrunner/Manifest
new file mode 100644
index 000000000..7b70b06d3
--- /dev/null
+++ b/dev-python/zope-testrunner/Manifest
@@ -0,0 +1 @@
+DIST zope-testrunner-5.6.gh.tar.gz 134768 BLAKE2B 2b7a653bc3a35886044b9843f5e5dce4f94da7de79ec6a3be19841943370c48882809460ae40f188ed909d0c57366784cbcf3f6e075bd10f7dec3c98d910d72d SHA512 bce65e5cd64f7ddbe2b1aad359d084e1b7175ce7186b08ab9b24e3cc745c0b118ce69e4f09e86bf27a420823192b60f9d1a21ac02dd66abfbdd5c10986302b61

diff --git a/dev-python/zope-testrunner/metadata.xml b/dev-python/zope-testrunner/metadata.xml
new file mode 100644
index 000000000..331aa27e3
--- /dev/null
+++ b/dev-python/zope-testrunner/metadata.xml
@@ -0,0 +1,19 @@
+<?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>
+		<maintainer>
+			<name>Zope Foundation and Contributors</name>
+			<email>zope-dev@zope.org</email>
+		</maintainer>
+		<changelog>https://github.com/zopefoundation/zope.testrunner/blob/master/CHANGES.rst</changelog>
+		<doc>https://zopetestrunner.readthedocs.io/</doc>
+		<bugs-to>https://github.com/zopefoundation/zope.testrunner/issues</bugs-to>
+		<remote-id type="github">zopefoundation/zope.testrunner</remote-id>
+		<remote-id type="pypi">zope.testrunner</remote-id>
+	</upstream>
+</pkgmetadata>

diff --git a/dev-python/zope-testrunner/zope-testrunner-5.6.ebuild b/dev-python/zope-testrunner/zope-testrunner-5.6.ebuild
new file mode 100644
index 000000000..5da3a6a20
--- /dev/null
+++ b/dev-python/zope-testrunner/zope-testrunner-5.6.ebuild
@@ -0,0 +1,59 @@
+# 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="This package provides a flexible test runner with layer support."
+HOMEPAGE="https://github.com/zopefoundation/zope.testrunner"
+SRC_URI="https://github.com/zopefoundation/zope.testrunner/archive/${PV}.tar.gz -> ${P}.gh.tar.gz"
+S="${WORKDIR}/${PN/-/\.}-${PV}"
+
+LICENSE="ZPL"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+	dev-python/six[${PYTHON_USEDEP}]
+	dev-python/zope-interface[${PYTHON_USEDEP}]
+	dev-python/zope-exceptions[${PYTHON_USEDEP}]
+	doc? ( dev-python/sphinxcontrib-programoutput[${PYTHON_USEDEP}] )
+	test? ( dev-python/zope-testing[${PYTHON_USEDEP}] )
+"
+DEPEND="${RDEPEND}"
+
+distutils_enable_sphinx docs
+distutils_enable_tests unittest
+
+src_unpack() {
+	default
+	# Remove test that causes QA warnings
+	rm "${S}/src/zope/testrunner/tests/testrunner-ex/sample2/badsyntax.py" || die
+}
+
+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
+}
+
+python_test() {
+	cd "${BUILD_DIR}/install$(python_get_sitedir)" || die
+	distutils_write_namespace zope
+	eunittest
+}
+
+python_install() {
+	# Do not install unit tests
+	rm -r "${BUILD_DIR}/install$(python_get_sitedir)/zope/testrunner/tests" || die
+	distutils-r1_python_install
+}


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

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/zope-testrunner/
@ 2023-12-31 15:32 David Roman
  0 siblings, 0 replies; 4+ messages in thread
From: David Roman @ 2023-12-31 15:32 UTC (permalink / raw
  To: gentoo-commits

commit:     388f2d084302ebcb83bde129628efa5264d6f26d
Author:     Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Mon Dec 25 20:44:44 2023 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Sat Dec 30 19:03:59 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=388f2d08

dev-python/zope-testrunner: add 6.2.1

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

 dev-python/zope-testrunner/Manifest                |  1 +
 .../zope-testrunner/zope-testrunner-6.2.1.ebuild   | 54 ++++++++++++++++++++++
 2 files changed, 55 insertions(+)

diff --git a/dev-python/zope-testrunner/Manifest b/dev-python/zope-testrunner/Manifest
index d16d5a6aa6..3b1946089c 100644
--- a/dev-python/zope-testrunner/Manifest
+++ b/dev-python/zope-testrunner/Manifest
@@ -1 +1,2 @@
+DIST zope.testrunner-6.2.1.tar.gz 150397 BLAKE2B 57210c321ae66738cc2c533a3e9d183273bbc2b98b639fa3a30502ddcb98154eb62f36d50d25674b255547788433498f341ceaec9c1744810571df007632bffd SHA512 5dc8764a518b49f42ef16b64ccb70fb772de0ccda2057ae90597a64975b01c25e885133385e791376f6664b72c67a98499934ebda64238511beef28416ec6add
 DIST zope.testrunner-6.2.tar.gz 150192 BLAKE2B 4ce0a5ed134910a4fb8cbc68700fbcd3d6e7508654e1ac68d51f5671e797e886a28ef0b55126f5b359cb704ec4b1c4d6f1ed9e66d25d0f83dd62e4884a262358 SHA512 5fc559c497c9db67c81af692e83d60d5cb75ee4cdb28b25c23040eccdaf01d704b2897b385e35e09e916792f6bf7155eded67d4b5de3c1beb1a435590c249dfd

diff --git a/dev-python/zope-testrunner/zope-testrunner-6.2.1.ebuild b/dev-python/zope-testrunner/zope-testrunner-6.2.1.ebuild
new file mode 100644
index 0000000000..ca4c95caa3
--- /dev/null
+++ b/dev-python/zope-testrunner/zope-testrunner-6.2.1.ebuild
@@ -0,0 +1,54 @@
+# 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..12} )
+
+PYPI_NO_NORMALIZE=1
+PYPI_PN="${PN/-/\.}"
+inherit distutils-r1 pypi
+
+DESCRIPTION="This package provides a flexible test runner with layer support."
+HOMEPAGE="https://github.com/zopefoundation/zope.testrunner
+	https://pypi.org/project/zope.testrunner/
+"
+
+LICENSE="ZPL"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+	dev-python/zope-interface[${PYTHON_USEDEP}]
+	dev-python/zope-exceptions[${PYTHON_USEDEP}]
+	doc? ( dev-python/sphinxcontrib-programoutput[${PYTHON_USEDEP}] )
+	test? ( dev-python/zope-testing[${PYTHON_USEDEP}] )
+"
+DEPEND="${RDEPEND}"
+
+distutils_enable_sphinx docs
+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
+}
+
+python_test() {
+	cd "${BUILD_DIR}/install$(python_get_sitedir)" || die
+	distutils_write_namespace zope
+	eunittest
+}
+
+python_install() {
+	# Do not install unit tests
+	rm -r "${BUILD_DIR}/install$(python_get_sitedir)/zope/testrunner/tests" || die
+	distutils-r1_python_install
+}


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

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/zope-testrunner/
@ 2023-12-31 15:32 David Roman
  0 siblings, 0 replies; 4+ messages in thread
From: David Roman @ 2023-12-31 15:32 UTC (permalink / raw
  To: gentoo-commits

commit:     d1ed5b38c73131cc65e8febbc54a3f9cedc1ca5d
Author:     Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Sat Dec 23 17:26:10 2023 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Sat Dec 30 19:03:59 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d1ed5b38

dev-python/zope-testrunner: drop 6.1

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

 dev-python/zope-testrunner/Manifest                |  1 -
 .../zope-testrunner/zope-testrunner-6.1.ebuild     | 53 ----------------------
 2 files changed, 54 deletions(-)

diff --git a/dev-python/zope-testrunner/Manifest b/dev-python/zope-testrunner/Manifest
index 62e0617ec5..d16d5a6aa6 100644
--- a/dev-python/zope-testrunner/Manifest
+++ b/dev-python/zope-testrunner/Manifest
@@ -1,2 +1 @@
-DIST zope.testrunner-6.1.tar.gz 154261 BLAKE2B e68c6449c1cccc059e5e07abb528fb39bc1409d6c56932299ffd3949c803d585bc432463f1e256a6fa47dc1c8b173c3f488220821a60c6e38c0191fa4af4f75d SHA512 6f23bcc7a27b0c5ab8b59ad0ea03a5482b4e7e924b8df41e5c78e86c402971761c875070c5b8553d3d90f772d04422a07bde675b8e2cb160fe5326031226fde3
 DIST zope.testrunner-6.2.tar.gz 150192 BLAKE2B 4ce0a5ed134910a4fb8cbc68700fbcd3d6e7508654e1ac68d51f5671e797e886a28ef0b55126f5b359cb704ec4b1c4d6f1ed9e66d25d0f83dd62e4884a262358 SHA512 5fc559c497c9db67c81af692e83d60d5cb75ee4cdb28b25c23040eccdaf01d704b2897b385e35e09e916792f6bf7155eded67d4b5de3c1beb1a435590c249dfd

diff --git a/dev-python/zope-testrunner/zope-testrunner-6.1.ebuild b/dev-python/zope-testrunner/zope-testrunner-6.1.ebuild
deleted file mode 100644
index baa599edea..0000000000
--- a/dev-python/zope-testrunner/zope-testrunner-6.1.ebuild
+++ /dev/null
@@ -1,53 +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} )
-
-PYPI_NO_NORMALIZE=1
-PYPI_PN="${PN/-/\.}"
-inherit distutils-r1 pypi
-
-DESCRIPTION="This package provides a flexible test runner with layer support."
-HOMEPAGE="https://github.com/zopefoundation/zope.testrunner"
-
-LICENSE="ZPL"
-SLOT="0"
-KEYWORDS="~amd64"
-
-RDEPEND="
-	dev-python/six[${PYTHON_USEDEP}]
-	dev-python/zope-interface[${PYTHON_USEDEP}]
-	dev-python/zope-exceptions[${PYTHON_USEDEP}]
-	doc? ( dev-python/sphinxcontrib-programoutput[${PYTHON_USEDEP}] )
-	test? ( dev-python/zope-testing[${PYTHON_USEDEP}] )
-"
-DEPEND="${RDEPEND}"
-
-distutils_enable_sphinx docs
-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
-}
-
-python_test() {
-	cd "${BUILD_DIR}/install$(python_get_sitedir)" || die
-	distutils_write_namespace zope
-	eunittest
-}
-
-python_install() {
-	# Do not install unit tests
-	rm -r "${BUILD_DIR}/install$(python_get_sitedir)/zope/testrunner/tests" || die
-	distutils-r1_python_install
-}


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

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/zope-testrunner/
@ 2024-01-04 15:19 Viorel Munteanu
  0 siblings, 0 replies; 4+ messages in thread
From: Viorel Munteanu @ 2024-01-04 15:19 UTC (permalink / raw
  To: gentoo-commits

commit:     eb5d87913f22a322f6c50cb8efe4fc933514bade
Author:     Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Thu Jan  4 02:10:35 2024 +0000
Commit:     Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
CommitDate: Thu Jan  4 02:10:35 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=eb5d8791

dev-python/zope-testrunner: treeclean

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

 dev-python/zope-testrunner/Manifest                |  2 -
 dev-python/zope-testrunner/metadata.xml            | 19 --------
 .../zope-testrunner/zope-testrunner-6.2.1.ebuild   | 54 ----------------------
 .../zope-testrunner/zope-testrunner-6.2.ebuild     | 53 ---------------------
 4 files changed, 128 deletions(-)

diff --git a/dev-python/zope-testrunner/Manifest b/dev-python/zope-testrunner/Manifest
deleted file mode 100644
index 3b1946089c..0000000000
--- a/dev-python/zope-testrunner/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST zope.testrunner-6.2.1.tar.gz 150397 BLAKE2B 57210c321ae66738cc2c533a3e9d183273bbc2b98b639fa3a30502ddcb98154eb62f36d50d25674b255547788433498f341ceaec9c1744810571df007632bffd SHA512 5dc8764a518b49f42ef16b64ccb70fb772de0ccda2057ae90597a64975b01c25e885133385e791376f6664b72c67a98499934ebda64238511beef28416ec6add
-DIST zope.testrunner-6.2.tar.gz 150192 BLAKE2B 4ce0a5ed134910a4fb8cbc68700fbcd3d6e7508654e1ac68d51f5671e797e886a28ef0b55126f5b359cb704ec4b1c4d6f1ed9e66d25d0f83dd62e4884a262358 SHA512 5fc559c497c9db67c81af692e83d60d5cb75ee4cdb28b25c23040eccdaf01d704b2897b385e35e09e916792f6bf7155eded67d4b5de3c1beb1a435590c249dfd

diff --git a/dev-python/zope-testrunner/metadata.xml b/dev-python/zope-testrunner/metadata.xml
deleted file mode 100644
index 331aa27e36..0000000000
--- a/dev-python/zope-testrunner/metadata.xml
+++ /dev/null
@@ -1,19 +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>
-	<upstream>
-		<maintainer>
-			<name>Zope Foundation and Contributors</name>
-			<email>zope-dev@zope.org</email>
-		</maintainer>
-		<changelog>https://github.com/zopefoundation/zope.testrunner/blob/master/CHANGES.rst</changelog>
-		<doc>https://zopetestrunner.readthedocs.io/</doc>
-		<bugs-to>https://github.com/zopefoundation/zope.testrunner/issues</bugs-to>
-		<remote-id type="github">zopefoundation/zope.testrunner</remote-id>
-		<remote-id type="pypi">zope.testrunner</remote-id>
-	</upstream>
-</pkgmetadata>

diff --git a/dev-python/zope-testrunner/zope-testrunner-6.2.1.ebuild b/dev-python/zope-testrunner/zope-testrunner-6.2.1.ebuild
deleted file mode 100644
index ca4c95caa3..0000000000
--- a/dev-python/zope-testrunner/zope-testrunner-6.2.1.ebuild
+++ /dev/null
@@ -1,54 +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..12} )
-
-PYPI_NO_NORMALIZE=1
-PYPI_PN="${PN/-/\.}"
-inherit distutils-r1 pypi
-
-DESCRIPTION="This package provides a flexible test runner with layer support."
-HOMEPAGE="https://github.com/zopefoundation/zope.testrunner
-	https://pypi.org/project/zope.testrunner/
-"
-
-LICENSE="ZPL"
-SLOT="0"
-KEYWORDS="~amd64"
-
-RDEPEND="
-	dev-python/zope-interface[${PYTHON_USEDEP}]
-	dev-python/zope-exceptions[${PYTHON_USEDEP}]
-	doc? ( dev-python/sphinxcontrib-programoutput[${PYTHON_USEDEP}] )
-	test? ( dev-python/zope-testing[${PYTHON_USEDEP}] )
-"
-DEPEND="${RDEPEND}"
-
-distutils_enable_sphinx docs
-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
-}
-
-python_test() {
-	cd "${BUILD_DIR}/install$(python_get_sitedir)" || die
-	distutils_write_namespace zope
-	eunittest
-}
-
-python_install() {
-	# Do not install unit tests
-	rm -r "${BUILD_DIR}/install$(python_get_sitedir)/zope/testrunner/tests" || die
-	distutils-r1_python_install
-}

diff --git a/dev-python/zope-testrunner/zope-testrunner-6.2.ebuild b/dev-python/zope-testrunner/zope-testrunner-6.2.ebuild
deleted file mode 100644
index 38d60115a7..0000000000
--- a/dev-python/zope-testrunner/zope-testrunner-6.2.ebuild
+++ /dev/null
@@ -1,53 +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..12} )
-
-PYPI_NO_NORMALIZE=1
-PYPI_PN="${PN/-/\.}"
-inherit distutils-r1 pypi
-
-DESCRIPTION="This package provides a flexible test runner with layer support."
-HOMEPAGE="https://github.com/zopefoundation/zope.testrunner"
-
-LICENSE="ZPL"
-SLOT="0"
-KEYWORDS="~amd64"
-
-RDEPEND="
-	dev-python/six[${PYTHON_USEDEP}]
-	dev-python/zope-interface[${PYTHON_USEDEP}]
-	dev-python/zope-exceptions[${PYTHON_USEDEP}]
-	doc? ( dev-python/sphinxcontrib-programoutput[${PYTHON_USEDEP}] )
-	test? ( dev-python/zope-testing[${PYTHON_USEDEP}] )
-"
-DEPEND="${RDEPEND}"
-
-distutils_enable_sphinx docs
-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
-}
-
-python_test() {
-	cd "${BUILD_DIR}/install$(python_get_sitedir)" || die
-	distutils_write_namespace zope
-	eunittest
-}
-
-python_install() {
-	# Do not install unit tests
-	rm -r "${BUILD_DIR}/install$(python_get_sitedir)/zope/testrunner/tests" || die
-	distutils-r1_python_install
-}


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

end of thread, other threads:[~2024-01-04 15:19 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-04 15:19 [gentoo-commits] repo/proj/guru:master commit in: dev-python/zope-testrunner/ Viorel Munteanu
  -- strict thread matches above, loose matches on Subject: below --
2023-12-31 15:32 David Roman
2023-12-31 15:32 David Roman
2023-02-06  8:21 Viorel Munteanu

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