* [gentoo-commits] repo/gentoo:master commit in: dev-python/PyUtilib/
@ 2020-05-04 9:45 Michał Górny
0 siblings, 0 replies; 7+ messages in thread
From: Michał Górny @ 2020-05-04 9:45 UTC (permalink / raw
To: gentoo-commits
commit: 2a15211a4847ff660aeef79ac9b272e4e2af9afe
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon May 4 09:45:00 2020 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon May 4 09:45:00 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a15211a
dev-python/PyUtilib: Remove redundant
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/PyUtilib/Manifest | 1 -
dev-python/PyUtilib/PyUtilib-5.6.5.ebuild | 52 -------------------------------
2 files changed, 53 deletions(-)
diff --git a/dev-python/PyUtilib/Manifest b/dev-python/PyUtilib/Manifest
index 7920e7a33a5..728046d1d58 100644
--- a/dev-python/PyUtilib/Manifest
+++ b/dev-python/PyUtilib/Manifest
@@ -1,2 +1 @@
-DIST PyUtilib-5.6.5.tar.gz 1504220 BLAKE2B 2d00b8b9a0a787413dce5dd4380382efa4c8788e9a8f5188eb0decf9e55bc07ce5ceb8e6f32ed2fa7cf58c331fe936ea07d9b599ff8e7e9593327d3c0f05d4e9 SHA512 5e7f86c29ff81cfffea5862d09ec8d026739f09b172606acd4d08dc4a9bde28c8b63b8e51634d17c3161b46e7e8c8881050044baa22bc07b0926efe46ed7331d
DIST PyUtilib-5.7.2.tar.gz 1566034 BLAKE2B 913c6576b39f14c19e2e633c36ade33fe812c77a37374c7c14d2fb4384ca38f68efd55209d70e96d9a78fea2fcf1cf83423680d0787da2d03cab88e59a208b96 SHA512 d9d7d890cdb524bb055885354784f2af01967164ce88cf3b144ccffb0a855ef34243fd518c58193517ecfc50f3c2e3ca333f026951c1ab0b38ce181ecf9e7750
diff --git a/dev-python/PyUtilib/PyUtilib-5.6.5.ebuild b/dev-python/PyUtilib/PyUtilib-5.6.5.ebuild
deleted file mode 100644
index 32506e723c9..00000000000
--- a/dev-python/PyUtilib/PyUtilib-5.6.5.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_6 )
-inherit distutils-r1
-
-DESCRIPTION="A collection of Python utilities"
-HOMEPAGE="https://github.com/PyUtilib/pyutilib"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
-BDEPEND="${RDEPEND}
- test? (
- dev-python/nose[${PYTHON_USEDEP}]
- dev-python/six[${PYTHON_USEDEP}]
- )"
-
-PATCHES=(
- "${FILESDIR}/pyutilib-5.6.5-tests.patch"
-)
-
-python_prepare() {
- # shells out to run nosetests
- rm pyutilib/dev/tests/test_runtests.py || die
-}
-
-python_install_all() {
- distutils-r1_python_install_all
- find "${ED}" -name '*.pth' -delete || die
-}
-
-python_install() {
- distutils-r1_python_install
-
- if ! python_is_python3; then
- printf "# Placeholder for python2\n" \
- > "${D}$(python_get_sitedir)/${PN,,}/__init__.py"
- fi
-}
-
-python_test() {
- COLUMNS="80" "${EPYTHON}" -W ignore::DeprecationWarning \
- -m unittest discover -v || die
-}
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/PyUtilib/
@ 2021-09-09 17:29 Arthur Zamarin
0 siblings, 0 replies; 7+ messages in thread
From: Arthur Zamarin @ 2021-09-09 17:29 UTC (permalink / raw
To: gentoo-commits
commit: 9b44e5a66ec5f29c30962600ebf8b4bec6fd05e4
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 9 16:22:00 2021 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Thu Sep 9 17:28:53 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b44e5a6
dev-python/PyUtilib: enable py3.10, add missing deps
Needed to fix a very small and irrelevant part of tests, which check
exact output of --help output. In python 3.10 it changed the texts,
so those fails are failing now. Fix by using sed and change only for
python 3.10 the expected output.
Closes: https://bugs.gentoo.org/812269
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-python/PyUtilib/PyUtilib-6.0.0.ebuild | 13 +++++++++++--
1 file changed, 11 insertions(+), 2 deletions(-)
diff --git a/dev-python/PyUtilib/PyUtilib-6.0.0.ebuild b/dev-python/PyUtilib/PyUtilib-6.0.0.ebuild
index d0f3e6c3885..fe1c027f23d 100644
--- a/dev-python/PyUtilib/PyUtilib-6.0.0.ebuild
+++ b/dev-python/PyUtilib/PyUtilib-6.0.0.ebuild
@@ -3,8 +3,7 @@
EAPI=7
-DISTUTILS_USE_SETUPTOOLS=rdepend
-PYTHON_COMPAT=( python3_{7..9} )
+PYTHON_COMPAT=( python3_{8..10} )
DISTUTILS_IN_SOURCE_BUILD=1
inherit distutils-r1
@@ -18,6 +17,9 @@ LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
+RDEPEND="dev-python/six[${PYTHON_USEDEP}]"
+BDEPEND="test? ( dev-python/nose[${PYTHON_USEDEP}] )"
+
PATCHES=(
"${FILESDIR}/PyUtilib-6.0.0-tests.patch"
)
@@ -36,5 +38,12 @@ python_test() {
local -x PYTHONPATH="${PWD}:${TEST_DIR}/lib" \
COLUMNS=80
+ if [[ ${EPYTHON} == python3.10 ]]; then
+ # Fix for very small output change of expected output in new version
+ sed -e 's/optional arguments/options/' -i \
+ "${BUILD_DIR}/../doc/workflow/examples/"*.txt \
+ pyutilib/misc/tests/test_config.py || die
+ fi
+
eunittest
}
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/PyUtilib/
@ 2021-09-09 17:29 Arthur Zamarin
0 siblings, 0 replies; 7+ messages in thread
From: Arthur Zamarin @ 2021-09-09 17:29 UTC (permalink / raw
To: gentoo-commits
commit: 9d0ef32c9b803825674138beadd9939cb513a18d
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 9 16:24:12 2021 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Thu Sep 9 17:28:54 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d0ef32c
dev-python/PyUtilib: mark ALLARCHES
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-python/PyUtilib/metadata.xml | 1 +
1 file changed, 1 insertion(+)
diff --git a/dev-python/PyUtilib/metadata.xml b/dev-python/PyUtilib/metadata.xml
index bebb51bfe31..25dc41d142c 100644
--- a/dev-python/PyUtilib/metadata.xml
+++ b/dev-python/PyUtilib/metadata.xml
@@ -8,6 +8,7 @@
<email>chutzpah@gentoo.org</email>
<name>Patrick McLean</name>
</maintainer>
+ <stabilize-allarches/>
<upstream>
<remote-id type="pypi">PyUtilib</remote-id>
</upstream>
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/PyUtilib/
@ 2020-12-01 10:32 Michał Górny
0 siblings, 0 replies; 7+ messages in thread
From: Michał Górny @ 2020-12-01 10:32 UTC (permalink / raw
To: gentoo-commits
commit: 8a199dd23b5b175cb6ae18d75be1271615afff8f
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 30 19:55:44 2020 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Dec 1 10:31:54 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a199dd2
dev-python/PyUtilib: Pass --via-root to dift
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/PyUtilib/PyUtilib-5.7.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/PyUtilib/PyUtilib-5.7.2.ebuild b/dev-python/PyUtilib/PyUtilib-5.7.2.ebuild
index f8845c0ef4e..cba7050bd71 100644
--- a/dev-python/PyUtilib/PyUtilib-5.7.2.ebuild
+++ b/dev-python/PyUtilib/PyUtilib-5.7.2.ebuild
@@ -36,7 +36,7 @@ python_prepare_all() {
}
python_test() {
- distutils_install_for_testing
+ distutils_install_for_testing --via-root
local -x PYTHONPATH="${PWD}:${TEST_DIR}/lib" \
COLUMNS=80
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/PyUtilib/
@ 2020-02-05 21:21 Michał Górny
0 siblings, 0 replies; 7+ messages in thread
From: Michał Górny @ 2020-02-05 21:21 UTC (permalink / raw
To: gentoo-commits
commit: 17c4cf830ee9e80ebbb42c174ca72df16cd34e5b
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 5 20:57:25 2020 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Feb 5 21:21:25 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17c4cf83
dev-python/PyUtilib: Remove py2
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/PyUtilib/PyUtilib-5.7.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/PyUtilib/PyUtilib-5.7.2.ebuild b/dev-python/PyUtilib/PyUtilib-5.7.2.ebuild
index 1c83d3e9485..38d68ddf607 100644
--- a/dev-python/PyUtilib/PyUtilib-5.7.2.ebuild
+++ b/dev-python/PyUtilib/PyUtilib-5.7.2.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-PYTHON_COMPAT=( python2_7 python3_{6,7,8} )
+PYTHON_COMPAT=( python3_{6,7,8} )
DISTUTILS_IN_SOURCE_BUILD=1
inherit distutils-r1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/PyUtilib/
@ 2019-12-11 3:05 Patrick McLean
0 siblings, 0 replies; 7+ messages in thread
From: Patrick McLean @ 2019-12-11 3:05 UTC (permalink / raw
To: gentoo-commits
commit: e84a9b5f23a21dd21166826bebb9cb1a10183859
Author: Patrick McLean <patrick.mclean <AT> sony <DOT> com>
AuthorDate: Wed Dec 11 02:45:42 2019 +0000
Commit: Patrick McLean <chutzpah <AT> gentoo <DOT> org>
CommitDate: Wed Dec 11 02:56:44 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e84a9b5f
dev-python/PyUtilib-5.7.2: Version bump
Copyright: Sony Interactive Entertainment Inc.
Package-Manager: Portage-2.3.81, Repoman-2.3.20
Signed-off-by: Patrick McLean <chutzpah <AT> gentoo.org>
dev-python/PyUtilib/Manifest | 1 +
dev-python/PyUtilib/PyUtilib-5.7.2.ebuild | 61 +++++++++++++++++++++++++++++++
2 files changed, 62 insertions(+)
diff --git a/dev-python/PyUtilib/Manifest b/dev-python/PyUtilib/Manifest
index 23ea8a4b814..7920e7a33a5 100644
--- a/dev-python/PyUtilib/Manifest
+++ b/dev-python/PyUtilib/Manifest
@@ -1 +1,2 @@
DIST PyUtilib-5.6.5.tar.gz 1504220 BLAKE2B 2d00b8b9a0a787413dce5dd4380382efa4c8788e9a8f5188eb0decf9e55bc07ce5ceb8e6f32ed2fa7cf58c331fe936ea07d9b599ff8e7e9593327d3c0f05d4e9 SHA512 5e7f86c29ff81cfffea5862d09ec8d026739f09b172606acd4d08dc4a9bde28c8b63b8e51634d17c3161b46e7e8c8881050044baa22bc07b0926efe46ed7331d
+DIST PyUtilib-5.7.2.tar.gz 1566034 BLAKE2B 913c6576b39f14c19e2e633c36ade33fe812c77a37374c7c14d2fb4384ca38f68efd55209d70e96d9a78fea2fcf1cf83423680d0787da2d03cab88e59a208b96 SHA512 d9d7d890cdb524bb055885354784f2af01967164ce88cf3b144ccffb0a855ef34243fd518c58193517ecfc50f3c2e3ca333f026951c1ab0b38ce181ecf9e7750
diff --git a/dev-python/PyUtilib/PyUtilib-5.7.2.ebuild b/dev-python/PyUtilib/PyUtilib-5.7.2.ebuild
new file mode 100644
index 00000000000..2fc844c76ed
--- /dev/null
+++ b/dev-python/PyUtilib/PyUtilib-5.7.2.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 python3_{5,6,7,8} )
+DISTUTILS_IN_SOURCE_BUILD=1
+
+inherit distutils-r1
+
+DESCRIPTION="A collection of Python utilities"
+HOMEPAGE="https://github.com/PyUtilib/pyutilib"
+SRC_URI="https://github.com/${PN}/${PN,,}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/${PN,,}-${PV}"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
+BDEPEND="${RDEPEND}
+ dev-python/nose[${PYTHON_USEDEP}]
+ dev-python/six[${PYTHON_USEDEP}]
+"
+
+PATCHES=(
+ "${FILESDIR}/pyutilib-5.6.5-tests.patch"
+)
+
+python_prepare_all() {
+ # remove some tests that are completely broken
+ rm pyutilib/component/app/tests/test_simple.py || die
+
+ distutils-r1_python_prepare_all
+}
+
+python_test() {
+ distutils_install_for_testing
+
+ local -x PYTHONPATH="${PWD}:${TEST_DIR}/lib" \
+ COLUMNS=80
+
+ nosetests -v --with-xunit --xunit-file=TEST-pyutilib.xml pyutilib || die "Tests fail with ${EPYTHON}"
+}
+
+python_install_all() {
+ distutils-r1_python_install_all
+
+ find "${ED}" -name '*.pth' -delete || die
+}
+
+python_install() {
+ distutils-r1_python_install
+
+ if ! python_is_python3; then
+ printf "# Placeholder for python2\n" \
+ > "${D}$(python_get_sitedir)/${PN,,}/__init__.py"
+
+ python_optimize
+ fi
+}
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/PyUtilib/
@ 2019-03-26 2:57 Patrick McLean
0 siblings, 0 replies; 7+ messages in thread
From: Patrick McLean @ 2019-03-26 2:57 UTC (permalink / raw
To: gentoo-commits
commit: ecd2de45a1b36df1d95a6a078f0f99c4d20f4bf7
Author: Patrick McLean <patrick.mclean <AT> sony <DOT> com>
AuthorDate: Tue Mar 26 02:57:24 2019 +0000
Commit: Patrick McLean <chutzpah <AT> gentoo <DOT> org>
CommitDate: Tue Mar 26 02:57:24 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ecd2de45
dev-python/PyUtilib: Remove longdescription from metadata.xml
Copyright: Sony Interactive Entertainment Inc.
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Patrick McLean <chutzpah <AT> gentoo.org>
dev-python/PyUtilib/metadata.xml | 2 --
1 file changed, 2 deletions(-)
diff --git a/dev-python/PyUtilib/metadata.xml b/dev-python/PyUtilib/metadata.xml
index 26c1b264f1f..2541628cf9a 100644
--- a/dev-python/PyUtilib/metadata.xml
+++ b/dev-python/PyUtilib/metadata.xml
@@ -8,6 +8,4 @@
<email>chutzpah@gentoo.org</email>
<name>Patrick McLean</name>
</maintainer>
- <longdescription lang="en">
- </longdescription>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 7+ messages in thread
end of thread, other threads:[~2021-09-09 17:29 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-05-04 9:45 [gentoo-commits] repo/gentoo:master commit in: dev-python/PyUtilib/ Michał Górny
-- strict thread matches above, loose matches on Subject: below --
2021-09-09 17:29 Arthur Zamarin
2021-09-09 17:29 Arthur Zamarin
2020-12-01 10:32 Michał Górny
2020-02-05 21:21 Michał Górny
2019-12-11 3:05 Patrick McLean
2019-03-26 2:57 Patrick McLean
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox