public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-python/pyro: pyro-4.11.ebuild ChangeLog
@ 2012-02-08  5:09 Patrick Lauer (patrick)
  0 siblings, 0 replies; 4+ messages in thread
From: Patrick Lauer (patrick) @ 2012-02-08  5:09 UTC (permalink / raw
  To: gentoo-commits

patrick     12/02/08 05:09:52

  Modified:             ChangeLog
  Added:                pyro-4.11.ebuild
  Log:
  Bump for #401975
  
  (Portage version: 2.2.0_alpha85/cvs/Linux x86_64)

Revision  Changes    Path
1.53                 dev-python/pyro/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pyro/ChangeLog,v
retrieving revision 1.52
retrieving revision 1.53
diff -u -r1.52 -r1.53
--- ChangeLog	28 Nov 2011 10:53:54 -0000	1.52
+++ ChangeLog	8 Feb 2012 05:09:52 -0000	1.53
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/pyro
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pyro/ChangeLog,v 1.52 2011/11/28 10:53:54 aidecoe Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pyro/ChangeLog,v 1.53 2012/02/08 05:09:52 patrick Exp $
+
+*pyro-4.11 (08 Feb 2012)
+
+  08 Feb 2012; Patrick Lauer <patrick@gentoo.org> +pyro-4.11.ebuild:
+  Bump for #401975
 
   28 Nov 2011; Amadeusz Żołnowski <aidecoe@gentoo.org> pyro-4.4.ebuild,
   pyro-4.8.ebuild:



1.1                  dev-python/pyro/pyro-4.11.ebuild

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

Index: pyro-4.11.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pyro/pyro-4.11.ebuild,v 1.1 2012/02/08 05:09:52 patrick Exp $

EAPI="3"
PYTHON_DEPEND="*:2.6"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="2.[45]"

inherit distutils

MY_PN="Pyro4"
MY_P="${MY_PN}-${PV}"

DESCRIPTION="Advanced and powerful Distributed Object Technology system written entirely in Python"
HOMEPAGE="http://www.xs4all.nl/~irmen/pyro/ http://pypi.python.org/pypi/Pyro4"
SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"

LICENSE="MIT"
SLOT="4"
KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
IUSE="doc examples test"

RDEPEND="!dev-python/pyro:0"
DEPEND="${RDEPEND}
	dev-python/setuptools
	test? (
		dev-python/coverage
		dev-python/nose
	)"

S="${WORKDIR}/${MY_P}"

PYTHON_MODNAME="Pyro4"

src_prepare() {
	distutils_src_prepare

	sed -e '/sys.path.insert/a sys.path.insert(1,"PyroTests")' -i tests/run_suite.py

	# Disable tests requiring network connection.
	sed \
		-e "s/testBCstart/_&/" \
		-e "s/testDaemonPyroObj/_&/" \
		-e "s/testLookupAndRegister/_&/" \
		-e "s/testMulti/_&/" \
		-e "s/testRefuseDottedNames/_&/" \
		-e "s/testResolve/_&/" \
		-i tests/PyroTests/test_naming.py
	sed \
		-e "s/testOwnloopBasics/_&/" \
		-e "s/testStartNSfunc/_&/" \
		-i tests/PyroTests/test_naming2.py

	sed \
		-e "s/testServerConnections/_&/" \
	    -e "s/testServerParallelism/_&/" \
		-i tests/PyroTests/test_server.py

	sed \
		-e "s/testBroadcast/_&/" \
		-e "s/testGetIP/_&/" \
		-i tests/PyroTests/test_socket.py
}

src_test() {
	cd tests

	testing() {
		"$(PYTHON)" run_suite.py
	}
	python_execute_function testing
}

src_install() {
	distutils_src_install

	if use doc; then
		dohtml -r docs/* || 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] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-python/pyro: pyro-4.11.ebuild ChangeLog
@ 2012-06-01 12:07 Amadeusz Zolnowski (aidecoe)
  0 siblings, 0 replies; 4+ messages in thread
From: Amadeusz Zolnowski (aidecoe) @ 2012-06-01 12:07 UTC (permalink / raw
  To: gentoo-commits

aidecoe     12/06/01 12:07:14

  Modified:             ChangeLog
  Added:                pyro-4.11.ebuild
  Log:
  Restored pyro-4.11, because this is the only candidate for the stabilization in the slot 4.
  
  (Portage version: 2.1.10.63/cvs/Linux x86_64)

Revision  Changes    Path
1.67                 dev-python/pyro/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pyro/ChangeLog,v
retrieving revision 1.66
retrieving revision 1.67
diff -u -r1.66 -r1.67
--- ChangeLog	1 Jun 2012 11:46:38 -0000	1.66
+++ ChangeLog	1 Jun 2012 12:07:14 -0000	1.67
@@ -1,6 +1,12 @@
 # ChangeLog for dev-python/pyro
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pyro/ChangeLog,v 1.66 2012/06/01 11:46:38 aidecoe Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pyro/ChangeLog,v 1.67 2012/06/01 12:07:14 aidecoe Exp $
+
+*pyro-4.11 (01 Jun 2012)
+
+  01 Jun 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> +pyro-4.11.ebuild:
+  Restored pyro-4.11, because this is the only candidate for the stabilization
+  in the slot 4.
 
   01 Jun 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> -pyro-4.4.ebuild:
   Removed oldest stable version in the slot 4.



1.3                  dev-python/pyro/pyro-4.11.ebuild

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







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

* [gentoo-commits] gentoo-x86 commit in dev-python/pyro: pyro-4.11.ebuild ChangeLog
@ 2012-06-02 23:24 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 4+ messages in thread
From: Markos Chandras (hwoarang) @ 2012-06-02 23:24 UTC (permalink / raw
  To: gentoo-commits

hwoarang    12/06/02 23:24:10

  Modified:             pyro-4.11.ebuild ChangeLog
  Log:
  Stable on amd64 wrt bug #419025
  
  (Portage version: 2.1.10.64/cvs/Linux x86_64)

Revision  Changes    Path
1.4                  dev-python/pyro/pyro-4.11.ebuild

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

Index: pyro-4.11.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pyro/pyro-4.11.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- pyro-4.11.ebuild	1 Jun 2012 12:07:14 -0000	1.3
+++ pyro-4.11.ebuild	2 Jun 2012 23:24:10 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pyro/pyro-4.11.ebuild,v 1.3 2012/06/01 12:07:14 aidecoe Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pyro/pyro-4.11.ebuild,v 1.4 2012/06/02 23:24:10 hwoarang Exp $
 
 EAPI="3"
 PYTHON_DEPEND="*:2.6"
@@ -18,7 +18,7 @@
 
 LICENSE="MIT"
 SLOT="4"
-KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
 IUSE="doc examples test"
 
 RDEPEND="!dev-python/pyro:0"



1.71                 dev-python/pyro/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pyro/ChangeLog,v
retrieving revision 1.70
retrieving revision 1.71
diff -u -r1.70 -r1.71
--- ChangeLog	2 Jun 2012 06:38:18 -0000	1.70
+++ ChangeLog	2 Jun 2012 23:24:10 -0000	1.71
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/pyro
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pyro/ChangeLog,v 1.70 2012/06/02 06:38:18 aidecoe Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pyro/ChangeLog,v 1.71 2012/06/02 23:24:10 hwoarang Exp $
+
+  02 Jun 2012; Markos Chandras <hwoarang@gentoo.org> pyro-4.11.ebuild:
+  Stable on amd64 wrt bug #419025
 
   02 Jun 2012; Amadeusz Żołnowski <aidecoe@gentoo.org> pyro-4.14.ebuild:
   Removed the test restriction; see comment 3 in the bug #416809.






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

* [gentoo-commits] gentoo-x86 commit in dev-python/pyro: pyro-4.11.ebuild ChangeLog
@ 2013-02-02  6:13 Ian Delaney (idella4)
  0 siblings, 0 replies; 4+ messages in thread
From: Ian Delaney (idella4) @ 2013-02-02  6:13 UTC (permalink / raw
  To: gentoo-commits

idella4     13/02/02 06:13:01

  Modified:             pyro-4.11.ebuild ChangeLog
  Log:
  testBCLookup added to list of disabled tests requiring network connection, fixes Bug #454686 by flameeyes
  
  (Portage version: 2.1.11.40/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)

Revision  Changes    Path
1.7                  dev-python/pyro/pyro-4.11.ebuild

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

Index: pyro-4.11.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pyro/pyro-4.11.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- pyro-4.11.ebuild	8 Jun 2012 11:46:27 -0000	1.6
+++ pyro-4.11.ebuild	2 Feb 2013 06:13:01 -0000	1.7
@@ -1,6 +1,6 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pyro/pyro-4.11.ebuild,v 1.6 2012/06/08 11:46:27 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pyro/pyro-4.11.ebuild,v 1.7 2013/02/02 06:13:01 idella4 Exp $
 
 EAPI="3"
 PYTHON_DEPEND="*:2.6"
@@ -46,6 +46,7 @@
 		-e "s/testMulti/_&/" \
 		-e "s/testRefuseDottedNames/_&/" \
 		-e "s/testResolve/_&/" \
+		-e "s/testBCLookup/_&/" \
 		-i tests/PyroTests/test_naming.py
 	sed \
 		-e "s/testOwnloopBasics/_&/" \
@@ -54,7 +55,7 @@
 
 	sed \
 		-e "s/testServerConnections/_&/" \
-	    -e "s/testServerParallelism/_&/" \
+		-e "s/testServerParallelism/_&/" \
 		-i tests/PyroTests/test_server.py
 
 	sed \



1.75                 dev-python/pyro/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pyro/ChangeLog,v
retrieving revision 1.74
retrieving revision 1.75
diff -u -r1.74 -r1.75
--- ChangeLog	25 Dec 2012 13:37:20 -0000	1.74
+++ ChangeLog	2 Feb 2013 06:13:01 -0000	1.75
@@ -1,6 +1,10 @@
 # ChangeLog for dev-python/pyro
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pyro/ChangeLog,v 1.74 2012/12/25 13:37:20 aidecoe Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pyro/ChangeLog,v 1.75 2013/02/02 06:13:01 idella4 Exp $
+
+  02 Feb 2013; Ian Delaney <idella4@gentoo.org> pyro-4.11.ebuild:
+  testBCLookup added to list of disabled tests requiring network connection,
+  fixes Bug #454686 by flameeyes
 
 *pyro-4.17 (25 Dec 2012)
 
@@ -347,4 +351,3 @@
   16 Feb 2004; <kloeri@gentoo.org> pyro-3.3.ebuild,
   files/pyro-3.3-unattend.patch:
   Initial import.
-





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

end of thread, other threads:[~2013-02-02  6:13 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-08  5:09 [gentoo-commits] gentoo-x86 commit in dev-python/pyro: pyro-4.11.ebuild ChangeLog Patrick Lauer (patrick)
  -- strict thread matches above, loose matches on Subject: below --
2012-06-01 12:07 Amadeusz Zolnowski (aidecoe)
2012-06-02 23:24 Markos Chandras (hwoarang)
2013-02-02  6:13 Ian Delaney (idella4)

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