* [gentoo-commits] repo/gentoo:master commit in: dev-python/zc-buildout/
@ 2016-09-25 5:40 Alice Ferrazzi
0 siblings, 0 replies; 7+ messages in thread
From: Alice Ferrazzi @ 2016-09-25 5:40 UTC (permalink / raw
To: gentoo-commits
commit: dda48632627240c99c5438db7c62c98050ca604d
Author: Alice Ferrazzi <alicef <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 25 05:28:06 2016 +0000
Commit: Alice Ferrazzi <alicef <AT> gentoo <DOT> org>
CommitDate: Sun Sep 25 05:39:26 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dda48632
dev-python/zc-buildout: version bump to 2.5.3
updated copyright
Package-Manager: portage-2.2.28
dev-python/zc-buildout/Manifest | 1 +
dev-python/zc-buildout/zc-buildout-2.5.3.ebuild | 34 +++++++++++++++++++++++++
2 files changed, 35 insertions(+)
diff --git a/dev-python/zc-buildout/Manifest b/dev-python/zc-buildout/Manifest
index 983f9cc..486071b 100644
--- a/dev-python/zc-buildout/Manifest
+++ b/dev-python/zc-buildout/Manifest
@@ -1 +1,2 @@
DIST zc.buildout-2.3.1.tar.gz 292209 SHA256 3295b8944c637f65db3d6c2ded239b7b41a7f2df0e0bceb8b092247edf1866fb SHA512 cb741f02ccb119349e9e734667a64bec3248bbddc58a0e3d9ba10b1d2459e084170713be24051a529996fbc641ca8162d86c1c3ad3efdb2a95d2dd705616b73d WHIRLPOOL c391a6c62b72ce4bd56d12616df8580ab6c247e9bef74cf198bb777846ce7a450a31b7bd2088271d9a3faabd4b0388fb8e5b432b4c0f15e5b921c95c7e33e298
+DIST zc.buildout-2.5.3.tar.gz 305163 SHA256 3e5f3afcc64416604c5efc554c2fa0901b60657e012a710c320e2eb510efcfb9 SHA512 a4d4becac815531cd180795372ce5896d1fdab8606fff492502ef1f59d6d1ddd8427bb00ea96d36ec284a18b17b9273d8b94a405ebe410bae7e9a6e47a8dfad7 WHIRLPOOL b5d01e3b1a589cafb965cae8992f3657805ec3fd22ed75f43d57cba6260e4a7c2bc047c7355ae37cbbd13bb673ba7509597dbb0ed792bbfcbb80817646d7c4fc
diff --git a/dev-python/zc-buildout/zc-buildout-2.5.3.ebuild b/dev-python/zc-buildout/zc-buildout-2.5.3.ebuild
new file mode 100644
index 00000000..1341a17
--- /dev/null
+++ b/dev-python/zc-buildout/zc-buildout-2.5.3.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy pypy3 )
+
+inherit distutils-r1
+
+MY_PN="${PN/-/.}"
+MY_P=${MY_PN}-${PV}
+
+DESCRIPTION="System for managing development buildouts"
+HOMEPAGE="https://pypi.python.org/pypi/zc.buildout"
+SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
+
+LICENSE="ZPL"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND=">=dev-python/setuptools-3.3[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}"
+
+S="${WORKDIR}"/${MY_P}
+
+DOCS=( README.rst doc/tutorial.txt )
+# Tests require zope packages absent from portage
+
+# Prevent incorrect installation of data file
+python_prepare_all() {
+ sed -e '/^ include_package_data/d' -i setup.py || die
+ distutils-r1_python_prepare_all
+}
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zc-buildout/
@ 2017-05-07 18:43 Michał Górny
0 siblings, 0 replies; 7+ messages in thread
From: Michał Górny @ 2017-05-07 18:43 UTC (permalink / raw
To: gentoo-commits
commit: 743b5c504e058d36b47e1574b5fe6f82dcf4118c
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu May 4 18:50:16 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=743b5c50
dev-python/zc-buildout: Partially enable tests
Add missing test dependencies and python_test() implementation. Sadly,
the tests fail hard with Python 3.
dev-python/zc-buildout/zc-buildout-2.5.3.ebuild | 18 ++++++++++++++----
1 file changed, 14 insertions(+), 4 deletions(-)
diff --git a/dev-python/zc-buildout/zc-buildout-2.5.3.ebuild b/dev-python/zc-buildout/zc-buildout-2.5.3.ebuild
index a49133684c6..a5324fbf46e 100644
--- a/dev-python/zc-buildout/zc-buildout-2.5.3.ebuild
+++ b/dev-python/zc-buildout/zc-buildout-2.5.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
@@ -16,18 +16,28 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
LICENSE="ZPL"
SLOT="0"
KEYWORDS="~amd64 ~x86"
-IUSE=""
+IUSE="test"
RDEPEND=">=dev-python/setuptools-3.3[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}"
+DEPEND="${RDEPEND}
+ test? ( dev-python/zope-testing[${PYTHON_USEDEP}] )"
S="${WORKDIR}"/${MY_P}
DOCS=( README.rst doc/tutorial.txt )
-# Tests require zope packages absent from portage
# Prevent incorrect installation of data file
python_prepare_all() {
sed -e '/^ include_package_data/d' -i setup.py || die
distutils-r1_python_prepare_all
}
+
+python_test() {
+ if python_is_python3; then
+ ewarn "Tests are broken for ${EPYTHON}, skipping"
+ continue
+ fi
+
+ distutils_install_for_testing
+ "${PYTHON}" src/zc/buildout/tests.py || die "Tests fail with ${EPYTHON}"
+}
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zc-buildout/
@ 2017-05-09 15:35 Michał Górny
0 siblings, 0 replies; 7+ messages in thread
From: Michał Górny @ 2017-05-09 15:35 UTC (permalink / raw
To: gentoo-commits
commit: 53b1bf827d36ee37d93bc87a03951100ad75d03c
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue May 9 14:43:17 2017 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue May 9 15:35:29 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53b1bf82
dev-python/zc-buildout: Fix namespace support
dev-python/zc-buildout/zc-buildout-2.5.3-r1.ebuild | 56 ++++++++++++++++++++++
1 file changed, 56 insertions(+)
diff --git a/dev-python/zc-buildout/zc-buildout-2.5.3-r1.ebuild b/dev-python/zc-buildout/zc-buildout-2.5.3-r1.ebuild
new file mode 100644
index 00000000000..bfad670106d
--- /dev/null
+++ b/dev-python/zc-buildout/zc-buildout-2.5.3-r1.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+PYTHON_COMPAT=( python{2_7,3_4} pypy pypy3 )
+
+inherit distutils-r1
+
+MY_PN="${PN/-/.}"
+MY_P=${MY_PN}-${PV}
+
+DESCRIPTION="System for managing development buildouts"
+HOMEPAGE="https://pypi.python.org/pypi/zc.buildout"
+SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
+
+LICENSE="ZPL"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND=">=dev-python/setuptools-3.3[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+ test? ( dev-python/zope-testing[${PYTHON_USEDEP}] )"
+
+S="${WORKDIR}"/${MY_P}
+
+DOCS=( README.rst doc/tutorial.txt )
+
+# Prevent incorrect installation of data file
+python_prepare_all() {
+ sed -e '/^ include_package_data/d' -i setup.py || die
+ distutils-r1_python_prepare_all
+}
+
+python_test() {
+ if python_is_python3; then
+ ewarn "Tests are broken for ${EPYTHON}, skipping"
+ continue
+ fi
+
+ distutils_install_for_testing
+ "${PYTHON}" src/zc/buildout/tests.py || die "Tests fail with ${EPYTHON}"
+}
+
+python_install() {
+ distutils-r1_python_install
+
+ python_moduleinto zc
+ python_domodule src/zc/__init__.py
+}
+
+python_install_all() {
+ distutils-r1_python_install_all
+
+ find "${D}" -name '*.pth' -delete || die
+}
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zc-buildout/
@ 2017-05-29 16:33 Pacho Ramos
0 siblings, 0 replies; 7+ messages in thread
From: Pacho Ramos @ 2017-05-29 16:33 UTC (permalink / raw
To: gentoo-commits
commit: 8283315a4f58df5ad83f6246c55941bd16d95cc1
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Mon May 29 14:12:12 2017 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Mon May 29 16:32:31 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8283315a
dev-python/zc-buildout: Support newer python
Package-Manager: Portage-2.3.6, Repoman-2.3.2
dev-python/zc-buildout/zc-buildout-2.5.3-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/zc-buildout/zc-buildout-2.5.3-r1.ebuild b/dev-python/zc-buildout/zc-buildout-2.5.3-r1.ebuild
index bfad670106d..fe4f6403f55 100644
--- a/dev-python/zc-buildout/zc-buildout-2.5.3-r1.ebuild
+++ b/dev-python/zc-buildout/zc-buildout-2.5.3-r1.ebuild
@@ -2,7 +2,7 @@
# Distributed under the terms of the GNU General Public License v2
EAPI=5
-PYTHON_COMPAT=( python{2_7,3_4} pypy pypy3 )
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy pypy3 )
inherit distutils-r1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zc-buildout/
@ 2017-12-10 8:48 Alfredo Tupone
0 siblings, 0 replies; 7+ messages in thread
From: Alfredo Tupone @ 2017-12-10 8:48 UTC (permalink / raw
To: gentoo-commits
commit: cc503dd6a26b6d5a2a5571ad7f5b32fd28ce03a6
Author: Tupone Alfredo <tupone <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 10 08:47:25 2017 +0000
Commit: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Sun Dec 10 08:48:16 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc503dd6
dev-python/zc-buildout: Not used here anymore. Remove from metadata
Package-Manager: Portage-2.3.13, Repoman-2.3.3
dev-python/zc-buildout/metadata.xml | 4 ----
1 file changed, 4 deletions(-)
diff --git a/dev-python/zc-buildout/metadata.xml b/dev-python/zc-buildout/metadata.xml
index 285b4a8f881..57406ae085b 100644
--- a/dev-python/zc-buildout/metadata.xml
+++ b/dev-python/zc-buildout/metadata.xml
@@ -1,10 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <maintainer type="person">
- <email>tupone@gentoo.org</email>
- <name>Alfredo Tupone</name>
- </maintainer>
<maintainer type="project">
<email>python@gentoo.org</email>
<name>Python</name>
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zc-buildout/
@ 2018-01-06 13:39 Michał Górny
0 siblings, 0 replies; 7+ messages in thread
From: Michał Górny @ 2018-01-06 13:39 UTC (permalink / raw
To: gentoo-commits
commit: 1c7db172aad891a7ebbde359dde522fca606380b
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 6 10:04:21 2018 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Jan 6 13:39:22 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c7db172
dev-python/zc-buildout: Clean old up
dev-python/zc-buildout/zc-buildout-2.5.3.ebuild | 43 -------------------------
1 file changed, 43 deletions(-)
diff --git a/dev-python/zc-buildout/zc-buildout-2.5.3.ebuild b/dev-python/zc-buildout/zc-buildout-2.5.3.ebuild
deleted file mode 100644
index a5324fbf46e..00000000000
--- a/dev-python/zc-buildout/zc-buildout-2.5.3.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-PYTHON_COMPAT=( python{2_7,3_4} pypy pypy3 )
-
-inherit distutils-r1
-
-MY_PN="${PN/-/.}"
-MY_P=${MY_PN}-${PV}
-
-DESCRIPTION="System for managing development buildouts"
-HOMEPAGE="https://pypi.python.org/pypi/zc.buildout"
-SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
-
-LICENSE="ZPL"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-RDEPEND=">=dev-python/setuptools-3.3[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
- test? ( dev-python/zope-testing[${PYTHON_USEDEP}] )"
-
-S="${WORKDIR}"/${MY_P}
-
-DOCS=( README.rst doc/tutorial.txt )
-
-# Prevent incorrect installation of data file
-python_prepare_all() {
- sed -e '/^ include_package_data/d' -i setup.py || die
- distutils-r1_python_prepare_all
-}
-
-python_test() {
- if python_is_python3; then
- ewarn "Tests are broken for ${EPYTHON}, skipping"
- continue
- fi
-
- distutils_install_for_testing
- "${PYTHON}" src/zc/buildout/tests.py || die "Tests fail with ${EPYTHON}"
-}
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/zc-buildout/
@ 2019-12-28 16:16 David Seifert
0 siblings, 0 replies; 7+ messages in thread
From: David Seifert @ 2019-12-28 16:16 UTC (permalink / raw
To: gentoo-commits
commit: 531c22bef317703f824e4c4835b357328a5754bf
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 28 16:16:34 2019 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sat Dec 28 16:16:34 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=531c22be
dev-python/zc-buildout: Remove Py2
Package-Manager: Portage-2.3.83, Repoman-2.3.20
Signed-off-by: David Seifert <soap <AT> gentoo.org>
dev-python/zc-buildout/zc-buildout-2.5.3-r1.ebuild | 10 +++-------
1 file changed, 3 insertions(+), 7 deletions(-)
diff --git a/dev-python/zc-buildout/zc-buildout-2.5.3-r1.ebuild b/dev-python/zc-buildout/zc-buildout-2.5.3-r1.ebuild
index fdff18c3a85..7e50c6d015f 100644
--- a/dev-python/zc-buildout/zc-buildout-2.5.3-r1.ebuild
+++ b/dev-python/zc-buildout/zc-buildout-2.5.3-r1.ebuild
@@ -2,7 +2,7 @@
# Distributed under the terms of the GNU General Public License v2
EAPI=5
-PYTHON_COMPAT=( python{2_7,3_5,3_6} pypy pypy3 )
+PYTHON_COMPAT=( python3_{5,6} pypy3 )
inherit distutils-r1
@@ -17,7 +17,8 @@ LICENSE="ZPL"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"
-RESTRICT="!test? ( test )"
+# Tests are broken
+RESTRICT="test"
RDEPEND=">=dev-python/setuptools-3.3[${PYTHON_USEDEP}]"
DEPEND="${RDEPEND}
@@ -34,11 +35,6 @@ python_prepare_all() {
}
python_test() {
- if python_is_python3; then
- ewarn "Tests are broken for ${EPYTHON}, skipping"
- continue
- fi
-
distutils_install_for_testing
"${PYTHON}" src/zc/buildout/tests.py || die "Tests fail with ${EPYTHON}"
}
^ permalink raw reply related [flat|nested] 7+ messages in thread
end of thread, other threads:[~2019-12-28 16:17 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-05-29 16:33 [gentoo-commits] repo/gentoo:master commit in: dev-python/zc-buildout/ Pacho Ramos
-- strict thread matches above, loose matches on Subject: below --
2019-12-28 16:16 David Seifert
2018-01-06 13:39 Michał Górny
2017-12-10 8:48 Alfredo Tupone
2017-05-09 15:35 Michał Górny
2017-05-07 18:43 Michał Górny
2016-09-25 5:40 Alice Ferrazzi
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox