Gentoo Archives: gentoo-commits

From: "Ian Delaney (idella4)" <idella4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/pymongo: pymongo-2.5.1.ebuild ChangeLog
Date: Sun, 26 May 2013 18:42:34
Message-Id: 20130526184226.616342171D@flycatcher.gentoo.org
1 idella4 13/05/26 18:42:26
2
3 Modified: pymongo-2.5.1.ebuild ChangeLog
4 Log:
5 return --bind_ip to starting mongod, disable 1 test conditionally confirmed from upstream, rm pkg_postinst recommend from jbergstroem wrt Bug #463310
6
7 (Portage version: 2.1.11.63/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
8
9 Revision Changes Path
10 1.4 dev-python/pymongo/pymongo-2.5.1.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pymongo/pymongo-2.5.1.ebuild?rev=1.4&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pymongo/pymongo-2.5.1.ebuild?rev=1.4&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pymongo/pymongo-2.5.1.ebuild?r1=1.3&r2=1.4
15
16 Index: pymongo-2.5.1.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/pymongo/pymongo-2.5.1.ebuild,v
19 retrieving revision 1.3
20 retrieving revision 1.4
21 diff -u -r1.3 -r1.4
22 --- pymongo-2.5.1.ebuild 26 May 2013 08:19:47 -0000 1.3
23 +++ pymongo-2.5.1.ebuild 26 May 2013 18:42:26 -0000 1.4
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2013 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pymongo/pymongo-2.5.1.ebuild,v 1.3 2013/05/26 08:19:47 idella4 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pymongo/pymongo-2.5.1.ebuild,v 1.4 2013/05/26 18:42:26 idella4 Exp $
29
30 EAPI=5
31
32 @@ -77,7 +77,7 @@
33
34 LC_ALL=C \
35 mongod --dbpath "${dbpath}" --smallfiles --nojournal \
36 - --port ${DB_PORT} \
37 + --bind_ip ${DB_IP} --port ${DB_PORT} \
38 --unixSocketPrefix "${TMPDIR}" \
39 --logpath "${logpath}" --fork \
40 && sleep 2
41 @@ -101,12 +101,16 @@
42 done
43
44 local failed
45 - #https://jira.mongodb.org/browse/PYTHON-521
46 + #https://jira.mongodb.org/browse/PYTHON-521, py2.[6-7] has intermittent failure with gevent
47 pushd "${BUILD_DIR}"/../ > /dev/null
48 if [[ "${EPYTHON}" == python3* ]]; then
49 2to3 --no-diffs -w test
50 - fi
51 esetup.py test || failed=1
52 + elif [[ "${EPYTHON}" == 'python2.7' || "${EPYTHON}" == 'python2.6' ]]; then
53 + sed -e 's:test_socket_reclamation:_&:' \
54 + -i test/test_pooling_base.py || die
55 + fi
56 + esetup.py test || failed=1
57
58 mongod --dbpath "${dbpath}" --shutdown
59
60 @@ -128,8 +132,3 @@
61
62 distutils-r1_python_install_all
63 }
64 -
65 -pkg_postinst() {
66 - ewarn "Important changes on this release, make sure to read the changelog:"
67 - ewarn "http://api.mongodb.org/python/${PV}/changelog.html"
68 -}
69
70
71
72 1.24 dev-python/pymongo/ChangeLog
73
74 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pymongo/ChangeLog?rev=1.24&view=markup
75 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pymongo/ChangeLog?rev=1.24&content-type=text/plain
76 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pymongo/ChangeLog?r1=1.23&r2=1.24
77
78 Index: ChangeLog
79 ===================================================================
80 RCS file: /var/cvsroot/gentoo-x86/dev-python/pymongo/ChangeLog,v
81 retrieving revision 1.23
82 retrieving revision 1.24
83 diff -u -r1.23 -r1.24
84 --- ChangeLog 26 May 2013 08:19:47 -0000 1.23
85 +++ ChangeLog 26 May 2013 18:42:26 -0000 1.24
86 @@ -1,6 +1,11 @@
87 # ChangeLog for dev-python/pymongo
88 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
89 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pymongo/ChangeLog,v 1.23 2013/05/26 08:19:47 idella4 Exp $
90 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pymongo/ChangeLog,v 1.24 2013/05/26 18:42:26 idella4 Exp $
91 +
92 + 26 May 2013; Ian Delaney <idella4@g.o> pymongo-2.5.1.ebuild,
93 + pymongo-2.5.ebuild:
94 + return --bind_ip to starting mongod, disable 1 test conditionally confirmed
95 + from upstream, rm pkg_postinst recommend from jbergstroem wrt Bug #463310
96
97 26 May 2013; Ian Delaney <idella4@g.o> pymongo-2.5.1.ebuild,
98 pymongo-2.5.ebuild: