Gentoo Archives: gentoo-commits

From: "Amadeusz Zolnowski (aidecoe)" <aidecoe@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/pyro: pyro-4.23.ebuild ChangeLog
Date: Thu, 23 Jan 2014 08:42:05
Message-Id: 20140123084201.39F802004C@flycatcher.gentoo.org
1 aidecoe 14/01/23 08:42:01
2
3 Modified: ChangeLog
4 Added: pyro-4.23.ebuild
5 Log:
6 Version bump.
7
8 NEWS
9 ~~~~
10
11 - Pyro4.test.echoserver now correctly runs the NS’s broadcast server as well
12 - unix domain socket creation no longer fails when bind or connect address is
13 unicode instead of str
14 - docs: added more info on dealing with new serialization configuration in
15 existing code
16 - docs: improved name server documentation on registering objects
17 - docs: various small updates
18
19 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key F0134531E1DBFAB5)
20
21 Revision Changes Path
22 1.100 dev-python/pyro/ChangeLog
23
24 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyro/ChangeLog?rev=1.100&view=markup
25 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyro/ChangeLog?rev=1.100&content-type=text/plain
26 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyro/ChangeLog?r1=1.99&r2=1.100
27
28 Index: ChangeLog
29 ===================================================================
30 RCS file: /var/cvsroot/gentoo-x86/dev-python/pyro/ChangeLog,v
31 retrieving revision 1.99
32 retrieving revision 1.100
33 diff -u -r1.99 -r1.100
34 --- ChangeLog 20 Jan 2014 15:49:34 -0000 1.99
35 +++ ChangeLog 23 Jan 2014 08:42:01 -0000 1.100
36 @@ -1,6 +1,22 @@
37 # ChangeLog for dev-python/pyro
38 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
39 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyro/ChangeLog,v 1.99 2014/01/20 15:49:34 ago Exp $
40 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyro/ChangeLog,v 1.100 2014/01/23 08:42:01 aidecoe Exp $
41 +
42 +*pyro-4.23 (23 Jan 2014)
43 +
44 + 23 Jan 2014; Amadeusz Żołnowski <aidecoe@g.o> +pyro-4.23.ebuild:
45 + Version bump.
46 +
47 + NEWS
48 + ~~~~
49 +
50 + - Pyro4.test.echoserver now correctly runs the NS’s broadcast server as well
51 + - unix domain socket creation no longer fails when bind or connect address is
52 + unicode instead of str
53 + - docs: added more info on dealing with new serialization configuration in
54 + existing code
55 + - docs: improved name server documentation on registering objects
56 + - docs: various small updates
57
58 20 Jan 2014; Agostino Sarubbo <ago@g.o> pyro-4.22.ebuild:
59 Stable for ppc, wrt bug #494262
60
61
62
63 1.1 dev-python/pyro/pyro-4.23.ebuild
64
65 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyro/pyro-4.23.ebuild?rev=1.1&view=markup
66 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyro/pyro-4.23.ebuild?rev=1.1&content-type=text/plain
67
68 Index: pyro-4.23.ebuild
69 ===================================================================
70 # Copyright 1999-2014 Gentoo Foundation
71 # Distributed under the terms of the GNU General Public License v2
72 # $Header: /var/cvsroot/gentoo-x86/dev-python/pyro/pyro-4.23.ebuild,v 1.1 2014/01/23 08:42:01 aidecoe Exp $
73
74 EAPI=5
75
76 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} pypy2_0 )
77
78 inherit distutils-r1
79
80 MY_PN="Pyro4"
81 MY_P="${MY_PN}-${PV}"
82
83 DESCRIPTION="Advanced and powerful Distributed Object Technology system written entirely in Python"
84 HOMEPAGE="http://www.xs4all.nl/~irmen/pyro/ http://pypi.python.org/pypi/Pyro4"
85 SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
86
87 LICENSE="MIT"
88 SLOT="4"
89 KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
90 IUSE="doc examples test"
91
92 RDEPEND="!dev-python/pyro:0
93 dev-python/serpent[${PYTHON_USEDEP}]"
94 DEPEND="${RDEPEND}
95 dev-python/setuptools[${PYTHON_USEDEP}]
96 test? (
97 dev-python/coverage[${PYTHON_USEDEP}]
98 dev-python/nose[${PYTHON_USEDEP}]
99 virtual/python-unittest2[${PYTHON_USEDEP}]
100 )"
101
102 S="${WORKDIR}/${MY_P}"
103 DISTUTILS_IN_SOURCE_BUILD=1
104
105 python_prepare_all() {
106 sed \
107 -e '/sys.path.insert/a sys.path.insert(1,"PyroTests")' \
108 -i tests/run_suite.py || die
109
110 # Disable tests requiring network connection.
111 sed \
112 -e "s/testBCstart/_&/" \
113 -e "s/testDaemonPyroObj/_&/" \
114 -e "s/testLookupAndRegister/_&/" \
115 -e "s/testMulti/_&/" \
116 -e "s/testRefuseDottedNames/_&/" \
117 -e "s/testResolve/_&/" \
118 -e "s/testBCLookup/_&/" \
119 -i tests/PyroTests/test_naming.py || die
120 sed \
121 -e "s/testOwnloopBasics/_&/" \
122 -e "s/testStartNSfunc/_&/" \
123 -i tests/PyroTests/test_naming2.py || die
124
125 sed \
126 -e "s/testServerConnections/_&/" \
127 -e "s/testServerParallelism/_&/" \
128 -i tests/PyroTests/test_server.py || die
129
130 sed \
131 -e "s/testBroadcast/_&/" \
132 -e "s/testGetIP/_&/" \
133 -e "s/testGetIpVersion[46]/_&/" \
134 -i tests/PyroTests/test_socket.py || die
135 distutils-r1_python_prepare_all
136 }
137
138 python_test() {
139 cd "${S}"/tests || die
140 ${PYTHON} run_suite.py || die
141 }
142
143 python_install_all() {
144 use doc && HTML_DOCS=( docs/. )
145 use examples && local EXAMPLES=( examples/. )
146 distutils-r1_python_install_all
147 }