public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-python/pytest: pytest-2.4.2.ebuild ChangeLog
@ 2013-11-14  6:13 Matt Thode (prometheanfire)
  0 siblings, 0 replies; 12+ messages in thread
From: Matt Thode (prometheanfire) @ 2013-11-14  6:13 UTC (permalink / raw
  To: gentoo-commits

prometheanfire    13/11/14 06:13:55

  Modified:             ChangeLog
  Added:                pytest-2.4.2.ebuild
  Log:
  pytest bump
  
  (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0x2471eb3e40ac5ac3)

Revision  Changes    Path
1.79                 dev-python/pytest/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v
retrieving revision 1.78
retrieving revision 1.79
diff -u -r1.78 -r1.79
--- ChangeLog	22 Oct 2013 14:21:56 -0000	1.78
+++ ChangeLog	14 Nov 2013 06:13:55 -0000	1.79
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/pytest
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v 1.78 2013/10/22 14:21:56 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v 1.79 2013/11/14 06:13:55 prometheanfire Exp $
+
+*pytest-2.4.2 (14 Nov 2013)
+
+  14 Nov 2013; Matthew Thode <prometheanfire@gentoo.org> +pytest-2.4.2.ebuild:
+  pytest bump
 
   22 Oct 2013; Fabian Groffen <grobian@gentoo.org> pytest-2.3.5.ebuild:
   Marked ~x64-macos, bug #487670



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

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

Index: pytest-2.4.2.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/pytest-2.4.2.ebuild,v 1.1 2013/11/14 06:13:55 prometheanfire Exp $

EAPI="5"

PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} pypy2_0 )
inherit distutils-r1 eutils

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}.tar.gz"

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

# When bumping, please check setup.py for the proper py version
PY_VER="1.4.17"
RDEPEND=">=dev-python/py-${PY_VER}[${PYTHON_USEDEP}]"
DEPEND="${RDEPEND}
		dev-python/setuptools[${PYTHON_USEDEP}]
		virtual/python-argparse[${PYTHON_USEDEP}]
		test? ( dev-python/pyyaml[${PYTHON_USEDEP}] )"

python_prepare_all() {
	# Disable versioning of py.test script to avoid collision with
	# versioning performed by the eclass.
	sed -e "s/return points/return {'py.test': target}/" -i setup.py || die "sed failed"
	grep -qF "py>=${PY_VER}" setup.py || die "Incorrect dev-python/py dependency"
	distutils-r1_python_prepare_all
}

python_compile_all() {
	if use doc; then
		mkdir doc/en/.build || die
		emake -C doc/en html
	fi
}

python_test() {
	"${PYTHON}" "${BUILD_DIR}"/lib/pytest.py || die "tests failed with ${EPYTHON}"
}

python_install_all() {
	use doc && dohtml -r doc/en/_build/html/
	distutils-r1_python_install_all
}





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

* [gentoo-commits] gentoo-x86 commit in dev-python/pytest: pytest-2.4.2.ebuild ChangeLog
@ 2013-11-16  4:54 Mike Gilbert (floppym)
  0 siblings, 0 replies; 12+ messages in thread
From: Mike Gilbert (floppym) @ 2013-11-16  4:54 UTC (permalink / raw
  To: gentoo-commits

floppym     13/11/16 04:54:05

  Modified:             pytest-2.4.2.ebuild ChangeLog
  Log:
  Ignore silly test_simple.yml file when running tests. Thanks to idella4 for testing.
  
  (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4)

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

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

Index: pytest-2.4.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pytest/pytest-2.4.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- pytest-2.4.2.ebuild	14 Nov 2013 06:13:55 -0000	1.1
+++ pytest-2.4.2.ebuild	16 Nov 2013 04:54:05 -0000	1.2
@@ -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/pytest/pytest-2.4.2.ebuild,v 1.1 2013/11/14 06:13:55 prometheanfire Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/pytest-2.4.2.ebuild,v 1.2 2013/11/16 04:54:05 floppym Exp $
 
 EAPI="5"
 
@@ -40,7 +40,9 @@
 }
 
 python_test() {
-	"${PYTHON}" "${BUILD_DIR}"/lib/pytest.py || die "tests failed with ${EPYTHON}"
+	"${PYTHON}" "${BUILD_DIR}"/lib/pytest.py \
+		--ignore=doc/en/example/nonpython/test_simple.yml \
+		|| die "tests failed with ${EPYTHON}"
 }
 
 python_install_all() {



1.80                 dev-python/pytest/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v
retrieving revision 1.79
retrieving revision 1.80
diff -u -r1.79 -r1.80
--- ChangeLog	14 Nov 2013 06:13:55 -0000	1.79
+++ ChangeLog	16 Nov 2013 04:54:05 -0000	1.80
@@ -1,6 +1,10 @@
 # ChangeLog for dev-python/pytest
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v 1.79 2013/11/14 06:13:55 prometheanfire Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v 1.80 2013/11/16 04:54:05 floppym Exp $
+
+  16 Nov 2013; Mike Gilbert <floppym@gentoo.org> pytest-2.4.2.ebuild:
+  Ignore silly test_simple.yml file when running tests. Thanks to idella4 for
+  testing.
 
 *pytest-2.4.2 (14 Nov 2013)
 





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

* [gentoo-commits] gentoo-x86 commit in dev-python/pytest: pytest-2.4.2.ebuild ChangeLog
@ 2013-11-17  4:13 Matt Thode (prometheanfire)
  0 siblings, 0 replies; 12+ messages in thread
From: Matt Thode (prometheanfire) @ 2013-11-17  4:13 UTC (permalink / raw
  To: gentoo-commits

prometheanfire    13/11/17 04:13:46

  Modified:             pytest-2.4.2.ebuild ChangeLog
  Log:
  added pytest-2.4.2 with restricted tests due to upstream bug
  
  (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0x2471eb3e40ac5ac3)

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

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

Index: pytest-2.4.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pytest/pytest-2.4.2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- pytest-2.4.2.ebuild	16 Nov 2013 04:54:05 -0000	1.2
+++ pytest-2.4.2.ebuild	17 Nov 2013 04:13:46 -0000	1.3
@@ -1,12 +1,16 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/pytest-2.4.2.ebuild,v 1.2 2013/11/16 04:54:05 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/pytest-2.4.2.ebuild,v 1.3 2013/11/17 04:13:46 prometheanfire Exp $
 
 EAPI="5"
 
 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} pypy2_0 )
 inherit distutils-r1 eutils
 
+RESTRICT="test"
+#testing restricted due to test failures with pexpect-3.0 (which is required for pypy2_0 and python3_x support)
+#https://bitbucket.org/hpk42/pytest/issue/386/tests-fail-with-pexpect-30
+
 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}.tar.gz"
@@ -19,10 +23,13 @@
 # When bumping, please check setup.py for the proper py version
 PY_VER="1.4.17"
 RDEPEND=">=dev-python/py-${PY_VER}[${PYTHON_USEDEP}]"
+
+#pexpect dep based on https://bitbucket.org/hpk42/pytest/issue/386/tests-fail-with-pexpect-30
 DEPEND="${RDEPEND}
 		dev-python/setuptools[${PYTHON_USEDEP}]
 		virtual/python-argparse[${PYTHON_USEDEP}]
-		test? ( dev-python/pyyaml[${PYTHON_USEDEP}] )"
+		test? ( dev-python/pyyaml[${PYTHON_USEDEP}]
+				dev-python/pexpect[${PYTHON_USEDEP}] )"
 
 python_prepare_all() {
 	# Disable versioning of py.test script to avoid collision with



1.81                 dev-python/pytest/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v
retrieving revision 1.80
retrieving revision 1.81
diff -u -r1.80 -r1.81
--- ChangeLog	16 Nov 2013 04:54:05 -0000	1.80
+++ ChangeLog	17 Nov 2013 04:13:46 -0000	1.81
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/pytest
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v 1.80 2013/11/16 04:54:05 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v 1.81 2013/11/17 04:13:46 prometheanfire Exp $
+
+  17 Nov 2013; Matthew Thode <prometheanfire@gentoo.org> pytest-2.4.2.ebuild:
+  added pytest-2.4.2 with restricted tests due to upstream bug
 
   16 Nov 2013; Mike Gilbert <floppym@gentoo.org> pytest-2.4.2.ebuild:
   Ignore silly test_simple.yml file when running tests. Thanks to idella4 for





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

* [gentoo-commits] gentoo-x86 commit in dev-python/pytest: pytest-2.4.2.ebuild ChangeLog
@ 2013-11-30  3:50 Mike Gilbert (floppym)
  0 siblings, 0 replies; 12+ messages in thread
From: Mike Gilbert (floppym) @ 2013-11-30  3:50 UTC (permalink / raw
  To: gentoo-commits

floppym     13/11/30 03:50:52

  Modified:             pytest-2.4.2.ebuild ChangeLog
  Log:
  Fix pexpect-3.0 problems in tests.
  
  (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4)

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

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

Index: pytest-2.4.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pytest/pytest-2.4.2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- pytest-2.4.2.ebuild	17 Nov 2013 04:13:46 -0000	1.3
+++ pytest-2.4.2.ebuild	30 Nov 2013 03:50:52 -0000	1.4
@@ -1,16 +1,12 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/pytest-2.4.2.ebuild,v 1.3 2013/11/17 04:13:46 prometheanfire Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/pytest-2.4.2.ebuild,v 1.4 2013/11/30 03:50:52 floppym Exp $
 
 EAPI="5"
 
 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} pypy2_0 )
 inherit distutils-r1 eutils
 
-RESTRICT="test"
-#testing restricted due to test failures with pexpect-3.0 (which is required for pypy2_0 and python3_x support)
-#https://bitbucket.org/hpk42/pytest/issue/386/tests-fail-with-pexpect-30
-
 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}.tar.gz"
@@ -29,7 +25,11 @@
 		dev-python/setuptools[${PYTHON_USEDEP}]
 		virtual/python-argparse[${PYTHON_USEDEP}]
 		test? ( dev-python/pyyaml[${PYTHON_USEDEP}]
-				dev-python/pexpect[${PYTHON_USEDEP}] )"
+				>=dev-python/pexpect-3.0[${PYTHON_USEDEP}] )"
+
+PATCHES=(
+	"${FILESDIR}/pytest-2.4.2-pexpect-3.0.patch"
+)
 
 python_prepare_all() {
 	# Disable versioning of py.test script to avoid collision with



1.82                 dev-python/pytest/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v
retrieving revision 1.81
retrieving revision 1.82
diff -u -r1.81 -r1.82
--- ChangeLog	17 Nov 2013 04:13:46 -0000	1.81
+++ ChangeLog	30 Nov 2013 03:50:52 -0000	1.82
@@ -1,6 +1,10 @@
 # ChangeLog for dev-python/pytest
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v 1.81 2013/11/17 04:13:46 prometheanfire Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v 1.82 2013/11/30 03:50:52 floppym Exp $
+
+  30 Nov 2013; Mike Gilbert <floppym@gentoo.org>
+  +files/pytest-2.4.2-pexpect-3.0.patch, pytest-2.4.2.ebuild:
+  Fix pexpect-3.0 problems in tests.
 
   17 Nov 2013; Matthew Thode <prometheanfire@gentoo.org> pytest-2.4.2.ebuild:
   added pytest-2.4.2 with restricted tests due to upstream bug





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

* [gentoo-commits] gentoo-x86 commit in dev-python/pytest: pytest-2.4.2.ebuild ChangeLog
@ 2013-12-07  1:07 Patrick Lauer (patrick)
  0 siblings, 0 replies; 12+ messages in thread
From: Patrick Lauer (patrick) @ 2013-12-07  1:07 UTC (permalink / raw
  To: gentoo-commits

patrick     13/12/07 01:07:36

  Modified:             pytest-2.4.2.ebuild ChangeLog
  Log:
  Adapt to changes in pexpect: drop pypy2_0 support, #491404
  
  (Portage version: 2.2.7/cvs/Linux x86_64, unsigned Manifest commit)

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

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

Index: pytest-2.4.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pytest/pytest-2.4.2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- pytest-2.4.2.ebuild	30 Nov 2013 03:50:52 -0000	1.4
+++ pytest-2.4.2.ebuild	7 Dec 2013 01:07:36 -0000	1.5
@@ -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/pytest/pytest-2.4.2.ebuild,v 1.4 2013/11/30 03:50:52 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/pytest-2.4.2.ebuild,v 1.5 2013/12/07 01:07:36 patrick Exp $
 
 EAPI="5"
 
-PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} pypy2_0 )
+PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
 inherit distutils-r1 eutils
 
 DESCRIPTION="py.test: simple powerful testing with Python"



1.83                 dev-python/pytest/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v
retrieving revision 1.82
retrieving revision 1.83
diff -u -r1.82 -r1.83
--- ChangeLog	30 Nov 2013 03:50:52 -0000	1.82
+++ ChangeLog	7 Dec 2013 01:07:36 -0000	1.83
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/pytest
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v 1.82 2013/11/30 03:50:52 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v 1.83 2013/12/07 01:07:36 patrick Exp $
+
+  07 Dec 2013; Patrick Lauer <patrick@gentoo.org> pytest-2.4.2.ebuild:
+  Adapt to changes in pexpect: drop pypy2_0 support, #491404
 
   30 Nov 2013; Mike Gilbert <floppym@gentoo.org>
   +files/pytest-2.4.2-pexpect-3.0.patch, pytest-2.4.2.ebuild:





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

* [gentoo-commits] gentoo-x86 commit in dev-python/pytest: pytest-2.4.2.ebuild ChangeLog
@ 2013-12-09  0:41 Mike Gilbert (floppym)
  0 siblings, 0 replies; 12+ messages in thread
From: Mike Gilbert (floppym) @ 2013-12-09  0:41 UTC (permalink / raw
  To: gentoo-commits

floppym     13/12/09 00:41:26

  Modified:             pytest-2.4.2.ebuild ChangeLog
  Log:
  Drop dep on pexpect and restore pypy support.
  
  (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4)

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

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

Index: pytest-2.4.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pytest/pytest-2.4.2.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- pytest-2.4.2.ebuild	7 Dec 2013 01:07:36 -0000	1.5
+++ pytest-2.4.2.ebuild	9 Dec 2013 00:41:26 -0000	1.6
@@ -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/pytest/pytest-2.4.2.ebuild,v 1.5 2013/12/07 01:07:36 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/pytest-2.4.2.ebuild,v 1.6 2013/12/09 00:41:26 floppym Exp $
 
 EAPI="5"
 
-PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
+PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} pypy2_0 )
 inherit distutils-r1 eutils
 
 DESCRIPTION="py.test: simple powerful testing with Python"
@@ -22,10 +22,10 @@
 
 #pexpect dep based on https://bitbucket.org/hpk42/pytest/issue/386/tests-fail-with-pexpect-30
 DEPEND="${RDEPEND}
-		dev-python/setuptools[${PYTHON_USEDEP}]
-		virtual/python-argparse[${PYTHON_USEDEP}]
-		test? ( dev-python/pyyaml[${PYTHON_USEDEP}]
-				>=dev-python/pexpect-3.0[${PYTHON_USEDEP}] )"
+	dev-python/setuptools[${PYTHON_USEDEP}]
+	virtual/python-argparse[${PYTHON_USEDEP}]
+	test? ( dev-python/pyyaml[${PYTHON_USEDEP}] )
+"
 
 PATCHES=(
 	"${FILESDIR}/pytest-2.4.2-pexpect-3.0.patch"



1.84                 dev-python/pytest/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v
retrieving revision 1.83
retrieving revision 1.84
diff -u -r1.83 -r1.84
--- ChangeLog	7 Dec 2013 01:07:36 -0000	1.83
+++ ChangeLog	9 Dec 2013 00:41:26 -0000	1.84
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/pytest
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v 1.83 2013/12/07 01:07:36 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v 1.84 2013/12/09 00:41:26 floppym Exp $
+
+  09 Dec 2013; Mike Gilbert <floppym@gentoo.org> pytest-2.4.2.ebuild:
+  Drop dep on pexpect and restore pypy support.
 
   07 Dec 2013; Patrick Lauer <patrick@gentoo.org> pytest-2.4.2.ebuild:
   Adapt to changes in pexpect: drop pypy2_0 support, #491404





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

* [gentoo-commits] gentoo-x86 commit in dev-python/pytest: pytest-2.4.2.ebuild ChangeLog
@ 2013-12-09  1:44 Mike Gilbert (floppym)
  0 siblings, 0 replies; 12+ messages in thread
From: Mike Gilbert (floppym) @ 2013-12-09  1:44 UTC (permalink / raw
  To: gentoo-commits

floppym     13/12/09 01:44:58

  Modified:             pytest-2.4.2.ebuild ChangeLog
  Log:
  Restore pexpect dep, but exclude pypy.
  
  (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4)

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

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

Index: pytest-2.4.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pytest/pytest-2.4.2.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- pytest-2.4.2.ebuild	9 Dec 2013 00:41:26 -0000	1.6
+++ pytest-2.4.2.ebuild	9 Dec 2013 01:44:58 -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/pytest/pytest-2.4.2.ebuild,v 1.6 2013/12/09 00:41:26 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/pytest-2.4.2.ebuild,v 1.7 2013/12/09 01:44:58 floppym Exp $
 
 EAPI="5"
 
@@ -24,7 +24,10 @@
 DEPEND="${RDEPEND}
 	dev-python/setuptools[${PYTHON_USEDEP}]
 	virtual/python-argparse[${PYTHON_USEDEP}]
-	test? ( dev-python/pyyaml[${PYTHON_USEDEP}] )
+	test? (
+		dev-python/pexpect[$(python_gen_usedep python{2_6,2_7,3_2,3_3})]
+		dev-python/pyyaml[${PYTHON_USEDEP}]
+	)
 "
 
 PATCHES=(



1.85                 dev-python/pytest/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v
retrieving revision 1.84
retrieving revision 1.85
diff -u -r1.84 -r1.85
--- ChangeLog	9 Dec 2013 00:41:26 -0000	1.84
+++ ChangeLog	9 Dec 2013 01:44:58 -0000	1.85
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/pytest
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v 1.84 2013/12/09 00:41:26 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v 1.85 2013/12/09 01:44:58 floppym Exp $
+
+  09 Dec 2013; Mike Gilbert <floppym@gentoo.org> pytest-2.4.2.ebuild:
+  Restore pexpect dep, but exclude pypy.
 
   09 Dec 2013; Mike Gilbert <floppym@gentoo.org> pytest-2.4.2.ebuild:
   Drop dep on pexpect and restore pypy support.





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

* [gentoo-commits] gentoo-x86 commit in dev-python/pytest: pytest-2.4.2.ebuild ChangeLog
@ 2014-07-19 21:22 Tobias Klausmann (klausman)
  0 siblings, 0 replies; 12+ messages in thread
From: Tobias Klausmann (klausman) @ 2014-07-19 21:22 UTC (permalink / raw
  To: gentoo-commits

klausman    14/07/19 21:22:19

  Modified:             pytest-2.4.2.ebuild ChangeLog
  Log:
  Stable on alpha, bug #506042
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key CE5D54E8)

Revision  Changes    Path
1.12                 dev-python/pytest/pytest-2.4.2.ebuild

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

Index: pytest-2.4.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pytest/pytest-2.4.2.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- pytest-2.4.2.ebuild	19 Jul 2014 18:59:11 -0000	1.11
+++ pytest-2.4.2.ebuild	19 Jul 2014 21:22:19 -0000	1.12
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/pytest-2.4.2.ebuild,v 1.11 2014/07/19 18:59:11 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/pytest-2.4.2.ebuild,v 1.12 2014/07/19 21:22:19 klausman Exp $
 
 EAPI="5"
 
@@ -13,7 +13,7 @@
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~ia64-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 ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 IUSE="doc test"
 
 # When bumping, please check setup.py for the proper py version



1.92                 dev-python/pytest/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v
retrieving revision 1.91
retrieving revision 1.92
diff -u -r1.91 -r1.92
--- ChangeLog	19 Jul 2014 18:59:11 -0000	1.91
+++ ChangeLog	19 Jul 2014 21:22:19 -0000	1.92
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/pytest
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v 1.91 2014/07/19 18:59:11 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v 1.92 2014/07/19 21:22:19 klausman Exp $
+
+  19 Jul 2014; Tobias Klausmann <klausman@gentoo.org> pytest-2.4.2.ebuild:
+  Stable on alpha, bug #506042
 
   19 Jul 2014; Mike Gilbert <floppym@gentoo.org> pytest-2.4.2.ebuild,
   pytest-2.5.2.ebuild:





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

* [gentoo-commits] gentoo-x86 commit in dev-python/pytest: pytest-2.4.2.ebuild ChangeLog
@ 2014-08-02 12:41 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-08-02 12:41 UTC (permalink / raw
  To: gentoo-commits

ago         14/08/02 12:41:46

  Modified:             pytest-2.4.2.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #506042
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --include-arches="amd64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.14                 dev-python/pytest/pytest-2.4.2.ebuild

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

Index: pytest-2.4.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pytest/pytest-2.4.2.ebuild,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- pytest-2.4.2.ebuild	24 Jul 2014 19:26:26 -0000	1.13
+++ pytest-2.4.2.ebuild	2 Aug 2014 12:41:46 -0000	1.14
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/pytest-2.4.2.ebuild,v 1.13 2014/07/24 19:26:26 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/pytest-2.4.2.ebuild,v 1.14 2014/08/02 12:41:46 ago Exp $
 
 EAPI="5"
 
@@ -13,7 +13,7 @@
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha ~amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~ia64-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 ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 IUSE="doc test"
 
 # When bumping, please check setup.py for the proper py version



1.94                 dev-python/pytest/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v
retrieving revision 1.93
retrieving revision 1.94
diff -u -r1.93 -r1.94
--- ChangeLog	24 Jul 2014 19:26:26 -0000	1.93
+++ ChangeLog	2 Aug 2014 12:41:46 -0000	1.94
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/pytest
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v 1.93 2014/07/24 19:26:26 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v 1.94 2014/08/02 12:41:46 ago Exp $
+
+  02 Aug 2014; Agostino Sarubbo <ago@gentoo.org> pytest-2.4.2.ebuild:
+  Stable for amd64, wrt bug #506042
 
   24 Jul 2014; Markus Meier <maekke@gentoo.org> pytest-2.4.2.ebuild:
   arm stable, bug #506042





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

* [gentoo-commits] gentoo-x86 commit in dev-python/pytest: pytest-2.4.2.ebuild ChangeLog
@ 2014-08-02 12:43 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-08-02 12:43 UTC (permalink / raw
  To: gentoo-commits

ago         14/08/02 12:43:58

  Modified:             pytest-2.4.2.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #506042
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --include-arches="x86", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.15                 dev-python/pytest/pytest-2.4.2.ebuild

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

Index: pytest-2.4.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pytest/pytest-2.4.2.ebuild,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- pytest-2.4.2.ebuild	2 Aug 2014 12:41:46 -0000	1.14
+++ pytest-2.4.2.ebuild	2 Aug 2014 12:43:58 -0000	1.15
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/pytest-2.4.2.ebuild,v 1.14 2014/08/02 12:41:46 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/pytest-2.4.2.ebuild,v 1.15 2014/08/02 12:43:58 ago Exp $
 
 EAPI="5"
 
@@ -13,7 +13,7 @@
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~ia64-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 ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 IUSE="doc test"
 
 # When bumping, please check setup.py for the proper py version



1.95                 dev-python/pytest/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v
retrieving revision 1.94
retrieving revision 1.95
diff -u -r1.94 -r1.95
--- ChangeLog	2 Aug 2014 12:41:46 -0000	1.94
+++ ChangeLog	2 Aug 2014 12:43:58 -0000	1.95
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/pytest
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v 1.94 2014/08/02 12:41:46 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v 1.95 2014/08/02 12:43:58 ago Exp $
+
+  02 Aug 2014; Agostino Sarubbo <ago@gentoo.org> pytest-2.4.2.ebuild:
+  Stable for x86, wrt bug #506042
 
   02 Aug 2014; Agostino Sarubbo <ago@gentoo.org> pytest-2.4.2.ebuild:
   Stable for amd64, wrt bug #506042





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

* [gentoo-commits] gentoo-x86 commit in dev-python/pytest: pytest-2.4.2.ebuild ChangeLog
@ 2014-11-10 11:21 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-11-10 11:21 UTC (permalink / raw
  To: gentoo-commits

ago         14/11/10 11:21:30

  Modified:             pytest-2.4.2.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #506042
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, RepoMan options: --include-arches="ppc", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.17                 dev-python/pytest/pytest-2.4.2.ebuild

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

Index: pytest-2.4.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pytest/pytest-2.4.2.ebuild,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- pytest-2.4.2.ebuild	7 Aug 2014 09:02:18 -0000	1.16
+++ pytest-2.4.2.ebuild	10 Nov 2014 11:21:30 -0000	1.17
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/pytest-2.4.2.ebuild,v 1.16 2014/08/07 09:02:18 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/pytest-2.4.2.ebuild,v 1.17 2014/11/10 11:21:30 ago Exp $
 
 EAPI="5"
 
@@ -13,7 +13,7 @@
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~ia64-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 ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 IUSE="doc test"
 
 # When bumping, please check setup.py for the proper py version



1.107                dev-python/pytest/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v
retrieving revision 1.106
retrieving revision 1.107
diff -u -r1.106 -r1.107
--- ChangeLog	2 Nov 2014 09:18:48 -0000	1.106
+++ ChangeLog	10 Nov 2014 11:21:30 -0000	1.107
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/pytest
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v 1.106 2014/11/02 09:18:48 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v 1.107 2014/11/10 11:21:30 ago Exp $
+
+  10 Nov 2014; Agostino Sarubbo <ago@gentoo.org> pytest-2.4.2.ebuild:
+  Stable for ppc, wrt bug #506042
 
   02 Nov 2014; Agostino Sarubbo <ago@gentoo.org> pytest-2.6.3.ebuild:
   Stable for alpha, wrt bug #524416





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

* [gentoo-commits] gentoo-x86 commit in dev-python/pytest: pytest-2.4.2.ebuild ChangeLog
@ 2014-11-10 11:21 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-11-10 11:21 UTC (permalink / raw
  To: gentoo-commits

ago         14/11/10 11:21:56

  Modified:             pytest-2.4.2.ebuild ChangeLog
  Log:
  Stable for ppc64, wrt bug #506042
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, RepoMan options: --include-arches="ppc64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.18                 dev-python/pytest/pytest-2.4.2.ebuild

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

Index: pytest-2.4.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pytest/pytest-2.4.2.ebuild,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- pytest-2.4.2.ebuild	10 Nov 2014 11:21:30 -0000	1.17
+++ pytest-2.4.2.ebuild	10 Nov 2014 11:21:56 -0000	1.18
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/pytest-2.4.2.ebuild,v 1.17 2014/11/10 11:21:30 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/pytest-2.4.2.ebuild,v 1.18 2014/11/10 11:21:56 ago Exp $
 
 EAPI="5"
 
@@ -13,7 +13,7 @@
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~ia64-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 ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 IUSE="doc test"
 
 # When bumping, please check setup.py for the proper py version



1.108                dev-python/pytest/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v
retrieving revision 1.107
retrieving revision 1.108
diff -u -r1.107 -r1.108
--- ChangeLog	10 Nov 2014 11:21:30 -0000	1.107
+++ ChangeLog	10 Nov 2014 11:21:56 -0000	1.108
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/pytest
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v 1.107 2014/11/10 11:21:30 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pytest/ChangeLog,v 1.108 2014/11/10 11:21:56 ago Exp $
+
+  10 Nov 2014; Agostino Sarubbo <ago@gentoo.org> pytest-2.4.2.ebuild:
+  Stable for ppc64, wrt bug #506042
 
   10 Nov 2014; Agostino Sarubbo <ago@gentoo.org> pytest-2.4.2.ebuild:
   Stable for ppc, wrt bug #506042





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

end of thread, other threads:[~2014-11-10 11:22 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-11-17  4:13 [gentoo-commits] gentoo-x86 commit in dev-python/pytest: pytest-2.4.2.ebuild ChangeLog Matt Thode (prometheanfire)
  -- strict thread matches above, loose matches on Subject: below --
2014-11-10 11:21 Agostino Sarubbo (ago)
2014-11-10 11:21 Agostino Sarubbo (ago)
2014-08-02 12:43 Agostino Sarubbo (ago)
2014-08-02 12:41 Agostino Sarubbo (ago)
2014-07-19 21:22 Tobias Klausmann (klausman)
2013-12-09  1:44 Mike Gilbert (floppym)
2013-12-09  0:41 Mike Gilbert (floppym)
2013-12-07  1:07 Patrick Lauer (patrick)
2013-11-30  3:50 Mike Gilbert (floppym)
2013-11-16  4:54 Mike Gilbert (floppym)
2013-11-14  6:13 Matt Thode (prometheanfire)

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