* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-deprecation/
@ 2017-05-07 18:43 Michał Górny
0 siblings, 0 replies; 29+ messages in thread
From: Michał Górny @ 2017-05-07 18:43 UTC (permalink / raw
To: gentoo-commits
commit: 8c67507ecdb920a8a56ed510f8e535e2be33144e
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat May 6 09:05:04 2017 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun May 7 18:43:24 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c67507e
dev-python/zope-deprecation: New package, dep of dev-python/pyramid
dev-python/zope-deprecation/Manifest | 1 +
dev-python/zope-deprecation/metadata.xml | 11 +++++++
.../zope-deprecation/zope-deprecation-4.2.0.ebuild | 36 ++++++++++++++++++++++
3 files changed, 48 insertions(+)
diff --git a/dev-python/zope-deprecation/Manifest b/dev-python/zope-deprecation/Manifest
new file mode 100644
index 00000000000..98b6bb89ca5
--- /dev/null
+++ b/dev-python/zope-deprecation/Manifest
@@ -0,0 +1 @@
+DIST zope.deprecation-4.2.0.tar.gz 223338 SHA256 ff32c5bb5388b77b22c83ed1f1aa01cdbb076d9f2cfa2b825450ce9e2ecfd738 SHA512 8ae5428d8e76014aaf17bfc05c88e7423be892f35bc9ec61f2f2919bb043fe0937cb592eec81763d9b6841ba3afa938e047cbecfacb9e4d29350e99f6ed417e6 WHIRLPOOL 967564825174b50c591a4d6f309b3384fce7dfa0c1201d38b332f2b2354c071fe1b63493b57ed6d35ecfe6534bb3be810ad7b30b2d3b1365b263757c066d1848
diff --git a/dev-python/zope-deprecation/metadata.xml b/dev-python/zope-deprecation/metadata.xml
new file mode 100644
index 00000000000..ae35638ded3
--- /dev/null
+++ b/dev-python/zope-deprecation/metadata.xml
@@ -0,0 +1,11 @@
+<?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>
+ <upstream>
+ <remote-id type="pypi">zope.deprecation</remote-id>
+ <remote-id type="github">zopefoundation/zope.deprecation</remote-id>
+ </upstream>
+</pkgmetadata>
diff --git a/dev-python/zope-deprecation/zope-deprecation-4.2.0.ebuild b/dev-python/zope-deprecation/zope-deprecation-4.2.0.ebuild
new file mode 100644
index 00000000000..a03bcc2ab00
--- /dev/null
+++ b/dev-python/zope-deprecation/zope-deprecation-4.2.0.ebuild
@@ -0,0 +1,36 @@
+# 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,5,6}} pypy{,3} )
+inherit distutils-r1
+
+MY_PN=${PN/-/.}
+MY_P=${MY_PN}-${PV}
+
+DESCRIPTION="Zope Deprecation Infrastructure"
+HOMEPAGE="https://github.com/zopefoundation/zope.deprecation"
+SRC_URI="mirror://pypi/${MY_PN::1}/${MY_PN}/${MY_P}.tar.gz"
+
+LICENSE="ZPL"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="dev-python/namespace-zope[${PYTHON_USEDEP}]"
+# note: nosetests are not actually used or enforced via test_requires
+DEPEND="${RDEPEND}
+ dev-python/setuptools[${PYTHON_USEDEP}]"
+
+S=${WORKDIR}/${MY_P}
+
+python_test() {
+ esetup.py test
+}
+
+python_install_all() {
+ distutils-r1_python_install_all
+
+ find "${ED}" -name '*.pth' -delete || die
+}
^ permalink raw reply related [flat|nested] 29+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-deprecation/
@ 2017-07-15 17:25 Tobias Klausmann
0 siblings, 0 replies; 29+ messages in thread
From: Tobias Klausmann @ 2017-07-15 17:25 UTC (permalink / raw
To: gentoo-commits
commit: 7f92a45f47886ebd1d83cf0b7082411af6ea18f9
Author: Tobias Klausmann <klausman <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 15 17:23:14 2017 +0000
Commit: Tobias Klausmann <klausman <AT> gentoo <DOT> org>
CommitDate: Sat Jul 15 17:23:14 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f92a45f
dev-python/zope-deprecation-4.2.0-r0: add amd64 keyword
Gentoo-Bug: 625052
dev-python/zope-deprecation/zope-deprecation-4.2.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/zope-deprecation/zope-deprecation-4.2.0.ebuild b/dev-python/zope-deprecation/zope-deprecation-4.2.0.ebuild
index a03bcc2ab00..9ed2d171482 100644
--- a/dev-python/zope-deprecation/zope-deprecation-4.2.0.ebuild
+++ b/dev-python/zope-deprecation/zope-deprecation-4.2.0.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${MY_PN::1}/${MY_PN}/${MY_P}.tar.gz"
LICENSE="ZPL"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
IUSE="test"
RDEPEND="dev-python/namespace-zope[${PYTHON_USEDEP}]"
^ permalink raw reply related [flat|nested] 29+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-deprecation/
@ 2017-09-17 21:09 Matt Turner
0 siblings, 0 replies; 29+ messages in thread
From: Matt Turner @ 2017-09-17 21:09 UTC (permalink / raw
To: gentoo-commits
commit: 2e7d11c32f3d8cce76c5ad7efa0cd6243f8e6973
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 17 21:08:46 2017 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sun Sep 17 21:09:05 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e7d11c3
dev-python/zope-deprecation-4.2.0: x86 stable, bug 625052
dev-python/zope-deprecation/zope-deprecation-4.2.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/zope-deprecation/zope-deprecation-4.2.0.ebuild b/dev-python/zope-deprecation/zope-deprecation-4.2.0.ebuild
index 9ed2d171482..7bf781fcb9b 100644
--- a/dev-python/zope-deprecation/zope-deprecation-4.2.0.ebuild
+++ b/dev-python/zope-deprecation/zope-deprecation-4.2.0.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${MY_PN::1}/${MY_PN}/${MY_P}.tar.gz"
LICENSE="ZPL"
SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
IUSE="test"
RDEPEND="dev-python/namespace-zope[${PYTHON_USEDEP}]"
^ permalink raw reply related [flat|nested] 29+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-deprecation/
@ 2019-11-30 8:28 Michał Górny
0 siblings, 0 replies; 29+ messages in thread
From: Michał Górny @ 2019-11-30 8:28 UTC (permalink / raw
To: gentoo-commits
commit: 2a4001b2302ce29f1cd71c99e0a9756dd90e7468
Author: Zamarin Arthur <arthurzam <AT> gmail <DOT> com>
AuthorDate: Wed Nov 13 11:37:48 2019 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Nov 30 08:28:06 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a4001b2
dev-python/zope-deprecation: bump v4.4.0, EAPI=7
add python3_8
use distutils_enable_tests for tests
Closes: https://bugs.gentoo.org/459494
Package-Manager: Portage-2.3.79, Repoman-2.3.18
Signed-off-by: Zamarin Arthur <arthurzam <AT> gmail.com>
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/zope-deprecation/Manifest | 1 +
.../zope-deprecation/zope-deprecation-4.4.0.ebuild | 31 ++++++++++++++++++++++
2 files changed, 32 insertions(+)
diff --git a/dev-python/zope-deprecation/Manifest b/dev-python/zope-deprecation/Manifest
index d6ff56dd5a3..2f8a9720eaf 100644
--- a/dev-python/zope-deprecation/Manifest
+++ b/dev-python/zope-deprecation/Manifest
@@ -1 +1,2 @@
DIST zope.deprecation-4.2.0.tar.gz 223338 BLAKE2B 377ac7708d686aaa5b461a11a8088b52dbda303464f34aa990d7f7ae52cbdec3aee70fb05ea685b44279c9ef8a4b88cee4a39c364ed8c9c2ca6c04ff685bc090 SHA512 8ae5428d8e76014aaf17bfc05c88e7423be892f35bc9ec61f2f2919bb043fe0937cb592eec81763d9b6841ba3afa938e047cbecfacb9e4d29350e99f6ed417e6
+DIST zope.deprecation-4.4.0.tar.gz 24737 BLAKE2B 993959f47e7808ad9d024d5df9d141cdbce3a1a3c281acc0d90bdb20747743936411714b52a29fcac6968cea50d5ab54820954f74c3f59081ce98f097715b9a3 SHA512 62371dc45fad6715f24cdcac1d25b559ed5248da774b5ecd215fb4d0b6fc0ab655bfb9e0fbceda964e8ffb7d70536e43f8fcf09d9f2742904717a6473869fa4a
diff --git a/dev-python/zope-deprecation/zope-deprecation-4.4.0.ebuild b/dev-python/zope-deprecation/zope-deprecation-4.4.0.ebuild
new file mode 100644
index 00000000000..9932b793cd1
--- /dev/null
+++ b/dev-python/zope-deprecation/zope-deprecation-4.4.0.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python{2_7,3_{5,6,7,8}} pypy{,3} )
+
+inherit distutils-r1
+
+MY_PN=${PN/-/.}
+MY_P=${MY_PN}-${PV}
+
+DESCRIPTION="Zope Deprecation Infrastructure"
+HOMEPAGE="https://github.com/zopefoundation/zope.deprecation"
+SRC_URI="mirror://pypi/${MY_PN::1}/${MY_PN}/${MY_P}.tar.gz"
+
+LICENSE="ZPL"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="dev-python/namespace-zope[${PYTHON_USEDEP}]"
+BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
+
+S="${WORKDIR}/${MY_P}"
+
+distutils_enable_tests setup.py
+
+python_install_all() {
+ distutils-r1_python_install_all
+
+ find "${ED}" -name '*.pth' -delete || die
+}
^ permalink raw reply related [flat|nested] 29+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-deprecation/
@ 2019-12-28 16:16 David Seifert
0 siblings, 0 replies; 29+ messages in thread
From: David Seifert @ 2019-12-28 16:16 UTC (permalink / raw
To: gentoo-commits
commit: ec847d380e2405a8e9a8ca5834990727321d58c4
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 28 16:16:35 2019 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sat Dec 28 16:16:35 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec847d38
dev-python/zope-deprecation: Remove Py2
Package-Manager: Portage-2.3.83, Repoman-2.3.20
Signed-off-by: David Seifert <soap <AT> gentoo.org>
dev-python/zope-deprecation/zope-deprecation-4.2.0.ebuild | 2 +-
dev-python/zope-deprecation/zope-deprecation-4.4.0.ebuild | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-python/zope-deprecation/zope-deprecation-4.2.0.ebuild b/dev-python/zope-deprecation/zope-deprecation-4.2.0.ebuild
index dae11d667c5..052b59f2d36 100644
--- a/dev-python/zope-deprecation/zope-deprecation-4.2.0.ebuild
+++ b/dev-python/zope-deprecation/zope-deprecation-4.2.0.ebuild
@@ -3,7 +3,7 @@
EAPI=6
-PYTHON_COMPAT=( python{2_7,3_{5,6}} pypy{,3} )
+PYTHON_COMPAT=( python3_{5,6} pypy3 )
inherit distutils-r1
MY_PN=${PN/-/.}
diff --git a/dev-python/zope-deprecation/zope-deprecation-4.4.0.ebuild b/dev-python/zope-deprecation/zope-deprecation-4.4.0.ebuild
index 9932b793cd1..305362931a2 100644
--- a/dev-python/zope-deprecation/zope-deprecation-4.4.0.ebuild
+++ b/dev-python/zope-deprecation/zope-deprecation-4.4.0.ebuild
@@ -2,7 +2,7 @@
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-PYTHON_COMPAT=( python{2_7,3_{5,6,7,8}} pypy{,3} )
+PYTHON_COMPAT=( python3_{5,6,7,8} pypy3 )
inherit distutils-r1
^ permalink raw reply related [flat|nested] 29+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-deprecation/
@ 2020-02-11 19:43 Agostino Sarubbo
0 siblings, 0 replies; 29+ messages in thread
From: Agostino Sarubbo @ 2020-02-11 19:43 UTC (permalink / raw
To: gentoo-commits
commit: 4f543a2aadfcfd604c5e0621bf1eecf190ca38c2
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 11 19:41:12 2020 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Tue Feb 11 19:43:13 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f543a2a
dev-python/zope-deprecation: amd64 stable wrt bug #706146
Package-Manager: Portage-2.3.84, Repoman-2.3.20
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
dev-python/zope-deprecation/zope-deprecation-4.4.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/zope-deprecation/zope-deprecation-4.4.0.ebuild b/dev-python/zope-deprecation/zope-deprecation-4.4.0.ebuild
index 87b980fed5e..177f74b6d57 100644
--- a/dev-python/zope-deprecation/zope-deprecation-4.4.0.ebuild
+++ b/dev-python/zope-deprecation/zope-deprecation-4.4.0.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${MY_PN::1}/${MY_PN}/${MY_P}.tar.gz"
LICENSE="ZPL"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
RDEPEND="dev-python/namespace-zope[${PYTHON_USEDEP}]"
BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
^ permalink raw reply related [flat|nested] 29+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-deprecation/
@ 2020-02-11 19:50 Agostino Sarubbo
0 siblings, 0 replies; 29+ messages in thread
From: Agostino Sarubbo @ 2020-02-11 19:50 UTC (permalink / raw
To: gentoo-commits
commit: c8deb813628030cd728aa1d43cdf81f4815921a9
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 11 19:49:10 2020 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Tue Feb 11 19:49:10 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8deb813
dev-python/zope-deprecation: x86 stable wrt bug #706146
Package-Manager: Portage-2.3.84, Repoman-2.3.20
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
dev-python/zope-deprecation/zope-deprecation-4.4.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/zope-deprecation/zope-deprecation-4.4.0.ebuild b/dev-python/zope-deprecation/zope-deprecation-4.4.0.ebuild
index 177f74b6d57..c7ecf45576f 100644
--- a/dev-python/zope-deprecation/zope-deprecation-4.4.0.ebuild
+++ b/dev-python/zope-deprecation/zope-deprecation-4.4.0.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${MY_PN::1}/${MY_PN}/${MY_P}.tar.gz"
LICENSE="ZPL"
SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
RDEPEND="dev-python/namespace-zope[${PYTHON_USEDEP}]"
BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
^ permalink raw reply related [flat|nested] 29+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-deprecation/
@ 2020-03-29 12:22 Michał Górny
0 siblings, 0 replies; 29+ messages in thread
From: Michał Górny @ 2020-03-29 12:22 UTC (permalink / raw
To: gentoo-commits
commit: f29f74a174c45bcbae22cb73052facaab3aa1dbd
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 29 12:15:03 2020 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Mar 29 12:20:06 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f29f74a1
dev-python/zope-deprecation: Remove redundant versions
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/zope-deprecation/Manifest | 1 -
.../zope-deprecation/zope-deprecation-4.2.0.ebuild | 37 ----------------------
2 files changed, 38 deletions(-)
diff --git a/dev-python/zope-deprecation/Manifest b/dev-python/zope-deprecation/Manifest
index 2f8a9720eaf..2a4b6b01e90 100644
--- a/dev-python/zope-deprecation/Manifest
+++ b/dev-python/zope-deprecation/Manifest
@@ -1,2 +1 @@
-DIST zope.deprecation-4.2.0.tar.gz 223338 BLAKE2B 377ac7708d686aaa5b461a11a8088b52dbda303464f34aa990d7f7ae52cbdec3aee70fb05ea685b44279c9ef8a4b88cee4a39c364ed8c9c2ca6c04ff685bc090 SHA512 8ae5428d8e76014aaf17bfc05c88e7423be892f35bc9ec61f2f2919bb043fe0937cb592eec81763d9b6841ba3afa938e047cbecfacb9e4d29350e99f6ed417e6
DIST zope.deprecation-4.4.0.tar.gz 24737 BLAKE2B 993959f47e7808ad9d024d5df9d141cdbce3a1a3c281acc0d90bdb20747743936411714b52a29fcac6968cea50d5ab54820954f74c3f59081ce98f097715b9a3 SHA512 62371dc45fad6715f24cdcac1d25b559ed5248da774b5ecd215fb4d0b6fc0ab655bfb9e0fbceda964e8ffb7d70536e43f8fcf09d9f2742904717a6473869fa4a
diff --git a/dev-python/zope-deprecation/zope-deprecation-4.2.0.ebuild b/dev-python/zope-deprecation/zope-deprecation-4.2.0.ebuild
deleted file mode 100644
index fcdf3e8efda..00000000000
--- a/dev-python/zope-deprecation/zope-deprecation-4.2.0.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python3_6 pypy3 )
-inherit distutils-r1
-
-MY_PN=${PN/-/.}
-MY_P=${MY_PN}-${PV}
-
-DESCRIPTION="Zope Deprecation Infrastructure"
-HOMEPAGE="https://github.com/zopefoundation/zope.deprecation"
-SRC_URI="mirror://pypi/${MY_PN::1}/${MY_PN}/${MY_P}.tar.gz"
-
-LICENSE="ZPL"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="dev-python/namespace-zope[${PYTHON_USEDEP}]"
-# note: nosetests are not actually used or enforced via test_requires
-DEPEND="${RDEPEND}
- dev-python/setuptools[${PYTHON_USEDEP}]"
-
-S=${WORKDIR}/${MY_P}
-
-python_test() {
- esetup.py test
-}
-
-python_install_all() {
- distutils-r1_python_install_all
-
- find "${ED}" -name '*.pth' -delete || die
-}
^ permalink raw reply related [flat|nested] 29+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-deprecation/
@ 2020-10-16 18:22 Michał Górny
0 siblings, 0 replies; 29+ messages in thread
From: Michał Górny @ 2020-10-16 18:22 UTC (permalink / raw
To: gentoo-commits
commit: 455a1f948efa252cf565bd0340360429b2071f08
Author: Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr>
AuthorDate: Thu Oct 15 17:41:29 2020 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Oct 16 18:21:29 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=455a1f94
dev-python/zope-deprecation: correct DISTUTILS_USE_SETUPTOOLS
Closes: https://bugs.gentoo.org/749122
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-deprecation/zope-deprecation-4.4.0.ebuild | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/dev-python/zope-deprecation/zope-deprecation-4.4.0.ebuild b/dev-python/zope-deprecation/zope-deprecation-4.4.0.ebuild
index c7ecf45576f..e0d43587ae9 100644
--- a/dev-python/zope-deprecation/zope-deprecation-4.4.0.ebuild
+++ b/dev-python/zope-deprecation/zope-deprecation-4.4.0.ebuild
@@ -2,7 +2,9 @@
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-PYTHON_COMPAT=( python3_{6,7,8} pypy3 )
+
+DISTUTILS_USE_SETUPTOOLS=rdepend
+PYTHON_COMPAT=( python3_{6..8} pypy3 )
inherit distutils-r1
@@ -18,7 +20,6 @@ SLOT="0"
KEYWORDS="amd64 x86"
RDEPEND="dev-python/namespace-zope[${PYTHON_USEDEP}]"
-BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
S="${WORKDIR}/${MY_P}"
^ permalink raw reply related [flat|nested] 29+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-deprecation/
@ 2020-12-03 17:31 Michał Górny
0 siblings, 0 replies; 29+ messages in thread
From: Michał Górny @ 2020-12-03 17:31 UTC (permalink / raw
To: gentoo-commits
commit: 3128e7beecd38f1f191713c23ff933f5b64a5fdd
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 3 17:24:23 2020 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Dec 3 17:31:04 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3128e7be
dev-python/zope-deprecation: Remove namespace dep
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
.../{zope-deprecation-4.4.0.ebuild => zope-deprecation-4.4.0-r1.ebuild} | 2 --
1 file changed, 2 deletions(-)
diff --git a/dev-python/zope-deprecation/zope-deprecation-4.4.0.ebuild b/dev-python/zope-deprecation/zope-deprecation-4.4.0-r1.ebuild
similarity index 91%
rename from dev-python/zope-deprecation/zope-deprecation-4.4.0.ebuild
rename to dev-python/zope-deprecation/zope-deprecation-4.4.0-r1.ebuild
index e0d43587ae9..269ec08ac9e 100644
--- a/dev-python/zope-deprecation/zope-deprecation-4.4.0.ebuild
+++ b/dev-python/zope-deprecation/zope-deprecation-4.4.0-r1.ebuild
@@ -19,8 +19,6 @@ LICENSE="ZPL"
SLOT="0"
KEYWORDS="amd64 x86"
-RDEPEND="dev-python/namespace-zope[${PYTHON_USEDEP}]"
-
S="${WORKDIR}/${MY_P}"
distutils_enable_tests setup.py
^ permalink raw reply related [flat|nested] 29+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-deprecation/
@ 2020-12-04 12:38 Michał Górny
0 siblings, 0 replies; 29+ messages in thread
From: Michał Górny @ 2020-12-04 12:38 UTC (permalink / raw
To: gentoo-commits
commit: 0422aea7955cee23cb3ca03b80441186a29b93db
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 4 12:35:43 2020 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Dec 4 12:36:58 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0422aea7
Revert "dev-python/zope-deprecation: Remove namespace dep"
This reverts commit 3128e7beecd38f1f191713c23ff933f5b64a5fdd.
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
.../{zope-deprecation-4.4.0-r1.ebuild => zope-deprecation-4.4.0.ebuild} | 2 ++
1 file changed, 2 insertions(+)
diff --git a/dev-python/zope-deprecation/zope-deprecation-4.4.0-r1.ebuild b/dev-python/zope-deprecation/zope-deprecation-4.4.0.ebuild
similarity index 91%
rename from dev-python/zope-deprecation/zope-deprecation-4.4.0-r1.ebuild
rename to dev-python/zope-deprecation/zope-deprecation-4.4.0.ebuild
index 269ec08ac9e..e0d43587ae9 100644
--- a/dev-python/zope-deprecation/zope-deprecation-4.4.0-r1.ebuild
+++ b/dev-python/zope-deprecation/zope-deprecation-4.4.0.ebuild
@@ -19,6 +19,8 @@ LICENSE="ZPL"
SLOT="0"
KEYWORDS="amd64 x86"
+RDEPEND="dev-python/namespace-zope[${PYTHON_USEDEP}]"
+
S="${WORKDIR}/${MY_P}"
distutils_enable_tests setup.py
^ permalink raw reply related [flat|nested] 29+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-deprecation/
@ 2021-03-02 8:40 Sam James
0 siblings, 0 replies; 29+ messages in thread
From: Sam James @ 2021-03-02 8:40 UTC (permalink / raw
To: gentoo-commits
commit: bae333241ba5939ed1da54b12a127d1c3a39c22d
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 2 07:42:55 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Mar 2 08:40:02 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bae33324
dev-python/zope-deprecation: mark ALLARCHES
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-python/zope-deprecation/metadata.xml | 1 +
1 file changed, 1 insertion(+)
diff --git a/dev-python/zope-deprecation/metadata.xml b/dev-python/zope-deprecation/metadata.xml
index ae35638ded3..e0ee54f191f 100644
--- a/dev-python/zope-deprecation/metadata.xml
+++ b/dev-python/zope-deprecation/metadata.xml
@@ -4,6 +4,7 @@
<maintainer type="project">
<email>python@gentoo.org</email>
</maintainer>
+ <stabilize-allarches/>
<upstream>
<remote-id type="pypi">zope.deprecation</remote-id>
<remote-id type="github">zopefoundation/zope.deprecation</remote-id>
^ permalink raw reply related [flat|nested] 29+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-deprecation/
@ 2021-03-02 8:40 Sam James
0 siblings, 0 replies; 29+ messages in thread
From: Sam James @ 2021-03-02 8:40 UTC (permalink / raw
To: gentoo-commits
commit: abcba20cf5cba9c6d2930ad63d4c404d6f8cfb25
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 2 07:43:26 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Mar 2 08:40:03 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=abcba20c
dev-python/zope-deprecation: add Python 3.9
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-python/zope-deprecation/zope-deprecation-4.4.0.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-python/zope-deprecation/zope-deprecation-4.4.0.ebuild b/dev-python/zope-deprecation/zope-deprecation-4.4.0.ebuild
index cf10756b956..14a895391a5 100644
--- a/dev-python/zope-deprecation/zope-deprecation-4.4.0.ebuild
+++ b/dev-python/zope-deprecation/zope-deprecation-4.4.0.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2020 Gentoo Authors
+# 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_{7..8} pypy3 )
+PYTHON_COMPAT=( python3_{7..9} pypy3 )
inherit distutils-r1
^ permalink raw reply related [flat|nested] 29+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-deprecation/
@ 2021-05-31 12:09 Michał Górny
0 siblings, 0 replies; 29+ messages in thread
From: Michał Górny @ 2021-05-31 12:09 UTC (permalink / raw
To: gentoo-commits
commit: 674588d84be07c67e05bbdea3f369945d007eec4
Author: Zamarin Arthur <arthurzam <AT> gmail <DOT> com>
AuthorDate: Sun May 23 08:02:46 2021 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon May 31 11:44:00 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=674588d8
dev-python/zope-deprecation: bump to python 3.10
passes tests
Signed-off-by: Zamarin Arthur <arthurzam <AT> gmail.com>
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/zope-deprecation/zope-deprecation-4.4.0.ebuild | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/dev-python/zope-deprecation/zope-deprecation-4.4.0.ebuild b/dev-python/zope-deprecation/zope-deprecation-4.4.0.ebuild
index 14a895391a5..7b98e5313fb 100644
--- a/dev-python/zope-deprecation/zope-deprecation-4.4.0.ebuild
+++ b/dev-python/zope-deprecation/zope-deprecation-4.4.0.ebuild
@@ -4,7 +4,7 @@
EAPI=7
DISTUTILS_USE_SETUPTOOLS=rdepend
-PYTHON_COMPAT=( python3_{7..9} pypy3 )
+PYTHON_COMPAT=( python3_{7..10} pypy3 )
inherit distutils-r1
@@ -14,6 +14,7 @@ MY_P=${MY_PN}-${PV}
DESCRIPTION="Zope Deprecation Infrastructure"
HOMEPAGE="https://github.com/zopefoundation/zope.deprecation"
SRC_URI="mirror://pypi/${MY_PN::1}/${MY_PN}/${MY_P}.tar.gz"
+S="${WORKDIR}/${MY_P}"
LICENSE="ZPL"
SLOT="0"
@@ -21,8 +22,6 @@ KEYWORDS="amd64 x86"
RDEPEND="dev-python/namespace-zope[${PYTHON_USEDEP}]"
-S="${WORKDIR}/${MY_P}"
-
distutils_enable_tests setup.py
python_install_all() {
^ permalink raw reply related [flat|nested] 29+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-deprecation/
@ 2022-04-09 19:12 Michał Górny
0 siblings, 0 replies; 29+ messages in thread
From: Michał Górny @ 2022-04-09 19:12 UTC (permalink / raw
To: gentoo-commits
commit: ad347a5dbed08f11f9ecc2b52598a212697ee8df
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 9 19:02:41 2022 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Apr 9 19:07:59 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad347a5d
dev-python/zope-deprecation: EAPI 8, PEP517, remove namespace dep
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
.../zope-deprecation-4.4.0-r1.ebuild | 47 ++++++++++++++++++++++
1 file changed, 47 insertions(+)
diff --git a/dev-python/zope-deprecation/zope-deprecation-4.4.0-r1.ebuild b/dev-python/zope-deprecation/zope-deprecation-4.4.0-r1.ebuild
new file mode 100644
index 000000000000..3aa022b61549
--- /dev/null
+++ b/dev-python/zope-deprecation/zope-deprecation-4.4.0-r1.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} pypy3 )
+
+inherit distutils-r1
+
+MY_PN=${PN/-/.}
+MY_P=${MY_PN}-${PV}
+DESCRIPTION="Zope Deprecation Infrastructure"
+HOMEPAGE="
+ https://pypi.org/project/zope.deprecation/
+ https://github.com/zopefoundation/zope.deprecation/
+"
+SRC_URI="mirror://pypi/${MY_PN::1}/${MY_PN}/${MY_P}.tar.gz"
+S="${WORKDIR}/${MY_P}"
+
+LICENSE="ZPL"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+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
+ # 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
+ rm zope/__init__.py || die
+}
^ permalink raw reply related [flat|nested] 29+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-deprecation/
@ 2022-04-11 19:58 Michał Górny
0 siblings, 0 replies; 29+ messages in thread
From: Michał Górny @ 2022-04-11 19:58 UTC (permalink / raw
To: gentoo-commits
commit: e23a94b0f330d57b190cfb209e9cc5f76b186d68
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 11 18:43:52 2022 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Apr 11 19:58:46 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e23a94b0
dev-python/zope-deprecation: Use distutils_write_namespace
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/zope-deprecation/zope-deprecation-4.4.0-r1.ebuild | 7 +------
1 file changed, 1 insertion(+), 6 deletions(-)
diff --git a/dev-python/zope-deprecation/zope-deprecation-4.4.0-r1.ebuild b/dev-python/zope-deprecation/zope-deprecation-4.4.0-r1.ebuild
index 3aa022b61549..3e1bd14058bd 100644
--- a/dev-python/zope-deprecation/zope-deprecation-4.4.0-r1.ebuild
+++ b/dev-python/zope-deprecation/zope-deprecation-4.4.0-r1.ebuild
@@ -37,11 +37,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] 29+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-deprecation/
@ 2022-04-20 14:12 Jakov Smolić
0 siblings, 0 replies; 29+ messages in thread
From: Jakov Smolić @ 2022-04-20 14:12 UTC (permalink / raw
To: gentoo-commits
commit: caf929c2b379a9b5a9e5df477a7efe0ea706c605
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 20 14:11:50 2022 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Wed Apr 20 14:11:50 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=caf929c2
dev-python/zope-deprecation: Stabilize 4.4.0-r1 ALLARCHES, #839702
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
dev-python/zope-deprecation/zope-deprecation-4.4.0-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/zope-deprecation/zope-deprecation-4.4.0-r1.ebuild b/dev-python/zope-deprecation/zope-deprecation-4.4.0-r1.ebuild
index 3e1bd14058bd..e4a0db318fad 100644
--- a/dev-python/zope-deprecation/zope-deprecation-4.4.0-r1.ebuild
+++ b/dev-python/zope-deprecation/zope-deprecation-4.4.0-r1.ebuild
@@ -20,7 +20,7 @@ S="${WORKDIR}/${MY_P}"
LICENSE="ZPL"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
distutils_enable_tests unittest
^ permalink raw reply related [flat|nested] 29+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-deprecation/
@ 2022-04-20 17:24 Michał Górny
0 siblings, 0 replies; 29+ messages in thread
From: Michał Górny @ 2022-04-20 17:24 UTC (permalink / raw
To: gentoo-commits
commit: 82aa0892b53401908884441e9c701bc5fc81309a
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 20 16:16:12 2022 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Apr 20 17:24:38 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82aa0892
dev-python/zope-deprecation: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
.../zope-deprecation/zope-deprecation-4.4.0.ebuild | 31 ----------------------
1 file changed, 31 deletions(-)
diff --git a/dev-python/zope-deprecation/zope-deprecation-4.4.0.ebuild b/dev-python/zope-deprecation/zope-deprecation-4.4.0.ebuild
deleted file mode 100644
index 7b98e5313fbb..000000000000
--- a/dev-python/zope-deprecation/zope-deprecation-4.4.0.ebuild
+++ /dev/null
@@ -1,31 +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_{7..10} pypy3 )
-
-inherit distutils-r1
-
-MY_PN=${PN/-/.}
-MY_P=${MY_PN}-${PV}
-
-DESCRIPTION="Zope Deprecation Infrastructure"
-HOMEPAGE="https://github.com/zopefoundation/zope.deprecation"
-SRC_URI="mirror://pypi/${MY_PN::1}/${MY_PN}/${MY_P}.tar.gz"
-S="${WORKDIR}/${MY_P}"
-
-LICENSE="ZPL"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-RDEPEND="dev-python/namespace-zope[${PYTHON_USEDEP}]"
-
-distutils_enable_tests setup.py
-
-python_install_all() {
- distutils-r1_python_install_all
-
- find "${ED}" -name '*.pth' -delete || die
-}
^ permalink raw reply related [flat|nested] 29+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-deprecation/
@ 2022-04-22 15:35 Michał Górny
0 siblings, 0 replies; 29+ messages in thread
From: Michał Górny @ 2022-04-22 15:35 UTC (permalink / raw
To: gentoo-commits
commit: 5c0de17988da825055ac15d28ad992f59381e0a3
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 22 15:33:55 2022 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Apr 22 15:33:55 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c0de179
dev-python/zope-deprecation: Add a blocker on namespace-zope
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
...e-deprecation-4.4.0-r1.ebuild => zope-deprecation-4.4.0-r2.ebuild} | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/dev-python/zope-deprecation/zope-deprecation-4.4.0-r1.ebuild b/dev-python/zope-deprecation/zope-deprecation-4.4.0-r2.ebuild
similarity index 95%
rename from dev-python/zope-deprecation/zope-deprecation-4.4.0-r1.ebuild
rename to dev-python/zope-deprecation/zope-deprecation-4.4.0-r2.ebuild
index e4a0db318fad..64c907c487d0 100644
--- a/dev-python/zope-deprecation/zope-deprecation-4.4.0-r1.ebuild
+++ b/dev-python/zope-deprecation/zope-deprecation-4.4.0-r2.ebuild
@@ -22,6 +22,10 @@ LICENSE="ZPL"
SLOT="0"
KEYWORDS="amd64 x86"
+RDEPEND="
+ !dev-python/namespace-zope
+"
+
distutils_enable_tests unittest
src_prepare() {
^ permalink raw reply related [flat|nested] 29+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-deprecation/
@ 2022-05-18 10:56 Michał Górny
0 siblings, 0 replies; 29+ messages in thread
From: Michał Górny @ 2022-05-18 10:56 UTC (permalink / raw
To: gentoo-commits
commit: cf81823a9267f19ece5d7117cf771162f7169495
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed May 18 10:48:21 2022 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed May 18 10:56:17 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf81823a
dev-python/zope-deprecation: Enable py3.11
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/zope-deprecation/zope-deprecation-4.4.0-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/zope-deprecation/zope-deprecation-4.4.0-r2.ebuild b/dev-python/zope-deprecation/zope-deprecation-4.4.0-r2.ebuild
index 64c907c487d0..5c779791734f 100644
--- a/dev-python/zope-deprecation/zope-deprecation-4.4.0-r2.ebuild
+++ b/dev-python/zope-deprecation/zope-deprecation-4.4.0-r2.ebuild
@@ -4,7 +4,7 @@
EAPI=8
DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} pypy3 )
+PYTHON_COMPAT=( python3_{8..11} pypy3 )
inherit distutils-r1
^ permalink raw reply related [flat|nested] 29+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-deprecation/
@ 2023-03-17 18:28 Michał Górny
0 siblings, 0 replies; 29+ messages in thread
From: Michał Górny @ 2023-03-17 18:28 UTC (permalink / raw
To: gentoo-commits
commit: ea63e8aff416375b8fabdd7ec8b20769ab0f0d27
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 17 18:04:07 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=ea63e8af
dev-python/zope-deprecation: Use pypi.eclass
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/zope-deprecation/zope-deprecation-4.4.0-r2.ebuild | 8 +++-----
1 file changed, 3 insertions(+), 5 deletions(-)
diff --git a/dev-python/zope-deprecation/zope-deprecation-4.4.0-r2.ebuild b/dev-python/zope-deprecation/zope-deprecation-4.4.0-r2.ebuild
index 39ccaef749c2..5204ed4ef0c0 100644
--- a/dev-python/zope-deprecation/zope-deprecation-4.4.0-r2.ebuild
+++ b/dev-python/zope-deprecation/zope-deprecation-4.4.0-r2.ebuild
@@ -6,17 +6,15 @@ EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{9..11} pypy3 )
-inherit distutils-r1
+inherit distutils-r1 pypi
-MY_PN=${PN/-/.}
-MY_P=${MY_PN}-${PV}
DESCRIPTION="Zope Deprecation Infrastructure"
HOMEPAGE="
https://pypi.org/project/zope.deprecation/
https://github.com/zopefoundation/zope.deprecation/
"
-SRC_URI="mirror://pypi/${MY_PN::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] 29+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-deprecation/
@ 2023-03-21 6:49 Michał Górny
0 siblings, 0 replies; 29+ messages in thread
From: Michał Górny @ 2023-03-21 6:49 UTC (permalink / raw
To: gentoo-commits
commit: 9491e8961741b1f3967a1a932991c1d299f94e40
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 21 06:46:23 2023 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Mar 21 06:49:08 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9491e896
dev-python/zope-deprecation: Use PYPI_PN
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/zope-deprecation/zope-deprecation-4.4.0-r2.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-python/zope-deprecation/zope-deprecation-4.4.0-r2.ebuild b/dev-python/zope-deprecation/zope-deprecation-4.4.0-r2.ebuild
index 5204ed4ef0c0..65881298bae8 100644
--- a/dev-python/zope-deprecation/zope-deprecation-4.4.0-r2.ebuild
+++ b/dev-python/zope-deprecation/zope-deprecation-4.4.0-r2.ebuild
@@ -4,6 +4,8 @@
EAPI=8
DISTUTILS_USE_PEP517=setuptools
+PYPI_NO_NORMALIZE=1
+PYPI_PN=${PN/-/.}
PYTHON_COMPAT=( python3_{9..11} pypy3 )
inherit distutils-r1 pypi
@@ -13,8 +15,6 @@ HOMEPAGE="
https://pypi.org/project/zope.deprecation/
https://github.com/zopefoundation/zope.deprecation/
"
-SRC_URI="$(pypi_sdist_url --no-normalize "${PN/-/.}")"
-S=${WORKDIR}/${P/-/.}
LICENSE="ZPL"
SLOT="0"
^ permalink raw reply related [flat|nested] 29+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-deprecation/
@ 2023-03-30 2:57 Michał Górny
0 siblings, 0 replies; 29+ messages in thread
From: Michał Górny @ 2023-03-30 2:57 UTC (permalink / raw
To: gentoo-commits
commit: c01d8b53aa574bf462db240770d2b08937ea1b07
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 30 02:15:55 2023 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Mar 30 02:57:22 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c01d8b53
dev-python/zope-deprecation: Bump to 5.0
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/zope-deprecation/Manifest | 1 +
.../zope-deprecation/zope-deprecation-5.0.ebuild | 44 ++++++++++++++++++++++
2 files changed, 45 insertions(+)
diff --git a/dev-python/zope-deprecation/Manifest b/dev-python/zope-deprecation/Manifest
index 2a4b6b01e909..0ab62602dff8 100644
--- a/dev-python/zope-deprecation/Manifest
+++ b/dev-python/zope-deprecation/Manifest
@@ -1 +1,2 @@
DIST zope.deprecation-4.4.0.tar.gz 24737 BLAKE2B 993959f47e7808ad9d024d5df9d141cdbce3a1a3c281acc0d90bdb20747743936411714b52a29fcac6968cea50d5ab54820954f74c3f59081ce98f097715b9a3 SHA512 62371dc45fad6715f24cdcac1d25b559ed5248da774b5ecd215fb4d0b6fc0ab655bfb9e0fbceda964e8ffb7d70536e43f8fcf09d9f2742904717a6473869fa4a
+DIST zope.deprecation-5.0.tar.gz 23353 BLAKE2B 9b98291fe252942a8235c70c0a13bfbaf2cb3091e1502099f8a0651b517e748645cbda957f92c790c4d4f2b6ed7324cd5e21bae9d2906f2943e507376a980d76 SHA512 11313626e4141c2f92805c7c533b32160f88bf45667cd5a53a867daad3172947e5ac80433893c515243276030400a8a8e3d3a623ea51cb2b15bd5a5a0927bc46
diff --git a/dev-python/zope-deprecation/zope-deprecation-5.0.ebuild b/dev-python/zope-deprecation/zope-deprecation-5.0.ebuild
new file mode 100644
index 000000000000..04001b09e400
--- /dev/null
+++ b/dev-python/zope-deprecation/zope-deprecation-5.0.ebuild
@@ -0,0 +1,44 @@
+# 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} pypy3 )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Zope Deprecation Infrastructure"
+HOMEPAGE="
+ https://pypi.org/project/zope.deprecation/
+ https://github.com/zopefoundation/zope.deprecation/
+"
+
+LICENSE="ZPL"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+ !dev-python/namespace-zope
+"
+
+distutils_enable_tests unittest
+
+src_prepare() {
+ # strip rdep specific to namespaces
+ sed -i -e "s:'setuptools',::" 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] 29+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-deprecation/
@ 2023-04-29 7:47 Arthur Zamarin
0 siblings, 0 replies; 29+ messages in thread
From: Arthur Zamarin @ 2023-04-29 7:47 UTC (permalink / raw
To: gentoo-commits
commit: 57a211fda088f0c30a2c13e2b201a65bf17aa6bb
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 29 07:47:02 2023 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Apr 29 07:47:02 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57a211fd
dev-python/zope-deprecation: Stabilize 5.0 ALLARCHES, #905279
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-python/zope-deprecation/zope-deprecation-5.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/zope-deprecation/zope-deprecation-5.0.ebuild b/dev-python/zope-deprecation/zope-deprecation-5.0.ebuild
index 04001b09e400..8c29a614440c 100644
--- a/dev-python/zope-deprecation/zope-deprecation-5.0.ebuild
+++ b/dev-python/zope-deprecation/zope-deprecation-5.0.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="
LICENSE="ZPL"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
RDEPEND="
!dev-python/namespace-zope
^ permalink raw reply related [flat|nested] 29+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-deprecation/
@ 2023-04-29 9:25 Michał Górny
0 siblings, 0 replies; 29+ messages in thread
From: Michał Górny @ 2023-04-29 9:25 UTC (permalink / raw
To: gentoo-commits
commit: f6f3c663fde7b2b5e4aa1b3888509d7ef08483c2
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 29 09:24:24 2023 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Apr 29 09:25:08 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6f3c663
dev-python/zope-deprecation: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/zope-deprecation/Manifest | 1 -
.../zope-deprecation-4.4.0-r2.ebuild | 44 ----------------------
2 files changed, 45 deletions(-)
diff --git a/dev-python/zope-deprecation/Manifest b/dev-python/zope-deprecation/Manifest
index 0ab62602dff8..7dbd8f008faa 100644
--- a/dev-python/zope-deprecation/Manifest
+++ b/dev-python/zope-deprecation/Manifest
@@ -1,2 +1 @@
-DIST zope.deprecation-4.4.0.tar.gz 24737 BLAKE2B 993959f47e7808ad9d024d5df9d141cdbce3a1a3c281acc0d90bdb20747743936411714b52a29fcac6968cea50d5ab54820954f74c3f59081ce98f097715b9a3 SHA512 62371dc45fad6715f24cdcac1d25b559ed5248da774b5ecd215fb4d0b6fc0ab655bfb9e0fbceda964e8ffb7d70536e43f8fcf09d9f2742904717a6473869fa4a
DIST zope.deprecation-5.0.tar.gz 23353 BLAKE2B 9b98291fe252942a8235c70c0a13bfbaf2cb3091e1502099f8a0651b517e748645cbda957f92c790c4d4f2b6ed7324cd5e21bae9d2906f2943e507376a980d76 SHA512 11313626e4141c2f92805c7c533b32160f88bf45667cd5a53a867daad3172947e5ac80433893c515243276030400a8a8e3d3a623ea51cb2b15bd5a5a0927bc46
diff --git a/dev-python/zope-deprecation/zope-deprecation-4.4.0-r2.ebuild b/dev-python/zope-deprecation/zope-deprecation-4.4.0-r2.ebuild
deleted file mode 100644
index 65881298bae8..000000000000
--- a/dev-python/zope-deprecation/zope-deprecation-4.4.0-r2.ebuild
+++ /dev/null
@@ -1,44 +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} pypy3 )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Zope Deprecation Infrastructure"
-HOMEPAGE="
- https://pypi.org/project/zope.deprecation/
- https://github.com/zopefoundation/zope.deprecation/
-"
-
-LICENSE="ZPL"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-RDEPEND="
- !dev-python/namespace-zope
-"
-
-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] 29+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-deprecation/
@ 2023-06-06 6:13 Michał Górny
0 siblings, 0 replies; 29+ messages in thread
From: Michał Górny @ 2023-06-06 6:13 UTC (permalink / raw
To: gentoo-commits
commit: ad20162621c4b7319854127c39419f7880da92c5
Author: Petr Vaněk <arkamar <AT> atlas <DOT> cz>
AuthorDate: Mon Jun 5 21:11:23 2023 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Jun 6 06:13:41 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad201626
dev-python/zope-deprecation: enable py3.12
Signed-off-by: Petr Vaněk <arkamar <AT> atlas.cz>
Closes: https://github.com/gentoo/gentoo/pull/31322
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/zope-deprecation/zope-deprecation-5.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/zope-deprecation/zope-deprecation-5.0.ebuild b/dev-python/zope-deprecation/zope-deprecation-5.0.ebuild
index 8c29a614440c..9b9ee51e6344 100644
--- a/dev-python/zope-deprecation/zope-deprecation-5.0.ebuild
+++ b/dev-python/zope-deprecation/zope-deprecation-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} pypy3 )
+PYTHON_COMPAT=( python3_{10..12} pypy3 )
inherit distutils-r1 pypi
^ permalink raw reply related [flat|nested] 29+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-deprecation/
@ 2023-11-23 18:55 Michał Górny
0 siblings, 0 replies; 29+ messages in thread
From: Michał Górny @ 2023-11-23 18:55 UTC (permalink / raw
To: gentoo-commits
commit: 5c30056bfd44dcd4846d84ea5ea2a7daf3053421
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 23 18:52:32 2023 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Nov 23 18:52:32 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c30056b
dev-python/zope-deprecation: Keyword 5.0 arm64, #918084
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/zope-deprecation/zope-deprecation-5.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/zope-deprecation/zope-deprecation-5.0.ebuild b/dev-python/zope-deprecation/zope-deprecation-5.0.ebuild
index 9b9ee51e6344..f30c6429cd8c 100644
--- a/dev-python/zope-deprecation/zope-deprecation-5.0.ebuild
+++ b/dev-python/zope-deprecation/zope-deprecation-5.0.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="
LICENSE="ZPL"
SLOT="0"
-KEYWORDS="amd64 x86"
+KEYWORDS="amd64 ~arm64 x86"
RDEPEND="
!dev-python/namespace-zope
^ permalink raw reply related [flat|nested] 29+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-deprecation/
@ 2023-11-24 15:31 Michał Górny
0 siblings, 0 replies; 29+ messages in thread
From: Michał Górny @ 2023-11-24 15:31 UTC (permalink / raw
To: gentoo-commits
commit: 69946816ae401052d3cabe5ac652e914e1d48b24
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 24 15:31:50 2023 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Nov 24 15:31:50 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69946816
dev-python/zope-deprecation: Stabilize 5.0 arm64, #918400
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/zope-deprecation/zope-deprecation-5.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/zope-deprecation/zope-deprecation-5.0.ebuild b/dev-python/zope-deprecation/zope-deprecation-5.0.ebuild
index f30c6429cd8c..ab964272a711 100644
--- a/dev-python/zope-deprecation/zope-deprecation-5.0.ebuild
+++ b/dev-python/zope-deprecation/zope-deprecation-5.0.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="
LICENSE="ZPL"
SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
+KEYWORDS="amd64 arm64 x86"
RDEPEND="
!dev-python/namespace-zope
^ permalink raw reply related [flat|nested] 29+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-deprecation/
@ 2024-06-18 15:56 Michał Górny
0 siblings, 0 replies; 29+ messages in thread
From: Michał Górny @ 2024-06-18 15:56 UTC (permalink / raw
To: gentoo-commits
commit: 3e321e2fe8a9c8433d3e6c30e94466f801169fc5
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 18 15:13:24 2024 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Jun 18 15:56:12 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e321e2f
dev-python/zope-deprecation: Enable py3.13
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/zope-deprecation/zope-deprecation-5.0.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-python/zope-deprecation/zope-deprecation-5.0.ebuild b/dev-python/zope-deprecation/zope-deprecation-5.0.ebuild
index ab964272a711..bbeefa401af4 100644
--- a/dev-python/zope-deprecation/zope-deprecation-5.0.ebuild
+++ b/dev-python/zope-deprecation/zope-deprecation-5.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -6,7 +6,7 @@ EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYPI_NO_NORMALIZE=1
PYPI_PN=${PN/-/.}
-PYTHON_COMPAT=( python3_{10..12} pypy3 )
+PYTHON_COMPAT=( python3_{10..13} pypy3 )
inherit distutils-r1 pypi
^ permalink raw reply related [flat|nested] 29+ messages in thread
end of thread, other threads:[~2024-06-18 15:56 UTC | newest]
Thread overview: 29+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-03-21 6:49 [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-deprecation/ Michał Górny
-- strict thread matches above, loose matches on Subject: below --
2024-06-18 15:56 Michał Górny
2023-11-24 15:31 Michał Górny
2023-11-23 18:55 Michał Górny
2023-06-06 6:13 Michał Górny
2023-04-29 9:25 Michał Górny
2023-04-29 7:47 Arthur Zamarin
2023-03-30 2:57 Michał Górny
2023-03-17 18:28 Michał Górny
2022-05-18 10:56 Michał Górny
2022-04-22 15:35 Michał Górny
2022-04-20 17:24 Michał Górny
2022-04-20 14:12 Jakov Smolić
2022-04-11 19:58 Michał Górny
2022-04-09 19:12 Michał Górny
2021-05-31 12:09 Michał Górny
2021-03-02 8:40 Sam James
2021-03-02 8:40 Sam James
2020-12-04 12:38 Michał Górny
2020-12-03 17:31 Michał Górny
2020-10-16 18:22 Michał Górny
2020-03-29 12:22 Michał Górny
2020-02-11 19:50 Agostino Sarubbo
2020-02-11 19:43 Agostino Sarubbo
2019-12-28 16:16 David Seifert
2019-11-30 8:28 Michał Górny
2017-09-17 21:09 Matt Turner
2017-07-15 17:25 Tobias Klausmann
2017-05-07 18:43 Michał Górny
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox