From: "Zac Medico" <zmedico@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/
Date: Thu, 28 Mar 2019 17:39:17 +0000 (UTC) [thread overview]
Message-ID: <1553794747.75a8f7565c4012ebd30783559ed6c10b852f6b52.zmedico@gentoo> (raw)
commit: 75a8f7565c4012ebd30783559ed6c10b852f6b52
Author: Tomas Mozes <hydrapolic <AT> gmail <DOT> com>
AuthorDate: Mon Mar 18 05:53:33 2019 +0000
Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Thu Mar 28 17:39:07 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75a8f756
app-admin/mongo-tools: bump to 3.6.11
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Tomáš Mózes <hydrapolic <AT> gmail.com>
Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>
app-admin/mongo-tools/Manifest | 1 +
app-admin/mongo-tools/mongo-tools-3.6.11.ebuild | 71 +++++++++++++++++++++++++
2 files changed, 72 insertions(+)
diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index 1c7246e119a..10f66a07e88 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -1,4 +1,5 @@
DIST mongo-tools-3.4.16.tar.gz 4697191 BLAKE2B 2e9a0e7dc8016d3e7d7c7f8d0cf80a97d3d199603c0b8b791df5a0d79d418ffaa232eee694047a7ca11fa7623023b4123becd437cfe3dec11e26cd525720bcad SHA512 b40c6dee75d860de1da73faf79f5f68c098ce7c80681486c66fff04a937474dcede91c7be907a8e36033b3898f7499e8f53271944c0df3360756c27361efb6f5
DIST mongo-tools-3.6.10.tar.gz 4731097 BLAKE2B dffd18bbcb5a1d869cd3a00b40be7c83d12c2146944044c8d873eba409b9fcb0ce0595c01cd61a6b0405dfce685b8dde7c285380150906d4d38d3de9b42962bf SHA512 3e9808c6b275566215f8c2ce033a6259d373e8b63db5e981cc28235d757404b3209a64dd9aa8a98d9290c5c1da137a1bf9bc48629b278cb27ca28be681e86efc
+DIST mongo-tools-3.6.11.tar.gz 4731680 BLAKE2B 88558a26d2552848121d984e4b963acafe9e56b37a3d393bacdcd8c0f71a29e2082845ad6d648c3c4800bd47514d339d1f1e984e339a48572ecb5f6f31d9166d SHA512 2291cb963965a59a89bac35a760ce49b4b835d1447065d558c4b254aae5fe38f7ebe4c9d7a67aa475e06be95c45f8529922c6fb0b78d41bc07d1a83f3a564192
DIST mongo-tools-3.6.8.tar.gz 4723878 BLAKE2B a1693024d60f69d25c268eaaa30a478b1e4c0042c5fb7a3fd6252ed00aef2fee3fba94516fe825165a1a57887ed38e4fbce488c48ddd4f45349f0b7a1b244020 SHA512 359e8ce2d847d005d48ff12bc2e8af73213d81cd1521d2b5b5ac94792468218248bebbe808e1bd8fd49234eab8480608f294c1b63f317aed58f456b84ef17dcf
DIST mongo-tools-4.0.6.tar.gz 10879606 BLAKE2B 9a7656ba1486df4b36ceb527735ad46864d7a04f2d0451fb4e04bbbdc09c3bb0ec922aa5daa584b93e123e1c3764c0ebef96a3566dd0d6b646a627d769645619 SHA512 d6185d7442a593d29db78889c55aba53e070bedd522d78d8c0bf52bb27f26c5fee6d010457f65774ea36a2e6d5280f38c95433ff76ed53ed9d74b1c811198cb7
diff --git a/app-admin/mongo-tools/mongo-tools-3.6.11.ebuild b/app-admin/mongo-tools/mongo-tools-3.6.11.ebuild
new file mode 100644
index 00000000000..092d770686f
--- /dev/null
+++ b/app-admin/mongo-tools/mongo-tools-3.6.11.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+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"
+
+DEPEND="dev-lang/go:=
+ net-libs/libpcap
+ sasl? ( dev-libs/cyrus-sasl )
+ ssl? ( dev-libs/openssl:0= )"
+
+# Do not complain about CFLAGS etc since go projects do not use them.
+QA_FLAGS_IGNORED='.*'
+
+EGO_PN="github.com/mongodb/mongo-tools"
+S="${WORKDIR}/src/${EGO_PN}"
+
+src_unpack() {
+ mkdir -p "${S%/*}" || die
+ default
+ mv ${MY_P} "${S}" || die
+}
+
+src_prepare() {
+ default
+
+ # allow building with go 1.12 #678924
+ sed -i 's/_Ctype_struct_/C.struct_/' vendor/github.com/google/gopacket/pcap/pcap.go || die
+}
+
+src_compile() {
+ local myconf=()
+
+ if use sasl; then
+ myconf+=(sasl)
+ fi
+
+ if use ssl; then
+ myconf+=(ssl)
+ fi
+
+ # build pie to avoid text relocations wrt #582854
+ local buildmode="pie"
+
+ # skip on ppc64 wrt #610984
+ if use ppc64; then
+ buildmode="default"
+ fi
+
+ mkdir -p bin || die
+ for i in bsondump mongostat mongofiles mongoexport mongoimport mongorestore mongodump mongotop mongoreplay; do
+ echo "Building $i"
+ GOROOT="$(go env GOROOT)" GOPATH="${WORKDIR}" go build -buildmode="${buildmode}" -o "bin/$i" \
+ -ldflags "-X ${EGO_PN}/common/options.VersionStr=${PV}" --tags "${myconf[*]}" "$i/main/$i.go" || die
+ done
+}
+
+src_install() {
+ dobin bin/*
+}
next reply other threads:[~2019-03-28 17:39 UTC|newest]
Thread overview: 115+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-03-28 17:39 Zac Medico [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-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-09 9:04 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=1553794747.75a8f7565c4012ebd30783559ed6c10b852f6b52.zmedico@gentoo \
--to=zmedico@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