public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Alexys Jacob" <ultrabug@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/
Date: Thu,  9 Aug 2018 09:04:37 +0000 (UTC)	[thread overview]
Message-ID: <1533805461.6f9be927bd631ec951cd06d4f610c1245bd0bb59.ultrabug@gentoo> (raw)

commit:     6f9be927bd631ec951cd06d4f610c1245bd0bb59
Author:     Tomas Mozes <hydrapolic <AT> gmail <DOT> com>
AuthorDate: Tue Aug  7 14:41:25 2018 +0000
Commit:     Alexys Jacob <ultrabug <AT> gentoo <DOT> org>
CommitDate: Thu Aug  9 09:04:21 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f9be927

app-admin/mongo-tools: bump to 4.0.1

Package-Manager: Portage-2.3.44, Repoman-2.3.10
Closes: https://github.com/gentoo/gentoo/pull/9489

 app-admin/mongo-tools/Manifest                 |  1 +
 app-admin/mongo-tools/mongo-tools-4.0.1.ebuild | 61 ++++++++++++++++++++++++++
 2 files changed, 62 insertions(+)

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index de52b6ba6f8..258a50c0769 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -12,3 +12,4 @@ DIST mongo-tools-3.6.4.tar.gz 4693872 BLAKE2B 5d72b32fa8ad7bc106c6ea3c09a27a093b
 DIST mongo-tools-3.6.5.tar.gz 4720814 BLAKE2B 5dd064f70557ec1ab979d08523f3dd305fb310c533b69bc99be3ad3d006036354f62b9f3d61c242e1481a254bed538a5e1cf5662f0e35705f1c50a76f31fddbb SHA512 dd2d7cc64043b42a70b5de0ea493f94722a4476248bfd77d6892861e4be6ab20175992367965dfd687bf8b7ebece6113b7f7a3e59256497e3ecd7e2678875965
 DIST mongo-tools-3.6.6.tar.gz 4723751 BLAKE2B 876d46c47190398d1218a760bdeb8167c9224ef000a96b5f6080d6dcd44fe8187fdfbc38b1a61dbf437132e16e053212cf122daec3915647448d114983e51fc3 SHA512 b8cc02626accb90d8dacf50ea851619885a01503e28b17ed6a12cc9ccec2680a8cd12a566b32187d472f74c9625bf013afcdebed1a42d78ff613c49d3fc838b2
 DIST mongo-tools-4.0.0.tar.gz 10872217 BLAKE2B 84e92178c0e4827926de525a70d6124635d59e270a3d37e23ec8653cc64d99bb7489fa6266917437ca45aa3ca5e00bc59b81e65c5b72e717db2701c6f7327bec SHA512 d67c4aca9b41266109adc39bb1a642206738fda393e1f9f05570c02a00a02e29ec71c71e67ad232c72d66543ae7e7bfe07fbcf26958d48ed0e631da452c1904d
+DIST mongo-tools-4.0.1.tar.gz 10872813 BLAKE2B 21b36c550ee7147b013414d24042ca720d3fdb961759d8857b0ffb3ba1aa3f7f3bcb363c97287d1c7084dae246f9d7f49d2d0d5c8a11bc939fa9d3113b4c2b6e SHA512 69355ca7c8d97a9a8b257aa1cde672b3b4af7ceb5b37e2cf601746e102ca6ac290ec35c20728fdb6736dd28feb8e6b6e1b948e88fd2fb4c9b53c8a3cd3688d67

diff --git a/app-admin/mongo-tools/mongo-tools-4.0.1.ebuild b/app-admin/mongo-tools/mongo-tools-4.0.1.ebuild
new file mode 100644
index 00000000000..47f22a423a8
--- /dev/null
+++ b/app-admin/mongo-tools/mongo-tools-4.0.1.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+MY_PV=${PV/_rc/-rc}
+MY_P=${PN}-r${MY_PV}
+
+DESCRIPTION="A high-performance, open source, schema-free document-oriented database"
+HOMEPAGE="https://www.mongodb.com"
+SRC_URI="https://github.com/mongodb/mongo-tools/archive/r${MY_PV}.tar.gz -> mongo-tools-${MY_PV}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="sasl ssl"
+
+RDEPEND="!<dev-db/mongodb-3.0.0"
+DEPEND="${RDEPEND}
+	dev-lang/go:=
+	net-libs/libpcap
+	sasl? ( dev-libs/cyrus-sasl )
+	ssl? ( dev-libs/openssl:0= )"
+
+S=${WORKDIR}/${MY_P}
+
+src_prepare() {
+	default
+
+	# 1) ensure we use bash wrt #582906
+	# 2) do not substitute version because it uses git
+	sed -e 's@/bin/sh@/bin/bash@g' \
+		-e '/^sed/,+3d' \
+		-e '/^stty/d' \
+		-e '/^mv/d' \
+		-i build.sh || die
+
+	# build pie to avoid text relocations wrt #582854
+	# skip on ppc64 wrt #610984
+	if ! use ppc64; then
+		sed -i 's/\(go build\)/\1 -buildmode=pie/g' build.sh || die
+	fi
+}
+
+src_compile() {
+	local myconf=()
+
+	if use sasl; then
+		myconf+=(sasl)
+	fi
+
+	if use ssl; then
+		myconf+=(ssl)
+	fi
+
+	./build.sh "${myconf[@]}" || die "build failed"
+}
+
+src_install() {
+	dobin bin/*
+}


             reply	other threads:[~2018-08-09  9:04 UTC|newest]

Thread overview: 115+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-08-09  9:04 Alexys Jacob [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-05-10 14:18 [gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/ Alexys Jacob
2023-09-01 14:12 Sam James
2022-06-02  4:00 Sam James
2022-02-07 13:23 Alexys Jacob
2022-02-07 13:23 Alexys Jacob
2021-10-20  6:57 Sam James
2021-10-20  6:57 Sam James
2021-08-19 16:38 Alexys Jacob
2021-08-19 16:38 Alexys Jacob
2021-07-27 11:00 Marek Szuba
2021-03-12 15:25 Sam James
2021-03-12 15:25 Sam James
2021-03-07 15:54 Thomas Deutschmann
2021-03-07 15:54 Thomas Deutschmann
2021-02-18  8:39 Sam James
2020-12-03 20:34 Thomas Deutschmann
2020-12-03  4:34 Sam James
2020-11-09 14:11 Alexys Jacob
2020-11-09 14:11 Alexys Jacob
2020-09-28 22:08 Sam James
2020-09-27 14:15 Sam James
2020-06-26 23:00 Thomas Deutschmann
2020-06-26 23:00 Thomas Deutschmann
2020-05-20 16:25 Alexys Jacob
2020-05-20 16:20 Alexys Jacob
2020-05-11 15:32 Mart Raudsepp
2020-02-09 16:31 Alexys Jacob
2019-12-30 12:36 Alexys Jacob
2019-09-26 19:57 Mikle Kolyada
2019-09-23 13:43 Alexys Jacob
2019-09-22 18:59 Alexys Jacob
2019-08-13  5:57 Alexys Jacob
2019-08-09 14:50 Agostino Sarubbo
2019-08-09 12:51 Agostino Sarubbo
2019-08-09  7:28 Alexys Jacob
2019-08-09  7:28 Alexys Jacob
2019-08-09  7:28 Alexys Jacob
2019-06-17 12:34 Alexys Jacob
2019-06-07  9:45 Alexys Jacob
2019-04-17 13:11 Alexys Jacob
2019-04-14 10:51 Alexys Jacob
2019-04-14 10:36 Alexys Jacob
2019-03-28 17:39 Zac Medico
2019-03-28 17:39 Zac Medico
2019-03-28 17:39 Zac Medico
2019-03-28 17:39 Zac Medico
2019-03-07  3:32 Zac Medico
2019-03-07  3:32 Zac Medico
2019-03-07  2:56 Zac Medico
2019-03-04 15:58 Thomas Deutschmann
2019-03-04  1:35 Thomas Deutschmann
2019-03-04  1:35 Thomas Deutschmann
2019-03-04  1:35 Thomas Deutschmann
2018-12-17 11:26 Alexys Jacob
2018-11-10 20:57 Thomas Deutschmann
2018-11-10 20:57 Thomas Deutschmann
2018-11-03 18:31 Mikle Kolyada
2018-10-26 13:18 Thomas Deutschmann
2018-10-26 13:18 Thomas Deutschmann
2018-09-28  7:53 Alexys Jacob
2018-09-09 20:41 Thomas Deutschmann
2018-08-29 20:57 Alexys Jacob
2018-08-02  7:31 Alexys Jacob
2018-08-02  7:31 Alexys Jacob
2018-06-28 12:45 Alexys Jacob
2018-06-11 19:25 Alexys Jacob
2018-06-11 19:25 Alexys Jacob
2018-05-07  7:39 Alexys Jacob
2018-03-02 14:34 Alexys Jacob
2018-03-02 14:34 Alexys Jacob
2018-02-15 15:02 Alexys Jacob
2018-02-14 15:11 Alexys Jacob
2018-01-26 21:24 Mikle Kolyada
2018-01-06 21:34 Alexys Jacob
2017-11-21 21:16 Alexys Jacob
2017-11-05 17:11 Alexys Jacob
2017-10-13  8:33 Alexys Jacob
2017-10-13  8:33 Alexys Jacob
2017-09-22  8:13 Patrice Clement
2017-09-21 19:50 Patrice Clement
2017-07-31 14:38 Alexys Jacob
2017-07-31 14:38 Alexys Jacob
2017-07-31 12:14 Alexys Jacob
2017-07-31 12:14 Alexys Jacob
2017-05-02  8:56 Alexys Jacob
2017-04-26 13:22 Alexys Jacob
2017-04-26 13:22 Alexys Jacob
2017-03-31 14:47 Alexys Jacob
2017-03-31 14:47 Alexys Jacob
2017-03-03 13:49 Anthony G. Basile
2017-02-08  8:19 Alexys Jacob
2017-02-06 16:10 Alexys Jacob
2017-01-25 15:35 Agostino Sarubbo
2017-01-25 14:29 Agostino Sarubbo
2017-01-11  7:43 Alexys Jacob
2016-11-20 13:41 Alexys Jacob
2016-11-20 13:35 Alexys Jacob
2016-11-05 14:46 Alexys Jacob
2016-11-03 16:19 Göktürk Yüksek
2016-11-03  8:22 Alexys Jacob
2016-10-04  8:50 Alexys Jacob
2016-08-19 12:59 Alexys Jacob
2016-08-04 14:42 Alexys Jacob
2016-04-04  9:00 Ian Delaney
2016-03-09 10:58 Alexys Jacob
2016-03-09  8:16 Alexys Jacob
2016-02-18 11:15 Alexys Jacob
2016-01-27  9:42 Alexys Jacob
2016-01-20 12:48 Alexys Jacob
2016-01-20 12:46 Alexys Jacob
2015-12-27 16:59 Alexys Jacob
2015-12-21 15:17 Alexys Jacob
2015-10-14  9:33 Alexys Jacob
2015-08-25  8:38 Alexys Jacob

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1533805461.6f9be927bd631ec951cd06d4f610c1245bd0bb59.ultrabug@gentoo \
    --to=ultrabug@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox