* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-configuration/
@ 2017-12-11 3:49 Matt Thode
0 siblings, 0 replies; 39+ messages in thread
From: Matt Thode @ 2017-12-11 3:49 UTC (permalink / raw
To: gentoo-commits
commit: 6a591d1cfe7138959909b0e2d7dccf42c9adfb5e
Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 11 03:37:53 2017 +0000
Commit: Matt Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Mon Dec 11 03:48:43 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a591d1c
dev-python/zope-configuration: adding for mailman 3
Package-Manager: Portage-2.3.14, Repoman-2.3.6
dev-python/zope-configuration/Manifest | 1 +
dev-python/zope-configuration/metadata.xml | 18 ++++++++++
.../zope-configuration-4.1.0.ebuild | 40 ++++++++++++++++++++++
3 files changed, 59 insertions(+)
diff --git a/dev-python/zope-configuration/Manifest b/dev-python/zope-configuration/Manifest
new file mode 100644
index 00000000000..2b7dd0f38cf
--- /dev/null
+++ b/dev-python/zope-configuration/Manifest
@@ -0,0 +1 @@
+DIST zope.configuration-4.1.0.tar.gz 77780 BLAKE2B a3f0da446bbc858e43ccd4249c80db07b1f29df1fc31931c07bcd55116084a70b9618b15f22a8f1027e1fc53c8e2a7ba75bb3a80d8419c16cbef8f847299a3de SHA512 86bbc5ac22c61d485fcb55c4dafb5b81eaab0a08de1e5dc3cd586769323a09896e72b1e8aac790d3e8d8f93a133efd3f88a92a4b3c1075bdd0da62cd4e33c56a
diff --git a/dev-python/zope-configuration/metadata.xml b/dev-python/zope-configuration/metadata.xml
new file mode 100644
index 00000000000..3e47ce6bf27
--- /dev/null
+++ b/dev-python/zope-configuration/metadata.xml
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="project">
+ <email>python@gentoo.org</email>
+ </maintainer>
+ <maintainer type="person">
+ <email>prometheanfire@gentoo.org</email>
+ <name>Matthew Thode</name>
+ </maintainer>
+ <upstream>
+ <remote-id type="github">zopefoundation/zope.configuration</remote-id>
+ <remote-id type="pypi">zope.configuration</remote-id>
+ </upstream>
+ <longdescription lang="en">
+ The Zope configuration system provides an extensible system for supporting various kinds of configurations.
+ </longdescription>
+</pkgmetadata>
diff --git a/dev-python/zope-configuration/zope-configuration-4.1.0.ebuild b/dev-python/zope-configuration/zope-configuration-4.1.0.ebuild
new file mode 100644
index 00000000000..9b2acc4b23b
--- /dev/null
+++ b/dev-python/zope-configuration/zope-configuration-4.1.0.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=(python{2_7,3_4,3_5,3_6})
+
+inherit distutils-r1
+MY_PN=zope.configuration
+MY_P=${MY_PN}-${PV}
+
+DESCRIPTION="Zope Configuration Architecture"
+HOMEPAGE="https://github.com/zopefoundation/zope.configuration http://docs.zope.org/zope.configuration/"
+SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
+
+LICENSE="ZPL"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+IUSE="test"
+
+RDEPEND="dev-python/zope-i18nmessageid[${PYTHON_USEDEP}]
+ dev-python/zope-interface[${PYTHON_USEDEP}]
+ dev-python/zope-schema[${PYTHON_USEDEP}]"
+DEPEND="test? ( ${RDEPEND}
+ dev-python/nose[${PYTHON_USEDEP}] )
+ dev-python/setuptools[${PYTHON_USEDEP}]"
+
+S=${WORKDIR}/${MY_P}
+
+RESTRICT="test"
+
+python_test() {
+ nosetests || die
+}
+
+python_install_all() {
+ distutils-r1_python_install_all
+
+ # remove .pth files since dev-python/namespace-zope handles the ns
+ find "${D}" -name '*.pth' -delete || die
+}
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-configuration/
@ 2018-03-17 21:41 Michał Górny
0 siblings, 0 replies; 39+ messages in thread
From: Michał Górny @ 2018-03-17 21:41 UTC (permalink / raw
To: gentoo-commits
commit: c2e9e81d84052cdacea7f4508c70d36e49ecbeac
Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Sat Mar 17 15:47:06 2018 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Mar 17 21:41:40 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2e9e81d
dev-python/zope-configuration: use HTTPS
Closes: https://github.com/gentoo/gentoo/pull/7487
dev-python/zope-configuration/zope-configuration-4.1.0.ebuild | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/dev-python/zope-configuration/zope-configuration-4.1.0.ebuild b/dev-python/zope-configuration/zope-configuration-4.1.0.ebuild
index 9b2acc4b23b..028b2f248c3 100644
--- a/dev-python/zope-configuration/zope-configuration-4.1.0.ebuild
+++ b/dev-python/zope-configuration/zope-configuration-4.1.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -9,7 +9,8 @@ MY_PN=zope.configuration
MY_P=${MY_PN}-${PV}
DESCRIPTION="Zope Configuration Architecture"
-HOMEPAGE="https://github.com/zopefoundation/zope.configuration http://docs.zope.org/zope.configuration/"
+HOMEPAGE="https://github.com/zopefoundation/zope.configuration
+ https://docs.zope.org/zope.configuration/"
SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
LICENSE="ZPL"
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-configuration/
@ 2020-01-12 20:19 Matthew Thode
0 siblings, 0 replies; 39+ messages in thread
From: Matthew Thode @ 2020-01-12 20:19 UTC (permalink / raw
To: gentoo-commits
commit: e99a95dd61a40035bca35c6246f5f57ffa860077
Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 12 20:17:07 2020 +0000
Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Sun Jan 12 20:19:16 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e99a95dd
dev-python/zope-configuration: 4.3.1 bump
Fixes: https://bugs.gentoo.org/691536
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
dev-python/zope-configuration/Manifest | 1 +
.../zope-configuration-4.3.1.ebuild | 32 ++++++++++++++++++++++
2 files changed, 33 insertions(+)
diff --git a/dev-python/zope-configuration/Manifest b/dev-python/zope-configuration/Manifest
index 2b7dd0f38cf..0f845081d11 100644
--- a/dev-python/zope-configuration/Manifest
+++ b/dev-python/zope-configuration/Manifest
@@ -1 +1,2 @@
DIST zope.configuration-4.1.0.tar.gz 77780 BLAKE2B a3f0da446bbc858e43ccd4249c80db07b1f29df1fc31931c07bcd55116084a70b9618b15f22a8f1027e1fc53c8e2a7ba75bb3a80d8419c16cbef8f847299a3de SHA512 86bbc5ac22c61d485fcb55c4dafb5b81eaab0a08de1e5dc3cd586769323a09896e72b1e8aac790d3e8d8f93a133efd3f88a92a4b3c1075bdd0da62cd4e33c56a
+DIST zope.configuration-4.3.1.tar.gz 83223 BLAKE2B 9c55951932f34484fa6760a6a3cbdf89fbf8723c43b9b4ea2cf909b74716bcdd74d03327fc418f43bcfc8b6b5c17554cf8d062952d8d6880e49e6b270da9c1c8 SHA512 bc8edf84a391cab4f664ea3a4d24b65cb9db351c972b6118e69fe3c726bbe3337121ff59d687dddf463b3672ed6996f21d4437941c81dc456a4e5d837e0945d2
diff --git a/dev-python/zope-configuration/zope-configuration-4.3.1.ebuild b/dev-python/zope-configuration/zope-configuration-4.3.1.ebuild
new file mode 100644
index 00000000000..fe5dcefb34b
--- /dev/null
+++ b/dev-python/zope-configuration/zope-configuration-4.3.1.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=(python{2_7,3_6,3_7})
+
+inherit distutils-r1
+MY_PN=zope.configuration
+MY_P=${MY_PN}-${PV}
+
+DESCRIPTION="Zope Configuration Architecture"
+HOMEPAGE="https://github.com/zopefoundation/zope.configuration
+ https://docs.zope.org/zope.configuration/"
+SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
+
+LICENSE="ZPL"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+IUSE=""
+
+RDEPEND="dev-python/zope-i18nmessageid[${PYTHON_USEDEP}]
+ dev-python/zope-interface[${PYTHON_USEDEP}]
+ >=dev-python/zope-schema-4.9[${PYTHON_USEDEP}]"
+
+S=${WORKDIR}/${MY_P}
+
+python_install_all() {
+ distutils-r1_python_install_all
+
+ # remove .pth files since dev-python/namespace-zope handles the ns
+ find "${D}" -name '*.pth' -delete || die
+}
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-configuration/
@ 2020-03-29 12:22 Michał Górny
0 siblings, 0 replies; 39+ messages in thread
From: Michał Górny @ 2020-03-29 12:22 UTC (permalink / raw
To: gentoo-commits
commit: 6bd82ebe7fa5a7cd6582e20354dae191f28a93fd
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 29 12:14:45 2020 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Mar 29 12:20:05 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6bd82ebe
dev-python/zope-configuration: Remove redundant versions
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/zope-configuration/Manifest | 1 -
.../zope-configuration-4.1.0.ebuild | 41 ----------------------
2 files changed, 42 deletions(-)
diff --git a/dev-python/zope-configuration/Manifest b/dev-python/zope-configuration/Manifest
index 0f845081d11..83a4e4078e4 100644
--- a/dev-python/zope-configuration/Manifest
+++ b/dev-python/zope-configuration/Manifest
@@ -1,2 +1 @@
-DIST zope.configuration-4.1.0.tar.gz 77780 BLAKE2B a3f0da446bbc858e43ccd4249c80db07b1f29df1fc31931c07bcd55116084a70b9618b15f22a8f1027e1fc53c8e2a7ba75bb3a80d8419c16cbef8f847299a3de SHA512 86bbc5ac22c61d485fcb55c4dafb5b81eaab0a08de1e5dc3cd586769323a09896e72b1e8aac790d3e8d8f93a133efd3f88a92a4b3c1075bdd0da62cd4e33c56a
DIST zope.configuration-4.3.1.tar.gz 83223 BLAKE2B 9c55951932f34484fa6760a6a3cbdf89fbf8723c43b9b4ea2cf909b74716bcdd74d03327fc418f43bcfc8b6b5c17554cf8d062952d8d6880e49e6b270da9c1c8 SHA512 bc8edf84a391cab4f664ea3a4d24b65cb9db351c972b6118e69fe3c726bbe3337121ff59d687dddf463b3672ed6996f21d4437941c81dc456a4e5d837e0945d2
diff --git a/dev-python/zope-configuration/zope-configuration-4.1.0.ebuild b/dev-python/zope-configuration/zope-configuration-4.1.0.ebuild
deleted file mode 100644
index f21f3228d8b..00000000000
--- a/dev-python/zope-configuration/zope-configuration-4.1.0.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=(python{2_7,3_6})
-
-inherit distutils-r1
-MY_PN=zope.configuration
-MY_P=${MY_PN}-${PV}
-
-DESCRIPTION="Zope Configuration Architecture"
-HOMEPAGE="https://github.com/zopefoundation/zope.configuration
- https://docs.zope.org/zope.configuration/"
-SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
-
-LICENSE="ZPL"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
-IUSE="test"
-
-RDEPEND="dev-python/zope-i18nmessageid[${PYTHON_USEDEP}]
- dev-python/zope-interface[${PYTHON_USEDEP}]
- dev-python/zope-schema[${PYTHON_USEDEP}]"
-DEPEND="test? ( ${RDEPEND}
- dev-python/nose[${PYTHON_USEDEP}] )
- dev-python/setuptools[${PYTHON_USEDEP}]"
-
-S=${WORKDIR}/${MY_P}
-
-RESTRICT="test"
-
-python_test() {
- nosetests || die
-}
-
-python_install_all() {
- distutils-r1_python_install_all
-
- # remove .pth files since dev-python/namespace-zope handles the ns
- find "${D}" -name '*.pth' -delete || die
-}
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-configuration/
@ 2020-08-02 9:33 Michał Górny
0 siblings, 0 replies; 39+ messages in thread
From: Michał Górny @ 2020-08-02 9:33 UTC (permalink / raw
To: gentoo-commits
commit: 51d0ac7a4834664a44214308add97c9761b9701f
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 2 09:31:45 2020 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Aug 2 09:31:45 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51d0ac7a
dev-python/zope-configuration: Remove py2.7
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/zope-configuration/zope-configuration-4.3.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/zope-configuration/zope-configuration-4.3.1.ebuild b/dev-python/zope-configuration/zope-configuration-4.3.1.ebuild
index fe5dcefb34b..37573059ee9 100644
--- a/dev-python/zope-configuration/zope-configuration-4.3.1.ebuild
+++ b/dev-python/zope-configuration/zope-configuration-4.3.1.ebuild
@@ -2,7 +2,7 @@
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-PYTHON_COMPAT=(python{2_7,3_6,3_7})
+PYTHON_COMPAT=(python{3_6,3_7})
inherit distutils-r1
MY_PN=zope.configuration
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-configuration/
@ 2020-08-18 14:59 Sam James
0 siblings, 0 replies; 39+ messages in thread
From: Sam James @ 2020-08-18 14:59 UTC (permalink / raw
To: gentoo-commits
commit: 2470da9c38868ced62b61655e5de095064d126ea
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 16 06:58:43 2020 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Aug 18 14:58:57 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2470da9c
dev-python/zope-configuration: bump to 4.4.0
Add Python 3.8, 3.9.
Package-Manager: Portage-3.0.2, Repoman-2.3.23
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-python/zope-configuration/Manifest | 1 +
.../zope-configuration-4.4.0.ebuild | 32 ++++++++++++++++++++++
2 files changed, 33 insertions(+)
diff --git a/dev-python/zope-configuration/Manifest b/dev-python/zope-configuration/Manifest
index 83a4e4078e4..ea34c686377 100644
--- a/dev-python/zope-configuration/Manifest
+++ b/dev-python/zope-configuration/Manifest
@@ -1 +1,2 @@
DIST zope.configuration-4.3.1.tar.gz 83223 BLAKE2B 9c55951932f34484fa6760a6a3cbdf89fbf8723c43b9b4ea2cf909b74716bcdd74d03327fc418f43bcfc8b6b5c17554cf8d062952d8d6880e49e6b270da9c1c8 SHA512 bc8edf84a391cab4f664ea3a4d24b65cb9db351c972b6118e69fe3c726bbe3337121ff59d687dddf463b3672ed6996f21d4437941c81dc456a4e5d837e0945d2
+DIST zope.configuration-4.4.0.tar.gz 83230 BLAKE2B c33dd8cc8192965e3555f8063dbd55b47376696964248583c7479098d00339ec0a7caec8c11e66b9ce133880ba6c04dc8b790f03e18864dc361d3b5d5ed0ddfe SHA512 6383c8e19ddbde098a545b6f22b21eadc860980e8248d05c2e29832971c2060fcde6f5092425d12198e97851f0b7b5edb0b83cc6725cda433867762778c896f9
diff --git a/dev-python/zope-configuration/zope-configuration-4.4.0.ebuild b/dev-python/zope-configuration/zope-configuration-4.4.0.ebuild
new file mode 100644
index 00000000000..909b94de5dc
--- /dev/null
+++ b/dev-python/zope-configuration/zope-configuration-4.4.0.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7,8,9} )
+
+inherit distutils-r1
+
+MY_PN=zope.configuration
+MY_P=${MY_PN}-${PV}
+
+DESCRIPTION="Zope Configuration Architecture"
+HOMEPAGE="https://github.com/zopefoundation/zope.configuration
+ https://docs.zope.org/zope.configuration/"
+SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="ZPL"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+
+RDEPEND="dev-python/zope-i18nmessageid[${PYTHON_USEDEP}]
+ dev-python/zope-interface[${PYTHON_USEDEP}]
+ >=dev-python/zope-schema-4.9[${PYTHON_USEDEP}]"
+
+python_install_all() {
+ distutils-r1_python_install_all
+
+ # remove .pth files since dev-python/namespace-zope handles the ns
+ find "${D}" -name '*.pth' -delete || die
+}
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-configuration/
@ 2020-08-18 15:10 Sam James
0 siblings, 0 replies; 39+ messages in thread
From: Sam James @ 2020-08-18 15:10 UTC (permalink / raw
To: gentoo-commits
commit: d12ec50acfe5c861d627ee83071d62db7906e96f
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 18 15:09:42 2020 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Aug 18 15:09:42 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d12ec50a
dev-python/zope-configuration: restore Python 3.6
Package-Manager: Portage-3.0.3, Repoman-3.0.0
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-python/zope-configuration/zope-configuration-4.4.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/zope-configuration/zope-configuration-4.4.0.ebuild b/dev-python/zope-configuration/zope-configuration-4.4.0.ebuild
index 909b94de5dc..e9aa585b0c3 100644
--- a/dev-python/zope-configuration/zope-configuration-4.4.0.ebuild
+++ b/dev-python/zope-configuration/zope-configuration-4.4.0.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-PYTHON_COMPAT=( python3_{7,8,9} )
+PYTHON_COMPAT=( python3_{6,7,8,9} )
inherit distutils-r1
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-configuration/
@ 2020-08-22 7:13 Michał Górny
0 siblings, 0 replies; 39+ messages in thread
From: Michał Górny @ 2020-08-22 7:13 UTC (permalink / raw
To: gentoo-commits
commit: c647bd5c6d305bd41229436e160b424f27ff81fa
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 22 07:09:10 2020 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Aug 22 07:09:10 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c647bd5c
dev-python/zope-configuration: Remove redundant versions
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/zope-configuration/Manifest | 1 -
.../zope-configuration-4.3.1.ebuild | 32 ----------------------
2 files changed, 33 deletions(-)
diff --git a/dev-python/zope-configuration/Manifest b/dev-python/zope-configuration/Manifest
index ea34c686377..826baef5681 100644
--- a/dev-python/zope-configuration/Manifest
+++ b/dev-python/zope-configuration/Manifest
@@ -1,2 +1 @@
-DIST zope.configuration-4.3.1.tar.gz 83223 BLAKE2B 9c55951932f34484fa6760a6a3cbdf89fbf8723c43b9b4ea2cf909b74716bcdd74d03327fc418f43bcfc8b6b5c17554cf8d062952d8d6880e49e6b270da9c1c8 SHA512 bc8edf84a391cab4f664ea3a4d24b65cb9db351c972b6118e69fe3c726bbe3337121ff59d687dddf463b3672ed6996f21d4437941c81dc456a4e5d837e0945d2
DIST zope.configuration-4.4.0.tar.gz 83230 BLAKE2B c33dd8cc8192965e3555f8063dbd55b47376696964248583c7479098d00339ec0a7caec8c11e66b9ce133880ba6c04dc8b790f03e18864dc361d3b5d5ed0ddfe SHA512 6383c8e19ddbde098a545b6f22b21eadc860980e8248d05c2e29832971c2060fcde6f5092425d12198e97851f0b7b5edb0b83cc6725cda433867762778c896f9
diff --git a/dev-python/zope-configuration/zope-configuration-4.3.1.ebuild b/dev-python/zope-configuration/zope-configuration-4.3.1.ebuild
deleted file mode 100644
index 37573059ee9..00000000000
--- a/dev-python/zope-configuration/zope-configuration-4.3.1.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=(python{3_6,3_7})
-
-inherit distutils-r1
-MY_PN=zope.configuration
-MY_P=${MY_PN}-${PV}
-
-DESCRIPTION="Zope Configuration Architecture"
-HOMEPAGE="https://github.com/zopefoundation/zope.configuration
- https://docs.zope.org/zope.configuration/"
-SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
-
-LICENSE="ZPL"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
-IUSE=""
-
-RDEPEND="dev-python/zope-i18nmessageid[${PYTHON_USEDEP}]
- dev-python/zope-interface[${PYTHON_USEDEP}]
- >=dev-python/zope-schema-4.9[${PYTHON_USEDEP}]"
-
-S=${WORKDIR}/${MY_P}
-
-python_install_all() {
- distutils-r1_python_install_all
-
- # remove .pth files since dev-python/namespace-zope handles the ns
- find "${D}" -name '*.pth' -delete || die
-}
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-configuration/
@ 2020-10-16 18:22 Michał Górny
0 siblings, 0 replies; 39+ messages in thread
From: Michał Górny @ 2020-10-16 18:22 UTC (permalink / raw
To: gentoo-commits
commit: cf003b2c73bb015d875bbed1bf2ce8a65c570efa
Author: Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr>
AuthorDate: Thu Oct 15 17:35:51 2020 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Oct 16 18:21:24 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf003b2c
dev-python/zope-configuration: correct DISTUTILS_USE_SETUPTOOLS
Closes: https://bugs.gentoo.org/749140
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/zope-configuration/zope-configuration-4.4.0.ebuild | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/dev-python/zope-configuration/zope-configuration-4.4.0.ebuild b/dev-python/zope-configuration/zope-configuration-4.4.0.ebuild
index e9aa585b0c3..cd32630d40f 100644
--- a/dev-python/zope-configuration/zope-configuration-4.4.0.ebuild
+++ b/dev-python/zope-configuration/zope-configuration-4.4.0.ebuild
@@ -3,7 +3,8 @@
EAPI=7
-PYTHON_COMPAT=( python3_{6,7,8,9} )
+DISTUTILS_USE_SETUPTOOLS=rdepend
+PYTHON_COMPAT=( python3_{6..9} )
inherit distutils-r1
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-configuration/
@ 2021-03-02 8:40 Sam James
0 siblings, 0 replies; 39+ messages in thread
From: Sam James @ 2021-03-02 8:40 UTC (permalink / raw
To: gentoo-commits
commit: 17d70f639fd8de526b7c521fef04cad0196b0173
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 2 07:42:18 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Mar 2 08:40:01 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17d70f63
dev-python/zope-configuration: mark ALLARCHES
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-python/zope-configuration/metadata.xml | 1 +
1 file changed, 1 insertion(+)
diff --git a/dev-python/zope-configuration/metadata.xml b/dev-python/zope-configuration/metadata.xml
index 3e47ce6bf27..e7ab5778b1d 100644
--- a/dev-python/zope-configuration/metadata.xml
+++ b/dev-python/zope-configuration/metadata.xml
@@ -8,6 +8,7 @@
<email>prometheanfire@gentoo.org</email>
<name>Matthew Thode</name>
</maintainer>
+ <stabilize-allarches/>
<upstream>
<remote-id type="github">zopefoundation/zope.configuration</remote-id>
<remote-id type="pypi">zope.configuration</remote-id>
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-configuration/
@ 2021-09-22 13:30 Arthur Zamarin
0 siblings, 0 replies; 39+ messages in thread
From: Arthur Zamarin @ 2021-09-22 13:30 UTC (permalink / raw
To: gentoo-commits
commit: cb39e50eab7ebf73c2fec2aa3bb5b728354034a7
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 22 13:29:35 2021 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed Sep 22 13:29:35 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb39e50e
dev-python/zope-configuration: enable py3.10, enable tests
Closes: https://bugs.gentoo.org/798618
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
.../zope-configuration-4.4.0-r1.ebuild | 45 ++++++++++++++++++++++
1 file changed, 45 insertions(+)
diff --git a/dev-python/zope-configuration/zope-configuration-4.4.0-r1.ebuild b/dev-python/zope-configuration/zope-configuration-4.4.0-r1.ebuild
new file mode 100644
index 00000000000..843acb2a615
--- /dev/null
+++ b/dev-python/zope-configuration/zope-configuration-4.4.0-r1.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DISTUTILS_USE_SETUPTOOLS=rdepend
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+MY_PN=${PN/-/.}
+MY_P=${MY_PN}-${PV}
+
+DESCRIPTION="Zope Configuration Architecture"
+HOMEPAGE="https://github.com/zopefoundation/zope.configuration
+ https://docs.zope.org/zope.configuration/"
+SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="ZPL"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="dev-python/zope-i18nmessageid[${PYTHON_USEDEP}]
+ dev-python/zope-interface[${PYTHON_USEDEP}]
+ >=dev-python/zope-schema-4.9[${PYTHON_USEDEP}]"
+BDEPEND="
+ test? (
+ dev-python/manuel[${PYTHON_USEDEP}]
+ dev-python/zope-testing[${PYTHON_USEDEP}]
+ )
+"
+
+distutils_enable_tests unittest
+
+python_test() {
+ eunittest src
+}
+
+python_install_all() {
+ distutils-r1_python_install_all
+
+ # remove .pth files since dev-python/namespace-zope handles the ns
+ find "${D}" -name '*.pth' -delete || die
+}
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-configuration/
@ 2021-10-09 20:19 Sam James
0 siblings, 0 replies; 39+ messages in thread
From: Sam James @ 2021-10-09 20:19 UTC (permalink / raw
To: gentoo-commits
commit: b970303b84cf76957cd7e6688a46b2ffd9607f04
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 9 20:18:59 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Oct 9 20:18:59 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b970303b
dev-python/zope-configuration: Keyword 4.4.0-r1 arm, #814350
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-python/zope-configuration/zope-configuration-4.4.0-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/zope-configuration/zope-configuration-4.4.0-r1.ebuild b/dev-python/zope-configuration/zope-configuration-4.4.0-r1.ebuild
index 843acb2a615..a1709f8283b 100644
--- a/dev-python/zope-configuration/zope-configuration-4.4.0-r1.ebuild
+++ b/dev-python/zope-configuration/zope-configuration-4.4.0-r1.ebuild
@@ -19,7 +19,7 @@ S=${WORKDIR}/${MY_P}
LICENSE="ZPL"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm ~x86"
RDEPEND="dev-python/zope-i18nmessageid[${PYTHON_USEDEP}]
dev-python/zope-interface[${PYTHON_USEDEP}]
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-configuration/
@ 2021-10-10 0:09 Sam James
0 siblings, 0 replies; 39+ messages in thread
From: Sam James @ 2021-10-10 0:09 UTC (permalink / raw
To: gentoo-commits
commit: 4b461b15ff7ecb305924b8ee29968c08ba102b4e
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 10 00:08:17 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Oct 10 00:08:17 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b461b15
dev-python/zope-configuration: Keyword 4.4.0-r1 ppc64, #814350
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-python/zope-configuration/zope-configuration-4.4.0-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/zope-configuration/zope-configuration-4.4.0-r1.ebuild b/dev-python/zope-configuration/zope-configuration-4.4.0-r1.ebuild
index a1709f8283b..028d7a6542a 100644
--- a/dev-python/zope-configuration/zope-configuration-4.4.0-r1.ebuild
+++ b/dev-python/zope-configuration/zope-configuration-4.4.0-r1.ebuild
@@ -19,7 +19,7 @@ S=${WORKDIR}/${MY_P}
LICENSE="ZPL"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="~amd64 ~arm ~ppc64 ~x86"
RDEPEND="dev-python/zope-i18nmessageid[${PYTHON_USEDEP}]
dev-python/zope-interface[${PYTHON_USEDEP}]
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-configuration/
@ 2021-10-10 2:20 Sam James
0 siblings, 0 replies; 39+ messages in thread
From: Sam James @ 2021-10-10 2:20 UTC (permalink / raw
To: gentoo-commits
commit: 23fdd49dd176fd01be9a83bdc79caf745296e34a
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 10 02:19:32 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Oct 10 02:19:32 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23fdd49d
dev-python/zope-configuration: Keyword 4.4.0-r1 arm64, #814350
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-python/zope-configuration/zope-configuration-4.4.0-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/zope-configuration/zope-configuration-4.4.0-r1.ebuild b/dev-python/zope-configuration/zope-configuration-4.4.0-r1.ebuild
index 028d7a6542a..5657afef002 100644
--- a/dev-python/zope-configuration/zope-configuration-4.4.0-r1.ebuild
+++ b/dev-python/zope-configuration/zope-configuration-4.4.0-r1.ebuild
@@ -19,7 +19,7 @@ S=${WORKDIR}/${MY_P}
LICENSE="ZPL"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
RDEPEND="dev-python/zope-i18nmessageid[${PYTHON_USEDEP}]
dev-python/zope-interface[${PYTHON_USEDEP}]
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-configuration/
@ 2021-10-10 11:00 Michał Górny
0 siblings, 0 replies; 39+ messages in thread
From: Michał Górny @ 2021-10-10 11:00 UTC (permalink / raw
To: gentoo-commits
commit: 6d152a5879d0ec733e4e4a4019336f292a6d963e
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 10 06:51:33 2021 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Oct 10 11:00:45 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d152a58
dev-python/zope-configuration: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
.../zope-configuration-4.4.0.ebuild | 33 ----------------------
1 file changed, 33 deletions(-)
diff --git a/dev-python/zope-configuration/zope-configuration-4.4.0.ebuild b/dev-python/zope-configuration/zope-configuration-4.4.0.ebuild
deleted file mode 100644
index b3fee42f6d0..00000000000
--- a/dev-python/zope-configuration/zope-configuration-4.4.0.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DISTUTILS_USE_SETUPTOOLS=rdepend
-PYTHON_COMPAT=( python3_{7..9} )
-
-inherit distutils-r1
-
-MY_PN=zope.configuration
-MY_P=${MY_PN}-${PV}
-
-DESCRIPTION="Zope Configuration Architecture"
-HOMEPAGE="https://github.com/zopefoundation/zope.configuration
- https://docs.zope.org/zope.configuration/"
-SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
-S=${WORKDIR}/${MY_P}
-
-LICENSE="ZPL"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
-
-RDEPEND="dev-python/zope-i18nmessageid[${PYTHON_USEDEP}]
- dev-python/zope-interface[${PYTHON_USEDEP}]
- >=dev-python/zope-schema-4.9[${PYTHON_USEDEP}]"
-
-python_install_all() {
- distutils-r1_python_install_all
-
- # remove .pth files since dev-python/namespace-zope handles the ns
- find "${D}" -name '*.pth' -delete || die
-}
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-configuration/
@ 2022-04-08 8:56 Michał Górny
0 siblings, 0 replies; 39+ messages in thread
From: Michał Górny @ 2022-04-08 8:56 UTC (permalink / raw
To: gentoo-commits
commit: 9ca8639b4f87d4a9e5ae18d1256dbc344f81c48e
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 8 08:09:28 2022 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Apr 8 08:56:40 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ca8639b
dev-python/zope-configuration: Bump to 4.4.1
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/zope-configuration/Manifest | 1 +
.../zope-configuration-4.4.1.ebuild | 49 ++++++++++++++++++++++
2 files changed, 50 insertions(+)
diff --git a/dev-python/zope-configuration/Manifest b/dev-python/zope-configuration/Manifest
index 826baef5681f..fca899e8dd30 100644
--- a/dev-python/zope-configuration/Manifest
+++ b/dev-python/zope-configuration/Manifest
@@ -1 +1,2 @@
DIST zope.configuration-4.4.0.tar.gz 83230 BLAKE2B c33dd8cc8192965e3555f8063dbd55b47376696964248583c7479098d00339ec0a7caec8c11e66b9ce133880ba6c04dc8b790f03e18864dc361d3b5d5ed0ddfe SHA512 6383c8e19ddbde098a545b6f22b21eadc860980e8248d05c2e29832971c2060fcde6f5092425d12198e97851f0b7b5edb0b83cc6725cda433867762778c896f9
+DIST zope.configuration-4.4.1.tar.gz 83825 BLAKE2B 9cf55417710c364611f0548cd1249dfb61d16c4f1a5f8f3918b2f9f38ba9904698317b922dccf736ab83f2b9cdd2bb4f7ca7330cd311d00e8d48afbd29f9cd86 SHA512 61e3e5cc6220c3ef86881d49c09b208d12491a5d7f5d82810ff1713f68ff1657dfb505b511e78e86b39d204c4ff8bc687695ad8b2ed816b457b52f913c70669b
diff --git a/dev-python/zope-configuration/zope-configuration-4.4.1.ebuild b/dev-python/zope-configuration/zope-configuration-4.4.1.ebuild
new file mode 100644
index 000000000000..902e0b96ab9c
--- /dev/null
+++ b/dev-python/zope-configuration/zope-configuration-4.4.1.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+MY_PN=${PN/-/.}
+MY_P=${MY_PN}-${PV}
+
+DESCRIPTION="Zope Configuration Architecture"
+HOMEPAGE="
+ https://pypi.org/project/zope.configuration/
+ https://github.com/zopefoundation/zope.configuration/
+ https://zopeconfiguration.readthedocs.io/en/latest/
+"
+SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="ZPL"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+
+RDEPEND="
+ dev-python/zope-i18nmessageid[${PYTHON_USEDEP}]
+ dev-python/zope-interface[${PYTHON_USEDEP}]
+ >=dev-python/zope-schema-4.9[${PYTHON_USEDEP}]
+"
+BDEPEND="
+ test? (
+ dev-python/manuel[${PYTHON_USEDEP}]
+ dev-python/zope-testing[${PYTHON_USEDEP}]
+ )
+"
+
+distutils_enable_tests unittest
+
+python_test() {
+ eunittest src
+}
+
+python_install_all() {
+ distutils-r1_python_install_all
+
+ # remove .pth files since dev-python/namespace-zope handles the ns
+ find "${D}" -name '*.pth' -delete || die
+}
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-configuration/
@ 2022-04-09 5:57 Michał Górny
0 siblings, 0 replies; 39+ messages in thread
From: Michał Górny @ 2022-04-09 5:57 UTC (permalink / raw
To: gentoo-commits
commit: fc2fbe02b9c9bdc5a93da9eb9d4b19cbe1c91eb9
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 8 21:57:39 2022 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Apr 9 05:56:57 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc2fbe02
dev-python/zope-configuration: Switch to PEP517 build
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
...4.1.ebuild => zope-configuration-4.4.1-r1.ebuild} | 20 ++++++++++++--------
1 file changed, 12 insertions(+), 8 deletions(-)
diff --git a/dev-python/zope-configuration/zope-configuration-4.4.1.ebuild b/dev-python/zope-configuration/zope-configuration-4.4.1-r1.ebuild
similarity index 69%
rename from dev-python/zope-configuration/zope-configuration-4.4.1.ebuild
rename to dev-python/zope-configuration/zope-configuration-4.4.1-r1.ebuild
index 902e0b96ab9c..86e3f61d43ef 100644
--- a/dev-python/zope-configuration/zope-configuration-4.4.1.ebuild
+++ b/dev-python/zope-configuration/zope-configuration-4.4.1-r1.ebuild
@@ -3,6 +3,7 @@
EAPI=8
+DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
@@ -35,15 +36,18 @@ BDEPEND="
)
"
-distutils_enable_tests unittest
+distutils_enable_tests pytest
-python_test() {
- eunittest src
+python_compile() {
+ distutils-r1_python_compile
+ find "${BUILD_DIR}" -name '*.pth' -delete || die
}
-python_install_all() {
- distutils-r1_python_install_all
-
- # remove .pth files since dev-python/namespace-zope handles the ns
- find "${D}" -name '*.pth' -delete || die
+python_test() {
+ cd "${BUILD_DIR}/install$(python_get_sitedir)/zope" || die
+ cat > __init__.py <<-EOF || die
+ __import__('pkg_resources').declare_namespace(__name__)
+ EOF
+ eunittest -s configuration/tests
+ rm __init__.py || die
}
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-configuration/
@ 2022-04-09 11:37 Michał Górny
0 siblings, 0 replies; 39+ messages in thread
From: Michał Górny @ 2022-04-09 11:37 UTC (permalink / raw
To: gentoo-commits
commit: 77d810b50a4747c3b4ae2d2dc5b69a3b950c48ec
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 9 11:34:07 2022 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Apr 9 11:34:07 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77d810b5
dev-python/zope-configuration: Fix distutils_enable_tests call
Closes: https://bugs.gentoo.org/837374
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/zope-configuration/zope-configuration-4.4.1-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/zope-configuration/zope-configuration-4.4.1-r1.ebuild b/dev-python/zope-configuration/zope-configuration-4.4.1-r1.ebuild
index 86e3f61d43ef..402cfde1a07c 100644
--- a/dev-python/zope-configuration/zope-configuration-4.4.1-r1.ebuild
+++ b/dev-python/zope-configuration/zope-configuration-4.4.1-r1.ebuild
@@ -36,7 +36,7 @@ BDEPEND="
)
"
-distutils_enable_tests pytest
+distutils_enable_tests unittest
python_compile() {
distutils-r1_python_compile
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-configuration/
@ 2022-04-09 14:37 Michał Górny
0 siblings, 0 replies; 39+ messages in thread
From: Michał Górny @ 2022-04-09 14:37 UTC (permalink / raw
To: gentoo-commits
commit: 12fe9af7a991bb03bceb08456c2770e949247277
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 9 14:36:47 2022 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Apr 9 14:37:04 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12fe9af7
dev-python/zope-configuration: Use pkgutil-style namespace for tests
Use pkgutil-style namespace for testing since it seems to work fine
when site-packages has either pkg_resources or PEP 420 namespaces.
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/zope-configuration/zope-configuration-4.4.1-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/zope-configuration/zope-configuration-4.4.1-r1.ebuild b/dev-python/zope-configuration/zope-configuration-4.4.1-r1.ebuild
index 402cfde1a07c..5f6facdf2553 100644
--- a/dev-python/zope-configuration/zope-configuration-4.4.1-r1.ebuild
+++ b/dev-python/zope-configuration/zope-configuration-4.4.1-r1.ebuild
@@ -46,7 +46,7 @@ python_compile() {
python_test() {
cd "${BUILD_DIR}/install$(python_get_sitedir)/zope" || die
cat > __init__.py <<-EOF || die
- __import__('pkg_resources').declare_namespace(__name__)
+ __path__ = __import__('pkgutil').extend_path(__path__, __name__)
EOF
eunittest -s configuration/tests
rm __init__.py || die
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-configuration/
@ 2022-04-09 14:58 Michał Górny
0 siblings, 0 replies; 39+ messages in thread
From: Michał Górny @ 2022-04-09 14:58 UTC (permalink / raw
To: gentoo-commits
commit: 2b334b3a3e2f3e7d5ba3f5a5da484a4629b91f8b
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 9 14:58:26 2022 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Apr 9 14:58:54 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b334b3a
dev-python/zope-configuration: Sync python_test with zope-interface
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
.../zope-configuration/zope-configuration-4.4.1-r1.ebuild | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/dev-python/zope-configuration/zope-configuration-4.4.1-r1.ebuild b/dev-python/zope-configuration/zope-configuration-4.4.1-r1.ebuild
index 5f6facdf2553..c83af620f922 100644
--- a/dev-python/zope-configuration/zope-configuration-4.4.1-r1.ebuild
+++ b/dev-python/zope-configuration/zope-configuration-4.4.1-r1.ebuild
@@ -44,10 +44,12 @@ python_compile() {
}
python_test() {
- cd "${BUILD_DIR}/install$(python_get_sitedir)/zope" || die
- cat > __init__.py <<-EOF || die
+ cd "${BUILD_DIR}/install$(python_get_sitedir)" || die
+ # this is needed to keep the tests working while
+ # dev-python/namespace-zope is still installed
+ cat > zope/__init__.py <<-EOF || die
__path__ = __import__('pkgutil').extend_path(__path__, __name__)
EOF
- eunittest -s configuration/tests
- rm __init__.py || die
+ eunittest
+ rm zope/__init__.py || die
}
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-configuration/
@ 2022-04-09 18:56 Michał Górny
0 siblings, 0 replies; 39+ messages in thread
From: Michał Górny @ 2022-04-09 18:56 UTC (permalink / raw
To: gentoo-commits
commit: 66ab4a8f1e845adafaea4ca70ccfa661ded61045
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 9 18:50:46 2022 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Apr 9 18:50:46 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66ab4a8f
dev-python/zope-configuration: Strip unneeded setuptools rdep
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/zope-configuration/zope-configuration-4.4.1-r1.ebuild | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/dev-python/zope-configuration/zope-configuration-4.4.1-r1.ebuild b/dev-python/zope-configuration/zope-configuration-4.4.1-r1.ebuild
index c83af620f922..79735c57df92 100644
--- a/dev-python/zope-configuration/zope-configuration-4.4.1-r1.ebuild
+++ b/dev-python/zope-configuration/zope-configuration-4.4.1-r1.ebuild
@@ -38,6 +38,12 @@ BDEPEND="
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] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-configuration/
@ 2022-04-09 20:23 Michał Górny
0 siblings, 0 replies; 39+ messages in thread
From: Michał Górny @ 2022-04-09 20:23 UTC (permalink / raw
To: gentoo-commits
commit: 2e5b3571f7a2ce30e1faf4399dfaed0c6fa11ea5
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 9 20:13:02 2022 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Apr 9 20:23:20 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e5b3571
dev-python/zope-configuration: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/zope-configuration/Manifest | 1 -
.../zope-configuration-4.4.0-r1.ebuild | 45 ----------------------
2 files changed, 46 deletions(-)
diff --git a/dev-python/zope-configuration/Manifest b/dev-python/zope-configuration/Manifest
index fca899e8dd30..755bd93938a9 100644
--- a/dev-python/zope-configuration/Manifest
+++ b/dev-python/zope-configuration/Manifest
@@ -1,2 +1 @@
-DIST zope.configuration-4.4.0.tar.gz 83230 BLAKE2B c33dd8cc8192965e3555f8063dbd55b47376696964248583c7479098d00339ec0a7caec8c11e66b9ce133880ba6c04dc8b790f03e18864dc361d3b5d5ed0ddfe SHA512 6383c8e19ddbde098a545b6f22b21eadc860980e8248d05c2e29832971c2060fcde6f5092425d12198e97851f0b7b5edb0b83cc6725cda433867762778c896f9
DIST zope.configuration-4.4.1.tar.gz 83825 BLAKE2B 9cf55417710c364611f0548cd1249dfb61d16c4f1a5f8f3918b2f9f38ba9904698317b922dccf736ab83f2b9cdd2bb4f7ca7330cd311d00e8d48afbd29f9cd86 SHA512 61e3e5cc6220c3ef86881d49c09b208d12491a5d7f5d82810ff1713f68ff1657dfb505b511e78e86b39d204c4ff8bc687695ad8b2ed816b457b52f913c70669b
diff --git a/dev-python/zope-configuration/zope-configuration-4.4.0-r1.ebuild b/dev-python/zope-configuration/zope-configuration-4.4.0-r1.ebuild
deleted file mode 100644
index 5657afef002d..000000000000
--- a/dev-python/zope-configuration/zope-configuration-4.4.0-r1.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DISTUTILS_USE_SETUPTOOLS=rdepend
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-MY_PN=${PN/-/.}
-MY_P=${MY_PN}-${PV}
-
-DESCRIPTION="Zope Configuration Architecture"
-HOMEPAGE="https://github.com/zopefoundation/zope.configuration
- https://docs.zope.org/zope.configuration/"
-SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
-S=${WORKDIR}/${MY_P}
-
-LICENSE="ZPL"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
-
-RDEPEND="dev-python/zope-i18nmessageid[${PYTHON_USEDEP}]
- dev-python/zope-interface[${PYTHON_USEDEP}]
- >=dev-python/zope-schema-4.9[${PYTHON_USEDEP}]"
-BDEPEND="
- test? (
- dev-python/manuel[${PYTHON_USEDEP}]
- dev-python/zope-testing[${PYTHON_USEDEP}]
- )
-"
-
-distutils_enable_tests unittest
-
-python_test() {
- eunittest src
-}
-
-python_install_all() {
- distutils-r1_python_install_all
-
- # remove .pth files since dev-python/namespace-zope handles the ns
- find "${D}" -name '*.pth' -delete || die
-}
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-configuration/
@ 2022-04-09 21:47 Jakov Smolić
0 siblings, 0 replies; 39+ messages in thread
From: Jakov Smolić @ 2022-04-09 21:47 UTC (permalink / raw
To: gentoo-commits
commit: 44449f898ce801221b05b722bf5de808cdc46036
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 9 21:47:00 2022 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Sat Apr 9 21:47:00 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44449f89
dev-python/zope-configuration: Keyword 4.4.1-r1 riscv, #837527
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
dev-python/zope-configuration/zope-configuration-4.4.1-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/zope-configuration/zope-configuration-4.4.1-r1.ebuild b/dev-python/zope-configuration/zope-configuration-4.4.1-r1.ebuild
index 79735c57df92..28d09ca112b4 100644
--- a/dev-python/zope-configuration/zope-configuration-4.4.1-r1.ebuild
+++ b/dev-python/zope-configuration/zope-configuration-4.4.1-r1.ebuild
@@ -22,7 +22,7 @@ S=${WORKDIR}/${MY_P}
LICENSE="ZPL"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
RDEPEND="
dev-python/zope-i18nmessageid[${PYTHON_USEDEP}]
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-configuration/
@ 2022-04-11 19:58 Michał Górny
0 siblings, 0 replies; 39+ messages in thread
From: Michał Górny @ 2022-04-11 19:58 UTC (permalink / raw
To: gentoo-commits
commit: f8564dea7520cee34f0735a9ab0c875fa0ac49dd
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 11 18:43:51 2022 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Apr 11 19:58:45 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8564dea
dev-python/zope-configuration: Use distutils_write_namespace
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/zope-configuration/zope-configuration-4.4.1-r1.ebuild | 7 +------
1 file changed, 1 insertion(+), 6 deletions(-)
diff --git a/dev-python/zope-configuration/zope-configuration-4.4.1-r1.ebuild b/dev-python/zope-configuration/zope-configuration-4.4.1-r1.ebuild
index 28d09ca112b4..a176c8e70382 100644
--- a/dev-python/zope-configuration/zope-configuration-4.4.1-r1.ebuild
+++ b/dev-python/zope-configuration/zope-configuration-4.4.1-r1.ebuild
@@ -51,11 +51,6 @@ python_compile() {
python_test() {
cd "${BUILD_DIR}/install$(python_get_sitedir)" || die
- # this is needed to keep the tests working while
- # dev-python/namespace-zope is still installed
- cat > zope/__init__.py <<-EOF || die
- __path__ = __import__('pkgutil').extend_path(__path__, __name__)
- EOF
+ distutils_write_namespace zope
eunittest
- rm zope/__init__.py || die
}
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-configuration/
@ 2022-04-22 15:11 Arthur Zamarin
0 siblings, 0 replies; 39+ messages in thread
From: Arthur Zamarin @ 2022-04-22 15:11 UTC (permalink / raw
To: gentoo-commits
commit: 6726dd0ed835cc6df6df6d16f8393c4fc51feee0
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 22 15:11:03 2022 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Apr 22 15:11:03 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6726dd0e
dev-python/zope-configuration: Stabilize 4.4.1-r1 amd64, #839699
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-python/zope-configuration/zope-configuration-4.4.1-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/zope-configuration/zope-configuration-4.4.1-r1.ebuild b/dev-python/zope-configuration/zope-configuration-4.4.1-r1.ebuild
index f0e0947f57a7..ace0df60e3ab 100644
--- a/dev-python/zope-configuration/zope-configuration-4.4.1-r1.ebuild
+++ b/dev-python/zope-configuration/zope-configuration-4.4.1-r1.ebuild
@@ -22,7 +22,7 @@ S=${WORKDIR}/${MY_P}
LICENSE="ZPL"
SLOT="0"
-KEYWORDS="~amd64 ~arm arm64 ~ppc64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc64 ~riscv ~x86"
RDEPEND="
dev-python/zope-i18nmessageid[${PYTHON_USEDEP}]
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-configuration/
@ 2022-04-22 15:11 Arthur Zamarin
0 siblings, 0 replies; 39+ messages in thread
From: Arthur Zamarin @ 2022-04-22 15:11 UTC (permalink / raw
To: gentoo-commits
commit: 7519ff5705b63356b31479a135266731a7d4df8a
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 22 15:10:58 2022 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Apr 22 15:10:58 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7519ff57
dev-python/zope-configuration: Stabilize 4.4.1-r1 arm64, #839699
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-python/zope-configuration/zope-configuration-4.4.1-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/zope-configuration/zope-configuration-4.4.1-r1.ebuild b/dev-python/zope-configuration/zope-configuration-4.4.1-r1.ebuild
index a176c8e70382..f0e0947f57a7 100644
--- a/dev-python/zope-configuration/zope-configuration-4.4.1-r1.ebuild
+++ b/dev-python/zope-configuration/zope-configuration-4.4.1-r1.ebuild
@@ -22,7 +22,7 @@ S=${WORKDIR}/${MY_P}
LICENSE="ZPL"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
+KEYWORDS="~amd64 ~arm arm64 ~ppc64 ~riscv ~x86"
RDEPEND="
dev-python/zope-i18nmessageid[${PYTHON_USEDEP}]
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-configuration/
@ 2022-04-22 15:11 Arthur Zamarin
0 siblings, 0 replies; 39+ messages in thread
From: Arthur Zamarin @ 2022-04-22 15:11 UTC (permalink / raw
To: gentoo-commits
commit: fa66237f98be7269c6fb7b65503af67bd7705139
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 22 15:11:08 2022 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Apr 22 15:11:08 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa66237f
dev-python/zope-configuration: Stabilize 4.4.1-r1 x86, #839699
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-python/zope-configuration/zope-configuration-4.4.1-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/zope-configuration/zope-configuration-4.4.1-r1.ebuild b/dev-python/zope-configuration/zope-configuration-4.4.1-r1.ebuild
index ace0df60e3ab..86b4d9cf08bc 100644
--- a/dev-python/zope-configuration/zope-configuration-4.4.1-r1.ebuild
+++ b/dev-python/zope-configuration/zope-configuration-4.4.1-r1.ebuild
@@ -22,7 +22,7 @@ S=${WORKDIR}/${MY_P}
LICENSE="ZPL"
SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~ppc64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc64 ~riscv x86"
RDEPEND="
dev-python/zope-i18nmessageid[${PYTHON_USEDEP}]
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-configuration/
@ 2022-04-22 15:35 Michał Górny
0 siblings, 0 replies; 39+ messages in thread
From: Michał Górny @ 2022-04-22 15:35 UTC (permalink / raw
To: gentoo-commits
commit: efb1864443958f7510965c1ba1abf40260a0eda8
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 22 15:33:37 2022 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Apr 22 15:33:37 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=efb18644
dev-python/zope-configuration: Add a blocker on namespace-zope
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
...-configuration-4.4.1-r1.ebuild => zope-configuration-4.4.1-r2.ebuild} | 1 +
1 file changed, 1 insertion(+)
diff --git a/dev-python/zope-configuration/zope-configuration-4.4.1-r1.ebuild b/dev-python/zope-configuration/zope-configuration-4.4.1-r2.ebuild
similarity index 97%
rename from dev-python/zope-configuration/zope-configuration-4.4.1-r1.ebuild
rename to dev-python/zope-configuration/zope-configuration-4.4.1-r2.ebuild
index 86b4d9cf08bc..70766bc00aa2 100644
--- a/dev-python/zope-configuration/zope-configuration-4.4.1-r1.ebuild
+++ b/dev-python/zope-configuration/zope-configuration-4.4.1-r2.ebuild
@@ -28,6 +28,7 @@ RDEPEND="
dev-python/zope-i18nmessageid[${PYTHON_USEDEP}]
dev-python/zope-interface[${PYTHON_USEDEP}]
>=dev-python/zope-schema-4.9[${PYTHON_USEDEP}]
+ !dev-python/namespace-zope
"
BDEPEND="
test? (
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-configuration/
@ 2022-11-09 6:53 Sam James
0 siblings, 0 replies; 39+ messages in thread
From: Sam James @ 2022-11-09 6:53 UTC (permalink / raw
To: gentoo-commits
commit: 9a0f028b33e047f943a169c309a279894f684491
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 9 06:43:57 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Nov 9 06:53:34 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a0f028b
dev-python/zope-configuration: enable py3.11
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-python/zope-configuration/zope-configuration-4.4.1-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/zope-configuration/zope-configuration-4.4.1-r2.ebuild b/dev-python/zope-configuration/zope-configuration-4.4.1-r2.ebuild
index 70766bc00aa2..ff8ef6e737e6 100644
--- a/dev-python/zope-configuration/zope-configuration-4.4.1-r2.ebuild
+++ b/dev-python/zope-configuration/zope-configuration-4.4.1-r2.ebuild
@@ -4,7 +4,7 @@
EAPI=8
DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
+PYTHON_COMPAT=( python3_{8..11} )
inherit distutils-r1
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-configuration/
@ 2023-03-17 18:28 Michał Górny
0 siblings, 0 replies; 39+ messages in thread
From: Michał Górny @ 2023-03-17 18:28 UTC (permalink / raw
To: gentoo-commits
commit: a11d985b6b00b255b49138d36f9fa1987efccfd1
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 17 18:04:06 2023 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Mar 17 18:28:08 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a11d985b
dev-python/zope-configuration: Use pypi.eclass
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/zope-configuration/zope-configuration-4.4.1-r2.ebuild | 9 +++------
1 file changed, 3 insertions(+), 6 deletions(-)
diff --git a/dev-python/zope-configuration/zope-configuration-4.4.1-r2.ebuild b/dev-python/zope-configuration/zope-configuration-4.4.1-r2.ebuild
index a62270f6d8f3..429f753d9587 100644
--- a/dev-python/zope-configuration/zope-configuration-4.4.1-r2.ebuild
+++ b/dev-python/zope-configuration/zope-configuration-4.4.1-r2.ebuild
@@ -6,10 +6,7 @@ EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{9..11} )
-inherit distutils-r1
-
-MY_PN=${PN/-/.}
-MY_P=${MY_PN}-${PV}
+inherit distutils-r1 pypi
DESCRIPTION="Zope Configuration Architecture"
HOMEPAGE="
@@ -17,8 +14,8 @@ HOMEPAGE="
https://github.com/zopefoundation/zope.configuration/
https://zopeconfiguration.readthedocs.io/en/latest/
"
-SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
-S=${WORKDIR}/${MY_P}
+SRC_URI="$(pypi_sdist_url --no-normalize "${PN/-/.}")"
+S=${WORKDIR}/${P/-/.}
LICENSE="ZPL"
SLOT="0"
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-configuration/
@ 2023-03-21 6:49 Michał Górny
0 siblings, 0 replies; 39+ messages in thread
From: Michał Górny @ 2023-03-21 6:49 UTC (permalink / raw
To: gentoo-commits
commit: 846fb46ecbc7d78dcc8916bb791634798c587f26
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 21 06:46:22 2023 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Mar 21 06:49:07 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=846fb46e
dev-python/zope-configuration: Use PYPI_PN
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/zope-configuration/zope-configuration-4.4.1-r2.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-python/zope-configuration/zope-configuration-4.4.1-r2.ebuild b/dev-python/zope-configuration/zope-configuration-4.4.1-r2.ebuild
index 429f753d9587..8da5c016419b 100644
--- a/dev-python/zope-configuration/zope-configuration-4.4.1-r2.ebuild
+++ b/dev-python/zope-configuration/zope-configuration-4.4.1-r2.ebuild
@@ -4,6 +4,8 @@
EAPI=8
DISTUTILS_USE_PEP517=setuptools
+PYPI_NO_NORMALIZE=1
+PYPI_PN=${PN/-/.}
PYTHON_COMPAT=( python3_{9..11} )
inherit distutils-r1 pypi
@@ -14,8 +16,6 @@ HOMEPAGE="
https://github.com/zopefoundation/zope.configuration/
https://zopeconfiguration.readthedocs.io/en/latest/
"
-SRC_URI="$(pypi_sdist_url --no-normalize "${PN/-/.}")"
-S=${WORKDIR}/${P/-/.}
LICENSE="ZPL"
SLOT="0"
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-configuration/
@ 2023-05-04 8:06 Michał Górny
0 siblings, 0 replies; 39+ messages in thread
From: Michał Górny @ 2023-05-04 8:06 UTC (permalink / raw
To: gentoo-commits
commit: 76d043b9e6e58426b890a5673c6b9499f1ce5557
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu May 4 06:58:27 2023 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu May 4 08:06:17 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76d043b9
dev-python/zope-configuration: Bump to 5.0
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/zope-configuration/Manifest | 1 +
.../zope-configuration-5.0.ebuild | 54 ++++++++++++++++++++++
2 files changed, 55 insertions(+)
diff --git a/dev-python/zope-configuration/Manifest b/dev-python/zope-configuration/Manifest
index 755bd93938a9..daaf7ff1bf9a 100644
--- a/dev-python/zope-configuration/Manifest
+++ b/dev-python/zope-configuration/Manifest
@@ -1 +1,2 @@
DIST zope.configuration-4.4.1.tar.gz 83825 BLAKE2B 9cf55417710c364611f0548cd1249dfb61d16c4f1a5f8f3918b2f9f38ba9904698317b922dccf736ab83f2b9cdd2bb4f7ca7330cd311d00e8d48afbd29f9cd86 SHA512 61e3e5cc6220c3ef86881d49c09b208d12491a5d7f5d82810ff1713f68ff1657dfb505b511e78e86b39d204c4ff8bc687695ad8b2ed816b457b52f913c70669b
+DIST zope.configuration-5.0.tar.gz 83357 BLAKE2B 8fa72cda6abf663d8dcf7b168c1a6c84401c1a93d6395b96eb2c691efab1395b56631aa92c95cc7401974832249c1ec734d49952a489be50b2eaf82252e919bb SHA512 59a720b9062ba5254b8a0c9b7dd4f44ab709ac29050c9f2eeb05827ed34f74940eed52ce5ec551bc0c8292f5ed0921a4d07c110f1b68baedcc6c02cd5edd9e00
diff --git a/dev-python/zope-configuration/zope-configuration-5.0.ebuild b/dev-python/zope-configuration/zope-configuration-5.0.ebuild
new file mode 100644
index 000000000000..32650d3749f6
--- /dev/null
+++ b/dev-python/zope-configuration/zope-configuration-5.0.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYPI_NO_NORMALIZE=1
+PYPI_PN=${PN/-/.}
+PYTHON_COMPAT=( python3_{9..11} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Zope Configuration Architecture"
+HOMEPAGE="
+ https://pypi.org/project/zope.configuration/
+ https://github.com/zopefoundation/zope.configuration/
+ https://zopeconfiguration.readthedocs.io/en/latest/
+"
+
+LICENSE="ZPL"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
+
+RDEPEND="
+ dev-python/zope-i18nmessageid[${PYTHON_USEDEP}]
+ dev-python/zope-interface[${PYTHON_USEDEP}]
+ >=dev-python/zope-schema-4.9[${PYTHON_USEDEP}]
+ !dev-python/namespace-zope
+"
+BDEPEND="
+ test? (
+ dev-python/manuel[${PYTHON_USEDEP}]
+ dev-python/zope-testing[${PYTHON_USEDEP}]
+ )
+"
+
+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
+}
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-configuration/
@ 2023-06-03 18:06 Arthur Zamarin
0 siblings, 0 replies; 39+ messages in thread
From: Arthur Zamarin @ 2023-06-03 18:06 UTC (permalink / raw
To: gentoo-commits
commit: 7c8304c71048a7c2332b2d514f60e2dcf73ef4d8
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Jun 3 18:06:43 2023 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Jun 3 18:06:43 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c8304c7
dev-python/zope-configuration: Stabilize 5.0 ALLARCHES, #907785
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-python/zope-configuration/zope-configuration-5.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/zope-configuration/zope-configuration-5.0.ebuild b/dev-python/zope-configuration/zope-configuration-5.0.ebuild
index 32650d3749f6..8da5c016419b 100644
--- a/dev-python/zope-configuration/zope-configuration-5.0.ebuild
+++ b/dev-python/zope-configuration/zope-configuration-5.0.ebuild
@@ -19,7 +19,7 @@ HOMEPAGE="
LICENSE="ZPL"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc64 ~riscv x86"
RDEPEND="
dev-python/zope-i18nmessageid[${PYTHON_USEDEP}]
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-configuration/
@ 2023-06-03 19:17 Michał Górny
0 siblings, 0 replies; 39+ messages in thread
From: Michał Górny @ 2023-06-03 19:17 UTC (permalink / raw
To: gentoo-commits
commit: ce6f93e7f38a50f1ffa95679f77d735ec721b20e
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Jun 3 19:13:10 2023 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Jun 3 19:13:10 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce6f93e7
dev-python/zope-configuration: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/zope-configuration/Manifest | 1 -
.../zope-configuration-4.4.1-r2.ebuild | 54 ----------------------
2 files changed, 55 deletions(-)
diff --git a/dev-python/zope-configuration/Manifest b/dev-python/zope-configuration/Manifest
index daaf7ff1bf9a..e729f177cd12 100644
--- a/dev-python/zope-configuration/Manifest
+++ b/dev-python/zope-configuration/Manifest
@@ -1,2 +1 @@
-DIST zope.configuration-4.4.1.tar.gz 83825 BLAKE2B 9cf55417710c364611f0548cd1249dfb61d16c4f1a5f8f3918b2f9f38ba9904698317b922dccf736ab83f2b9cdd2bb4f7ca7330cd311d00e8d48afbd29f9cd86 SHA512 61e3e5cc6220c3ef86881d49c09b208d12491a5d7f5d82810ff1713f68ff1657dfb505b511e78e86b39d204c4ff8bc687695ad8b2ed816b457b52f913c70669b
DIST zope.configuration-5.0.tar.gz 83357 BLAKE2B 8fa72cda6abf663d8dcf7b168c1a6c84401c1a93d6395b96eb2c691efab1395b56631aa92c95cc7401974832249c1ec734d49952a489be50b2eaf82252e919bb SHA512 59a720b9062ba5254b8a0c9b7dd4f44ab709ac29050c9f2eeb05827ed34f74940eed52ce5ec551bc0c8292f5ed0921a4d07c110f1b68baedcc6c02cd5edd9e00
diff --git a/dev-python/zope-configuration/zope-configuration-4.4.1-r2.ebuild b/dev-python/zope-configuration/zope-configuration-4.4.1-r2.ebuild
deleted file mode 100644
index 8da5c016419b..000000000000
--- a/dev-python/zope-configuration/zope-configuration-4.4.1-r2.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYPI_NO_NORMALIZE=1
-PYPI_PN=${PN/-/.}
-PYTHON_COMPAT=( python3_{9..11} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Zope Configuration Architecture"
-HOMEPAGE="
- https://pypi.org/project/zope.configuration/
- https://github.com/zopefoundation/zope.configuration/
- https://zopeconfiguration.readthedocs.io/en/latest/
-"
-
-LICENSE="ZPL"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~ppc64 ~riscv x86"
-
-RDEPEND="
- dev-python/zope-i18nmessageid[${PYTHON_USEDEP}]
- dev-python/zope-interface[${PYTHON_USEDEP}]
- >=dev-python/zope-schema-4.9[${PYTHON_USEDEP}]
- !dev-python/namespace-zope
-"
-BDEPEND="
- test? (
- dev-python/manuel[${PYTHON_USEDEP}]
- dev-python/zope-testing[${PYTHON_USEDEP}]
- )
-"
-
-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
-}
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-configuration/
@ 2023-06-06 6:13 Michał Górny
0 siblings, 0 replies; 39+ messages in thread
From: Michał Górny @ 2023-06-06 6:13 UTC (permalink / raw
To: gentoo-commits
commit: 104aec4b4e8d8f8816e99b6cdf2a0f88bb36b8eb
Author: Petr Vaněk <arkamar <AT> atlas <DOT> cz>
AuthorDate: Mon Jun 5 20:58:39 2023 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Jun 6 06:13:37 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=104aec4b
dev-python/zope-configuration: enable py3.12
Signed-off-by: Petr Vaněk <arkamar <AT> atlas.cz>
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/zope-configuration/zope-configuration-5.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/zope-configuration/zope-configuration-5.0.ebuild b/dev-python/zope-configuration/zope-configuration-5.0.ebuild
index 8da5c016419b..f3ff3f642fea 100644
--- a/dev-python/zope-configuration/zope-configuration-5.0.ebuild
+++ b/dev-python/zope-configuration/zope-configuration-5.0.ebuild
@@ -6,7 +6,7 @@ EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYPI_NO_NORMALIZE=1
PYPI_PN=${PN/-/.}
-PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_COMPAT=( python3_{10..12} )
inherit distutils-r1 pypi
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-configuration/
@ 2024-02-13 4:27 Michał Górny
0 siblings, 0 replies; 39+ messages in thread
From: Michał Górny @ 2024-02-13 4:27 UTC (permalink / raw
To: gentoo-commits
commit: 19fba296f334559f4cf7dde350c7bd65b8ef609d
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 13 04:19:07 2024 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Feb 13 04:19:07 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19fba296
dev-python/zope-configuration: Bump to 5.0.1
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/zope-configuration/Manifest | 1 +
.../zope-configuration-5.0.1.ebuild | 54 ++++++++++++++++++++++
2 files changed, 55 insertions(+)
diff --git a/dev-python/zope-configuration/Manifest b/dev-python/zope-configuration/Manifest
index e729f177cd12..6a8557b65835 100644
--- a/dev-python/zope-configuration/Manifest
+++ b/dev-python/zope-configuration/Manifest
@@ -1 +1,2 @@
+DIST zope.configuration-5.0.1.tar.gz 83327 BLAKE2B 665687d49e77c43e08293d5e7816a1f1abc9ff0c97dcfa83a90693d6da9d5767ebc24512dd7593316464103c38655c41909949bb1c8bb3f5db272e3637066284 SHA512 58fec7b330a4ee5f9bb71238fbcb8f07fdd7b6767cb2d8e054699ffcb915973b9dfead33e5515f40049f6aede233d31624d09d7f84d75b96318e63f8ab454147
DIST zope.configuration-5.0.tar.gz 83357 BLAKE2B 8fa72cda6abf663d8dcf7b168c1a6c84401c1a93d6395b96eb2c691efab1395b56631aa92c95cc7401974832249c1ec734d49952a489be50b2eaf82252e919bb SHA512 59a720b9062ba5254b8a0c9b7dd4f44ab709ac29050c9f2eeb05827ed34f74940eed52ce5ec551bc0c8292f5ed0921a4d07c110f1b68baedcc6c02cd5edd9e00
diff --git a/dev-python/zope-configuration/zope-configuration-5.0.1.ebuild b/dev-python/zope-configuration/zope-configuration-5.0.1.ebuild
new file mode 100644
index 000000000000..f61e15e6270a
--- /dev/null
+++ b/dev-python/zope-configuration/zope-configuration-5.0.1.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYPI_NO_NORMALIZE=1
+PYPI_PN=${PN/-/.}
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Zope Configuration Architecture"
+HOMEPAGE="
+ https://pypi.org/project/zope.configuration/
+ https://github.com/zopefoundation/zope.configuration/
+ https://zopeconfiguration.readthedocs.io/en/latest/
+"
+
+LICENSE="ZPL"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
+
+RDEPEND="
+ dev-python/zope-i18nmessageid[${PYTHON_USEDEP}]
+ dev-python/zope-interface[${PYTHON_USEDEP}]
+ >=dev-python/zope-schema-4.9[${PYTHON_USEDEP}]
+ !dev-python/namespace-zope
+"
+BDEPEND="
+ test? (
+ dev-python/manuel[${PYTHON_USEDEP}]
+ dev-python/zope-testing[${PYTHON_USEDEP}]
+ )
+"
+
+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
+}
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-configuration/
@ 2024-03-02 10:54 Arthur Zamarin
0 siblings, 0 replies; 39+ messages in thread
From: Arthur Zamarin @ 2024-03-02 10:54 UTC (permalink / raw
To: gentoo-commits
commit: 1c738aed917bf8d7f2b4f65a20177f4513c9fa69
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 2 10:54:27 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Mar 2 10:54:27 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c738aed
dev-python/zope-configuration: Stabilize 5.0.1 ALLARCHES, #925987
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-python/zope-configuration/zope-configuration-5.0.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/zope-configuration/zope-configuration-5.0.1.ebuild b/dev-python/zope-configuration/zope-configuration-5.0.1.ebuild
index f61e15e6270a..c1ea1fe80494 100644
--- a/dev-python/zope-configuration/zope-configuration-5.0.1.ebuild
+++ b/dev-python/zope-configuration/zope-configuration-5.0.1.ebuild
@@ -19,7 +19,7 @@ HOMEPAGE="
LICENSE="ZPL"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc64 ~riscv x86"
RDEPEND="
dev-python/zope-i18nmessageid[${PYTHON_USEDEP}]
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-configuration/
@ 2024-03-02 11:44 Michał Górny
0 siblings, 0 replies; 39+ messages in thread
From: Michał Górny @ 2024-03-02 11:44 UTC (permalink / raw
To: gentoo-commits
commit: a5efeabf264469b1f430d97b8ef8a3f87c42330d
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 2 11:38:21 2024 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Mar 2 11:43:53 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5efeabf
dev-python/zope-configuration: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/zope-configuration/Manifest | 1 -
.../zope-configuration-5.0.ebuild | 54 ----------------------
2 files changed, 55 deletions(-)
diff --git a/dev-python/zope-configuration/Manifest b/dev-python/zope-configuration/Manifest
index 6a8557b65835..0809e5cfb478 100644
--- a/dev-python/zope-configuration/Manifest
+++ b/dev-python/zope-configuration/Manifest
@@ -1,2 +1 @@
DIST zope.configuration-5.0.1.tar.gz 83327 BLAKE2B 665687d49e77c43e08293d5e7816a1f1abc9ff0c97dcfa83a90693d6da9d5767ebc24512dd7593316464103c38655c41909949bb1c8bb3f5db272e3637066284 SHA512 58fec7b330a4ee5f9bb71238fbcb8f07fdd7b6767cb2d8e054699ffcb915973b9dfead33e5515f40049f6aede233d31624d09d7f84d75b96318e63f8ab454147
-DIST zope.configuration-5.0.tar.gz 83357 BLAKE2B 8fa72cda6abf663d8dcf7b168c1a6c84401c1a93d6395b96eb2c691efab1395b56631aa92c95cc7401974832249c1ec734d49952a489be50b2eaf82252e919bb SHA512 59a720b9062ba5254b8a0c9b7dd4f44ab709ac29050c9f2eeb05827ed34f74940eed52ce5ec551bc0c8292f5ed0921a4d07c110f1b68baedcc6c02cd5edd9e00
diff --git a/dev-python/zope-configuration/zope-configuration-5.0.ebuild b/dev-python/zope-configuration/zope-configuration-5.0.ebuild
deleted file mode 100644
index f3ff3f642fea..000000000000
--- a/dev-python/zope-configuration/zope-configuration-5.0.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYPI_NO_NORMALIZE=1
-PYPI_PN=${PN/-/.}
-PYTHON_COMPAT=( python3_{10..12} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Zope Configuration Architecture"
-HOMEPAGE="
- https://pypi.org/project/zope.configuration/
- https://github.com/zopefoundation/zope.configuration/
- https://zopeconfiguration.readthedocs.io/en/latest/
-"
-
-LICENSE="ZPL"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~ppc64 ~riscv x86"
-
-RDEPEND="
- dev-python/zope-i18nmessageid[${PYTHON_USEDEP}]
- dev-python/zope-interface[${PYTHON_USEDEP}]
- >=dev-python/zope-schema-4.9[${PYTHON_USEDEP}]
- !dev-python/namespace-zope
-"
-BDEPEND="
- test? (
- dev-python/manuel[${PYTHON_USEDEP}]
- dev-python/zope-testing[${PYTHON_USEDEP}]
- )
-"
-
-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
-}
^ permalink raw reply related [flat|nested] 39+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-configuration/
@ 2024-06-18 15:56 Michał Górny
0 siblings, 0 replies; 39+ messages in thread
From: Michał Górny @ 2024-06-18 15:56 UTC (permalink / raw
To: gentoo-commits
commit: ce46ad1cd9d966f0bdf375f7036096314c87df6b
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 18 15:11:25 2024 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Jun 18 15:56:09 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce46ad1c
dev-python/zope-configuration: Enable py3.13
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/zope-configuration/zope-configuration-5.0.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/zope-configuration/zope-configuration-5.0.1.ebuild b/dev-python/zope-configuration/zope-configuration-5.0.1.ebuild
index c1ea1fe80494..a7118f2481f5 100644
--- a/dev-python/zope-configuration/zope-configuration-5.0.1.ebuild
+++ b/dev-python/zope-configuration/zope-configuration-5.0.1.ebuild
@@ -6,7 +6,7 @@ EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYPI_NO_NORMALIZE=1
PYPI_PN=${PN/-/.}
-PYTHON_COMPAT=( python3_{10..12} )
+PYTHON_COMPAT=( python3_{10..13} )
inherit distutils-r1 pypi
^ permalink raw reply related [flat|nested] 39+ messages in thread
end of thread, other threads:[~2024-06-18 15:56 UTC | newest]
Thread overview: 39+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-08-02 9:33 [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-configuration/ Michał Górny
-- strict thread matches above, loose matches on Subject: below --
2024-06-18 15:56 Michał Górny
2024-03-02 11:44 Michał Górny
2024-03-02 10:54 Arthur Zamarin
2024-02-13 4:27 Michał Górny
2023-06-06 6:13 Michał Górny
2023-06-03 19:17 Michał Górny
2023-06-03 18:06 Arthur Zamarin
2023-05-04 8:06 Michał Górny
2023-03-21 6:49 Michał Górny
2023-03-17 18:28 Michał Górny
2022-11-09 6:53 Sam James
2022-04-22 15:35 Michał Górny
2022-04-22 15:11 Arthur Zamarin
2022-04-22 15:11 Arthur Zamarin
2022-04-22 15:11 Arthur Zamarin
2022-04-11 19:58 Michał Górny
2022-04-09 21:47 Jakov Smolić
2022-04-09 20:23 Michał Górny
2022-04-09 18:56 Michał Górny
2022-04-09 14:58 Michał Górny
2022-04-09 14:37 Michał Górny
2022-04-09 11:37 Michał Górny
2022-04-09 5:57 Michał Górny
2022-04-08 8:56 Michał Górny
2021-10-10 11:00 Michał Górny
2021-10-10 2:20 Sam James
2021-10-10 0:09 Sam James
2021-10-09 20:19 Sam James
2021-09-22 13:30 Arthur Zamarin
2021-03-02 8:40 Sam James
2020-10-16 18:22 Michał Górny
2020-08-22 7:13 Michał Górny
2020-08-18 15:10 Sam James
2020-08-18 14:59 Sam James
2020-03-29 12:22 Michał Górny
2020-01-12 20:19 Matthew Thode
2018-03-17 21:41 Michał Górny
2017-12-11 3:49 Matt Thode
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox