Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/mongodb/
Date: Mon, 04 Mar 2019 01:36:04
Message-Id: 1551660448.020f4bb69894058b9a5fc7342aaeb3fa06c9e957.whissi@gentoo
1 commit: 020f4bb69894058b9a5fc7342aaeb3fa06c9e957
2 Author: Tomas Mozes <hydrapolic <AT> gmail <DOT> com>
3 AuthorDate: Sat Jan 26 05:26:46 2019 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Mon Mar 4 00:47:28 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=020f4bb6
7
8 dev-db/mongodb: bump to 4.0.5
9
10 Signed-off-by: Tomas Mozes <hydrapolic <AT> gmail.com>
11 Closes: https://bugs.gentoo.org/673776
12 Closes: https://bugs.gentoo.org/608688
13 Closes: https://bugs.gentoo.org/673512
14 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
15
16 dev-db/mongodb/Manifest | 1 +
17 dev-db/mongodb/mongodb-4.0.5.ebuild | 164 ++++++++++++++++++++++++++++++++++++
18 2 files changed, 165 insertions(+)
19
20 diff --git a/dev-db/mongodb/Manifest b/dev-db/mongodb/Manifest
21 index a464d6ef12e..41d2f267cef 100644
22 --- a/dev-db/mongodb/Manifest
23 +++ b/dev-db/mongodb/Manifest
24 @@ -4,3 +4,4 @@ DIST mongodb-src-r3.6.8.tar.gz 40428295 BLAKE2B cc02f73cfb49fb38ccabaad5a02610ce
25 DIST mongodb-src-r3.6.9.tar.gz 40515460 BLAKE2B 5637e7b5cc4b3c7874fedacbe0b05dac1b3dde3ae1c58ecbfc8caf9526c0a8696bdfa1b9b40ffd1adfc81ef90fcb7a41de2c53ccce09da8b7879b9ab2f238eb7 SHA512 00202820570ba5cdc16951b1cb0e9b52bcb8362cee252c857b84d9107761f4061496fc3379ceae6e052f14477d702714384ad1b24eca2c4173af2506a8d1f39f
26 DIST mongodb-src-r4.0.3.tar.gz 49435646 BLAKE2B 1663823d48ec6d93b30b4d68a09bab164291530fd4966fcdd07ffbaceaf25d9fc5c7480d0d794fdd374fa3a2d11f19d87556cf0c47198a13f9d8fb5ccf7f0343 SHA512 c77a01d8d16322514f42030c46a0aa9cedb90f186375222eeb31648060265006b5e929bdde6ca8e7ecd71018f7c19f5bade463d98db0f053d586ffc8adc99550
27 DIST mongodb-src-r4.0.4.tar.gz 49462543 BLAKE2B a1193ebc6ed818d4e5f27bff1792b6c6c193ff063cae36f2f7adcf63a3b780658d221691c58f42e494ec514d78c81d093067ea7dce8c7158a28846434f493821 SHA512 7e434c8ac715793d7b0015116af72cde766bae953cdc38653a2746ef4a76898dec58f8ee607d9357b87fa11e5a1f0248ae739473ded2d3dcca2b2801434b07e2
28 +DIST mongodb-src-r4.0.5.tar.gz 49507822 BLAKE2B ca5853c632631a06300247d4d3bfee153ffdde2fcbd313ab95472e6721d92a67f464af32c745a297401132287f66b1b78e0eebe583008689d1580b99422d7e68 SHA512 4a544ad40d75583b38a6a97a0a6e4fae7d0d7a740aa1f993adac6855c5f7fae43b4cf6966e58d16ec716e8b93c770a3dc3997c2785597b5e37dfc7aafa516976
29
30 diff --git a/dev-db/mongodb/mongodb-4.0.5.ebuild b/dev-db/mongodb/mongodb-4.0.5.ebuild
31 new file mode 100644
32 index 00000000000..5496ffd85dd
33 --- /dev/null
34 +++ b/dev-db/mongodb/mongodb-4.0.5.ebuild
35 @@ -0,0 +1,164 @@
36 +# Copyright 1999-2019 Gentoo Authors
37 +# Distributed under the terms of the GNU General Public License v2
38 +
39 +EAPI=7
40 +
41 +PYTHON_COMPAT=( python2_7 )
42 +
43 +SCONS_MIN_VERSION="2.5.0"
44 +CHECKREQS_DISK_BUILD="2400M"
45 +CHECKREQS_DISK_USR="512M"
46 +CHECKREQS_MEMORY="1024M"
47 +
48 +inherit check-reqs flag-o-matic multiprocessing pax-utils python-single-r1 scons-utils systemd toolchain-funcs user
49 +
50 +MY_P=${PN}-src-r${PV/_rc/-rc}
51 +
52 +DESCRIPTION="A high-performance, open source, schema-free document-oriented database"
53 +HOMEPAGE="https://www.mongodb.com"
54 +SRC_URI="https://fastdl.mongodb.org/src/${MY_P}.tar.gz"
55 +
56 +LICENSE="Apache-2.0 SSPL"
57 +SLOT="0"
58 +KEYWORDS="~amd64"
59 +IUSE="debug kerberos libressl lto mms-agent ssl test +tools"
60 +
61 +RDEPEND=">=app-arch/snappy-1.1.3
62 + >=dev-cpp/yaml-cpp-0.5.3:=
63 + >=dev-libs/boost-1.60:=[threads(+)]
64 + >=dev-libs/libpcre-8.41[cxx]
65 + dev-libs/snowball-stemmer
66 + net-libs/libpcap
67 + >=sys-libs/zlib-1.2.11:=
68 + kerberos? ( dev-libs/cyrus-sasl[kerberos] )
69 + mms-agent? ( app-admin/mms-agent )
70 + ssl? (
71 + !libressl? ( >=dev-libs/openssl-1.0.1g:0= )
72 + libressl? ( dev-libs/libressl:0= )
73 + )"
74 +DEPEND="${RDEPEND}
75 + ${PYTHON_DEPS}
76 + dev-python/cheetah[${PYTHON_USEDEP}]
77 + dev-python/pyyaml[${PYTHON_USEDEP}]
78 + virtual/python-typing[${PYTHON_USEDEP}]
79 + sys-libs/ncurses:0=
80 + sys-libs/readline:0=
81 + debug? ( dev-util/valgrind )
82 + test? (
83 + dev-python/pymongo[${PYTHON_USEDEP}]
84 + )"
85 +PDEPEND="tools? ( >=app-admin/mongo-tools-${PV} )"
86 +
87 +PATCHES=(
88 + "${FILESDIR}/${PN}-3.4.7-no-boost-check.patch"
89 + "${FILESDIR}/${PN}-3.6.1-fix-scons.patch"
90 + "${FILESDIR}/${PN}-4.0.0-no-compass.patch"
91 +)
92 +
93 +S="${WORKDIR}/${MY_P}"
94 +
95 +pkg_pretend() {
96 + if [[ -n ${REPLACING_VERSIONS} ]]; then
97 + if ver_test "$REPLACING_VERSIONS" -lt 3.6; then
98 + ewarn "To upgrade from a version earlier than the 3.6-series, you must"
99 + ewarn "successively upgrade major releases until you have upgraded"
100 + ewarn "to 3.6-series. Then upgrade to 4.0 series."
101 + else
102 + ewarn "Be sure to set featureCompatibilityVersion to 3.6 before upgrading."
103 + fi
104 + fi
105 +}
106 +
107 +pkg_setup() {
108 + enewgroup mongodb
109 + enewuser mongodb -1 -1 /var/lib/${PN} mongodb
110 +
111 + python-single-r1_pkg_setup
112 +}
113 +
114 +src_prepare() {
115 + default
116 +
117 + # remove bundled libs
118 + rm -r src/third_party/{boost-*,pcre-*,scons-*,snappy-*,yaml-cpp-*,zlib-*} || die
119 +
120 + # remove compass
121 + rm -r src/mongo/installer/compass || die
122 +}
123 +
124 +src_configure() {
125 + # https://github.com/mongodb/mongo/wiki/Build-Mongodb-From-Source
126 + # --use-system-icu fails tests
127 + # --use-system-tcmalloc is strongly NOT recommended:
128 + scons_opts=(
129 + CC="$(tc-getCC)"
130 + CXX="$(tc-getCXX)"
131 +
132 + --disable-warnings-as-errors
133 + --use-system-boost
134 + --use-system-pcre
135 + --use-system-snappy
136 + --use-system-stemmer
137 + --use-system-yaml
138 + --use-system-zlib
139 + )
140 +
141 + use debug && scons_opts+=( --dbg=on )
142 + use kerberos && scons_opts+=( --use-sasl-client )
143 + use lto && scons_opts+=( --lto=on )
144 + use ssl && scons_opts+=( --ssl )
145 +
146 + # respect mongoDB upstream's basic recommendations
147 + # see bug #536688 and #526114
148 + if ! use debug; then
149 + filter-flags '-m*'
150 + filter-flags '-O?'
151 + fi
152 +
153 + default
154 +}
155 +
156 +src_compile() {
157 + escons "${scons_opts[@]}" core tools
158 +}
159 +
160 +# FEATURES="test -usersandbox" emerge dev-db/mongodb
161 +src_test() {
162 + "${EPYTHON}" ./buildscripts/resmoke.py --dbpathPrefix=test --suites core --jobs=$(makeopts_jobs) || die "Tests failed"
163 +}
164 +
165 +src_install() {
166 + escons "${scons_opts[@]}" --nostrip install --prefix="${ED}"/usr
167 +
168 + doman debian/mongo*.1
169 + dodoc README docs/building.md
170 +
171 + newinitd "${FILESDIR}/${PN}.initd-r3" ${PN}
172 + newconfd "${FILESDIR}/${PN}.confd-r3" ${PN}
173 + newinitd "${FILESDIR}/mongos.initd-r3" mongos
174 + newconfd "${FILESDIR}/mongos.confd-r3" mongos
175 +
176 + insinto /etc
177 + newins "${FILESDIR}/${PN}.conf-r3" ${PN}.conf
178 + newins "${FILESDIR}/mongos.conf-r2" mongos.conf
179 +
180 + systemd_dounit "${FILESDIR}/${PN}.service"
181 +
182 + insinto /etc/logrotate.d/
183 + newins "${FILESDIR}/${PN}.logrotate" ${PN}
184 +
185 + # see bug #526114
186 + pax-mark emr "${ED}"/usr/bin/{mongo,mongod,mongos}
187 +
188 + local x
189 + for x in /var/{lib,log}/${PN}; do
190 + diropts -m0750 -o mongodb -g mongodb
191 + keepdir "${x}"
192 + done
193 +}
194 +
195 +pkg_postinst() {
196 + ewarn "Make sure to read the release notes and follow the upgrade process:"
197 + ewarn " https://docs.mongodb.com/manual/release-notes/$(ver_cut 1-2)/"
198 + ewarn " https://docs.mongodb.com/manual/release-notes/$(ver_cut 1-2)/#upgrade-procedures"
199 +}