Gentoo Archives: gentoo-commits

From: Alexys Jacob <ultrabug@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pymongo/
Date: Tue, 06 Oct 2015 12:12:24
Message-Id: 1444133521.67520589f24b84cfc85ea27424560bf5633f5604.ultrabug@gentoo
1 commit: 67520589f24b84cfc85ea27424560bf5633f5604
2 Author: Ultrabug <ultrabug <AT> gentoo <DOT> org>
3 AuthorDate: Tue Oct 6 12:12:01 2015 +0000
4 Commit: Alexys Jacob <ultrabug <AT> gentoo <DOT> org>
5 CommitDate: Tue Oct 6 12:12:01 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67520589
7
8 dev-python/pymongo: version bump
9
10 Package-Manager: portage-2.2.22
11
12 dev-python/pymongo/Manifest | 1 +
13 dev-python/pymongo/pymongo-2.9.ebuild | 128 ++++++++++++++++++++++++++++++++++
14 2 files changed, 129 insertions(+)
15
16 diff --git a/dev-python/pymongo/Manifest b/dev-python/pymongo/Manifest
17 index f2f31da..d15c924 100644
18 --- a/dev-python/pymongo/Manifest
19 +++ b/dev-python/pymongo/Manifest
20 @@ -1,4 +1,5 @@
21 DIST pymongo-2.6.3.tar.gz 324241 SHA256 cabe1d785ad5db6ed8ff70dcb9c987958fc75400f066ec78911ca3f37184a4e2 SHA512 6da3cbf035b52379c24df37b76e1eb743b12c1026116e28e4e7b6450e2674d730f9c8c2dd85f352c6ee4c9f604decaffc2dbc57fe64268bd7522d8ce155cca9e WHIRLPOOL ac36dd88c4311237ecda66a6008fa0d89d0670e331df6c49a08a1d3bc4ddcafe72e8e003009c206d3ac12afb1b14afe2d3615834a5a8df5ce30442f7b49fdbf2
22 DIST pymongo-2.7.2.tar.gz 381455 SHA256 8fb45e3edec006f4b11580fc579bec7781a8b3201ce0abf31593f086070e51f6 SHA512 0e78495462d670c168e716a7c34e05f6a11a203f0bf9b32c1488608343588a48cbbb76ce715411b310359de19d9cd57c75f80ac7d8195a122a760cec22e8d0c7 WHIRLPOOL 6cb7eedc530908c2fdb17b6e31561d9c860d6fd1edddb4d66288c3fe11bc199ebc58538a70508b2540b827077f62345a86729644fdf8d37c1b9934de03e77543
23 DIST pymongo-2.8.1.tar.gz 399521 SHA256 300ea5762d059c07d1bb2578f35bd0e55bc31753951e2de3d6fe2ed54438e374 SHA512 8d02829eb8683572ffe8c1be5ee50a4c778e1a0b938820859be215b583e719d079183b1a26bc074fad7e31e8944756b82b146657ad528123514b59c725f6d7aa WHIRLPOOL b0c8c373771d3a4525ddf30db5903a6b1241aa1e160e688c215bef21395d598faa65f12e57ea8fe0f16d1c0eaa0abad02ebf3e0b9df2acb8e1c8e6ff9c20a214
24 +DIST pymongo-2.9.tar.gz 430741 SHA256 90e994cfe5928841960dabdca709e75ab4d0f44b288fd59742113982d96290c4 SHA512 c12701797643b41503829b6c7e573cfff7d8c63c56d9eb195f1a67dc3204cd7ed2a28ee2bd2ce34d0c68bade3f44c8bd5c069b15082bf3388c3a401a35424b1e WHIRLPOOL 699a7f658734837f40fe4190251f8e8bb69dba80bbc6dba60207bb18d5dfb43ec5d1c6aca8810b45e7914705305416d0f76face88fd0c43aa20c6d0765eff01c
25 DIST pymongo-3.0.3.tar.gz 419692 SHA256 3c6b2317f8031bc1e200fd1ea35f00a96f4569e3f3f220a5e66ab6227d96ccaf SHA512 7a20fdcae5b3f852bded19c95b36ef6a8141bce0179440a2c5966cbb9f18f3985b7b6b4584c5253c34d0f846d809d72ec0ae076c88472a3de6f090466e9132b4 WHIRLPOOL ae610909b610c7d116dd3aa7c04ab9ce357b25208b07c025924c53bb36183a6d344ecff214def6a01b929dc50d698464c8dd33b6eafd2d88d6666d8534858a38
26
27 diff --git a/dev-python/pymongo/pymongo-2.9.ebuild b/dev-python/pymongo/pymongo-2.9.ebuild
28 new file mode 100644
29 index 0000000..059bdf5
30 --- /dev/null
31 +++ b/dev-python/pymongo/pymongo-2.9.ebuild
32 @@ -0,0 +1,128 @@
33 +# Copyright 1999-2015 Gentoo Foundation
34 +# Distributed under the terms of the GNU General Public License v2
35 +# $Id$
36 +
37 +EAPI=5
38 +
39 +PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
40 +
41 +inherit check-reqs distutils-r1
42 +
43 +DESCRIPTION="Python driver for MongoDB"
44 +HOMEPAGE="https://github.com/mongodb/mongo-python-driver https://pypi.python.org/pypi/pymongo"
45 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
46 +
47 +LICENSE="Apache-2.0"
48 +SLOT="0"
49 +KEYWORDS="~amd64 ~hppa ~x86"
50 +IUSE="doc kerberos test"
51 +
52 +RDEPEND="
53 + kerberos? ( dev-python/pykerberos )
54 +"
55 +DEPEND="
56 + ${RDEPEND}
57 + dev-python/setuptools[${PYTHON_USEDEP}]
58 + doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
59 + test? (
60 + dev-python/nose[${PYTHON_USEDEP}]
61 + >=dev-db/mongodb-2.6.0
62 + )
63 +"
64 +DISTUTILS_IN_SOURCE_BUILD=1
65 +
66 +reqcheck() {
67 + if use test; then
68 + # During the tests, database size reaches 1.5G.
69 + local CHECKREQS_DISK_BUILD=1536M
70 +
71 + check-reqs_${1}
72 + fi
73 +}
74 +
75 +pkg_pretend() {
76 + reqcheck pkg_pretend
77 +}
78 +
79 +pkg_setup() {
80 + reqcheck pkg_setup
81 +}
82 +
83 +python_compile_all() {
84 + if use doc; then
85 + mkdir html || die
86 + sphinx-build doc html || die
87 + fi
88 +}
89 +
90 +src_test() {
91 + # Yes, we need TCP/IP for that...
92 + local DB_IP=127.0.0.1
93 + local DB_PORT=27000
94 +
95 + export DB_IP DB_PORT
96 +
97 + # 1.5G of disk space per run.
98 + local DISTUTILS_NO_PARALLEL_BUILD=1
99 +
100 + distutils-r1_src_test
101 +}
102 +
103 +python_test() {
104 + local dbpath=${TMPDIR}/mongo.db
105 + local logpath=${TMPDIR}/mongod.log
106 +
107 + # Now, the hard part: we need to find a free port for mongod.
108 + # We're just trying to run it random port numbers and check the log
109 + # for bind errors. It shall be noted that 'mongod --fork' does not
110 + # return failure when it fails to bind.
111 +
112 + mkdir -p "${dbpath}" || die
113 + while true; do
114 + ebegin "Trying to start mongod on port ${DB_PORT}"
115 +
116 + LC_ALL=C \
117 + mongod --dbpath "${dbpath}" --smallfiles --nojournal \
118 + --bind_ip ${DB_IP} --port ${DB_PORT} \
119 + --unixSocketPrefix "${TMPDIR}" \
120 + --logpath "${logpath}" --fork \
121 + && sleep 2
122 +
123 + # Now we need to check if the server actually started...
124 + if [[ ${?} -eq 0 && -S "${TMPDIR}"/mongodb-${DB_PORT}.sock ]]; then
125 + # yay!
126 + eend 0
127 + break
128 + elif grep -q 'Address already in use' "${logpath}"; then
129 + # ay, someone took our port!
130 + eend 1
131 + : $(( DB_PORT += 1 ))
132 + continue
133 + else
134 + eend 1
135 + eerror "Unable to start mongod for tests. See the server log:"
136 + eerror " ${logpath}"
137 + die "Unable to start mongod for tests."
138 + fi
139 + done
140 +
141 + local failed
142 + #https://jira.mongodb.org/browse/PYTHON-521, py2.[6-7] has intermittent failure with gevent
143 + pushd "${BUILD_DIR}"/../ > /dev/null
144 + if [[ "${EPYTHON}" == python3* ]]; then
145 + 2to3 --no-diffs -w test
146 + fi
147 + DB_PORT2=$(( DB_PORT + 1 )) DB_PORT3=$(( DB_PORT + 2 )) esetup.py test || failed=1
148 +
149 + mongod --dbpath "${dbpath}" --shutdown
150 +
151 + [[ ${failed} ]] && die "Tests fail with ${EPYTHON}"
152 +
153 + rm -rf "${dbpath}"
154 +}
155 +
156 +python_install_all() {
157 + use doc && local HTML_DOCS=( html/. )
158 +
159 + distutils-r1_python_install_all
160 +}