From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 94F131382C5 for ; Thu, 15 Feb 2018 15:02:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C2CA3E0866; Thu, 15 Feb 2018 15:02:07 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A2653E0866 for ; Thu, 15 Feb 2018 15:02:06 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1EB1A335C49 for ; Thu, 15 Feb 2018 15:02:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6CC8E213 for ; Thu, 15 Feb 2018 15:02:03 +0000 (UTC) From: "Alexys Jacob" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexys Jacob" Message-ID: <1518706917.35e91e1f0aa8172f30a87ec094c4c3a51c35ed22.ultrabug@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/mongodb/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-db/mongodb/mongodb-3.6.2.ebuild X-VCS-Directories: dev-db/mongodb/ X-VCS-Committer: ultrabug X-VCS-Committer-Name: Alexys Jacob X-VCS-Revision: 35e91e1f0aa8172f30a87ec094c4c3a51c35ed22 X-VCS-Branch: master Date: Thu, 15 Feb 2018 15:02:03 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 097e2f45-8496-4073-8260-cee09c8f1fce X-Archives-Hash: 7842ff927a057f13b8c8e59eaa3c337c commit: 35e91e1f0aa8172f30a87ec094c4c3a51c35ed22 Author: Tomas Mozes gmail com> AuthorDate: Wed Feb 14 15:40:39 2018 +0000 Commit: Alexys Jacob gentoo org> CommitDate: Thu Feb 15 15:01:57 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35e91e1f dev-db/mongodb: add upgrade note Package-Manager: Portage-2.3.24, Repoman-2.3.6 dev-db/mongodb/mongodb-3.6.2.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dev-db/mongodb/mongodb-3.6.2.ebuild b/dev-db/mongodb/mongodb-3.6.2.ebuild index a532e30e466..5297f47b0f1 100644 --- a/dev-db/mongodb/mongodb-3.6.2.ebuild +++ b/dev-db/mongodb/mongodb-3.6.2.ebuild @@ -63,6 +63,8 @@ pkg_pretend() { ewarn "To upgrade from a version earlier than the 3.4-series, you must" ewarn "successively upgrade major releases until you have upgraded" ewarn "to 3.4-series. Then upgrade to 3.6 series." + elif [[ -n ${REPLACING_VERSIONS} ]]; then + ewarn "Be sure to set featureCompatibilityVersion to 3.4 before upgrading." fi } @@ -84,9 +86,9 @@ src_prepare() { } src_configure() { + # https://github.com/mongodb/mongo/wiki/Build-Mongodb-From-Source # --use-system-icu fails tests # --use-system-tcmalloc is strongly NOT recommended: - # https://www.mongodb.org/about/contributors/tutorial/build-mongodb-from-source/ scons_opts=( CC="$(tc-getCC)" CXX="$(tc-getCXX)"