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: Wed, 20 Jan 2016 12:46:04 +0000 (UTC) [thread overview]
Message-ID: <1453293955.fbc8450b0524c78b05330507a4b7ecb737a1fb5e.ultrabug@gentoo> (raw)
commit: fbc8450b0524c78b05330507a4b7ecb737a1fb5e
Author: Ultrabug <ultrabug <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 20 08:12:19 2016 +0000
Commit: Alexys Jacob <ultrabug <AT> gentoo <DOT> org>
CommitDate: Wed Jan 20 12:45:55 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbc8450b
app-admin/mongo-tools: version bump
Package-Manager: portage-2.2.27
app-admin/mongo-tools/Manifest | 1 +
app-admin/mongo-tools/mongo-tools-3.2.1.ebuild | 53 ++++++++++++++++++++++++++
2 files changed, 54 insertions(+)
diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index f2fba3b..5e0580d 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -3,3 +3,4 @@ DIST mongo-tools-3.0.6.tar.gz 2161424 SHA256 ed4ebb42efe99f1eeac5ed128f4ae9b10e1
DIST mongo-tools-3.0.7.tar.gz 2183495 SHA256 3136b8df6e7c81b5cf6609b3cd6113d69ea6c067d5bfd25b2e0dbabef9173ca0 SHA512 ff410f25a42e76f55716e6e478564aaeefd3999cf0e9db718969877709974d099c479690e81d6f639c27b0a4d9b59d193c43f1c31dc027b594f1fef33129cb5a WHIRLPOOL 3e3ac13de56c7abd5fd80dcfe5f94090aa78d240598ed0c879365b275bfab5da07aaf8c5b94ad27e3a6f7c0d24d6a68bbb5e54612b4fa2928efbf880c5c40dfc
DIST mongo-tools-3.0.8.tar.gz 2185550 SHA256 b9860339ed59ed57bb29b26c820578c690baa2aaec98fe743561cc95023815f1 SHA512 95ea8377aef747f66ce827300cbc38bfa5b660ad25e4d66cf0dc9899cfe81ff2a67e9383a22c08158fed2d622a6f4d3b315e1234fb6118f246ef17f9cffa129a WHIRLPOOL 00298e54c8fd17a51a3293101defee94219c46929862695e08b2c21a66e59290b341f07c89add38dacfa8295c3fe83ce61cd3911e7489ddd75c2a65721910cce
DIST mongo-tools-3.2.0.tar.gz 2216880 SHA256 ab477cd6705116971a021245bd4385957ce2a1867ff04f53d0c709c3a161a4c0 SHA512 8db68d0e89b1e7d7229bcb0a110fcd852cd808d7dbeb28952b5fc8c8a17252c1c65e4beb53f2ce68087c3e8a0ee2778cf7e46b7a2626d432221c8d0279cdddc6 WHIRLPOOL 30460a67b8c363d1f280e7b6c152731c7b8ff90670ce1c35729d70908ede14f46fd258c490798582d3a6ddebfcd14dbf95dae95d79eed519ba82c29b94d58120
+DIST mongo-tools-3.2.1.tar.gz 2226762 SHA256 e2a0527b8987ae954fc9ca071987b4c58ff53aa2bc0a4d8b03337f4d8aff1d89 SHA512 52e7402c232915e8bc481598a5f3a311ef7f4058448735ed14e142da180baf19aac95e641dbe58d0c71e114f35889d1cfa6a321114e4cf21edf7c525bf548249 WHIRLPOOL d0e30417f478c8f0aa7936638c0bec87f01dc278946dcde3187dbb060631126eaee2f0cdc535212cd2ad350f0c281d7398d66cb6416b7a0906d6c8e5d3cc5e19
diff --git a/app-admin/mongo-tools/mongo-tools-3.2.1.ebuild b/app-admin/mongo-tools/mongo-tools-3.2.1.ebuild
new file mode 100644
index 0000000..0a92d4b
--- /dev/null
+++ b/app-admin/mongo-tools/mongo-tools-3.2.1.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit eutils
+
+MY_PV=${PV/_rc/-rc}
+MY_P=${PN}-r${MY_PV}
+
+DESCRIPTION="A high-performance, open source, schema-free document-oriented database"
+HOMEPAGE="http://www.mongodb.org"
+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 ~x86"
+IUSE="sasl ssl"
+
+# Maintainer note:
+# openssl DEPEND constraint, see:
+# https://github.com/mongodb/mongo-tools/issues/11
+
+RDEPEND="!<dev-db/mongodb-3.0.0"
+DEPEND="${RDEPEND}
+ dev-lang/go:=
+ sasl? ( dev-libs/cyrus-sasl )
+ ssl? ( dev-libs/openssl )"
+
+S=${WORKDIR}/${MY_P}
+
+src_prepare() {
+ epatch "${FILESDIR}/${PN}-3.0.0-build.patch"
+}
+
+src_compile() {
+ local myconf
+
+ if use sasl; then
+ myconf="${myconf} sasl"
+ fi
+
+ if use ssl; then
+ myconf="${myconf} ssl"
+ fi
+
+ ./build.sh ${myconf}
+}
+
+src_install() {
+ dobin bin/*
+}
next reply other threads:[~2016-01-20 12:46 UTC|newest]
Thread overview: 116+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-01-20 12:46 Alexys Jacob [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-03-08 19:13 [gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/ Arthur Zamarin
2024-05-10 14:18 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-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
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=1453293955.fbc8450b0524c78b05330507a4b7ecb737a1fb5e.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