* [gentoo-commits] gentoo-x86 commit in dev-python/nose: nose-1.3.0.ebuild ChangeLog
@ 2013-04-16 8:37 Patrick Lauer (patrick)
0 siblings, 0 replies; 14+ messages in thread
From: Patrick Lauer (patrick) @ 2013-04-16 8:37 UTC (permalink / raw
To: gentoo-commits
patrick 13/04/16 08:37:44
Modified: ChangeLog
Added: nose-1.3.0.ebuild
Log:
Bump
(Portage version: 2.2.0_alpha173/cvs/Linux x86_64, unsigned Manifest commit)
Revision Changes Path
1.103 dev-python/nose/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?rev=1.103&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?rev=1.103&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?r1=1.102&r2=1.103
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v
retrieving revision 1.102
retrieving revision 1.103
diff -u -r1.102 -r1.103
--- ChangeLog 2 Mar 2013 12:40:32 -0000 1.102
+++ ChangeLog 16 Apr 2013 08:37:44 -0000 1.103
@@ -1,6 +1,11 @@
# ChangeLog for dev-python/nose
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v 1.102 2013/03/02 12:40:32 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v 1.103 2013/04/16 08:37:44 patrick Exp $
+
+*nose-1.3.0 (16 Apr 2013)
+
+ 16 Apr 2013; Patrick Lauer <patrick@gentoo.org> +nose-1.3.0.ebuild:
+ Bump
02 Mar 2013; Ian Delaney <idella4@gentoo.org>
+files/nose-1.2.1-skiptest.patch, nose-1.1.2-r1.ebuild, nose-1.2.1.ebuild,
1.1 dev-python/nose/nose-1.3.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild?rev=1.1&content-type=text/plain
Index: nose-1.3.0.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild,v 1.1 2013/04/16 08:37:44 patrick Exp $
EAPI=5
PYTHON_COMPAT=( python{2_5,2_6,2_7,3_1,3_2} pypy{1_8,1_9,2_0} )
inherit distutils-r1 eutils
DESCRIPTION="A unittest extension offering automatic test suite discovery and easy test authoring"
HOMEPAGE="http://pypi.python.org/pypi/nose http://readthedocs.org/docs/nose/ https://bitbucket.org/jpellerin/nose"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE="doc examples test"
RDEPEND="dev-python/coverage[${PYTHON_USEDEP}]
dev-python/setuptools[${PYTHON_USEDEP}]"
DEPEND="${RDEPEND}
doc? ( >=dev-python/sphinx-0.6 )
test? ( dev-python/twisted
dev-python/unittest2 )"
DOCS=( AUTHORS )
python_prepare_all() {
# Tests need to be converted, and they don't respect BUILD_DIR.
use test && DISTUTILS_IN_SOURCE_BUILD=1
# Disable sphinx.ext.intersphinx, requires network, rogue test
epatch "${FILESDIR}"/${PN}-1.2.1-skiptest.patch
# Disable tests requiring network connection.
sed \
-e "s/test_resolve/_&/g" \
-e "s/test_raises_bad_return/_&/g" \
-e "s/test_raises_twisted_error/_&/g" \
-i unit_tests/test_twisted.py || die "sed failed"
# Disable versioning of nosetests script to avoid collision with
# versioning performed by the eclass.
sed -e "/'nosetests%s = nose:run_exit' % py_vers_tag,/d" \
-i setup.py || die "sed2 failed"
distutils-r1_python_prepare_all
}
python_compile() {
local add_targets=()
if use test; then
add_targets+=( egg_info )
[[ ${EPYTHON} == python3* ]] && add_targets+=( build_tests )
fi
distutils-r1_python_compile ${add_targets[@]}
}
python_compile_all() {
use doc && emake -C doc html
}
src_test() {
# nosetests use heavy multiprocessing during the tests.
# this shall make them less likely to kill your system or timeout.
local DISTUTILS_NO_PARALLEL_BUILD=1
distutils-r1_src_test
}
python_test() {
"${PYTHON}" selftest.py || die "Tests fail with ${EPYTHON}"
}
python_install() {
distutils-r1_python_install --install-data "${EPREFIX}/usr/share"
}
python_install_all() {
if use doc; then
dohtml -r -A txt doc/.build/html/*
fi
if use examples; then
insinto /usr/share/doc/${PF}
doins -r examples
fi
}
^ permalink raw reply [flat|nested] 14+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/nose: nose-1.3.0.ebuild ChangeLog
@ 2013-04-24 19:04 Sebastien Fabbro (bicatali)
0 siblings, 0 replies; 14+ messages in thread
From: Sebastien Fabbro (bicatali) @ 2013-04-24 19:04 UTC (permalink / raw
To: gentoo-commits
bicatali 13/04/24 19:04:57
Modified: nose-1.3.0.ebuild ChangeLog
Log:
Added python-3.3 compat
(Portage version: 2.2.01.21890-prefix/cvs/Linux x86_64, signed Manifest commit with key 0x13CB1360)
Revision Changes Path
1.2 dev-python/nose/nose-1.3.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild?r1=1.1&r2=1.2
Index: nose-1.3.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- nose-1.3.0.ebuild 16 Apr 2013 08:37:44 -0000 1.1
+++ nose-1.3.0.ebuild 24 Apr 2013 19:04:57 -0000 1.2
@@ -1,10 +1,10 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild,v 1.1 2013/04/16 08:37:44 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild,v 1.2 2013/04/24 19:04:57 bicatali Exp $
EAPI=5
-PYTHON_COMPAT=( python{2_5,2_6,2_7,3_1,3_2} pypy{1_8,1_9,2_0} )
+PYTHON_COMPAT=( python{2_5,2_6,2_7,3_1,3_2,3_3} pypy{1_8,1_9,2_0} )
inherit distutils-r1 eutils
DESCRIPTION="A unittest extension offering automatic test suite discovery and easy test authoring"
1.104 dev-python/nose/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?rev=1.104&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?rev=1.104&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?r1=1.103&r2=1.104
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v
retrieving revision 1.103
retrieving revision 1.104
diff -u -r1.103 -r1.104
--- ChangeLog 16 Apr 2013 08:37:44 -0000 1.103
+++ ChangeLog 24 Apr 2013 19:04:57 -0000 1.104
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/nose
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v 1.103 2013/04/16 08:37:44 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v 1.104 2013/04/24 19:04:57 bicatali Exp $
+
+ 24 Apr 2013; Sébastien Fabbro <bicatali@gentoo.org> nose-1.3.0.ebuild:
+ Added python-3.3 compat
*nose-1.3.0 (16 Apr 2013)
^ permalink raw reply [flat|nested] 14+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/nose: nose-1.3.0.ebuild ChangeLog
@ 2013-06-18 9:10 Ian Delaney (idella4)
0 siblings, 0 replies; 14+ messages in thread
From: Ian Delaney (idella4) @ 2013-06-18 9:10 UTC (permalink / raw
To: gentoo-commits
idella4 13/06/18 09:10:10
Modified: nose-1.3.0.ebuild ChangeLog
Log:
drop pypy1_8
(Portage version: 2.1.11.63/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
Revision Changes Path
1.3 dev-python/nose/nose-1.3.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild?r1=1.2&r2=1.3
Index: nose-1.3.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- nose-1.3.0.ebuild 24 Apr 2013 19:04:57 -0000 1.2
+++ nose-1.3.0.ebuild 18 Jun 2013 09:10:09 -0000 1.3
@@ -1,10 +1,10 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild,v 1.2 2013/04/24 19:04:57 bicatali Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild,v 1.3 2013/06/18 09:10:09 idella4 Exp $
EAPI=5
-PYTHON_COMPAT=( python{2_5,2_6,2_7,3_1,3_2,3_3} pypy{1_8,1_9,2_0} )
+PYTHON_COMPAT=( python{2_5,2_6,2_7,3_1,3_2,3_3} pypy{1_9,2_0} )
inherit distutils-r1 eutils
DESCRIPTION="A unittest extension offering automatic test suite discovery and easy test authoring"
1.105 dev-python/nose/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?rev=1.105&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?rev=1.105&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?r1=1.104&r2=1.105
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v
retrieving revision 1.104
retrieving revision 1.105
diff -u -r1.104 -r1.105
--- ChangeLog 24 Apr 2013 19:04:57 -0000 1.104
+++ ChangeLog 18 Jun 2013 09:10:09 -0000 1.105
@@ -1,6 +1,10 @@
# ChangeLog for dev-python/nose
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v 1.104 2013/04/24 19:04:57 bicatali Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v 1.105 2013/06/18 09:10:09 idella4 Exp $
+
+ 18 Jun 2013; Ian Delaney <idella4@gentoo.org> nose-1.1.2-r1.ebuild,
+ nose-1.3.0.ebuild:
+ drop pypy1_8
24 Apr 2013; Sébastien Fabbro <bicatali@gentoo.org> nose-1.3.0.ebuild:
Added python-3.3 compat
^ permalink raw reply [flat|nested] 14+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/nose: nose-1.3.0.ebuild ChangeLog
@ 2013-06-18 13:15 Jeroen Roovers (jer)
0 siblings, 0 replies; 14+ messages in thread
From: Jeroen Roovers (jer) @ 2013-06-18 13:15 UTC (permalink / raw
To: gentoo-commits
jer 13/06/18 13:15:22
Modified: nose-1.3.0.ebuild ChangeLog
Log:
Stable for HPPA (bug #473672).
(Portage version: 2.2.0_alpha180/cvs/Linux x86_64, RepoMan options: --ignore-arches, signed Manifest commit with key A792A613)
Revision Changes Path
1.4 dev-python/nose/nose-1.3.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild?r1=1.3&r2=1.4
Index: nose-1.3.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- nose-1.3.0.ebuild 18 Jun 2013 09:10:09 -0000 1.3
+++ nose-1.3.0.ebuild 18 Jun 2013 13:15:22 -0000 1.4
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild,v 1.3 2013/06/18 09:10:09 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild,v 1.4 2013/06/18 13:15:22 jer Exp $
EAPI=5
@@ -13,7 +13,7 @@
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE="doc examples test"
RDEPEND="dev-python/coverage[${PYTHON_USEDEP}]
1.106 dev-python/nose/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?rev=1.106&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?rev=1.106&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?r1=1.105&r2=1.106
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v
retrieving revision 1.105
retrieving revision 1.106
diff -u -r1.105 -r1.106
--- ChangeLog 18 Jun 2013 09:10:09 -0000 1.105
+++ ChangeLog 18 Jun 2013 13:15:22 -0000 1.106
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/nose
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v 1.105 2013/06/18 09:10:09 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v 1.106 2013/06/18 13:15:22 jer Exp $
+
+ 18 Jun 2013; Jeroen Roovers <jer@gentoo.org> nose-1.3.0.ebuild:
+ Stable for HPPA (bug #473672).
18 Jun 2013; Ian Delaney <idella4@gentoo.org> nose-1.1.2-r1.ebuild,
nose-1.3.0.ebuild:
^ permalink raw reply [flat|nested] 14+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/nose: nose-1.3.0.ebuild ChangeLog
@ 2013-06-24 5:13 Agostino Sarubbo (ago)
0 siblings, 0 replies; 14+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-06-24 5:13 UTC (permalink / raw
To: gentoo-commits
ago 13/06/24 05:13:55
Modified: nose-1.3.0.ebuild ChangeLog
Log:
Stable for ppc, wrt bug #473672
(Portage version: 2.1.12.2/cvs/Linux ppc64, RepoMan options: --include-arches="ppc", signed Manifest commit with key 7194459F)
Revision Changes Path
1.5 dev-python/nose/nose-1.3.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild?r1=1.4&r2=1.5
Index: nose-1.3.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- nose-1.3.0.ebuild 18 Jun 2013 13:15:22 -0000 1.4
+++ nose-1.3.0.ebuild 24 Jun 2013 05:13:55 -0000 1.5
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild,v 1.4 2013/06/18 13:15:22 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild,v 1.5 2013/06/24 05:13:55 ago Exp $
EAPI=5
@@ -13,7 +13,7 @@
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE="doc examples test"
RDEPEND="dev-python/coverage[${PYTHON_USEDEP}]
1.107 dev-python/nose/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?rev=1.107&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?rev=1.107&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?r1=1.106&r2=1.107
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v
retrieving revision 1.106
retrieving revision 1.107
diff -u -r1.106 -r1.107
--- ChangeLog 18 Jun 2013 13:15:22 -0000 1.106
+++ ChangeLog 24 Jun 2013 05:13:55 -0000 1.107
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/nose
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v 1.106 2013/06/18 13:15:22 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v 1.107 2013/06/24 05:13:55 ago Exp $
+
+ 24 Jun 2013; Agostino Sarubbo <ago@gentoo.org> nose-1.3.0.ebuild:
+ Stable for ppc, wrt bug #473672
18 Jun 2013; Jeroen Roovers <jer@gentoo.org> nose-1.3.0.ebuild:
Stable for HPPA (bug #473672).
^ permalink raw reply [flat|nested] 14+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/nose: nose-1.3.0.ebuild ChangeLog
@ 2013-06-25 10:22 Agostino Sarubbo (ago)
0 siblings, 0 replies; 14+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-06-25 10:22 UTC (permalink / raw
To: gentoo-commits
ago 13/06/25 10:22:24
Modified: nose-1.3.0.ebuild ChangeLog
Log:
Stable for ppc64, wrt bug #473672
(Portage version: 2.1.12.2/cvs/Linux ppc64, RepoMan options: --include-arches="ppc64", signed Manifest commit with key 7194459F)
Revision Changes Path
1.6 dev-python/nose/nose-1.3.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild?r1=1.5&r2=1.6
Index: nose-1.3.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- nose-1.3.0.ebuild 24 Jun 2013 05:13:55 -0000 1.5
+++ nose-1.3.0.ebuild 25 Jun 2013 10:22:24 -0000 1.6
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild,v 1.5 2013/06/24 05:13:55 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild,v 1.6 2013/06/25 10:22:24 ago Exp $
EAPI=5
@@ -13,7 +13,7 @@
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE="doc examples test"
RDEPEND="dev-python/coverage[${PYTHON_USEDEP}]
1.108 dev-python/nose/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?rev=1.108&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?rev=1.108&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?r1=1.107&r2=1.108
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v
retrieving revision 1.107
retrieving revision 1.108
diff -u -r1.107 -r1.108
--- ChangeLog 24 Jun 2013 05:13:55 -0000 1.107
+++ ChangeLog 25 Jun 2013 10:22:24 -0000 1.108
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/nose
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v 1.107 2013/06/24 05:13:55 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v 1.108 2013/06/25 10:22:24 ago Exp $
+
+ 25 Jun 2013; Agostino Sarubbo <ago@gentoo.org> nose-1.3.0.ebuild:
+ Stable for ppc64, wrt bug #473672
24 Jun 2013; Agostino Sarubbo <ago@gentoo.org> nose-1.3.0.ebuild:
Stable for ppc, wrt bug #473672
^ permalink raw reply [flat|nested] 14+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/nose: nose-1.3.0.ebuild ChangeLog
@ 2013-06-25 11:38 Agostino Sarubbo (ago)
0 siblings, 0 replies; 14+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-06-25 11:38 UTC (permalink / raw
To: gentoo-commits
ago 13/06/25 11:38:50
Modified: nose-1.3.0.ebuild ChangeLog
Log:
Stable for x86, wrt bug #473672
(Portage version: 2.1.12.9/cvs/Linux x86_64, RepoMan options: --include-arches="x86", signed Manifest commit with key 7194459F)
Revision Changes Path
1.7 dev-python/nose/nose-1.3.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild?r1=1.6&r2=1.7
Index: nose-1.3.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- nose-1.3.0.ebuild 25 Jun 2013 10:22:24 -0000 1.6
+++ nose-1.3.0.ebuild 25 Jun 2013 11:38:50 -0000 1.7
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild,v 1.6 2013/06/25 10:22:24 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild,v 1.7 2013/06/25 11:38:50 ago Exp $
EAPI=5
@@ -13,7 +13,7 @@
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE="doc examples test"
RDEPEND="dev-python/coverage[${PYTHON_USEDEP}]
1.109 dev-python/nose/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?rev=1.109&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?rev=1.109&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?r1=1.108&r2=1.109
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v
retrieving revision 1.108
retrieving revision 1.109
diff -u -r1.108 -r1.109
--- ChangeLog 25 Jun 2013 10:22:24 -0000 1.108
+++ ChangeLog 25 Jun 2013 11:38:50 -0000 1.109
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/nose
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v 1.108 2013/06/25 10:22:24 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v 1.109 2013/06/25 11:38:50 ago Exp $
+
+ 25 Jun 2013; Agostino Sarubbo <ago@gentoo.org> nose-1.3.0.ebuild:
+ Stable for x86, wrt bug #473672
25 Jun 2013; Agostino Sarubbo <ago@gentoo.org> nose-1.3.0.ebuild:
Stable for ppc64, wrt bug #473672
^ permalink raw reply [flat|nested] 14+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/nose: nose-1.3.0.ebuild ChangeLog
@ 2013-06-25 12:50 Agostino Sarubbo (ago)
0 siblings, 0 replies; 14+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-06-25 12:50 UTC (permalink / raw
To: gentoo-commits
ago 13/06/25 12:50:24
Modified: nose-1.3.0.ebuild ChangeLog
Log:
Stable for amd64, wrt bug #473672
(Portage version: 2.1.12.9/cvs/Linux x86_64, RepoMan options: --include-arches="amd64", signed Manifest commit with key 7194459F)
Revision Changes Path
1.8 dev-python/nose/nose-1.3.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild?r1=1.7&r2=1.8
Index: nose-1.3.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- nose-1.3.0.ebuild 25 Jun 2013 11:38:50 -0000 1.7
+++ nose-1.3.0.ebuild 25 Jun 2013 12:50:24 -0000 1.8
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild,v 1.7 2013/06/25 11:38:50 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild,v 1.8 2013/06/25 12:50:24 ago Exp $
EAPI=5
@@ -13,7 +13,7 @@
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE="doc examples test"
RDEPEND="dev-python/coverage[${PYTHON_USEDEP}]
1.110 dev-python/nose/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?rev=1.110&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?rev=1.110&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?r1=1.109&r2=1.110
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v
retrieving revision 1.109
retrieving revision 1.110
diff -u -r1.109 -r1.110
--- ChangeLog 25 Jun 2013 11:38:50 -0000 1.109
+++ ChangeLog 25 Jun 2013 12:50:24 -0000 1.110
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/nose
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v 1.109 2013/06/25 11:38:50 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v 1.110 2013/06/25 12:50:24 ago Exp $
+
+ 25 Jun 2013; Agostino Sarubbo <ago@gentoo.org> nose-1.3.0.ebuild:
+ Stable for amd64, wrt bug #473672
25 Jun 2013; Agostino Sarubbo <ago@gentoo.org> nose-1.3.0.ebuild:
Stable for x86, wrt bug #473672
^ permalink raw reply [flat|nested] 14+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/nose: nose-1.3.0.ebuild ChangeLog
@ 2013-06-26 2:59 Agostino Sarubbo (ago)
0 siblings, 0 replies; 14+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-06-26 2:59 UTC (permalink / raw
To: gentoo-commits
ago 13/06/26 02:59:39
Modified: nose-1.3.0.ebuild ChangeLog
Log:
Stable for alpha, wrt bug #473672
(Portage version: 2.1.12.2/cvs/Linux ppc64, RepoMan options: --include-arches="alpha", signed Manifest commit with key 7194459F)
Revision Changes Path
1.9 dev-python/nose/nose-1.3.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild?r1=1.8&r2=1.9
Index: nose-1.3.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- nose-1.3.0.ebuild 25 Jun 2013 12:50:24 -0000 1.8
+++ nose-1.3.0.ebuild 26 Jun 2013 02:59:39 -0000 1.9
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild,v 1.8 2013/06/25 12:50:24 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild,v 1.9 2013/06/26 02:59:39 ago Exp $
EAPI=5
@@ -13,7 +13,7 @@
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE="doc examples test"
RDEPEND="dev-python/coverage[${PYTHON_USEDEP}]
1.111 dev-python/nose/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?rev=1.111&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?rev=1.111&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?r1=1.110&r2=1.111
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v
retrieving revision 1.110
retrieving revision 1.111
diff -u -r1.110 -r1.111
--- ChangeLog 25 Jun 2013 12:50:24 -0000 1.110
+++ ChangeLog 26 Jun 2013 02:59:39 -0000 1.111
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/nose
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v 1.110 2013/06/25 12:50:24 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v 1.111 2013/06/26 02:59:39 ago Exp $
+
+ 26 Jun 2013; Agostino Sarubbo <ago@gentoo.org> nose-1.3.0.ebuild:
+ Stable for alpha, wrt bug #473672
25 Jun 2013; Agostino Sarubbo <ago@gentoo.org> nose-1.3.0.ebuild:
Stable for amd64, wrt bug #473672
^ permalink raw reply [flat|nested] 14+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/nose: nose-1.3.0.ebuild ChangeLog
@ 2013-06-26 8:53 Agostino Sarubbo (ago)
0 siblings, 0 replies; 14+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-06-26 8:53 UTC (permalink / raw
To: gentoo-commits
ago 13/06/26 08:53:29
Modified: nose-1.3.0.ebuild ChangeLog
Log:
Stable for ia64, wrt bug #473672
(Portage version: 2.1.12.2/cvs/Linux ppc64, RepoMan options: --include-arches="ia64", signed Manifest commit with key 7194459F)
Revision Changes Path
1.10 dev-python/nose/nose-1.3.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild?r1=1.9&r2=1.10
Index: nose-1.3.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- nose-1.3.0.ebuild 26 Jun 2013 02:59:39 -0000 1.9
+++ nose-1.3.0.ebuild 26 Jun 2013 08:53:29 -0000 1.10
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild,v 1.9 2013/06/26 02:59:39 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild,v 1.10 2013/06/26 08:53:29 ago Exp $
EAPI=5
@@ -13,7 +13,7 @@
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE="doc examples test"
RDEPEND="dev-python/coverage[${PYTHON_USEDEP}]
1.112 dev-python/nose/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?rev=1.112&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?rev=1.112&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?r1=1.111&r2=1.112
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v
retrieving revision 1.111
retrieving revision 1.112
diff -u -r1.111 -r1.112
--- ChangeLog 26 Jun 2013 02:59:39 -0000 1.111
+++ ChangeLog 26 Jun 2013 08:53:29 -0000 1.112
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/nose
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v 1.111 2013/06/26 02:59:39 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v 1.112 2013/06/26 08:53:29 ago Exp $
+
+ 26 Jun 2013; Agostino Sarubbo <ago@gentoo.org> nose-1.3.0.ebuild:
+ Stable for ia64, wrt bug #473672
26 Jun 2013; Agostino Sarubbo <ago@gentoo.org> nose-1.3.0.ebuild:
Stable for alpha, wrt bug #473672
^ permalink raw reply [flat|nested] 14+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/nose: nose-1.3.0.ebuild ChangeLog
@ 2013-06-26 11:57 Agostino Sarubbo (ago)
0 siblings, 0 replies; 14+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-06-26 11:57 UTC (permalink / raw
To: gentoo-commits
ago 13/06/26 11:57:16
Modified: nose-1.3.0.ebuild ChangeLog
Log:
Stable for arm, wrt bug #473672
(Portage version: 2.1.12.2/cvs/Linux ppc64, RepoMan options: --include-arches="arm", signed Manifest commit with key 7194459F)
Revision Changes Path
1.11 dev-python/nose/nose-1.3.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild?r1=1.10&r2=1.11
Index: nose-1.3.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- nose-1.3.0.ebuild 26 Jun 2013 08:53:29 -0000 1.10
+++ nose-1.3.0.ebuild 26 Jun 2013 11:57:16 -0000 1.11
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild,v 1.10 2013/06/26 08:53:29 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild,v 1.11 2013/06/26 11:57:16 ago Exp $
EAPI=5
@@ -13,7 +13,7 @@
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE="doc examples test"
RDEPEND="dev-python/coverage[${PYTHON_USEDEP}]
1.113 dev-python/nose/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?rev=1.113&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?rev=1.113&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?r1=1.112&r2=1.113
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v
retrieving revision 1.112
retrieving revision 1.113
diff -u -r1.112 -r1.113
--- ChangeLog 26 Jun 2013 08:53:29 -0000 1.112
+++ ChangeLog 26 Jun 2013 11:57:16 -0000 1.113
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/nose
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v 1.112 2013/06/26 08:53:29 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v 1.113 2013/06/26 11:57:16 ago Exp $
+
+ 26 Jun 2013; Agostino Sarubbo <ago@gentoo.org> nose-1.3.0.ebuild:
+ Stable for arm, wrt bug #473672
26 Jun 2013; Agostino Sarubbo <ago@gentoo.org> nose-1.3.0.ebuild:
Stable for ia64, wrt bug #473672
^ permalink raw reply [flat|nested] 14+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/nose: nose-1.3.0.ebuild ChangeLog
@ 2013-06-29 16:25 Agostino Sarubbo (ago)
0 siblings, 0 replies; 14+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-06-29 16:25 UTC (permalink / raw
To: gentoo-commits
ago 13/06/29 16:25:34
Modified: nose-1.3.0.ebuild ChangeLog
Log:
Stable for sparc, wrt bug #473672
(Portage version: 2.1.12.2/cvs/Linux ppc64, RepoMan options: --include-arches="sparc", signed Manifest commit with key 7194459F)
Revision Changes Path
1.12 dev-python/nose/nose-1.3.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild?r1=1.11&r2=1.12
Index: nose-1.3.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- nose-1.3.0.ebuild 26 Jun 2013 11:57:16 -0000 1.11
+++ nose-1.3.0.ebuild 29 Jun 2013 16:25:34 -0000 1.12
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild,v 1.11 2013/06/26 11:57:16 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild,v 1.12 2013/06/29 16:25:34 ago Exp $
EAPI=5
@@ -13,7 +13,7 @@
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE="doc examples test"
RDEPEND="dev-python/coverage[${PYTHON_USEDEP}]
1.114 dev-python/nose/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?rev=1.114&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?rev=1.114&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?r1=1.113&r2=1.114
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v
retrieving revision 1.113
retrieving revision 1.114
diff -u -r1.113 -r1.114
--- ChangeLog 26 Jun 2013 11:57:16 -0000 1.113
+++ ChangeLog 29 Jun 2013 16:25:34 -0000 1.114
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/nose
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v 1.113 2013/06/26 11:57:16 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v 1.114 2013/06/29 16:25:34 ago Exp $
+
+ 29 Jun 2013; Agostino Sarubbo <ago@gentoo.org> nose-1.3.0.ebuild:
+ Stable for sparc, wrt bug #473672
26 Jun 2013; Agostino Sarubbo <ago@gentoo.org> nose-1.3.0.ebuild:
Stable for arm, wrt bug #473672
^ permalink raw reply [flat|nested] 14+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/nose: nose-1.3.0.ebuild ChangeLog
@ 2013-06-30 18:05 Agostino Sarubbo (ago)
0 siblings, 0 replies; 14+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-06-30 18:05 UTC (permalink / raw
To: gentoo-commits
ago 13/06/30 18:05:27
Modified: nose-1.3.0.ebuild ChangeLog
Log:
Stable for s390, wrt bug #473672
(Portage version: 2.1.12.2/cvs/Linux ppc64, RepoMan options: --include-arches="s390", signed Manifest commit with key 7194459F)
Revision Changes Path
1.13 dev-python/nose/nose-1.3.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild?r1=1.12&r2=1.13
Index: nose-1.3.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- nose-1.3.0.ebuild 29 Jun 2013 16:25:34 -0000 1.12
+++ nose-1.3.0.ebuild 30 Jun 2013 18:05:27 -0000 1.13
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild,v 1.12 2013/06/29 16:25:34 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild,v 1.13 2013/06/30 18:05:27 ago Exp $
EAPI=5
@@ -13,7 +13,7 @@
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE="doc examples test"
RDEPEND="dev-python/coverage[${PYTHON_USEDEP}]
1.115 dev-python/nose/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?rev=1.115&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?rev=1.115&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?r1=1.114&r2=1.115
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v
retrieving revision 1.114
retrieving revision 1.115
diff -u -r1.114 -r1.115
--- ChangeLog 29 Jun 2013 16:25:34 -0000 1.114
+++ ChangeLog 30 Jun 2013 18:05:27 -0000 1.115
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/nose
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v 1.114 2013/06/29 16:25:34 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v 1.115 2013/06/30 18:05:27 ago Exp $
+
+ 30 Jun 2013; Agostino Sarubbo <ago@gentoo.org> nose-1.3.0.ebuild:
+ Stable for s390, wrt bug #473672
29 Jun 2013; Agostino Sarubbo <ago@gentoo.org> nose-1.3.0.ebuild:
Stable for sparc, wrt bug #473672
^ permalink raw reply [flat|nested] 14+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/nose: nose-1.3.0.ebuild ChangeLog
@ 2013-07-02 7:43 Agostino Sarubbo (ago)
0 siblings, 0 replies; 14+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-07-02 7:43 UTC (permalink / raw
To: gentoo-commits
ago 13/07/02 07:43:54
Modified: nose-1.3.0.ebuild ChangeLog
Log:
Stable for sh, wrt bug #473672
(Portage version: 2.1.12.2/cvs/Linux ppc64, RepoMan options: --include-arches="sh", signed Manifest commit with key 7194459F)
Revision Changes Path
1.14 dev-python/nose/nose-1.3.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild?rev=1.14&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild?rev=1.14&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild?r1=1.13&r2=1.14
Index: nose-1.3.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- nose-1.3.0.ebuild 30 Jun 2013 18:05:27 -0000 1.13
+++ nose-1.3.0.ebuild 2 Jul 2013 07:43:54 -0000 1.14
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild,v 1.13 2013/06/30 18:05:27 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.3.0.ebuild,v 1.14 2013/07/02 07:43:54 ago Exp $
EAPI=5
@@ -13,7 +13,7 @@
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE="doc examples test"
RDEPEND="dev-python/coverage[${PYTHON_USEDEP}]
1.116 dev-python/nose/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?rev=1.116&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?rev=1.116&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?r1=1.115&r2=1.116
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v
retrieving revision 1.115
retrieving revision 1.116
diff -u -r1.115 -r1.116
--- ChangeLog 30 Jun 2013 18:05:27 -0000 1.115
+++ ChangeLog 2 Jul 2013 07:43:54 -0000 1.116
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/nose
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v 1.115 2013/06/30 18:05:27 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v 1.116 2013/07/02 07:43:54 ago Exp $
+
+ 02 Jul 2013; Agostino Sarubbo <ago@gentoo.org> nose-1.3.0.ebuild:
+ Stable for sh, wrt bug #473672
30 Jun 2013; Agostino Sarubbo <ago@gentoo.org> nose-1.3.0.ebuild:
Stable for s390, wrt bug #473672
^ permalink raw reply [flat|nested] 14+ messages in thread
end of thread, other threads:[~2013-07-02 7:43 UTC | newest]
Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-29 16:25 [gentoo-commits] gentoo-x86 commit in dev-python/nose: nose-1.3.0.ebuild ChangeLog Agostino Sarubbo (ago)
-- strict thread matches above, loose matches on Subject: below --
2013-07-02 7:43 Agostino Sarubbo (ago)
2013-06-30 18:05 Agostino Sarubbo (ago)
2013-06-26 11:57 Agostino Sarubbo (ago)
2013-06-26 8:53 Agostino Sarubbo (ago)
2013-06-26 2:59 Agostino Sarubbo (ago)
2013-06-25 12:50 Agostino Sarubbo (ago)
2013-06-25 11:38 Agostino Sarubbo (ago)
2013-06-25 10:22 Agostino Sarubbo (ago)
2013-06-24 5:13 Agostino Sarubbo (ago)
2013-06-18 13:15 Jeroen Roovers (jer)
2013-06-18 9:10 Ian Delaney (idella4)
2013-04-24 19:04 Sebastien Fabbro (bicatali)
2013-04-16 8:37 Patrick Lauer (patrick)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox