public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-python/pytest: pytest-2.0.1.ebuild ChangeLog
@ 2011-02-09  2:41 Arfrever Frehtes Taifersar Arahesis (arfrever)
  0 siblings, 0 replies; 7+ messages in thread
From: Arfrever Frehtes Taifersar Arahesis (arfrever) @ 2011-02-09  2:41 UTC (permalink / raw
  To: gentoo-commits

arfrever    11/02/09 02:41:07

  Modified:             ChangeLog
  Added:                pytest-2.0.1.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.0_alpha23/cvs/Linux x86_64)

Revision  Changes    Path
1.11                 dev-python/pytest/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- ChangeLog	30 Jan 2011 18:26:54 -0000	1.10
+++ ChangeLog	9 Feb 2011 02:41:07 -0000	1.11
@@ -1,6 +1,12 @@
 # ChangeLog for dev-python/pytest
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v 1.10 2011/01/30 18:26:54 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v 1.11 2011/02/09 02:41:07 arfrever Exp $
+
+*pytest-2.0.1 (09 Feb 2011)
+
+  09 Feb 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+  +pytest-2.0.1.ebuild:
+  Version bump.
 
   30 Jan 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
   -pytest-1.3.ebuild:



1.1                  dev-python/pytest/pytest-2.0.1.ebuild

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

Index: pytest-2.0.1.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/pytest-2.0.1.ebuild,v 1.1 2011/02/09 02:41:07 arfrever Exp $

EAPI="3"
SUPPORT_PYTHON_ABIS="1"

inherit distutils

DESCRIPTION="py.test: simple powerful testing with Python"
HOMEPAGE="http://pytest.org/ http://pypi.python.org/pypi/pytest"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip"

LICENSE="MIT"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos"
IUSE=""

RDEPEND=">=dev-python/py-1.4.1"
DEPEND="${RDEPEND}
	app-arch/unzip
	dev-python/setuptools"

DOCS="CHANGELOG README.txt"
PYTHON_MODNAME="pytest.py _pytest"

src_prepare() {
	distutils_src_prepare

	# Disable versioning of py.test script to avoid collision with versioning performed by distutils_src_install().
	sed -e "s/return points/return {'py.test': target}/" -i setup.py || die "sed failed"
}

src_test() {
	testing() {
		PYTHONPATH="${S}/build-${PYTHON_ABI}/lib" "$(PYTHON)" "build-${PYTHON_ABI}/lib/pytest.py"
	}
	python_execute_function testing
}

src_install() {
	distutils_src_install
	python_generate_wrapper_scripts -E -f -q "${ED}usr/bin/py.test"
}






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

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

hwoarang    11/03/13 16:00:08

  Modified:             pytest-2.0.1.ebuild ChangeLog
  Log:
  Stable on amd64 wrt bug #358137
  
  (Portage version: 2.1.9.42/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  dev-python/pytest/pytest-2.0.1.ebuild

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

Index: pytest-2.0.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pytest/pytest-2.0.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- pytest-2.0.1.ebuild	9 Feb 2011 02:41:07 -0000	1.1
+++ pytest-2.0.1.ebuild	13 Mar 2011 16:00:08 -0000	1.2
@@ -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/pytest/pytest-2.0.1.ebuild,v 1.1 2011/02/09 02:41:07 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/pytest-2.0.1.ebuild,v 1.2 2011/03/13 16:00:08 hwoarang Exp $
 
 EAPI="3"
 SUPPORT_PYTHON_ABIS="1"
@@ -13,7 +13,7 @@
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE=""
 
 RDEPEND=">=dev-python/py-1.4.1"



1.13                 dev-python/pytest/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ChangeLog	9 Mar 2011 20:47:27 -0000	1.12
+++ ChangeLog	13 Mar 2011 16:00:08 -0000	1.13
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/pytest
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v 1.12 2011/03/09 20:47:27 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v 1.13 2011/03/13 16:00:08 hwoarang Exp $
+
+  13 Mar 2011; Markos Chandras <hwoarang@gentoo.org> pytest-2.0.1.ebuild:
+  Stable on amd64 wrt bug #358137
 
 *pytest-2.0.2 (09 Mar 2011)
 






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

* [gentoo-commits] gentoo-x86 commit in dev-python/pytest: pytest-2.0.1.ebuild ChangeLog
@ 2011-03-21 23:04 Markus Meier (maekke)
  0 siblings, 0 replies; 7+ messages in thread
From: Markus Meier (maekke) @ 2011-03-21 23:04 UTC (permalink / raw
  To: gentoo-commits

maekke      11/03/21 23:04:54

  Modified:             pytest-2.0.1.ebuild ChangeLog
  Log:
  arm stable, bug #358137
  
  (Portage version: 2.1.9.44/cvs/Linux i686)

Revision  Changes    Path
1.3                  dev-python/pytest/pytest-2.0.1.ebuild

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

Index: pytest-2.0.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pytest/pytest-2.0.1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- pytest-2.0.1.ebuild	13 Mar 2011 16:00:08 -0000	1.2
+++ pytest-2.0.1.ebuild	21 Mar 2011 23:04:54 -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/pytest/pytest-2.0.1.ebuild,v 1.2 2011/03/13 16:00:08 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/pytest-2.0.1.ebuild,v 1.3 2011/03/21 23:04:54 maekke Exp $
 
 EAPI="3"
 SUPPORT_PYTHON_ABIS="1"
@@ -13,7 +13,7 @@
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE=""
 
 RDEPEND=">=dev-python/py-1.4.1"



1.14                 dev-python/pytest/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- ChangeLog	13 Mar 2011 16:00:08 -0000	1.13
+++ ChangeLog	21 Mar 2011 23:04:54 -0000	1.14
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/pytest
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v 1.13 2011/03/13 16:00:08 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v 1.14 2011/03/21 23:04:54 maekke Exp $
+
+  21 Mar 2011; Markus Meier <maekke@gentoo.org> pytest-2.0.1.ebuild:
+  arm stable, bug #358137
 
   13 Mar 2011; Markos Chandras <hwoarang@gentoo.org> pytest-2.0.1.ebuild:
   Stable on amd64 wrt bug #358137






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

* [gentoo-commits] gentoo-x86 commit in dev-python/pytest: pytest-2.0.1.ebuild ChangeLog
@ 2011-03-27 14:17 Tobias Klausmann (klausman)
  0 siblings, 0 replies; 7+ messages in thread
From: Tobias Klausmann (klausman) @ 2011-03-27 14:17 UTC (permalink / raw
  To: gentoo-commits

klausman    11/03/27 14:17:57

  Modified:             pytest-2.0.1.ebuild ChangeLog
  Log:
  Stable on alpha, bug #358137
  
  (Portage version: 2.1.9.44/cvs/Linux x86_64)

Revision  Changes    Path
1.4                  dev-python/pytest/pytest-2.0.1.ebuild

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

Index: pytest-2.0.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pytest/pytest-2.0.1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- pytest-2.0.1.ebuild	21 Mar 2011 23:04:54 -0000	1.3
+++ pytest-2.0.1.ebuild	27 Mar 2011 14:17:57 -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/pytest/pytest-2.0.1.ebuild,v 1.3 2011/03/21 23:04:54 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/pytest-2.0.1.ebuild,v 1.4 2011/03/27 14:17:57 klausman Exp $
 
 EAPI="3"
 SUPPORT_PYTHON_ABIS="1"
@@ -13,7 +13,7 @@
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="alpha amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE=""
 
 RDEPEND=">=dev-python/py-1.4.1"



1.15                 dev-python/pytest/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- ChangeLog	21 Mar 2011 23:04:54 -0000	1.14
+++ ChangeLog	27 Mar 2011 14:17:57 -0000	1.15
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/pytest
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v 1.14 2011/03/21 23:04:54 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v 1.15 2011/03/27 14:17:57 klausman Exp $
+
+  27 Mar 2011; Tobias Klausmann <klausman@gentoo.org> pytest-2.0.1.ebuild:
+  Stable on alpha, bug #358137
 
   21 Mar 2011; Markus Meier <maekke@gentoo.org> pytest-2.0.1.ebuild:
   arm stable, bug #358137






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

* [gentoo-commits] gentoo-x86 commit in dev-python/pytest: pytest-2.0.1.ebuild ChangeLog
@ 2011-03-27 20:01 Brent Baude (ranger)
  0 siblings, 0 replies; 7+ messages in thread
From: Brent Baude (ranger) @ 2011-03-27 20:01 UTC (permalink / raw
  To: gentoo-commits

ranger      11/03/27 20:01:59

  Modified:             pytest-2.0.1.ebuild ChangeLog
  Log:
  Marking pytest-2.0.1 ppc for bug 358137
  
  (Portage version: 2.1.9.42/cvs/Linux ppc64)

Revision  Changes    Path
1.5                  dev-python/pytest/pytest-2.0.1.ebuild

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

Index: pytest-2.0.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pytest/pytest-2.0.1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- pytest-2.0.1.ebuild	27 Mar 2011 14:17:57 -0000	1.4
+++ pytest-2.0.1.ebuild	27 Mar 2011 20:01:58 -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/pytest/pytest-2.0.1.ebuild,v 1.4 2011/03/27 14:17:57 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/pytest-2.0.1.ebuild,v 1.5 2011/03/27 20:01:58 ranger Exp $
 
 EAPI="3"
 SUPPORT_PYTHON_ABIS="1"
@@ -13,7 +13,7 @@
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="alpha amd64 arm ~hppa ~ia64 ~mips ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE=""
 
 RDEPEND=">=dev-python/py-1.4.1"



1.16                 dev-python/pytest/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- ChangeLog	27 Mar 2011 14:17:57 -0000	1.15
+++ ChangeLog	27 Mar 2011 20:01:58 -0000	1.16
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/pytest
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v 1.15 2011/03/27 14:17:57 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v 1.16 2011/03/27 20:01:58 ranger Exp $
+
+  27 Mar 2011; Brent Baude <ranger@gentoo.org> pytest-2.0.1.ebuild:
+  Marking pytest-2.0.1 ppc for bug 358137
 
   27 Mar 2011; Tobias Klausmann <klausman@gentoo.org> pytest-2.0.1.ebuild:
   Stable on alpha, bug #358137






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

* [gentoo-commits] gentoo-x86 commit in dev-python/pytest: pytest-2.0.1.ebuild ChangeLog
@ 2011-03-30 16:17 Jeroen Roovers (jer)
  0 siblings, 0 replies; 7+ messages in thread
From: Jeroen Roovers (jer) @ 2011-03-30 16:17 UTC (permalink / raw
  To: gentoo-commits

jer         11/03/30 16:17:46

  Modified:             pytest-2.0.1.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #358137).
  
  (Portage version: 2.2.0_alpha29/cvs/Linux i686)

Revision  Changes    Path
1.6                  dev-python/pytest/pytest-2.0.1.ebuild

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

Index: pytest-2.0.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pytest/pytest-2.0.1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- pytest-2.0.1.ebuild	27 Mar 2011 20:01:58 -0000	1.5
+++ pytest-2.0.1.ebuild	30 Mar 2011 16:17:46 -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/pytest/pytest-2.0.1.ebuild,v 1.5 2011/03/27 20:01:58 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/pytest-2.0.1.ebuild,v 1.6 2011/03/30 16:17:46 jer Exp $
 
 EAPI="3"
 SUPPORT_PYTHON_ABIS="1"
@@ -13,7 +13,7 @@
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~hppa ~ia64 ~mips ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE=""
 
 RDEPEND=">=dev-python/py-1.4.1"



1.17                 dev-python/pytest/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- ChangeLog	27 Mar 2011 20:01:58 -0000	1.16
+++ ChangeLog	30 Mar 2011 16:17:46 -0000	1.17
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/pytest
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v 1.16 2011/03/27 20:01:58 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v 1.17 2011/03/30 16:17:46 jer Exp $
+
+  30 Mar 2011; Jeroen Roovers <jer@gentoo.org> pytest-2.0.1.ebuild:
+  Stable for HPPA (bug #358137).
 
   27 Mar 2011; Brent Baude <ranger@gentoo.org> pytest-2.0.1.ebuild:
   Marking pytest-2.0.1 ppc for bug 358137






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

* [gentoo-commits] gentoo-x86 commit in dev-python/pytest: pytest-2.0.1.ebuild ChangeLog
@ 2011-03-31 17:45 Kacper Kowalik (xarthisius)
  0 siblings, 0 replies; 7+ messages in thread
From: Kacper Kowalik (xarthisius) @ 2011-03-31 17:45 UTC (permalink / raw
  To: gentoo-commits

xarthisius    11/03/31 17:45:30

  Modified:             pytest-2.0.1.ebuild ChangeLog
  Log:
  ppc64 stable wrt #358137
  
  (Portage version: 2.2.0_alpha27/cvs/Linux x86_64)

Revision  Changes    Path
1.7                  dev-python/pytest/pytest-2.0.1.ebuild

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

Index: pytest-2.0.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pytest/pytest-2.0.1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- pytest-2.0.1.ebuild	30 Mar 2011 16:17:46 -0000	1.6
+++ pytest-2.0.1.ebuild	31 Mar 2011 17:45:30 -0000	1.7
@@ -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/pytest/pytest-2.0.1.ebuild,v 1.6 2011/03/30 16:17:46 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/pytest-2.0.1.ebuild,v 1.7 2011/03/31 17:45:30 xarthisius Exp $
 
 EAPI="3"
 SUPPORT_PYTHON_ABIS="1"
@@ -13,7 +13,7 @@
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE=""
 
 RDEPEND=">=dev-python/py-1.4.1"



1.18                 dev-python/pytest/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ChangeLog	30 Mar 2011 16:17:46 -0000	1.17
+++ ChangeLog	31 Mar 2011 17:45:30 -0000	1.18
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/pytest
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v 1.17 2011/03/30 16:17:46 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v 1.18 2011/03/31 17:45:30 xarthisius Exp $
+
+  31 Mar 2011; Kacper Kowalik <xarthisius@gentoo.org> pytest-2.0.1.ebuild:
+  ppc64 stable wrt #358137
 
   30 Mar 2011; Jeroen Roovers <jer@gentoo.org> pytest-2.0.1.ebuild:
   Stable for HPPA (bug #358137).






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

end of thread, other threads:[~2011-03-31 17:45 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-30 16:17 [gentoo-commits] gentoo-x86 commit in dev-python/pytest: pytest-2.0.1.ebuild ChangeLog Jeroen Roovers (jer)
  -- strict thread matches above, loose matches on Subject: below --
2011-03-31 17:45 Kacper Kowalik (xarthisius)
2011-03-27 20:01 Brent Baude (ranger)
2011-03-27 14:17 Tobias Klausmann (klausman)
2011-03-21 23:04 Markus Meier (maekke)
2011-03-13 16:00 Markos Chandras (hwoarang)
2011-02-09  2:41 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