* [gentoo-commits] repo/gentoo:master commit in: dev-python/nose_fixes/
@ 2015-09-21 9:55 Justin Lecher
0 siblings, 0 replies; 9+ messages in thread
From: Justin Lecher @ 2015-09-21 9:55 UTC (permalink / raw
To: gentoo-commits
commit: d5a64c2aee787a8bac922e7c8f86db5a645047b9
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 21 09:55:01 2015 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Mon Sep 21 09:55:01 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5a64c2a
dev-python/nose_fixes: Fix DESCRIPTION
Package-Manager: portage-2.2.20.1
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
dev-python/nose_fixes/nose_fixes-1.3.ebuild | 13 ++++++++-----
1 file changed, 8 insertions(+), 5 deletions(-)
diff --git a/dev-python/nose_fixes/nose_fixes-1.3.ebuild b/dev-python/nose_fixes/nose_fixes-1.3.ebuild
index 994702e..ae125dd 100644
--- a/dev-python/nose_fixes/nose_fixes-1.3.ebuild
+++ b/dev-python/nose_fixes/nose_fixes-1.3.ebuild
@@ -1,14 +1,15 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 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
-DESCRIPTION="Python package for providing Mozilla's CA Bundle"
-HOMEPAGE="http://packages.python.org/nose_fixes"
+DESCRIPTION="A plugin to make nose behave better"
+HOMEPAGE="https://pythonhosted.org/nose_fixes/ https://pypi.python.org/pypi/nose_fixes/"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
@@ -20,8 +21,10 @@ RDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
dev-python/nose[${PYTHON_USEDEP}]"
DEPEND="${RDEPEND}
- doc? ( dev-python/sphinx[${PYTHON_USEDEP}]
- $(python_gen_cond_dep 'dev-python/pkginfo[${PYTHON_USEDEP}]' python2_7) )"
+ doc? (
+ dev-python/sphinx[${PYTHON_USEDEP}]
+ $(python_gen_cond_dep 'dev-python/pkginfo[${PYTHON_USEDEP}]' python2_7)
+ )"
python_prepare_all() {
sed -e 's:../bin/sphinx-build:/usr/bin/sphinx-build:' -i docs/Makefile || die
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/nose_fixes/
@ 2016-02-24 9:23 Justin Lecher
0 siblings, 0 replies; 9+ messages in thread
From: Justin Lecher @ 2016-02-24 9:23 UTC (permalink / raw
To: gentoo-commits
commit: 75ace64094490c11f58869356a4afb1dc7a01c0d
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 24 09:09:05 2016 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Wed Feb 24 09:23:15 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75ace640
dev-python/nose_fixes: Add python3.5 support
Package-Manager: portage-2.2.27
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
dev-python/nose_fixes/nose_fixes-1.3.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-python/nose_fixes/nose_fixes-1.3.ebuild b/dev-python/nose_fixes/nose_fixes-1.3.ebuild
index ae125dd..a226fc5 100644
--- a/dev-python/nose_fixes/nose_fixes-1.3.ebuild
+++ b/dev-python/nose_fixes/nose_fixes-1.3.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2015 Gentoo Foundation
+# 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 )
+PYTHON_COMPAT=( python{2_7,3_{3,4,5}} pypy pypy3 )
inherit distutils-r1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/nose_fixes/
@ 2016-10-11 17:09 Patrice Clement
0 siblings, 0 replies; 9+ messages in thread
From: Patrice Clement @ 2016-10-11 17:09 UTC (permalink / raw
To: gentoo-commits
commit: 028d585090c68c2f36ed2e567a1aa0caf9ca5042
Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 11 17:04:06 2016 +0000
Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Tue Oct 11 17:09:05 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=028d5850
dev-python/nose_fixes: Stable for amd64+x86.
Package-Manager: portage-2.3.0
dev-python/nose_fixes/nose_fixes-1.3.ebuild | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/dev-python/nose_fixes/nose_fixes-1.3.ebuild b/dev-python/nose_fixes/nose_fixes-1.3.ebuild
index a226fc5..b5a5bc0 100644
--- a/dev-python/nose_fixes/nose_fixes-1.3.ebuild
+++ b/dev-python/nose_fixes/nose_fixes-1.3.ebuild
@@ -14,13 +14,14 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
IUSE="doc"
RDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
dev-python/nose[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
+DEPEND="
+ ${RDEPEND}
doc? (
dev-python/sphinx[${PYTHON_USEDEP}]
$(python_gen_cond_dep 'dev-python/pkginfo[${PYTHON_USEDEP}]' python2_7)
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/nose_fixes/
@ 2017-05-16 12:02 Manuel Rüger
0 siblings, 0 replies; 9+ messages in thread
From: Manuel Rüger @ 2017-05-16 12:02 UTC (permalink / raw
To: gentoo-commits
commit: 1f77b4d10c3ae1da34599764d9941b5be8b46b33
Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Tue May 16 12:02:35 2017 +0000
Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Tue May 16 12:02:35 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f77b4d1
dev-python/nose_fixes: Add python3_6
Package-Manager: Portage-2.3.5, Repoman-2.3.2
dev-python/nose_fixes/nose_fixes-1.3.ebuild | 12 ++++++++----
1 file changed, 8 insertions(+), 4 deletions(-)
diff --git a/dev-python/nose_fixes/nose_fixes-1.3.ebuild b/dev-python/nose_fixes/nose_fixes-1.3.ebuild
index b5bfaf3b4c0..b406653c87f 100644
--- a/dev-python/nose_fixes/nose_fixes-1.3.ebuild
+++ b/dev-python/nose_fixes/nose_fixes-1.3.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-EAPI=5
+EAPI=6
-PYTHON_COMPAT=( python{2_7,3_{4,5}} pypy pypy3 )
+PYTHON_COMPAT=( python{2_7,3_{4,5,6}} pypy pypy3 )
inherit distutils-r1
@@ -23,7 +23,7 @@ DEPEND="
${RDEPEND}
doc? (
dev-python/sphinx[${PYTHON_USEDEP}]
- $(python_gen_cond_dep 'dev-python/pkginfo[${PYTHON_USEDEP}]' python2_7)
+ dev-python/pkginfo[${PYTHON_USEDEP}]
)"
python_prepare_all() {
@@ -39,3 +39,7 @@ python_install_all() {
use doc && local HTML_DOCS=( docs/_build/html/. )
distutils-r1_python_install_all
}
+
+python_test() {
+ nosetests || die
+}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/nose_fixes/
@ 2020-02-05 16:53 Michał Górny
0 siblings, 0 replies; 9+ messages in thread
From: Michał Górny @ 2020-02-05 16:53 UTC (permalink / raw
To: gentoo-commits
commit: 7fe399ec33ec261d82e7a58a11a44a3faef63d93
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 5 16:43:16 2020 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Feb 5 16:53:02 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7fe399ec
dev-python/nose_fixes: Remove py2
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/nose_fixes/nose_fixes-1.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/nose_fixes/nose_fixes-1.3.ebuild b/dev-python/nose_fixes/nose_fixes-1.3.ebuild
index 5747c3ccb34..5abc2100e90 100644
--- a/dev-python/nose_fixes/nose_fixes-1.3.ebuild
+++ b/dev-python/nose_fixes/nose_fixes-1.3.ebuild
@@ -3,7 +3,7 @@
EAPI=6
-PYTHON_COMPAT=( python{2_7,3_6} pypy3 )
+PYTHON_COMPAT=( python3_6 pypy3 )
inherit distutils-r1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/nose_fixes/
@ 2020-04-24 20:13 Michał Górny
0 siblings, 0 replies; 9+ messages in thread
From: Michał Górny @ 2020-04-24 20:13 UTC (permalink / raw
To: gentoo-commits
commit: 7b51c2cafa9cb9688f3234d1851a2f1682b59c8a
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 24 19:36:20 2020 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Apr 24 20:12:54 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b51c2ca
dev-python/nose_fixes: Enable py3.{7,8}, modernize
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/nose_fixes/nose_fixes-1.3.ebuild | 27 ++++++---------------------
1 file changed, 6 insertions(+), 21 deletions(-)
diff --git a/dev-python/nose_fixes/nose_fixes-1.3.ebuild b/dev-python/nose_fixes/nose_fixes-1.3.ebuild
index 5abc2100e90..15b6fcc2314 100644
--- a/dev-python/nose_fixes/nose_fixes-1.3.ebuild
+++ b/dev-python/nose_fixes/nose_fixes-1.3.ebuild
@@ -1,9 +1,10 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=6
+EAPI=7
-PYTHON_COMPAT=( python3_6 pypy3 )
+DISTUTILS_USE_SETUPTOOLS=rdepend
+PYTHON_COMPAT=( python3_{6,7,8} pypy3 )
inherit distutils-r1
@@ -14,10 +15,8 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 x86"
-IUSE="doc"
RDEPEND="
- dev-python/setuptools[${PYTHON_USEDEP}]
dev-python/nose[${PYTHON_USEDEP}]"
DEPEND="
${RDEPEND}
@@ -26,20 +25,6 @@ DEPEND="
dev-python/pkginfo[${PYTHON_USEDEP}]
)"
-python_prepare_all() {
- sed -e 's:../bin/sphinx-build:/usr/bin/sphinx-build:' -i docs/Makefile || die
- distutils-r1_python_prepare_all
-}
-
-python_compile_all() {
- use doc && emake -C docs html
-}
-
-python_install_all() {
- use doc && local HTML_DOCS=( docs/_build/html/. )
- distutils-r1_python_install_all
-}
-
-python_test() {
- nosetests || die
-}
+distutils_enable_sphinx docs \
+ dev-python/pkginfo
+distutils_enable_tests nose
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/nose_fixes/
@ 2021-03-04 4:19 Sam James
0 siblings, 0 replies; 9+ messages in thread
From: Sam James @ 2021-03-04 4:19 UTC (permalink / raw
To: gentoo-commits
commit: e4fdcca7388354be4d2efd05948f8c238cb591d6
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 4 03:54:29 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Mar 4 03:54:29 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4fdcca7
dev-python/nose_fixes: mark ALLARCHES
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-python/nose_fixes/metadata.xml | 1 +
1 file changed, 1 insertion(+)
diff --git a/dev-python/nose_fixes/metadata.xml b/dev-python/nose_fixes/metadata.xml
index f1e5ee08afe..ebc9679e41d 100644
--- a/dev-python/nose_fixes/metadata.xml
+++ b/dev-python/nose_fixes/metadata.xml
@@ -5,6 +5,7 @@
<email>python@gentoo.org</email>
<name>Python</name>
</maintainer>
+ <stabilize-allarches/>
<upstream>
<remote-id type="pypi">nose_fixes</remote-id>
</upstream>
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/nose_fixes/
@ 2021-03-04 4:19 Sam James
0 siblings, 0 replies; 9+ messages in thread
From: Sam James @ 2021-03-04 4:19 UTC (permalink / raw
To: gentoo-commits
commit: 2e99c25c0fbdd9899a3e67aa73c0264da66ea56a
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 4 03:53:54 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Mar 4 03:53:54 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e99c25c
dev-python/nose_fixes: add Python 3.9, modernise
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-python/nose_fixes/nose_fixes-1.3.ebuild | 16 ++++------------
1 file changed, 4 insertions(+), 12 deletions(-)
diff --git a/dev-python/nose_fixes/nose_fixes-1.3.ebuild b/dev-python/nose_fixes/nose_fixes-1.3.ebuild
index 75ea4bb0fdb..599a6bd318a 100644
--- a/dev-python/nose_fixes/nose_fixes-1.3.ebuild
+++ b/dev-python/nose_fixes/nose_fixes-1.3.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,8,9} pypy3 )
inherit distutils-r1
@@ -16,15 +16,7 @@ LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 x86"
-RDEPEND="
- dev-python/nose[${PYTHON_USEDEP}]"
-DEPEND="
- ${RDEPEND}
- doc? (
- dev-python/sphinx[${PYTHON_USEDEP}]
- dev-python/pkginfo[${PYTHON_USEDEP}]
- )"
+RDEPEND="dev-python/nose[${PYTHON_USEDEP}]"
-distutils_enable_sphinx docs \
- dev-python/pkginfo
+distutils_enable_sphinx docs dev-python/pkginfo
distutils_enable_tests nose
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/nose_fixes/
@ 2022-05-19 18:09 Sam James
0 siblings, 0 replies; 9+ messages in thread
From: Sam James @ 2022-05-19 18:09 UTC (permalink / raw
To: gentoo-commits
commit: be7fb8a699a4ca462cbc821a9936c712e689ed4a
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu May 19 18:08:46 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu May 19 18:08:46 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be7fb8a6
dev-python/nose_fixes: enable py3.10 and disable py3.7
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-python/nose_fixes/nose_fixes-1.3.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-python/nose_fixes/nose_fixes-1.3.ebuild b/dev-python/nose_fixes/nose_fixes-1.3.ebuild
index 599a6bd318a3..1a8031fbcad6 100644
--- a/dev-python/nose_fixes/nose_fixes-1.3.ebuild
+++ b/dev-python/nose_fixes/nose_fixes-1.3.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DISTUTILS_USE_SETUPTOOLS=rdepend
-PYTHON_COMPAT=( python3_{7,8,9} pypy3 )
+PYTHON_COMPAT=( python3_{8..10} pypy3 )
inherit distutils-r1
^ permalink raw reply related [flat|nested] 9+ messages in thread
end of thread, other threads:[~2022-05-19 18:09 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-05-19 18:09 [gentoo-commits] repo/gentoo:master commit in: dev-python/nose_fixes/ Sam James
-- strict thread matches above, loose matches on Subject: below --
2021-03-04 4:19 Sam James
2021-03-04 4:19 Sam James
2020-04-24 20:13 Michał Górny
2020-02-05 16:53 Michał Górny
2017-05-16 12:02 Manuel Rüger
2016-10-11 17:09 Patrice Clement
2016-02-24 9:23 Justin Lecher
2015-09-21 9:55 Justin Lecher
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox