public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-python/nose: nose-1.0.0.ebuild ChangeLog
@ 2010-12-18 17:49 Arfrever Frehtes Taifersar Arahesis (arfrever)
  0 siblings, 0 replies; 9+ messages in thread
From: Arfrever Frehtes Taifersar Arahesis (arfrever) @ 2010-12-18 17:49 UTC (permalink / raw
  To: gentoo-commits

arfrever    10/12/18 17:49:03

  Modified:             ChangeLog
  Added:                nose-1.0.0.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.0_alpha9_p3/cvs/Linux x86_64)

Revision  Changes    Path
1.63                 dev-python/nose/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?rev=1.63&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?rev=1.63&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?r1=1.62&r2=1.63

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v
retrieving revision 1.62
retrieving revision 1.63
diff -u -r1.62 -r1.63
--- ChangeLog	14 Dec 2010 19:53:15 -0000	1.62
+++ ChangeLog	18 Dec 2010 17:49:03 -0000	1.63
@@ -1,6 +1,12 @@
 # ChangeLog for dev-python/nose
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v 1.62 2010/12/14 19:53:15 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v 1.63 2010/12/18 17:49:03 arfrever Exp $
+
+*nose-1.0.0 (18 Dec 2010)
+
+  18 Dec 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+  +nose-1.0.0.ebuild:
+  Version bump.
 
   14 Dec 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
   nose-0.11.3.ebuild, nose-0.11.4.ebuild:



1.1                  dev-python/nose/nose-1.0.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.0.0.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.0.0.ebuild?rev=1.1&content-type=text/plain

Index: nose-1.0.0.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.0.0.ebuild,v 1.1 2010/12/18 17:49:03 arfrever Exp $

EAPI="3"
SUPPORT_PYTHON_ABIS="1"
# DISTUTILS_SRC_TEST="setup.py"

inherit distutils eutils

DESCRIPTION="A unittest extension offering automatic test suite discovery and easy test authoring"
HOMEPAGE="http://somethingaboutorange.com/mrl/projects/nose/ http://code.google.com/p/python-nose/ http://pypi.python.org/pypi/nose https://bitbucket.org/jpellerin/nose/"
SRC_URI="http://somethingaboutorange.com/mrl/projects/nose/${P}.tar.gz"

LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE="doc examples test"

RDEPEND="dev-python/setuptools"
DEPEND="${RDEPEND}
	doc? ( >=dev-python/sphinx-0.6 )
	test? ( dev-python/twisted )"

DOCS="AUTHORS"

src_prepare() {
	distutils_src_prepare

	# Disable tests and doc features that access the network
	epatch "${FILESDIR}/${PN}-0.10.0-tests-nonetwork.patch"
	epatch "${FILESDIR}/${PN}-0.11.0-disable_intersphinx.patch"

	# Disable versioning of nosetests script to avoid collision with versioning performed by distutils_src_install().
	sed -e "/'nosetests%s = nose:run_exit' % py_vers_tag,/d" -i setup.py || die "sed failed"
}

src_compile() {
	distutils_src_compile

	if use doc; then
		einfo "Generation of documentation"
		cd doc
		mkdir -p .build/html .build/doctrees
		sphinx-build . html || die "Generation of documentation failed"
	fi
}

src_test() {
	testing() {
		# Tests fail with Python 3.
		# http://code.google.com/p/python-nose/issues/detail?id=387
		[[ "${PYTHON_ABI}" == 3.* ]] && return

		PYTHONPATH="build-${PYTHON_ABI}/lib" "$(PYTHON)" setup.py build -b build-${PYTHON_ABI} test
	}
	python_execute_function testing
}

src_install() {
	distutils_src_install --install-data "${EPREFIX}/usr/share"

	python_generate_wrapper_scripts -E -f -q "${ED}usr/bin/nosetests"

	if use doc; then
		dohtml -r -A txt doc/html/* || die "Installation of documentation failed"
	fi

	if use examples; then
		insinto /usr/share/doc/${PF}
		doins -r examples || die "Installation of examples failed"
	fi
}






^ permalink raw reply	[flat|nested] 9+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-python/nose: nose-1.0.0.ebuild ChangeLog
@ 2011-01-12 21:15 Brent Baude (ranger)
  0 siblings, 0 replies; 9+ messages in thread
From: Brent Baude (ranger) @ 2011-01-12 21:15 UTC (permalink / raw
  To: gentoo-commits

ranger      11/01/12 21:15:01

  Modified:             nose-1.0.0.ebuild ChangeLog
  Log:
  Marking nose-1.0.0 ppc for bug 351484
  
  (Portage version: 2.1.9.25/cvs/Linux ppc64)

Revision  Changes    Path
1.2                  dev-python/nose/nose-1.0.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.0.0.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.0.0.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.0.0.ebuild?r1=1.1&r2=1.2

Index: nose-1.0.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.0.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- nose-1.0.0.ebuild	18 Dec 2010 17:49:03 -0000	1.1
+++ nose-1.0.0.ebuild	12 Jan 2011 21:15:01 -0000	1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.0.0.ebuild,v 1.1 2010/12/18 17:49:03 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.0.0.ebuild,v 1.2 2011/01/12 21:15:01 ranger Exp $
 
 EAPI="3"
 SUPPORT_PYTHON_ABIS="1"
@@ -14,7 +14,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~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 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 IUSE="doc examples test"
 
 RDEPEND="dev-python/setuptools"



1.65                 dev-python/nose/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?rev=1.65&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?rev=1.65&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?r1=1.64&r2=1.65

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v
retrieving revision 1.64
retrieving revision 1.65
diff -u -r1.64 -r1.65
--- ChangeLog	27 Dec 2010 21:07:24 -0000	1.64
+++ ChangeLog	12 Jan 2011 21:15:01 -0000	1.65
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/nose
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v 1.64 2010/12/27 21:07:24 ranger Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v 1.65 2011/01/12 21:15:01 ranger Exp $
+
+  12 Jan 2011; Brent Baude <ranger@gentoo.org> nose-1.0.0.ebuild:
+  Marking nose-1.0.0 ppc for bug 351484
 
   27 Dec 2010; Brent Baude <ranger@gentoo.org> nose-0.11.4.ebuild:
   Marking nose-0.11.4 ppc64 for bug 333187






^ permalink raw reply	[flat|nested] 9+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-python/nose: nose-1.0.0.ebuild ChangeLog
@ 2011-01-13 13:16 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 9+ messages in thread
From: Markos Chandras (hwoarang) @ 2011-01-13 13:16 UTC (permalink / raw
  To: gentoo-commits

hwoarang    11/01/13 13:16:15

  Modified:             nose-1.0.0.ebuild ChangeLog
  Log:
  Stable on amd64 wrt bug #351484
  
  (Portage version: 2.1.9.30/cvs/Linux x86_64)

Revision  Changes    Path
1.3                  dev-python/nose/nose-1.0.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.0.0.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.0.0.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.0.0.ebuild?r1=1.2&r2=1.3

Index: nose-1.0.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.0.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- nose-1.0.0.ebuild	12 Jan 2011 21:15:01 -0000	1.2
+++ nose-1.0.0.ebuild	13 Jan 2011 13:16:15 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.0.0.ebuild,v 1.2 2011/01/12 21:15:01 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.0.0.ebuild,v 1.3 2011/01/13 13:16:15 hwoarang Exp $
 
 EAPI="3"
 SUPPORT_PYTHON_ABIS="1"
@@ -14,7 +14,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~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 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 IUSE="doc examples test"
 
 RDEPEND="dev-python/setuptools"



1.66                 dev-python/nose/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?rev=1.66&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?rev=1.66&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?r1=1.65&r2=1.66

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v
retrieving revision 1.65
retrieving revision 1.66
diff -u -r1.65 -r1.66
--- ChangeLog	12 Jan 2011 21:15:01 -0000	1.65
+++ ChangeLog	13 Jan 2011 13:16:15 -0000	1.66
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/nose
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v 1.65 2011/01/12 21:15:01 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v 1.66 2011/01/13 13:16:15 hwoarang Exp $
+
+  13 Jan 2011; Markos Chandras <hwoarang@gentoo.org> nose-1.0.0.ebuild:
+  Stable on amd64 wrt bug #351484
 
   12 Jan 2011; Brent Baude <ranger@gentoo.org> nose-1.0.0.ebuild:
   Marking nose-1.0.0 ppc for bug 351484






^ permalink raw reply	[flat|nested] 9+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-python/nose: nose-1.0.0.ebuild ChangeLog
@ 2011-01-14 16:51 Kacper Kowalik (xarthisius)
  0 siblings, 0 replies; 9+ messages in thread
From: Kacper Kowalik (xarthisius) @ 2011-01-14 16:51 UTC (permalink / raw
  To: gentoo-commits

xarthisius    11/01/14 16:51:41

  Modified:             nose-1.0.0.ebuild ChangeLog
  Log:
  ppc64 stable wrt #351484
  
  (Portage version: 2.1.9.25/cvs/Linux ppc64)

Revision  Changes    Path
1.4                  dev-python/nose/nose-1.0.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.0.0.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.0.0.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.0.0.ebuild?r1=1.3&r2=1.4

Index: nose-1.0.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.0.0.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- nose-1.0.0.ebuild	13 Jan 2011 13:16:15 -0000	1.3
+++ nose-1.0.0.ebuild	14 Jan 2011 16:51:41 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.0.0.ebuild,v 1.3 2011/01/13 13:16:15 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.0.0.ebuild,v 1.4 2011/01/14 16:51:41 xarthisius Exp $
 
 EAPI="3"
 SUPPORT_PYTHON_ABIS="1"
@@ -14,7 +14,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~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 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 IUSE="doc examples test"
 
 RDEPEND="dev-python/setuptools"



1.67                 dev-python/nose/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?rev=1.67&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?rev=1.67&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?r1=1.66&r2=1.67

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v
retrieving revision 1.66
retrieving revision 1.67
diff -u -r1.66 -r1.67
--- ChangeLog	13 Jan 2011 13:16:15 -0000	1.66
+++ ChangeLog	14 Jan 2011 16:51:41 -0000	1.67
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/nose
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v 1.66 2011/01/13 13:16:15 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v 1.67 2011/01/14 16:51:41 xarthisius Exp $
+
+  14 Jan 2011; Kacper Kowalik <xarthisius@gentoo.org> nose-1.0.0.ebuild:
+  ppc64 stable wrt #351484
 
   13 Jan 2011; Markos Chandras <hwoarang@gentoo.org> nose-1.0.0.ebuild:
   Stable on amd64 wrt bug #351484






^ permalink raw reply	[flat|nested] 9+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-python/nose: nose-1.0.0.ebuild ChangeLog
@ 2011-01-15 14:58 Markus Meier (maekke)
  0 siblings, 0 replies; 9+ messages in thread
From: Markus Meier (maekke) @ 2011-01-15 14:58 UTC (permalink / raw
  To: gentoo-commits

maekke      11/01/15 14:58:16

  Modified:             nose-1.0.0.ebuild ChangeLog
  Log:
  arm/x86 stable, bug #351484
  
  (Portage version: 2.1.9.31/cvs/Linux x86_64)

Revision  Changes    Path
1.5                  dev-python/nose/nose-1.0.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.0.0.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.0.0.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.0.0.ebuild?r1=1.4&r2=1.5

Index: nose-1.0.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.0.0.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- nose-1.0.0.ebuild	14 Jan 2011 16:51:41 -0000	1.4
+++ nose-1.0.0.ebuild	15 Jan 2011 14:58:16 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.0.0.ebuild,v 1.4 2011/01/14 16:51:41 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.0.0.ebuild,v 1.5 2011/01/15 14:58:16 maekke Exp $
 
 EAPI="3"
 SUPPORT_PYTHON_ABIS="1"
@@ -14,7 +14,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~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 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 IUSE="doc examples test"
 
 RDEPEND="dev-python/setuptools"



1.68                 dev-python/nose/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?rev=1.68&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?rev=1.68&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?r1=1.67&r2=1.68

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v
retrieving revision 1.67
retrieving revision 1.68
diff -u -r1.67 -r1.68
--- ChangeLog	14 Jan 2011 16:51:41 -0000	1.67
+++ ChangeLog	15 Jan 2011 14:58:16 -0000	1.68
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/nose
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v 1.67 2011/01/14 16:51:41 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v 1.68 2011/01/15 14:58:16 maekke Exp $
+
+  15 Jan 2011; Markus Meier <maekke@gentoo.org> nose-1.0.0.ebuild:
+  arm/x86 stable, bug #351484
 
   14 Jan 2011; Kacper Kowalik <xarthisius@gentoo.org> nose-1.0.0.ebuild:
   ppc64 stable wrt #351484






^ permalink raw reply	[flat|nested] 9+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-python/nose: nose-1.0.0.ebuild ChangeLog
@ 2011-01-21 15:24 Jeroen Roovers (jer)
  0 siblings, 0 replies; 9+ messages in thread
From: Jeroen Roovers (jer) @ 2011-01-21 15:24 UTC (permalink / raw
  To: gentoo-commits

jer         11/01/21 15:24:13

  Modified:             nose-1.0.0.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #351484).
  
  (Portage version: 2.2.0_alpha18/cvs/Linux i686)

Revision  Changes    Path
1.6                  dev-python/nose/nose-1.0.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.0.0.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.0.0.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.0.0.ebuild?r1=1.5&r2=1.6

Index: nose-1.0.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.0.0.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- nose-1.0.0.ebuild	15 Jan 2011 14:58:16 -0000	1.5
+++ nose-1.0.0.ebuild	21 Jan 2011 15:24:13 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.0.0.ebuild,v 1.5 2011/01/15 14:58:16 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.0.0.ebuild,v 1.6 2011/01/21 15:24:13 jer Exp $
 
 EAPI="3"
 SUPPORT_PYTHON_ABIS="1"
@@ -14,7 +14,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~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 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 IUSE="doc examples test"
 
 RDEPEND="dev-python/setuptools"



1.69                 dev-python/nose/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?rev=1.69&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?rev=1.69&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?r1=1.68&r2=1.69

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v
retrieving revision 1.68
retrieving revision 1.69
diff -u -r1.68 -r1.69
--- ChangeLog	15 Jan 2011 14:58:16 -0000	1.68
+++ ChangeLog	21 Jan 2011 15:24:13 -0000	1.69
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/nose
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v 1.68 2011/01/15 14:58:16 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v 1.69 2011/01/21 15:24:13 jer Exp $
+
+  21 Jan 2011; Jeroen Roovers <jer@gentoo.org> nose-1.0.0.ebuild:
+  Stable for HPPA (bug #351484).
 
   15 Jan 2011; Markus Meier <maekke@gentoo.org> nose-1.0.0.ebuild:
   arm/x86 stable, bug #351484






^ permalink raw reply	[flat|nested] 9+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-python/nose: nose-1.0.0.ebuild ChangeLog
@ 2011-02-26 14:35 Michael Weber (xmw)
  0 siblings, 0 replies; 9+ messages in thread
From: Michael Weber (xmw) @ 2011-02-26 14:35 UTC (permalink / raw
  To: gentoo-commits

xmw         11/02/26 14:35:34

  Modified:             nose-1.0.0.ebuild ChangeLog
  Log:
  sparc stable (bug 351484)
  
  (Portage version: 2.1.9.41/cvs/Linux x86_64)

Revision  Changes    Path
1.8                  dev-python/nose/nose-1.0.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.0.0.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.0.0.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.0.0.ebuild?r1=1.7&r2=1.8

Index: nose-1.0.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.0.0.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- nose-1.0.0.ebuild	8 Feb 2011 23:37:37 -0000	1.7
+++ nose-1.0.0.ebuild	26 Feb 2011 14:35:34 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.0.0.ebuild,v 1.7 2011/02/08 23:37:37 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.0.0.ebuild,v 1.8 2011/02/26 14:35:34 xmw Exp $
 
 EAPI="3"
 SUPPORT_PYTHON_ABIS="1"
@@ -13,7 +13,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~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 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 IUSE="doc examples test"
 
 RDEPEND="dev-python/setuptools"



1.70                 dev-python/nose/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?rev=1.70&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?rev=1.70&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?r1=1.69&r2=1.70

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -r1.69 -r1.70
--- ChangeLog	21 Jan 2011 15:24:13 -0000	1.69
+++ ChangeLog	26 Feb 2011 14:35:34 -0000	1.70
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/nose
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v 1.69 2011/01/21 15:24:13 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v 1.70 2011/02/26 14:35:34 xmw Exp $
+
+  26 Feb 2011; Michael Weber <xmw@gentoo.org> nose-1.0.0.ebuild:
+  sparc stable (bug 351484)
 
   21 Jan 2011; Jeroen Roovers <jer@gentoo.org> nose-1.0.0.ebuild:
   Stable for HPPA (bug #351484).






^ permalink raw reply	[flat|nested] 9+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-python/nose: nose-1.0.0.ebuild ChangeLog
@ 2011-02-27 14:05 Tobias Klausmann (klausman)
  0 siblings, 0 replies; 9+ messages in thread
From: Tobias Klausmann (klausman) @ 2011-02-27 14:05 UTC (permalink / raw
  To: gentoo-commits

klausman    11/02/27 14:05:32

  Modified:             nose-1.0.0.ebuild ChangeLog
  Log:
  Stable on alpha, bug #351484
  
  (Portage version: 2.1.9.41/cvs/Linux x86_64)

Revision  Changes    Path
1.9                  dev-python/nose/nose-1.0.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.0.0.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.0.0.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.0.0.ebuild?r1=1.8&r2=1.9

Index: nose-1.0.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.0.0.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- nose-1.0.0.ebuild	26 Feb 2011 14:35:34 -0000	1.8
+++ nose-1.0.0.ebuild	27 Feb 2011 14:05:32 -0000	1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.0.0.ebuild,v 1.8 2011/02/26 14:35:34 xmw Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.0.0.ebuild,v 1.9 2011/02/27 14:05:32 klausman Exp $
 
 EAPI="3"
 SUPPORT_PYTHON_ABIS="1"
@@ -13,7 +13,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~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 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 IUSE="doc examples test"
 
 RDEPEND="dev-python/setuptools"



1.71                 dev-python/nose/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?rev=1.71&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?rev=1.71&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?r1=1.70&r2=1.71

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v
retrieving revision 1.70
retrieving revision 1.71
diff -u -r1.70 -r1.71
--- ChangeLog	26 Feb 2011 14:35:34 -0000	1.70
+++ ChangeLog	27 Feb 2011 14:05:32 -0000	1.71
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/nose
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v 1.70 2011/02/26 14:35:34 xmw Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v 1.71 2011/02/27 14:05:32 klausman Exp $
+
+  27 Feb 2011; Tobias Klausmann <klausman@gentoo.org> nose-1.0.0.ebuild:
+  Stable on alpha, bug #351484
 
   26 Feb 2011; Michael Weber <xmw@gentoo.org> nose-1.0.0.ebuild:
   sparc stable (bug 351484)






^ permalink raw reply	[flat|nested] 9+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-python/nose: nose-1.0.0.ebuild ChangeLog
@ 2011-04-02 16:21 Raul Porcel (armin76)
  0 siblings, 0 replies; 9+ messages in thread
From: Raul Porcel (armin76) @ 2011-04-02 16:21 UTC (permalink / raw
  To: gentoo-commits

armin76     11/04/02 16:21:33

  Modified:             nose-1.0.0.ebuild ChangeLog
  Log:
  ia64/s390/sh stable wrt #351484
  
  (Portage version: 2.1.9.44/cvs/Linux ia64)

Revision  Changes    Path
1.10                 dev-python/nose/nose-1.0.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.0.0.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.0.0.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/nose-1.0.0.ebuild?r1=1.9&r2=1.10

Index: nose-1.0.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.0.0.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- nose-1.0.0.ebuild	27 Feb 2011 14:05:32 -0000	1.9
+++ nose-1.0.0.ebuild	2 Apr 2011 16:21:33 -0000	1.10
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.0.0.ebuild,v 1.9 2011/02/27 14:05:32 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/nose-1.0.0.ebuild,v 1.10 2011/04/02 16:21:33 armin76 Exp $
 
 EAPI="3"
 SUPPORT_PYTHON_ABIS="1"
@@ -13,7 +13,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~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 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 IUSE="doc examples test"
 
 RDEPEND="dev-python/setuptools"



1.72                 dev-python/nose/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?rev=1.72&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?rev=1.72&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/nose/ChangeLog?r1=1.71&r2=1.72

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v
retrieving revision 1.71
retrieving revision 1.72
diff -u -r1.71 -r1.72
--- ChangeLog	27 Feb 2011 14:05:32 -0000	1.71
+++ ChangeLog	2 Apr 2011 16:21:33 -0000	1.72
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/nose
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v 1.71 2011/02/27 14:05:32 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/nose/ChangeLog,v 1.72 2011/04/02 16:21:33 armin76 Exp $
+
+  02 Apr 2011; Raúl Porcel <armin76@gentoo.org> nose-1.0.0.ebuild:
+  ia64/s390/sh stable wrt #351484
 
   27 Feb 2011; Tobias Klausmann <klausman@gentoo.org> nose-1.0.0.ebuild:
   Stable on alpha, bug #351484






^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2011-04-02 16:21 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-01-13 13:16 [gentoo-commits] gentoo-x86 commit in dev-python/nose: nose-1.0.0.ebuild ChangeLog Markos Chandras (hwoarang)
  -- strict thread matches above, loose matches on Subject: below --
2011-04-02 16:21 Raul Porcel (armin76)
2011-02-27 14:05 Tobias Klausmann (klausman)
2011-02-26 14:35 Michael Weber (xmw)
2011-01-21 15:24 Jeroen Roovers (jer)
2011-01-15 14:58 Markus Meier (maekke)
2011-01-14 16:51 Kacper Kowalik (xarthisius)
2011-01-12 21:15 Brent Baude (ranger)
2010-12-18 17:49 Arfrever Frehtes Taifersar Arahesis (arfrever)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox