[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2024-05-10 Thread Alexys Jacob
commit: 42576b6b6ddadad851c5d8397332c3693989762e
Author: Robert Förster  gmake  de>
AuthorDate: Mon May  6 19:32:24 2024 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Fri May 10 14:18:18 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42576b6b

app-admin/mongo-tools: add 100.9.4

Signed-off-by: Robert Förster  gmake.de>
Signed-off-by: Alexys Jacob  gentoo.org>

 app-admin/mongo-tools/Manifest   |  1 +
 app-admin/mongo-tools/mongo-tools-100.9.4.ebuild | 67 
 2 files changed, 68 insertions(+)

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index 590e5d21aab4..0c29b3d0e43e 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -1,4 +1,5 @@
 DIST mongo-tools-100.4.1.tar.gz 3793073 BLAKE2B 
0a5dbd7a638035e7e54922c46be4473f154f79cb6370ca72f87dfee49ea1353ebf60ccf4d324b0bc6f5388b8c095f68f423aafdf83358ac41ad59d1215dce69c
 SHA512 
a6560f8ce2a86c1ae4400f3ef182f448991a238ef657bcd5eb6f98de0adb2cbd660a81ce00f3ca051f2db6d22a492158da9254b264424506669bf771d7a40fe6
 DIST mongo-tools-100.5.1.tar.gz 3796549 BLAKE2B 
6f95e1eb9f9c6c07725269f99dee0d940ffc5145e95b17b3e0a87f4cd60b1b0589a99a813c359f0b670bc34274fbd1f5b9c561caf07840bd85633174232a48ed
 SHA512 
a488b15a6862cacaccaeb57698d423e4ee710d395b1280a66382e140cb71fec84aa738f3819a87b4a71faecd9c9da7bd92780a19d6d11fdebaf5142e594b2028
+DIST mongo-tools-100.9.4.tar.gz 4742913 BLAKE2B 
12cb5b7e6c0164f5c026410a3143cd383b18ffc3498026bc568b888039980090289fc5e7ed48be292d33f3ecad38ce781fccc8db2aca6c913f567bce74de3be9
 SHA512 
3c857da4587d4c473b495d5bf9b5ce2e64b7fd8c831baa89b462e93f1090d297069e6be18514412c233f2dab6ed024c7db5523c1e623513734cdd0d8d6f7167f
 DIST mongo-tools-4.2.15.tar.gz 15028734 BLAKE2B 
7479c5d0d9b6051f51e563f53a5c704a69dc3719d9417b216bcc1a65220d0ab2c9441fd24d8ac8e5b1600766797ef102df07ebfd946ee60949d3287673dfbaaf
 SHA512 
f613ab61a4cf029548aa0e5623fef3798642ced791bf52f229e7d14d31de9472bfc3c8bfb3fa7b4542555a17c79ff9a514480c674cb3e45fb99c4f1745fdb9f0
 DIST mongo-tools-4.2.17.tar.gz 15028859 BLAKE2B 
dfd9165bd83571cb3ae134f13072e8a06707d714f28107a70e41e8bf507f87bb44ef32a27c15c188e6b831e8c33907f201cb7a3f217868e0a88e6c31efce0f79
 SHA512 
e59df0593caf93b44fe5694e07e37e49e9d4237007ae33f0156f773987cbaeb59c7b3da8012f9a9b07f4eb146f8392b2d2bbcad97309284b0d67238a69af2663

diff --git a/app-admin/mongo-tools/mongo-tools-100.9.4.ebuild 
b/app-admin/mongo-tools/mongo-tools-100.9.4.ebuild
new file mode 100644
index ..5f398ca3a28c
--- /dev/null
+++ b/app-admin/mongo-tools/mongo-tools-100.9.4.ebuild
@@ -0,0 +1,67 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+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/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv"
+IUSE="kerberos sasl ssl"
+
+DEPEND="dev-lang/go:=
+   kerberos? ( app-crypt/mit-krb5 )
+   sasl? ( dev-libs/cyrus-sasl )
+   ssl? ( dev-libs/openssl:0= )
+"
+BDEPEND="dev-lang/go:="
+
+# 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 ${P} "${S}" || die
+}
+
+src_compile() {
+   local myconf=()
+
+   if use kerberos; then
+   myconf+=(gssapi)
+   fi
+
+   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; 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}" 
-x --tags "${myconf[*]}" "$i/main/$i.go" || die
+   done
+}
+
+src_install() {
+   dobin bin/*
+}



[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2023-09-01 Thread Sam James
commit: 15aff651a034787d585be6bd25e26192dcffc190
Author: Sam James  gentoo  org>
AuthorDate: Fri Sep  1 14:11:39 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Sep  1 14:12:01 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15aff651

app-admin/mongo-tools: fix dev-lang/go dep

It should be a BDEPEND, not a DEPEND, and a subslot operator isn't really
appropriate here (and is at least unconventional).

Noticed after a discussion w/ parona.

Signed-off-by: Sam James  gentoo.org>

 .../{mongo-tools-100.4.1.ebuild => mongo-tools-100.4.1-r1.ebuild} | 8 +---
 .../{mongo-tools-100.5.1.ebuild => mongo-tools-100.5.1-r1.ebuild} | 8 +---
 .../{mongo-tools-4.2.15.ebuild => mongo-tools-4.2.15-r1.ebuild}   | 8 +---
 .../{mongo-tools-4.2.17.ebuild => mongo-tools-4.2.17-r1.ebuild}   | 8 +---
 4 files changed, 20 insertions(+), 12 deletions(-)

diff --git a/app-admin/mongo-tools/mongo-tools-100.4.1.ebuild 
b/app-admin/mongo-tools/mongo-tools-100.4.1-r1.ebuild
similarity index 92%
rename from app-admin/mongo-tools/mongo-tools-100.4.1.ebuild
rename to app-admin/mongo-tools/mongo-tools-100.4.1-r1.ebuild
index 52cc5e43f884..cd615af4e5cd 100644
--- a/app-admin/mongo-tools/mongo-tools-100.4.1.ebuild
+++ b/app-admin/mongo-tools/mongo-tools-100.4.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -12,10 +12,12 @@ SLOT="0"
 KEYWORDS="amd64 ~arm64 ~riscv"
 IUSE="sasl ssl"
 
-DEPEND="dev-lang/go:=
+DEPEND="
net-libs/libpcap
sasl? ( dev-libs/cyrus-sasl )
-   ssl? ( dev-libs/openssl:0= )"
+   ssl? ( dev-libs/openssl:0= )
+"
+BDEPEND="dev-lang/go"
 
 # Do not complain about CFLAGS etc since go projects do not use them.
 QA_FLAGS_IGNORED='.*'

diff --git a/app-admin/mongo-tools/mongo-tools-100.5.1.ebuild 
b/app-admin/mongo-tools/mongo-tools-100.5.1-r1.ebuild
similarity index 92%
rename from app-admin/mongo-tools/mongo-tools-100.5.1.ebuild
rename to app-admin/mongo-tools/mongo-tools-100.5.1-r1.ebuild
index 5fdee0d14afe..cd615af4e5cd 100644
--- a/app-admin/mongo-tools/mongo-tools-100.5.1.ebuild
+++ b/app-admin/mongo-tools/mongo-tools-100.5.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -12,10 +12,12 @@ SLOT="0"
 KEYWORDS="amd64 ~arm64 ~riscv"
 IUSE="sasl ssl"
 
-DEPEND="dev-lang/go:=
+DEPEND="
net-libs/libpcap
sasl? ( dev-libs/cyrus-sasl )
-   ssl? ( dev-libs/openssl:0= )"
+   ssl? ( dev-libs/openssl:0= )
+"
+BDEPEND="dev-lang/go"
 
 # Do not complain about CFLAGS etc since go projects do not use them.
 QA_FLAGS_IGNORED='.*'

diff --git a/app-admin/mongo-tools/mongo-tools-4.2.15.ebuild 
b/app-admin/mongo-tools/mongo-tools-4.2.15-r1.ebuild
similarity index 93%
rename from app-admin/mongo-tools/mongo-tools-4.2.15.ebuild
rename to app-admin/mongo-tools/mongo-tools-4.2.15-r1.ebuild
index 82253adc9ab4..18d33ebdac8a 100644
--- a/app-admin/mongo-tools/mongo-tools-4.2.15.ebuild
+++ b/app-admin/mongo-tools/mongo-tools-4.2.15-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -15,10 +15,12 @@ SLOT="0"
 KEYWORDS="amd64 ~arm64"
 IUSE="sasl ssl"
 
-DEPEND="dev-lang/go:=
+DEPEND="
net-libs/libpcap
sasl? ( dev-libs/cyrus-sasl )
-   ssl? ( dev-libs/openssl:0= )"
+   ssl? ( dev-libs/openssl:0= )
+"
+BDEPEND="dev-lang/go"
 
 # Do not complain about CFLAGS etc since go projects do not use them.
 QA_FLAGS_IGNORED='.*'

diff --git a/app-admin/mongo-tools/mongo-tools-4.2.17.ebuild 
b/app-admin/mongo-tools/mongo-tools-4.2.17-r1.ebuild
similarity index 93%
rename from app-admin/mongo-tools/mongo-tools-4.2.17.ebuild
rename to app-admin/mongo-tools/mongo-tools-4.2.17-r1.ebuild
index 1c622b0ee6a7..b241e07817c3 100644
--- a/app-admin/mongo-tools/mongo-tools-4.2.17.ebuild
+++ b/app-admin/mongo-tools/mongo-tools-4.2.17-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -15,10 +15,12 @@ SLOT="0"
 KEYWORDS="~amd64 ~arm64"
 IUSE="sasl ssl"
 
-DEPEND="dev-lang/go:=
+DEPEND="
net-libs/libpcap
sasl? ( dev-libs/cyrus-sasl )
-   ssl? ( dev-libs/openssl:0= )"
+   ssl? ( dev-libs/openssl:0= )
+"
+BDEPEND="dev-lang/go"
 
 # Do not complain about CFLAGS etc since go projects do not use them.
 QA_FLAGS_IGNORED='.*'



[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2022-06-01 Thread Sam James
commit: 174f02e27a1801443717a2df1a3a7c8b2fdf9111
Author: Sam James  gentoo  org>
AuthorDate: Thu Jun  2 03:59:51 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jun  2 03:59:51 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=174f02e2

app-admin/mongo-tools: Stabilize 100.5.1 amd64, #849053

Signed-off-by: Sam James  gentoo.org>

 app-admin/mongo-tools/mongo-tools-100.5.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-admin/mongo-tools/mongo-tools-100.5.1.ebuild 
b/app-admin/mongo-tools/mongo-tools-100.5.1.ebuild
index 5431dc042cab..5fdee0d14afe 100644
--- a/app-admin/mongo-tools/mongo-tools-100.5.1.ebuild
+++ b/app-admin/mongo-tools/mongo-tools-100.5.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -9,7 +9,7 @@ 
SRC_URI="https://github.com/mongodb/mongo-tools/archive/${PV}.tar.gz -> ${P}.tar
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv"
+KEYWORDS="amd64 ~arm64 ~riscv"
 IUSE="sasl ssl"
 
 DEPEND="dev-lang/go:=



[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2022-02-07 Thread Alexys Jacob
commit: 568a7b9e1a694dfd564725d82af3c2d502624e96
Author: Tomáš Mózes  gmail  com>
AuthorDate: Sun Dec 19 11:47:44 2021 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Mon Feb  7 13:21:45 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=568a7b9e

app-admin/mongo-tools: bump to 4.2.17/100.5.1

Signed-off-by: Tomáš Mózes  gmail.com>
Signed-off-by: Alexys Jacob  gentoo.org>

 app-admin/mongo-tools/Manifest   |  2 +
 app-admin/mongo-tools/mongo-tools-100.5.1.ebuild | 61 ++
 app-admin/mongo-tools/mongo-tools-4.2.17.ebuild  | 64 
 3 files changed, 127 insertions(+)

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index 1b1dfe7d6b65..1eeb51d4eb45 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -2,6 +2,8 @@ DIST mongo-tools-100.2.0.tar.gz 27401773 BLAKE2B 
359747ffe9e53e9ac62fa70517bd5e6
 DIST mongo-tools-100.2.1.tar.gz 27447213 BLAKE2B 
9db242b632cf9d15960e216c238ad13d2680b1aa6c0731bf0dc163055fd8488f36b6b9cc56d597f5b7d98a6798ed1cb9f8815aa2b4dce6b5977a591376177409
 SHA512 
ed913c42935e240b8b13b292a7dc12c12b6f6ee7538c6dd589a5e0998c333ebbf3822337c9d8368964fcdb7c8b1b5b1b86fbe654695e3bbb09463a5cddf42e38
 DIST mongo-tools-100.3.0.tar.gz 27514743 BLAKE2B 
4b64c1d42679f5297ca0065b4e5e094a7c5f5bf7082a727b7c49e1b3b3af563e8f4055e041a696ea3e94ad62a3f280ec3f02d8b102df6f68a561b99d8a80b565
 SHA512 
415cf1b3a1015bab7c507cd7af969d7b8de249b8692fb93593793e9881290aaab827649fc59850bc905a50ee003d23116b6595979e3ca48dfcf1e6c5c864b5a0
 DIST mongo-tools-100.4.1.tar.gz 3793073 BLAKE2B 
0a5dbd7a638035e7e54922c46be4473f154f79cb6370ca72f87dfee49ea1353ebf60ccf4d324b0bc6f5388b8c095f68f423aafdf83358ac41ad59d1215dce69c
 SHA512 
a6560f8ce2a86c1ae4400f3ef182f448991a238ef657bcd5eb6f98de0adb2cbd660a81ce00f3ca051f2db6d22a492158da9254b264424506669bf771d7a40fe6
+DIST mongo-tools-100.5.1.tar.gz 3796549 BLAKE2B 
6f95e1eb9f9c6c07725269f99dee0d940ffc5145e95b17b3e0a87f4cd60b1b0589a99a813c359f0b670bc34274fbd1f5b9c561caf07840bd85633174232a48ed
 SHA512 
a488b15a6862cacaccaeb57698d423e4ee710d395b1280a66382e140cb71fec84aa738f3819a87b4a71faecd9c9da7bd92780a19d6d11fdebaf5142e594b2028
 DIST mongo-tools-4.2.11.tar.gz 15028877 BLAKE2B 
8397ddfa553880680dabb3ca41801117431c75e9cf19c6145373b73c6da15b2be61e8673cec851872a0c481b221ac40e222754f9155c45f8a3e681e59272de6c
 SHA512 
b1e9812890447f2ad1ed96ea5a70e8bb16efdaea37224249c531a3adda559b789a392b9818711147d28df412d7a2e2a992bc13fdcd595e50e66eb7fbd8c32bd5
 DIST mongo-tools-4.2.12.tar.gz 15029039 BLAKE2B 
c2c87f6b329c4d094739fe215221fe507d2c685c4c56757b692e8f2de7a904f47fd92affcc9bbe227472efc09bdc97da78881b6ec2dbb03f79a34c42a3068ab3
 SHA512 
05cfef279c78ff1e929ccf47bee99a87cad70ede05bdac3f9226dc1e0c2688845233e51da69a2bb018d20b6f3ca4ae5301fb4f609e19f17636b4e5ac04fedb0f
 DIST mongo-tools-4.2.15.tar.gz 15028734 BLAKE2B 
7479c5d0d9b6051f51e563f53a5c704a69dc3719d9417b216bcc1a65220d0ab2c9441fd24d8ac8e5b1600766797ef102df07ebfd946ee60949d3287673dfbaaf
 SHA512 
f613ab61a4cf029548aa0e5623fef3798642ced791bf52f229e7d14d31de9472bfc3c8bfb3fa7b4542555a17c79ff9a514480c674cb3e45fb99c4f1745fdb9f0
+DIST mongo-tools-4.2.17.tar.gz 15028859 BLAKE2B 
dfd9165bd83571cb3ae134f13072e8a06707d714f28107a70e41e8bf507f87bb44ef32a27c15c188e6b831e8c33907f201cb7a3f217868e0a88e6c31efce0f79
 SHA512 
e59df0593caf93b44fe5694e07e37e49e9d4237007ae33f0156f773987cbaeb59c7b3da8012f9a9b07f4eb146f8392b2d2bbcad97309284b0d67238a69af2663

diff --git a/app-admin/mongo-tools/mongo-tools-100.5.1.ebuild 
b/app-admin/mongo-tools/mongo-tools-100.5.1.ebuild
new file mode 100644
index ..5431dc042cab
--- /dev/null
+++ b/app-admin/mongo-tools/mongo-tools-100.5.1.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+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/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv"
+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 ${P} "${S}" || 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 

[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2022-02-07 Thread Alexys Jacob
commit: 222aa5ce14a5a93d6775922f2238848a2a1434b7
Author: Tomáš Mózes  gmail  com>
AuthorDate: Sun Dec 19 11:49:55 2021 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Mon Feb  7 13:21:45 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=222aa5ce

app-admin/mongo-tools: drop old

Signed-off-by: Tomáš Mózes  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/23418
Signed-off-by: Alexys Jacob  gentoo.org>

 app-admin/mongo-tools/Manifest   |  5 --
 app-admin/mongo-tools/mongo-tools-100.2.0.ebuild | 61 
 app-admin/mongo-tools/mongo-tools-100.2.1.ebuild | 61 
 app-admin/mongo-tools/mongo-tools-100.3.0.ebuild | 61 
 app-admin/mongo-tools/mongo-tools-4.2.11.ebuild  | 71 
 app-admin/mongo-tools/mongo-tools-4.2.12.ebuild  | 64 -
 6 files changed, 323 deletions(-)

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index 1eeb51d4eb45..590e5d21aab4 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -1,9 +1,4 @@
-DIST mongo-tools-100.2.0.tar.gz 27401773 BLAKE2B 
359747ffe9e53e9ac62fa70517bd5e64c6b082076b9d54e325200cabbd9e3f7ab3aa9f96f7a84c60b044082e505e2ca4d6bdeac6f0b1ca0bfaa03583603a7962
 SHA512 
1b093482d3abfbd354ff6010f270836a13842fc6ff33126effb4e843beefeabc233bb610b423cac8ce8718366e7aa7411679e4cd5125d44a235f244f5ea49da5
-DIST mongo-tools-100.2.1.tar.gz 27447213 BLAKE2B 
9db242b632cf9d15960e216c238ad13d2680b1aa6c0731bf0dc163055fd8488f36b6b9cc56d597f5b7d98a6798ed1cb9f8815aa2b4dce6b5977a591376177409
 SHA512 
ed913c42935e240b8b13b292a7dc12c12b6f6ee7538c6dd589a5e0998c333ebbf3822337c9d8368964fcdb7c8b1b5b1b86fbe654695e3bbb09463a5cddf42e38
-DIST mongo-tools-100.3.0.tar.gz 27514743 BLAKE2B 
4b64c1d42679f5297ca0065b4e5e094a7c5f5bf7082a727b7c49e1b3b3af563e8f4055e041a696ea3e94ad62a3f280ec3f02d8b102df6f68a561b99d8a80b565
 SHA512 
415cf1b3a1015bab7c507cd7af969d7b8de249b8692fb93593793e9881290aaab827649fc59850bc905a50ee003d23116b6595979e3ca48dfcf1e6c5c864b5a0
 DIST mongo-tools-100.4.1.tar.gz 3793073 BLAKE2B 
0a5dbd7a638035e7e54922c46be4473f154f79cb6370ca72f87dfee49ea1353ebf60ccf4d324b0bc6f5388b8c095f68f423aafdf83358ac41ad59d1215dce69c
 SHA512 
a6560f8ce2a86c1ae4400f3ef182f448991a238ef657bcd5eb6f98de0adb2cbd660a81ce00f3ca051f2db6d22a492158da9254b264424506669bf771d7a40fe6
 DIST mongo-tools-100.5.1.tar.gz 3796549 BLAKE2B 
6f95e1eb9f9c6c07725269f99dee0d940ffc5145e95b17b3e0a87f4cd60b1b0589a99a813c359f0b670bc34274fbd1f5b9c561caf07840bd85633174232a48ed
 SHA512 
a488b15a6862cacaccaeb57698d423e4ee710d395b1280a66382e140cb71fec84aa738f3819a87b4a71faecd9c9da7bd92780a19d6d11fdebaf5142e594b2028
-DIST mongo-tools-4.2.11.tar.gz 15028877 BLAKE2B 
8397ddfa553880680dabb3ca41801117431c75e9cf19c6145373b73c6da15b2be61e8673cec851872a0c481b221ac40e222754f9155c45f8a3e681e59272de6c
 SHA512 
b1e9812890447f2ad1ed96ea5a70e8bb16efdaea37224249c531a3adda559b789a392b9818711147d28df412d7a2e2a992bc13fdcd595e50e66eb7fbd8c32bd5
-DIST mongo-tools-4.2.12.tar.gz 15029039 BLAKE2B 
c2c87f6b329c4d094739fe215221fe507d2c685c4c56757b692e8f2de7a904f47fd92affcc9bbe227472efc09bdc97da78881b6ec2dbb03f79a34c42a3068ab3
 SHA512 
05cfef279c78ff1e929ccf47bee99a87cad70ede05bdac3f9226dc1e0c2688845233e51da69a2bb018d20b6f3ca4ae5301fb4f609e19f17636b4e5ac04fedb0f
 DIST mongo-tools-4.2.15.tar.gz 15028734 BLAKE2B 
7479c5d0d9b6051f51e563f53a5c704a69dc3719d9417b216bcc1a65220d0ab2c9441fd24d8ac8e5b1600766797ef102df07ebfd946ee60949d3287673dfbaaf
 SHA512 
f613ab61a4cf029548aa0e5623fef3798642ced791bf52f229e7d14d31de9472bfc3c8bfb3fa7b4542555a17c79ff9a514480c674cb3e45fb99c4f1745fdb9f0
 DIST mongo-tools-4.2.17.tar.gz 15028859 BLAKE2B 
dfd9165bd83571cb3ae134f13072e8a06707d714f28107a70e41e8bf507f87bb44ef32a27c15c188e6b831e8c33907f201cb7a3f217868e0a88e6c31efce0f79
 SHA512 
e59df0593caf93b44fe5694e07e37e49e9d4237007ae33f0156f773987cbaeb59c7b3da8012f9a9b07f4eb146f8392b2d2bbcad97309284b0d67238a69af2663

diff --git a/app-admin/mongo-tools/mongo-tools-100.2.0.ebuild 
b/app-admin/mongo-tools/mongo-tools-100.2.0.ebuild
deleted file mode 100644
index 1a7e7c94b876..
--- a/app-admin/mongo-tools/mongo-tools-100.2.0.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-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/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm64"
-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 

[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2021-10-20 Thread Sam James
commit: fa50c098f813dc913e75680d2e8380dce8f81f78
Author: Sam James  gentoo  org>
AuthorDate: Wed Oct 20 06:57:44 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Oct 20 06:57:44 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa50c098

app-admin/mongo-tools: Stabilize 4.2.15 amd64, #809583

Signed-off-by: Sam James  gentoo.org>

 app-admin/mongo-tools/mongo-tools-4.2.15.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/mongo-tools/mongo-tools-4.2.15.ebuild 
b/app-admin/mongo-tools/mongo-tools-4.2.15.ebuild
index 1c622b0ee6a..82253adc9ab 100644
--- a/app-admin/mongo-tools/mongo-tools-4.2.15.ebuild
+++ b/app-admin/mongo-tools/mongo-tools-4.2.15.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/mongodb/mongo-tools/archive/r${MY_PV}.tar.gz -> mong
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64"
+KEYWORDS="amd64 ~arm64"
 IUSE="sasl ssl"
 
 DEPEND="dev-lang/go:=



[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2021-10-20 Thread Sam James
commit: 1ccb401f7c04d2dfa23e05245b4c70ac5536534d
Author: Sam James  gentoo  org>
AuthorDate: Wed Oct 20 06:57:43 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Oct 20 06:57:43 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ccb401f

app-admin/mongo-tools: Stabilize 100.4.1 amd64, #809583

Signed-off-by: Sam James  gentoo.org>

 app-admin/mongo-tools/mongo-tools-100.4.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/mongo-tools/mongo-tools-100.4.1.ebuild 
b/app-admin/mongo-tools/mongo-tools-100.4.1.ebuild
index 5431dc042ca..52cc5e43f88 100644
--- a/app-admin/mongo-tools/mongo-tools-100.4.1.ebuild
+++ b/app-admin/mongo-tools/mongo-tools-100.4.1.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="https://github.com/mongodb/mongo-tools/archive/${PV}.tar.gz -> ${P}.tar
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv"
+KEYWORDS="amd64 ~arm64 ~riscv"
 IUSE="sasl ssl"
 
 DEPEND="dev-lang/go:=



[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2021-08-19 Thread Alexys Jacob
commit: d0566d4248b7ee89816bfc8c7990849fb71ec26c
Author: Tomáš Mózes  gmail  com>
AuthorDate: Fri Aug  6 10:21:23 2021 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Thu Aug 19 16:38:10 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0566d42

app-admin/mongo-tools: bump to 4.2.15

Signed-off-by: Tomáš Mózes  gmail.com>
Signed-off-by: Alexys Jacob  gentoo.org>

 app-admin/mongo-tools/Manifest  |  1 +
 app-admin/mongo-tools/mongo-tools-4.2.15.ebuild | 64 +
 2 files changed, 65 insertions(+)

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index f88439232ef..0d6fd8627a5 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -3,3 +3,4 @@ DIST mongo-tools-100.2.1.tar.gz 27447213 BLAKE2B 
9db242b632cf9d15960e216c238ad13
 DIST mongo-tools-100.3.0.tar.gz 27514743 BLAKE2B 
4b64c1d42679f5297ca0065b4e5e094a7c5f5bf7082a727b7c49e1b3b3af563e8f4055e041a696ea3e94ad62a3f280ec3f02d8b102df6f68a561b99d8a80b565
 SHA512 
415cf1b3a1015bab7c507cd7af969d7b8de249b8692fb93593793e9881290aaab827649fc59850bc905a50ee003d23116b6595979e3ca48dfcf1e6c5c864b5a0
 DIST mongo-tools-4.2.11.tar.gz 15028877 BLAKE2B 
8397ddfa553880680dabb3ca41801117431c75e9cf19c6145373b73c6da15b2be61e8673cec851872a0c481b221ac40e222754f9155c45f8a3e681e59272de6c
 SHA512 
b1e9812890447f2ad1ed96ea5a70e8bb16efdaea37224249c531a3adda559b789a392b9818711147d28df412d7a2e2a992bc13fdcd595e50e66eb7fbd8c32bd5
 DIST mongo-tools-4.2.12.tar.gz 15029039 BLAKE2B 
c2c87f6b329c4d094739fe215221fe507d2c685c4c56757b692e8f2de7a904f47fd92affcc9bbe227472efc09bdc97da78881b6ec2dbb03f79a34c42a3068ab3
 SHA512 
05cfef279c78ff1e929ccf47bee99a87cad70ede05bdac3f9226dc1e0c2688845233e51da69a2bb018d20b6f3ca4ae5301fb4f609e19f17636b4e5ac04fedb0f
+DIST mongo-tools-4.2.15.tar.gz 15028734 BLAKE2B 
7479c5d0d9b6051f51e563f53a5c704a69dc3719d9417b216bcc1a65220d0ab2c9441fd24d8ac8e5b1600766797ef102df07ebfd946ee60949d3287673dfbaaf
 SHA512 
f613ab61a4cf029548aa0e5623fef3798642ced791bf52f229e7d14d31de9472bfc3c8bfb3fa7b4542555a17c79ff9a514480c674cb3e45fb99c4f1745fdb9f0

diff --git a/app-admin/mongo-tools/mongo-tools-4.2.15.ebuild 
b/app-admin/mongo-tools/mongo-tools-4.2.15.ebuild
new file mode 100644
index 000..1c622b0ee6a
--- /dev/null
+++ b/app-admin/mongo-tools/mongo-tools-4.2.15.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2021 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 ~arm64"
+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_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"
+   GO111MODULE='off' 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/*
+}



[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2021-08-19 Thread Alexys Jacob
commit: 9065d5c6556c21d1f4739609f187ed5ec40a2ad8
Author: Tomáš Mózes  gmail  com>
AuthorDate: Fri Aug  6 10:21:49 2021 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Thu Aug 19 16:38:12 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9065d5c6

app-admin/mongo-tools: bump to 100.4.1

Signed-off-by: Tomáš Mózes  gmail.com>
Signed-off-by: Alexys Jacob  gentoo.org>

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

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index 0d6fd8627a5..1b1dfe7d6b6 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -1,6 +1,7 @@
 DIST mongo-tools-100.2.0.tar.gz 27401773 BLAKE2B 
359747ffe9e53e9ac62fa70517bd5e64c6b082076b9d54e325200cabbd9e3f7ab3aa9f96f7a84c60b044082e505e2ca4d6bdeac6f0b1ca0bfaa03583603a7962
 SHA512 
1b093482d3abfbd354ff6010f270836a13842fc6ff33126effb4e843beefeabc233bb610b423cac8ce8718366e7aa7411679e4cd5125d44a235f244f5ea49da5
 DIST mongo-tools-100.2.1.tar.gz 27447213 BLAKE2B 
9db242b632cf9d15960e216c238ad13d2680b1aa6c0731bf0dc163055fd8488f36b6b9cc56d597f5b7d98a6798ed1cb9f8815aa2b4dce6b5977a591376177409
 SHA512 
ed913c42935e240b8b13b292a7dc12c12b6f6ee7538c6dd589a5e0998c333ebbf3822337c9d8368964fcdb7c8b1b5b1b86fbe654695e3bbb09463a5cddf42e38
 DIST mongo-tools-100.3.0.tar.gz 27514743 BLAKE2B 
4b64c1d42679f5297ca0065b4e5e094a7c5f5bf7082a727b7c49e1b3b3af563e8f4055e041a696ea3e94ad62a3f280ec3f02d8b102df6f68a561b99d8a80b565
 SHA512 
415cf1b3a1015bab7c507cd7af969d7b8de249b8692fb93593793e9881290aaab827649fc59850bc905a50ee003d23116b6595979e3ca48dfcf1e6c5c864b5a0
+DIST mongo-tools-100.4.1.tar.gz 3793073 BLAKE2B 
0a5dbd7a638035e7e54922c46be4473f154f79cb6370ca72f87dfee49ea1353ebf60ccf4d324b0bc6f5388b8c095f68f423aafdf83358ac41ad59d1215dce69c
 SHA512 
a6560f8ce2a86c1ae4400f3ef182f448991a238ef657bcd5eb6f98de0adb2cbd660a81ce00f3ca051f2db6d22a492158da9254b264424506669bf771d7a40fe6
 DIST mongo-tools-4.2.11.tar.gz 15028877 BLAKE2B 
8397ddfa553880680dabb3ca41801117431c75e9cf19c6145373b73c6da15b2be61e8673cec851872a0c481b221ac40e222754f9155c45f8a3e681e59272de6c
 SHA512 
b1e9812890447f2ad1ed96ea5a70e8bb16efdaea37224249c531a3adda559b789a392b9818711147d28df412d7a2e2a992bc13fdcd595e50e66eb7fbd8c32bd5
 DIST mongo-tools-4.2.12.tar.gz 15029039 BLAKE2B 
c2c87f6b329c4d094739fe215221fe507d2c685c4c56757b692e8f2de7a904f47fd92affcc9bbe227472efc09bdc97da78881b6ec2dbb03f79a34c42a3068ab3
 SHA512 
05cfef279c78ff1e929ccf47bee99a87cad70ede05bdac3f9226dc1e0c2688845233e51da69a2bb018d20b6f3ca4ae5301fb4f609e19f17636b4e5ac04fedb0f
 DIST mongo-tools-4.2.15.tar.gz 15028734 BLAKE2B 
7479c5d0d9b6051f51e563f53a5c704a69dc3719d9417b216bcc1a65220d0ab2c9441fd24d8ac8e5b1600766797ef102df07ebfd946ee60949d3287673dfbaaf
 SHA512 
f613ab61a4cf029548aa0e5623fef3798642ced791bf52f229e7d14d31de9472bfc3c8bfb3fa7b4542555a17c79ff9a514480c674cb3e45fb99c4f1745fdb9f0

diff --git a/app-admin/mongo-tools/mongo-tools-100.4.1.ebuild 
b/app-admin/mongo-tools/mongo-tools-100.4.1.ebuild
new file mode 100644
index 000..5431dc042ca
--- /dev/null
+++ b/app-admin/mongo-tools/mongo-tools-100.4.1.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+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/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv"
+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 ${P} "${S}" || 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; do
+   echo "Building $i"
+   GO111MODULE='off' 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/*
+}



[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2021-07-27 Thread Marek Szuba
commit: 5410c0759ccc5644b8a83efe52b61d1ad45cea77
Author: Marek Szuba  gentoo  org>
AuthorDate: Tue Jul 27 08:34:03 2021 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Tue Jul 27 10:59:50 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5410c075

app-admin/mongo-tools: keyword 100.3.0 for ~riscv

Signed-off-by: Marek Szuba  gentoo.org>

 app-admin/mongo-tools/mongo-tools-100.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/mongo-tools/mongo-tools-100.3.0.ebuild 
b/app-admin/mongo-tools/mongo-tools-100.3.0.ebuild
index 37f4e2f0f35..52cc5e43f88 100644
--- a/app-admin/mongo-tools/mongo-tools-100.3.0.ebuild
+++ b/app-admin/mongo-tools/mongo-tools-100.3.0.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="https://github.com/mongodb/mongo-tools/archive/${PV}.tar.gz -> ${P}.tar
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~arm64"
+KEYWORDS="amd64 ~arm64 ~riscv"
 IUSE="sasl ssl"
 
 DEPEND="dev-lang/go:=



[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2021-03-12 Thread Sam James
commit: 20b0241307a0abacf5f0410f3e32443b794d778c
Author: Sam James  gentoo  org>
AuthorDate: Fri Mar 12 15:24:15 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Mar 12 15:25:15 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20b02413

app-admin/mongo-tools: Stabilize 100.3.0 amd64, #771105

Signed-off-by: Sam James  gentoo.org>

 app-admin/mongo-tools/mongo-tools-100.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/mongo-tools/mongo-tools-100.3.0.ebuild 
b/app-admin/mongo-tools/mongo-tools-100.3.0.ebuild
index 2ce2eb68ad1..37f4e2f0f35 100644
--- a/app-admin/mongo-tools/mongo-tools-100.3.0.ebuild
+++ b/app-admin/mongo-tools/mongo-tools-100.3.0.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="https://github.com/mongodb/mongo-tools/archive/${PV}.tar.gz -> ${P}.tar
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64"
+KEYWORDS="amd64 ~arm64"
 IUSE="sasl ssl"
 
 DEPEND="dev-lang/go:=



[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2021-03-12 Thread Sam James
commit: c55492dcd3e67cd33d8b1572ebf6fb4937603278
Author: Sam James  gentoo  org>
AuthorDate: Fri Mar 12 15:24:16 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Mar 12 15:25:16 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c55492dc

app-admin/mongo-tools: Stabilize 4.2.12 amd64, #771105

Signed-off-by: Sam James  gentoo.org>

 app-admin/mongo-tools/mongo-tools-4.2.12.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/mongo-tools/mongo-tools-4.2.12.ebuild 
b/app-admin/mongo-tools/mongo-tools-4.2.12.ebuild
index 1c622b0ee6a..82253adc9ab 100644
--- a/app-admin/mongo-tools/mongo-tools-4.2.12.ebuild
+++ b/app-admin/mongo-tools/mongo-tools-4.2.12.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/mongodb/mongo-tools/archive/r${MY_PV}.tar.gz -> mong
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64"
+KEYWORDS="amd64 ~arm64"
 IUSE="sasl ssl"
 
 DEPEND="dev-lang/go:=



[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2021-03-07 Thread Thomas Deutschmann
commit: 82bec4739ebf4dde0ff88c7d7fc0accac157ccf3
Author: Tomáš Mózes  gmail  com>
AuthorDate: Fri Mar  5 17:49:30 2021 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Mar  7 15:50:24 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82bec473

app-admin/mongo-tools: drop old

Signed-off-by: Tomáš Mózes  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/19784
Signed-off-by: Thomas Deutschmann  gentoo.org>

 app-admin/mongo-tools/Manifest  | 10 
 app-admin/mongo-tools/mongo-tools-3.6.13.ebuild | 71 -
 app-admin/mongo-tools/mongo-tools-3.6.17.ebuild | 71 -
 app-admin/mongo-tools/mongo-tools-4.0.12.ebuild | 71 -
 app-admin/mongo-tools/mongo-tools-4.0.16.ebuild | 71 -
 app-admin/mongo-tools/mongo-tools-4.0.19.ebuild | 71 -
 app-admin/mongo-tools/mongo-tools-4.0.20.ebuild | 71 -
 app-admin/mongo-tools/mongo-tools-4.2.10.ebuild | 71 -
 app-admin/mongo-tools/mongo-tools-4.2.3.ebuild  | 71 -
 app-admin/mongo-tools/mongo-tools-4.2.6.ebuild  | 71 -
 app-admin/mongo-tools/mongo-tools-4.2.8.ebuild  | 71 -
 11 files changed, 720 deletions(-)

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index 457aaebce32..f88439232ef 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -1,15 +1,5 @@
 DIST mongo-tools-100.2.0.tar.gz 27401773 BLAKE2B 
359747ffe9e53e9ac62fa70517bd5e64c6b082076b9d54e325200cabbd9e3f7ab3aa9f96f7a84c60b044082e505e2ca4d6bdeac6f0b1ca0bfaa03583603a7962
 SHA512 
1b093482d3abfbd354ff6010f270836a13842fc6ff33126effb4e843beefeabc233bb610b423cac8ce8718366e7aa7411679e4cd5125d44a235f244f5ea49da5
 DIST mongo-tools-100.2.1.tar.gz 27447213 BLAKE2B 
9db242b632cf9d15960e216c238ad13d2680b1aa6c0731bf0dc163055fd8488f36b6b9cc56d597f5b7d98a6798ed1cb9f8815aa2b4dce6b5977a591376177409
 SHA512 
ed913c42935e240b8b13b292a7dc12c12b6f6ee7538c6dd589a5e0998c333ebbf3822337c9d8368964fcdb7c8b1b5b1b86fbe654695e3bbb09463a5cddf42e38
 DIST mongo-tools-100.3.0.tar.gz 27514743 BLAKE2B 
4b64c1d42679f5297ca0065b4e5e094a7c5f5bf7082a727b7c49e1b3b3af563e8f4055e041a696ea3e94ad62a3f280ec3f02d8b102df6f68a561b99d8a80b565
 SHA512 
415cf1b3a1015bab7c507cd7af969d7b8de249b8692fb93593793e9881290aaab827649fc59850bc905a50ee003d23116b6595979e3ca48dfcf1e6c5c864b5a0
-DIST mongo-tools-3.6.13.tar.gz 4990848 BLAKE2B 
022ddf214869c3a3e545aa9572f77f0adc21c0dbd6ea6ad9e083633c2e972b7ef77c0bda4354dbde9fd0e23c6dd02a7de8873d4b2c2a3e4423ea6f8e1c23ed52
 SHA512 
fac21c4841bfecba11a7765bb6c36d1fa19d4dd94f6f4168fa767fc11dc8b3caf04a5029becd09eba01dd694274e9cc22da8566ce878769e5c3c97016c162432
-DIST mongo-tools-3.6.17.tar.gz 4991196 BLAKE2B 
53e86b3513aa74ad174801cea987d574c5248f438cb0a9419c2352c04333eae2f92214b11c59ee8688ad7235dc7a4586c39cc27450c654b1fc0e2eec2e4e22e2
 SHA512 
ea7a010097fdfe7807daf9352519b808b4a7b614b793ee2ac27495207bcf1cf8b4151fecd525946a0d6b8aa9332c205f437d5141b16efb613810963f502061be
-DIST mongo-tools-4.0.12.tar.gz 11134652 BLAKE2B 
d3c9703046dc577b85cefe1185678e0029411ddd44d0648f9b09fc3ab41e3661891d18afd83bf1a148dc4c9208895f444c115948e515e09dfa3062e89d98fc24
 SHA512 
068d8c456386caddcce23fa8917ffecdc9b5c39fb6794c5cd1d9099be1f127ecf680b006055581dc3d90507072a87788b46be7410f0dbede42da64c664b77ced
-DIST mongo-tools-4.0.16.tar.gz 11139827 BLAKE2B 
550acfd7e4434b178170dfd94c65668cb7dd37d128235c63a10f72802e3119f33d5cd2138bfd5b957f6d3813f1d9aff49218c4e122c0cd454b4ea7a969c84d4e
 SHA512 
a75831d9fd0b596bfb7354cbc05d1ecf6871d5a7230a858b09b94d5001d18069c9cbe89c9500e9c1a16fc5186fa7a1ac59c60515a3f1a2d7c81115a47c16
-DIST mongo-tools-4.0.19.tar.gz 11139649 BLAKE2B 
7e730138fce671e18a0ebe929b98eff1c0ce2c364ceef7d6868c380242689411c545ac321aebd609dcfe9f8d5b7d35cf37973a978f35a50cc44902b2dbad7134
 SHA512 
2639cb27a5a27e405bddf9817f409af244d643a9091f7e5ddff4876966af55b6710b0fe158c351df9aea10f3da0b87d224bfb2c962f4ca2cfe41f804cb16749c
-DIST mongo-tools-4.0.20.tar.gz 11139655 BLAKE2B 
e3ea8ad500af3a023674bbdb9084fea854338fc3791f833acb77bfdd3e3a15fbe361162021e8ec85917a8b3e1992fb4fd6a109ad40489c01788835bce359d2a0
 SHA512 
a9413d79a3c3219e6f48c5dcd927f2cd24d138e5215b5e7fca92276b072b17c3c7a3528b9112450e1346405345f426ce0fb4324bed5167ed817750b3955e4262
-DIST mongo-tools-4.2.10.tar.gz 15026566 BLAKE2B 
28dfef83ca4f3e16b4adbfeb26499cdfda64fe66de2906f56e7cdb56a9be01dd896c858c581aa4347235ca83a6e3a2836e6184ae6587b9d707934c699b561fe6
 SHA512 
5e937811d9c1146a7b5f2fd743e5d05f4f2a571972c34760e7911d240cc3ea1a0a5ccd451874b7cf635bc603e6bc1e7e8d4aa4b20c17abc77fde78cb4aa25934
 DIST mongo-tools-4.2.11.tar.gz 15028877 BLAKE2B 
8397ddfa553880680dabb3ca41801117431c75e9cf19c6145373b73c6da15b2be61e8673cec851872a0c481b221ac40e222754f9155c45f8a3e681e59272de6c
 SHA512 

[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2021-03-07 Thread Thomas Deutschmann
commit: cd01c1c5e356c7d31a63144321dc2c9fa9ed7ce8
Author: Tomáš Mózes  gmail  com>
AuthorDate: Fri Mar  5 17:47:46 2021 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Mar  7 15:50:22 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd01c1c5

app-admin/mongo-tools: bump to 4.2.12 / 100.3.0

Closes: https://bugs.gentoo.org/771105
Thanks-to:  Ryan Qian  bitbili.net>
Signed-off-by: Tomáš Mózes  gmail.com>
Signed-off-by: Thomas Deutschmann  gentoo.org>

 app-admin/mongo-tools/Manifest   |  2 +
 app-admin/mongo-tools/mongo-tools-100.3.0.ebuild | 61 ++
 app-admin/mongo-tools/mongo-tools-4.2.12.ebuild  | 64 
 3 files changed, 127 insertions(+)

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index baf48bd192e..457aaebce32 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -1,5 +1,6 @@
 DIST mongo-tools-100.2.0.tar.gz 27401773 BLAKE2B 
359747ffe9e53e9ac62fa70517bd5e64c6b082076b9d54e325200cabbd9e3f7ab3aa9f96f7a84c60b044082e505e2ca4d6bdeac6f0b1ca0bfaa03583603a7962
 SHA512 
1b093482d3abfbd354ff6010f270836a13842fc6ff33126effb4e843beefeabc233bb610b423cac8ce8718366e7aa7411679e4cd5125d44a235f244f5ea49da5
 DIST mongo-tools-100.2.1.tar.gz 27447213 BLAKE2B 
9db242b632cf9d15960e216c238ad13d2680b1aa6c0731bf0dc163055fd8488f36b6b9cc56d597f5b7d98a6798ed1cb9f8815aa2b4dce6b5977a591376177409
 SHA512 
ed913c42935e240b8b13b292a7dc12c12b6f6ee7538c6dd589a5e0998c333ebbf3822337c9d8368964fcdb7c8b1b5b1b86fbe654695e3bbb09463a5cddf42e38
+DIST mongo-tools-100.3.0.tar.gz 27514743 BLAKE2B 
4b64c1d42679f5297ca0065b4e5e094a7c5f5bf7082a727b7c49e1b3b3af563e8f4055e041a696ea3e94ad62a3f280ec3f02d8b102df6f68a561b99d8a80b565
 SHA512 
415cf1b3a1015bab7c507cd7af969d7b8de249b8692fb93593793e9881290aaab827649fc59850bc905a50ee003d23116b6595979e3ca48dfcf1e6c5c864b5a0
 DIST mongo-tools-3.6.13.tar.gz 4990848 BLAKE2B 
022ddf214869c3a3e545aa9572f77f0adc21c0dbd6ea6ad9e083633c2e972b7ef77c0bda4354dbde9fd0e23c6dd02a7de8873d4b2c2a3e4423ea6f8e1c23ed52
 SHA512 
fac21c4841bfecba11a7765bb6c36d1fa19d4dd94f6f4168fa767fc11dc8b3caf04a5029becd09eba01dd694274e9cc22da8566ce878769e5c3c97016c162432
 DIST mongo-tools-3.6.17.tar.gz 4991196 BLAKE2B 
53e86b3513aa74ad174801cea987d574c5248f438cb0a9419c2352c04333eae2f92214b11c59ee8688ad7235dc7a4586c39cc27450c654b1fc0e2eec2e4e22e2
 SHA512 
ea7a010097fdfe7807daf9352519b808b4a7b614b793ee2ac27495207bcf1cf8b4151fecd525946a0d6b8aa9332c205f437d5141b16efb613810963f502061be
 DIST mongo-tools-4.0.12.tar.gz 11134652 BLAKE2B 
d3c9703046dc577b85cefe1185678e0029411ddd44d0648f9b09fc3ab41e3661891d18afd83bf1a148dc4c9208895f444c115948e515e09dfa3062e89d98fc24
 SHA512 
068d8c456386caddcce23fa8917ffecdc9b5c39fb6794c5cd1d9099be1f127ecf680b006055581dc3d90507072a87788b46be7410f0dbede42da64c664b77ced
@@ -8,6 +9,7 @@ DIST mongo-tools-4.0.19.tar.gz 11139649 BLAKE2B 
7e730138fce671e18a0ebe929b98eff1
 DIST mongo-tools-4.0.20.tar.gz 11139655 BLAKE2B 
e3ea8ad500af3a023674bbdb9084fea854338fc3791f833acb77bfdd3e3a15fbe361162021e8ec85917a8b3e1992fb4fd6a109ad40489c01788835bce359d2a0
 SHA512 
a9413d79a3c3219e6f48c5dcd927f2cd24d138e5215b5e7fca92276b072b17c3c7a3528b9112450e1346405345f426ce0fb4324bed5167ed817750b3955e4262
 DIST mongo-tools-4.2.10.tar.gz 15026566 BLAKE2B 
28dfef83ca4f3e16b4adbfeb26499cdfda64fe66de2906f56e7cdb56a9be01dd896c858c581aa4347235ca83a6e3a2836e6184ae6587b9d707934c699b561fe6
 SHA512 
5e937811d9c1146a7b5f2fd743e5d05f4f2a571972c34760e7911d240cc3ea1a0a5ccd451874b7cf635bc603e6bc1e7e8d4aa4b20c17abc77fde78cb4aa25934
 DIST mongo-tools-4.2.11.tar.gz 15028877 BLAKE2B 
8397ddfa553880680dabb3ca41801117431c75e9cf19c6145373b73c6da15b2be61e8673cec851872a0c481b221ac40e222754f9155c45f8a3e681e59272de6c
 SHA512 
b1e9812890447f2ad1ed96ea5a70e8bb16efdaea37224249c531a3adda559b789a392b9818711147d28df412d7a2e2a992bc13fdcd595e50e66eb7fbd8c32bd5
+DIST mongo-tools-4.2.12.tar.gz 15029039 BLAKE2B 
c2c87f6b329c4d094739fe215221fe507d2c685c4c56757b692e8f2de7a904f47fd92affcc9bbe227472efc09bdc97da78881b6ec2dbb03f79a34c42a3068ab3
 SHA512 
05cfef279c78ff1e929ccf47bee99a87cad70ede05bdac3f9226dc1e0c2688845233e51da69a2bb018d20b6f3ca4ae5301fb4f609e19f17636b4e5ac04fedb0f
 DIST mongo-tools-4.2.3.tar.gz 15020325 BLAKE2B 
8501a3ec6e947112ec561ce62f2ea568984f8ac911a7aff3cb8c08c1f29d2cfc64cf7f4b6a24ba73ae0f9b2b5853480f4fbed51c98fdc8c83cd433ea65e21dba
 SHA512 
772719b450f8b656c22ac0126fee1e0fa58b5320c94ac6414b1d9af13e6437393c2482f2e386f4a73c84a2d1bfe0ea88df117a6a7ae87f4884477505cf662585
 DIST mongo-tools-4.2.6.tar.gz 15016596 BLAKE2B 
5ee37bf21ea05ec5ba2764c935c1dd3632753e772a01f854dc8a9949620e9a41fe95ba658a0efae0332ed2c059561e39e681f672cf5f4302a7f92c364cfab4b6
 SHA512 
e91bfba4b015f80d35b6c2ca766c599c5eedea113d6415ec0aef433d46b5e5fe06956481a063e26908a45fdcee4002125ea01a29fa3ea9a541a9210d25625f8e
 DIST mongo-tools-4.2.8.tar.gz 15021497 BLAKE2B 

[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2021-02-18 Thread Sam James
commit: 3ed5fb36545dcd3e482adac9b9fd5cba07b0fa16
Author: Sam James  gentoo  org>
AuthorDate: Thu Feb 18 08:39:08 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Feb 18 08:39:08 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ed5fb36

app-admin/mongo-tools: Stabilize 4.2.11 amd64, #760827

Signed-off-by: Sam James  gentoo.org>

 app-admin/mongo-tools/mongo-tools-4.2.11.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-admin/mongo-tools/mongo-tools-4.2.11.ebuild 
b/app-admin/mongo-tools/mongo-tools-4.2.11.ebuild
index 7d8cc9a0ebc..5b413edfa2e 100644
--- a/app-admin/mongo-tools/mongo-tools-4.2.11.ebuild
+++ b/app-admin/mongo-tools/mongo-tools-4.2.11.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/mongodb/mongo-tools/archive/r${MY_PV}.tar.gz -> mong
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64"
+KEYWORDS="amd64 ~arm64"
 IUSE="sasl ssl"
 
 DEPEND="dev-lang/go:=



[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2020-12-03 Thread Thomas Deutschmann
commit: fe4075240f7d11dd4fcb0da0ea0dd1e262221b20
Author: Tomáš Mózes  gmail  com>
AuthorDate: Thu Dec  3 10:49:44 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Dec  3 20:34:23 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe407524

app-admin/mongo-tools: bump to 4.2.11 / 100.2.1

Signed-off-by: Tomáš Mózes  gmail.com>
Signed-off-by: Thomas Deutschmann  gentoo.org>

 app-admin/mongo-tools/Manifest   |  2 +
 app-admin/mongo-tools/mongo-tools-100.2.1.ebuild | 61 
 app-admin/mongo-tools/mongo-tools-4.2.11.ebuild  | 71 
 3 files changed, 134 insertions(+)

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index 748af4fd1f0..baf48bd192e 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -1,4 +1,5 @@
 DIST mongo-tools-100.2.0.tar.gz 27401773 BLAKE2B 
359747ffe9e53e9ac62fa70517bd5e64c6b082076b9d54e325200cabbd9e3f7ab3aa9f96f7a84c60b044082e505e2ca4d6bdeac6f0b1ca0bfaa03583603a7962
 SHA512 
1b093482d3abfbd354ff6010f270836a13842fc6ff33126effb4e843beefeabc233bb610b423cac8ce8718366e7aa7411679e4cd5125d44a235f244f5ea49da5
+DIST mongo-tools-100.2.1.tar.gz 27447213 BLAKE2B 
9db242b632cf9d15960e216c238ad13d2680b1aa6c0731bf0dc163055fd8488f36b6b9cc56d597f5b7d98a6798ed1cb9f8815aa2b4dce6b5977a591376177409
 SHA512 
ed913c42935e240b8b13b292a7dc12c12b6f6ee7538c6dd589a5e0998c333ebbf3822337c9d8368964fcdb7c8b1b5b1b86fbe654695e3bbb09463a5cddf42e38
 DIST mongo-tools-3.6.13.tar.gz 4990848 BLAKE2B 
022ddf214869c3a3e545aa9572f77f0adc21c0dbd6ea6ad9e083633c2e972b7ef77c0bda4354dbde9fd0e23c6dd02a7de8873d4b2c2a3e4423ea6f8e1c23ed52
 SHA512 
fac21c4841bfecba11a7765bb6c36d1fa19d4dd94f6f4168fa767fc11dc8b3caf04a5029becd09eba01dd694274e9cc22da8566ce878769e5c3c97016c162432
 DIST mongo-tools-3.6.17.tar.gz 4991196 BLAKE2B 
53e86b3513aa74ad174801cea987d574c5248f438cb0a9419c2352c04333eae2f92214b11c59ee8688ad7235dc7a4586c39cc27450c654b1fc0e2eec2e4e22e2
 SHA512 
ea7a010097fdfe7807daf9352519b808b4a7b614b793ee2ac27495207bcf1cf8b4151fecd525946a0d6b8aa9332c205f437d5141b16efb613810963f502061be
 DIST mongo-tools-4.0.12.tar.gz 11134652 BLAKE2B 
d3c9703046dc577b85cefe1185678e0029411ddd44d0648f9b09fc3ab41e3661891d18afd83bf1a148dc4c9208895f444c115948e515e09dfa3062e89d98fc24
 SHA512 
068d8c456386caddcce23fa8917ffecdc9b5c39fb6794c5cd1d9099be1f127ecf680b006055581dc3d90507072a87788b46be7410f0dbede42da64c664b77ced
@@ -6,6 +7,7 @@ DIST mongo-tools-4.0.16.tar.gz 11139827 BLAKE2B 
550acfd7e4434b178170dfd94c65668c
 DIST mongo-tools-4.0.19.tar.gz 11139649 BLAKE2B 
7e730138fce671e18a0ebe929b98eff1c0ce2c364ceef7d6868c380242689411c545ac321aebd609dcfe9f8d5b7d35cf37973a978f35a50cc44902b2dbad7134
 SHA512 
2639cb27a5a27e405bddf9817f409af244d643a9091f7e5ddff4876966af55b6710b0fe158c351df9aea10f3da0b87d224bfb2c962f4ca2cfe41f804cb16749c
 DIST mongo-tools-4.0.20.tar.gz 11139655 BLAKE2B 
e3ea8ad500af3a023674bbdb9084fea854338fc3791f833acb77bfdd3e3a15fbe361162021e8ec85917a8b3e1992fb4fd6a109ad40489c01788835bce359d2a0
 SHA512 
a9413d79a3c3219e6f48c5dcd927f2cd24d138e5215b5e7fca92276b072b17c3c7a3528b9112450e1346405345f426ce0fb4324bed5167ed817750b3955e4262
 DIST mongo-tools-4.2.10.tar.gz 15026566 BLAKE2B 
28dfef83ca4f3e16b4adbfeb26499cdfda64fe66de2906f56e7cdb56a9be01dd896c858c581aa4347235ca83a6e3a2836e6184ae6587b9d707934c699b561fe6
 SHA512 
5e937811d9c1146a7b5f2fd743e5d05f4f2a571972c34760e7911d240cc3ea1a0a5ccd451874b7cf635bc603e6bc1e7e8d4aa4b20c17abc77fde78cb4aa25934
+DIST mongo-tools-4.2.11.tar.gz 15028877 BLAKE2B 
8397ddfa553880680dabb3ca41801117431c75e9cf19c6145373b73c6da15b2be61e8673cec851872a0c481b221ac40e222754f9155c45f8a3e681e59272de6c
 SHA512 
b1e9812890447f2ad1ed96ea5a70e8bb16efdaea37224249c531a3adda559b789a392b9818711147d28df412d7a2e2a992bc13fdcd595e50e66eb7fbd8c32bd5
 DIST mongo-tools-4.2.3.tar.gz 15020325 BLAKE2B 
8501a3ec6e947112ec561ce62f2ea568984f8ac911a7aff3cb8c08c1f29d2cfc64cf7f4b6a24ba73ae0f9b2b5853480f4fbed51c98fdc8c83cd433ea65e21dba
 SHA512 
772719b450f8b656c22ac0126fee1e0fa58b5320c94ac6414b1d9af13e6437393c2482f2e386f4a73c84a2d1bfe0ea88df117a6a7ae87f4884477505cf662585
 DIST mongo-tools-4.2.6.tar.gz 15016596 BLAKE2B 
5ee37bf21ea05ec5ba2764c935c1dd3632753e772a01f854dc8a9949620e9a41fe95ba658a0efae0332ed2c059561e39e681f672cf5f4302a7f92c364cfab4b6
 SHA512 
e91bfba4b015f80d35b6c2ca766c599c5eedea113d6415ec0aef433d46b5e5fe06956481a063e26908a45fdcee4002125ea01a29fa3ea9a541a9210d25625f8e
 DIST mongo-tools-4.2.8.tar.gz 15021497 BLAKE2B 
e066c299462167754e0752079f35fef25b387eb1df0631ff0e0b783a8a14c4b68c6ed126ec3429f63de87b87b9fdde6a2645badd53ac1386befc7175a61a999e
 SHA512 
c0fca14c60e5f399934f4dfad5be832684d2c1a1145967a4c395b246774f73f71e506bff902a634b7f08f7133304c09f14eb56a1a6fc8585608f537e59d9c899

diff --git a/app-admin/mongo-tools/mongo-tools-100.2.1.ebuild 
b/app-admin/mongo-tools/mongo-tools-100.2.1.ebuild
new file mode 100644
index 000..a60bc8a3e1a
--- /dev/null
+++ 

[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2020-12-02 Thread Sam James
commit: b7215d58c210f0b250eaf2ac0078299fc4ad3a3a
Author: Sam James  gentoo  org>
AuthorDate: Thu Dec  3 04:34:21 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Dec  3 04:34:21 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7215d58

app-admin/mongo-tools: Stabilize 100.2.0 amd64, #758104

Signed-off-by: Sam James  gentoo.org>

 app-admin/mongo-tools/mongo-tools-100.2.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/mongo-tools/mongo-tools-100.2.0.ebuild 
b/app-admin/mongo-tools/mongo-tools-100.2.0.ebuild
index a60bc8a3e1a..1a7e7c94b87 100644
--- a/app-admin/mongo-tools/mongo-tools-100.2.0.ebuild
+++ b/app-admin/mongo-tools/mongo-tools-100.2.0.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="https://github.com/mongodb/mongo-tools/archive/${PV}.tar.gz -> ${P}.tar
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64"
+KEYWORDS="amd64 ~arm64"
 IUSE="sasl ssl"
 
 DEPEND="dev-lang/go:=



[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2020-11-09 Thread Alexys Jacob
commit: 50fa1dd963fec1be71ab085bc7896c981a0c24f5
Author: Tomáš Mózes  gmail  com>
AuthorDate: Fri Nov  6 06:30:08 2020 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Mon Nov  9 14:11:12 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50fa1dd9

app-admin/mongo-tools: bump to 4.0.20/4.2.10

Signed-off-by: Tomáš Mózes  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/18142
Signed-off-by: Alexys Jacob  gentoo.org>

 app-admin/mongo-tools/Manifest  |  2 +
 app-admin/mongo-tools/mongo-tools-4.0.20.ebuild | 71 +
 app-admin/mongo-tools/mongo-tools-4.2.10.ebuild | 71 +
 3 files changed, 144 insertions(+)

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index d5da4ec003e..b74867df2d2 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -3,6 +3,8 @@ DIST mongo-tools-3.6.17.tar.gz 4991196 BLAKE2B 
53e86b3513aa74ad174801cea987d574c
 DIST mongo-tools-4.0.12.tar.gz 11134652 BLAKE2B 
d3c9703046dc577b85cefe1185678e0029411ddd44d0648f9b09fc3ab41e3661891d18afd83bf1a148dc4c9208895f444c115948e515e09dfa3062e89d98fc24
 SHA512 
068d8c456386caddcce23fa8917ffecdc9b5c39fb6794c5cd1d9099be1f127ecf680b006055581dc3d90507072a87788b46be7410f0dbede42da64c664b77ced
 DIST mongo-tools-4.0.16.tar.gz 11139827 BLAKE2B 
550acfd7e4434b178170dfd94c65668cb7dd37d128235c63a10f72802e3119f33d5cd2138bfd5b957f6d3813f1d9aff49218c4e122c0cd454b4ea7a969c84d4e
 SHA512 
a75831d9fd0b596bfb7354cbc05d1ecf6871d5a7230a858b09b94d5001d18069c9cbe89c9500e9c1a16fc5186fa7a1ac59c60515a3f1a2d7c81115a47c16
 DIST mongo-tools-4.0.19.tar.gz 11139649 BLAKE2B 
7e730138fce671e18a0ebe929b98eff1c0ce2c364ceef7d6868c380242689411c545ac321aebd609dcfe9f8d5b7d35cf37973a978f35a50cc44902b2dbad7134
 SHA512 
2639cb27a5a27e405bddf9817f409af244d643a9091f7e5ddff4876966af55b6710b0fe158c351df9aea10f3da0b87d224bfb2c962f4ca2cfe41f804cb16749c
+DIST mongo-tools-4.0.20.tar.gz 11139655 BLAKE2B 
e3ea8ad500af3a023674bbdb9084fea854338fc3791f833acb77bfdd3e3a15fbe361162021e8ec85917a8b3e1992fb4fd6a109ad40489c01788835bce359d2a0
 SHA512 
a9413d79a3c3219e6f48c5dcd927f2cd24d138e5215b5e7fca92276b072b17c3c7a3528b9112450e1346405345f426ce0fb4324bed5167ed817750b3955e4262
+DIST mongo-tools-4.2.10.tar.gz 15026566 BLAKE2B 
28dfef83ca4f3e16b4adbfeb26499cdfda64fe66de2906f56e7cdb56a9be01dd896c858c581aa4347235ca83a6e3a2836e6184ae6587b9d707934c699b561fe6
 SHA512 
5e937811d9c1146a7b5f2fd743e5d05f4f2a571972c34760e7911d240cc3ea1a0a5ccd451874b7cf635bc603e6bc1e7e8d4aa4b20c17abc77fde78cb4aa25934
 DIST mongo-tools-4.2.3.tar.gz 15020325 BLAKE2B 
8501a3ec6e947112ec561ce62f2ea568984f8ac911a7aff3cb8c08c1f29d2cfc64cf7f4b6a24ba73ae0f9b2b5853480f4fbed51c98fdc8c83cd433ea65e21dba
 SHA512 
772719b450f8b656c22ac0126fee1e0fa58b5320c94ac6414b1d9af13e6437393c2482f2e386f4a73c84a2d1bfe0ea88df117a6a7ae87f4884477505cf662585
 DIST mongo-tools-4.2.6.tar.gz 15016596 BLAKE2B 
5ee37bf21ea05ec5ba2764c935c1dd3632753e772a01f854dc8a9949620e9a41fe95ba658a0efae0332ed2c059561e39e681f672cf5f4302a7f92c364cfab4b6
 SHA512 
e91bfba4b015f80d35b6c2ca766c599c5eedea113d6415ec0aef433d46b5e5fe06956481a063e26908a45fdcee4002125ea01a29fa3ea9a541a9210d25625f8e
 DIST mongo-tools-4.2.8.tar.gz 15021497 BLAKE2B 
e066c299462167754e0752079f35fef25b387eb1df0631ff0e0b783a8a14c4b68c6ed126ec3429f63de87b87b9fdde6a2645badd53ac1386befc7175a61a999e
 SHA512 
c0fca14c60e5f399934f4dfad5be832684d2c1a1145967a4c395b246774f73f71e506bff902a634b7f08f7133304c09f14eb56a1a6fc8585608f537e59d9c899

diff --git a/app-admin/mongo-tools/mongo-tools-4.0.20.ebuild 
b/app-admin/mongo-tools/mongo-tools-4.0.20.ebuild
new file mode 100644
index 000..86f626904b9
--- /dev/null
+++ b/app-admin/mongo-tools/mongo-tools-4.0.20.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2020 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
+   

[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2020-11-09 Thread Alexys Jacob
commit: 49f2eff9ca5d67ecdfe1e6646ebe1aa789ea0201
Author: Tomáš Mózes  gmail  com>
AuthorDate: Mon Nov  9 13:44:00 2020 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Mon Nov  9 14:11:42 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49f2eff9

app-admin/mongo-tools: bump to 100.2.0

Signed-off-by: Tomáš Mózes  gmail.com>
Signed-off-by: Alexys Jacob  gentoo.org>

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

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index b74867df2d2..748af4fd1f0 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -1,3 +1,4 @@
+DIST mongo-tools-100.2.0.tar.gz 27401773 BLAKE2B 
359747ffe9e53e9ac62fa70517bd5e64c6b082076b9d54e325200cabbd9e3f7ab3aa9f96f7a84c60b044082e505e2ca4d6bdeac6f0b1ca0bfaa03583603a7962
 SHA512 
1b093482d3abfbd354ff6010f270836a13842fc6ff33126effb4e843beefeabc233bb610b423cac8ce8718366e7aa7411679e4cd5125d44a235f244f5ea49da5
 DIST mongo-tools-3.6.13.tar.gz 4990848 BLAKE2B 
022ddf214869c3a3e545aa9572f77f0adc21c0dbd6ea6ad9e083633c2e972b7ef77c0bda4354dbde9fd0e23c6dd02a7de8873d4b2c2a3e4423ea6f8e1c23ed52
 SHA512 
fac21c4841bfecba11a7765bb6c36d1fa19d4dd94f6f4168fa767fc11dc8b3caf04a5029becd09eba01dd694274e9cc22da8566ce878769e5c3c97016c162432
 DIST mongo-tools-3.6.17.tar.gz 4991196 BLAKE2B 
53e86b3513aa74ad174801cea987d574c5248f438cb0a9419c2352c04333eae2f92214b11c59ee8688ad7235dc7a4586c39cc27450c654b1fc0e2eec2e4e22e2
 SHA512 
ea7a010097fdfe7807daf9352519b808b4a7b614b793ee2ac27495207bcf1cf8b4151fecd525946a0d6b8aa9332c205f437d5141b16efb613810963f502061be
 DIST mongo-tools-4.0.12.tar.gz 11134652 BLAKE2B 
d3c9703046dc577b85cefe1185678e0029411ddd44d0648f9b09fc3ab41e3661891d18afd83bf1a148dc4c9208895f444c115948e515e09dfa3062e89d98fc24
 SHA512 
068d8c456386caddcce23fa8917ffecdc9b5c39fb6794c5cd1d9099be1f127ecf680b006055581dc3d90507072a87788b46be7410f0dbede42da64c664b77ced

diff --git a/app-admin/mongo-tools/mongo-tools-100.2.0.ebuild 
b/app-admin/mongo-tools/mongo-tools-100.2.0.ebuild
new file mode 100644
index 000..a60bc8a3e1a
--- /dev/null
+++ b/app-admin/mongo-tools/mongo-tools-100.2.0.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+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/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64"
+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 ${P} "${S}" || 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; 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/*
+}



[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2020-09-28 Thread Sam James
commit: 879de799d21d1ff01630a8d0a01016208b4b7dd8
Author: Sam James  gentoo  org>
AuthorDate: Mon Sep 28 22:08:28 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Sep 28 22:08:40 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=879de799

app-admin/mongo-tools: Stabilize 4.0.19 amd64, #738796

Signed-off-by: Sam James  gentoo.org>

 app-admin/mongo-tools/mongo-tools-4.0.19.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/mongo-tools/mongo-tools-4.0.19.ebuild 
b/app-admin/mongo-tools/mongo-tools-4.0.19.ebuild
index 86f626904b9..1be2c812c41 100644
--- a/app-admin/mongo-tools/mongo-tools-4.0.19.ebuild
+++ b/app-admin/mongo-tools/mongo-tools-4.0.19.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/mongodb/mongo-tools/archive/r${MY_PV}.tar.gz -> mong
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 IUSE="sasl ssl"
 
 DEPEND="dev-lang/go:=



[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2020-09-27 Thread Sam James
commit: 4c928ad13f4c29274fc39bfce5b40c39ff678bf0
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 27 14:15:14 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 27 14:15:14 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c928ad1

app-admin/mongo-tools: Stabilize 4.2.8 amd64, #735276

Signed-off-by: Sam James  gentoo.org>

 app-admin/mongo-tools/mongo-tools-4.2.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/mongo-tools/mongo-tools-4.2.8.ebuild 
b/app-admin/mongo-tools/mongo-tools-4.2.8.ebuild
index 7d8cc9a0ebc..083aebc281b 100644
--- a/app-admin/mongo-tools/mongo-tools-4.2.8.ebuild
+++ b/app-admin/mongo-tools/mongo-tools-4.2.8.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/mongodb/mongo-tools/archive/r${MY_PV}.tar.gz -> mong
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64"
+KEYWORDS="amd64 ~arm64"
 IUSE="sasl ssl"
 
 DEPEND="dev-lang/go:=



[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2020-06-26 Thread Thomas Deutschmann
commit: 3df4e234e2ff23691fb33f807a63699d89b9f092
Author: Tomáš Mózes  gmail  com>
AuthorDate: Wed Jun 24 10:13:32 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Jun 26 22:59:46 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3df4e234

app-admin/mongo-tools: bump to 4.0.19

Package-Manager: Portage-2.3.102, Repoman-2.3.23
Signed-off-by: Tomáš Mózes  gmail.com>
Signed-off-by: Thomas Deutschmann  gentoo.org>

 app-admin/mongo-tools/Manifest  |  1 +
 app-admin/mongo-tools/mongo-tools-4.0.19.ebuild | 71 +
 2 files changed, 72 insertions(+)

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index a89be67912f..db48d55649c 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -2,5 +2,6 @@ DIST mongo-tools-3.6.13.tar.gz 4990848 BLAKE2B 
022ddf214869c3a3e545aa9572f77f0ad
 DIST mongo-tools-3.6.17.tar.gz 4991196 BLAKE2B 
53e86b3513aa74ad174801cea987d574c5248f438cb0a9419c2352c04333eae2f92214b11c59ee8688ad7235dc7a4586c39cc27450c654b1fc0e2eec2e4e22e2
 SHA512 
ea7a010097fdfe7807daf9352519b808b4a7b614b793ee2ac27495207bcf1cf8b4151fecd525946a0d6b8aa9332c205f437d5141b16efb613810963f502061be
 DIST mongo-tools-4.0.12.tar.gz 11134652 BLAKE2B 
d3c9703046dc577b85cefe1185678e0029411ddd44d0648f9b09fc3ab41e3661891d18afd83bf1a148dc4c9208895f444c115948e515e09dfa3062e89d98fc24
 SHA512 
068d8c456386caddcce23fa8917ffecdc9b5c39fb6794c5cd1d9099be1f127ecf680b006055581dc3d90507072a87788b46be7410f0dbede42da64c664b77ced
 DIST mongo-tools-4.0.16.tar.gz 11139827 BLAKE2B 
550acfd7e4434b178170dfd94c65668cb7dd37d128235c63a10f72802e3119f33d5cd2138bfd5b957f6d3813f1d9aff49218c4e122c0cd454b4ea7a969c84d4e
 SHA512 
a75831d9fd0b596bfb7354cbc05d1ecf6871d5a7230a858b09b94d5001d18069c9cbe89c9500e9c1a16fc5186fa7a1ac59c60515a3f1a2d7c81115a47c16
+DIST mongo-tools-4.0.19.tar.gz 11139649 BLAKE2B 
7e730138fce671e18a0ebe929b98eff1c0ce2c364ceef7d6868c380242689411c545ac321aebd609dcfe9f8d5b7d35cf37973a978f35a50cc44902b2dbad7134
 SHA512 
2639cb27a5a27e405bddf9817f409af244d643a9091f7e5ddff4876966af55b6710b0fe158c351df9aea10f3da0b87d224bfb2c962f4ca2cfe41f804cb16749c
 DIST mongo-tools-4.2.3.tar.gz 15020325 BLAKE2B 
8501a3ec6e947112ec561ce62f2ea568984f8ac911a7aff3cb8c08c1f29d2cfc64cf7f4b6a24ba73ae0f9b2b5853480f4fbed51c98fdc8c83cd433ea65e21dba
 SHA512 
772719b450f8b656c22ac0126fee1e0fa58b5320c94ac6414b1d9af13e6437393c2482f2e386f4a73c84a2d1bfe0ea88df117a6a7ae87f4884477505cf662585
 DIST mongo-tools-4.2.6.tar.gz 15016596 BLAKE2B 
5ee37bf21ea05ec5ba2764c935c1dd3632753e772a01f854dc8a9949620e9a41fe95ba658a0efae0332ed2c059561e39e681f672cf5f4302a7f92c364cfab4b6
 SHA512 
e91bfba4b015f80d35b6c2ca766c599c5eedea113d6415ec0aef433d46b5e5fe06956481a063e26908a45fdcee4002125ea01a29fa3ea9a541a9210d25625f8e

diff --git a/app-admin/mongo-tools/mongo-tools-4.0.19.ebuild 
b/app-admin/mongo-tools/mongo-tools-4.0.19.ebuild
new file mode 100644
index 000..86f626904b9
--- /dev/null
+++ b/app-admin/mongo-tools/mongo-tools-4.0.19.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2020 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/*
+}



[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2020-06-26 Thread Thomas Deutschmann
commit: 93067368d753c17cb53753cf559d9181cbfe98b7
Author: Tomáš Mózes  gmail  com>
AuthorDate: Wed Jun 24 10:14:23 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Jun 26 22:59:47 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93067368

app-admin/mongo-tools: bump to 4.2.8

Package-Manager: Portage-2.3.102, Repoman-2.3.23
Signed-off-by: Tomáš Mózes  gmail.com>
Signed-off-by: Thomas Deutschmann  gentoo.org>

 app-admin/mongo-tools/Manifest |  1 +
 app-admin/mongo-tools/mongo-tools-4.2.8.ebuild | 71 ++
 2 files changed, 72 insertions(+)

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index db48d55649c..d5da4ec003e 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -5,3 +5,4 @@ DIST mongo-tools-4.0.16.tar.gz 11139827 BLAKE2B 
550acfd7e4434b178170dfd94c65668c
 DIST mongo-tools-4.0.19.tar.gz 11139649 BLAKE2B 
7e730138fce671e18a0ebe929b98eff1c0ce2c364ceef7d6868c380242689411c545ac321aebd609dcfe9f8d5b7d35cf37973a978f35a50cc44902b2dbad7134
 SHA512 
2639cb27a5a27e405bddf9817f409af244d643a9091f7e5ddff4876966af55b6710b0fe158c351df9aea10f3da0b87d224bfb2c962f4ca2cfe41f804cb16749c
 DIST mongo-tools-4.2.3.tar.gz 15020325 BLAKE2B 
8501a3ec6e947112ec561ce62f2ea568984f8ac911a7aff3cb8c08c1f29d2cfc64cf7f4b6a24ba73ae0f9b2b5853480f4fbed51c98fdc8c83cd433ea65e21dba
 SHA512 
772719b450f8b656c22ac0126fee1e0fa58b5320c94ac6414b1d9af13e6437393c2482f2e386f4a73c84a2d1bfe0ea88df117a6a7ae87f4884477505cf662585
 DIST mongo-tools-4.2.6.tar.gz 15016596 BLAKE2B 
5ee37bf21ea05ec5ba2764c935c1dd3632753e772a01f854dc8a9949620e9a41fe95ba658a0efae0332ed2c059561e39e681f672cf5f4302a7f92c364cfab4b6
 SHA512 
e91bfba4b015f80d35b6c2ca766c599c5eedea113d6415ec0aef433d46b5e5fe06956481a063e26908a45fdcee4002125ea01a29fa3ea9a541a9210d25625f8e
+DIST mongo-tools-4.2.8.tar.gz 15021497 BLAKE2B 
e066c299462167754e0752079f35fef25b387eb1df0631ff0e0b783a8a14c4b68c6ed126ec3429f63de87b87b9fdde6a2645badd53ac1386befc7175a61a999e
 SHA512 
c0fca14c60e5f399934f4dfad5be832684d2c1a1145967a4c395b246774f73f71e506bff902a634b7f08f7133304c09f14eb56a1a6fc8585608f537e59d9c899

diff --git a/app-admin/mongo-tools/mongo-tools-4.2.8.ebuild 
b/app-admin/mongo-tools/mongo-tools-4.2.8.ebuild
new file mode 100644
index 000..7d8cc9a0ebc
--- /dev/null
+++ b/app-admin/mongo-tools/mongo-tools-4.2.8.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2020 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 ~arm64"
+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/*
+}



[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2020-05-20 Thread Alexys Jacob
commit: 0f1bdbcbf799a3ccebe5cc2d6ccd8ba98bc7715f
Author: Alexys Jacob  gentoo  org>
AuthorDate: Wed May 20 16:23:29 2020 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Wed May 20 16:25:05 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f1bdbcb

app-admin/mongo-tools: drop obsolete ebuilds

Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Alexys Jacob  gentoo.org>

 app-admin/mongo-tools/Manifest  |  6 ---
 app-admin/mongo-tools/mongo-tools-3.6.14.ebuild | 71 -
 app-admin/mongo-tools/mongo-tools-3.6.16.ebuild | 71 -
 app-admin/mongo-tools/mongo-tools-4.0.13.ebuild | 71 -
 app-admin/mongo-tools/mongo-tools-4.0.14.ebuild | 71 -
 app-admin/mongo-tools/mongo-tools-4.2.1.ebuild  | 71 -
 app-admin/mongo-tools/mongo-tools-4.2.2.ebuild  | 71 -
 7 files changed, 432 deletions(-)

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index 988e5b1cef2..a89be67912f 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -1,12 +1,6 @@
 DIST mongo-tools-3.6.13.tar.gz 4990848 BLAKE2B 
022ddf214869c3a3e545aa9572f77f0adc21c0dbd6ea6ad9e083633c2e972b7ef77c0bda4354dbde9fd0e23c6dd02a7de8873d4b2c2a3e4423ea6f8e1c23ed52
 SHA512 
fac21c4841bfecba11a7765bb6c36d1fa19d4dd94f6f4168fa767fc11dc8b3caf04a5029becd09eba01dd694274e9cc22da8566ce878769e5c3c97016c162432
-DIST mongo-tools-3.6.14.tar.gz 4990861 BLAKE2B 
13394a7222e73c0912e7d9d04205b25e5d73d6c72b53521b0749e0998dc52bbe4c7733d460b189aff2401790f537d9aa369b969ed273ea0858520ecd75782b66
 SHA512 
3e7caaa1d568023d478c77d5e88127796b25d27c71e30af692983f4fd2160887662253ffc67e6e87aa3a7e1fd4ae231de9401b1628412a4561b9595b71df8834
-DIST mongo-tools-3.6.16.tar.gz 4990806 BLAKE2B 
743c24fe55a0353e3ce31a82a53c94560408725f9fa35d93d5bc136d2b6e465e081c8ad4b00d63826ea45db4431124cdf2b66341eba9be24db890fd80941b728
 SHA512 
ebb356690c2aeb7d47435ea05f977e9319c915e1af48b89fc9941f72871baabb5faac238b59281330fb46e7340ee354f56f438ea3d0abd97b859e2321b719038
 DIST mongo-tools-3.6.17.tar.gz 4991196 BLAKE2B 
53e86b3513aa74ad174801cea987d574c5248f438cb0a9419c2352c04333eae2f92214b11c59ee8688ad7235dc7a4586c39cc27450c654b1fc0e2eec2e4e22e2
 SHA512 
ea7a010097fdfe7807daf9352519b808b4a7b614b793ee2ac27495207bcf1cf8b4151fecd525946a0d6b8aa9332c205f437d5141b16efb613810963f502061be
 DIST mongo-tools-4.0.12.tar.gz 11134652 BLAKE2B 
d3c9703046dc577b85cefe1185678e0029411ddd44d0648f9b09fc3ab41e3661891d18afd83bf1a148dc4c9208895f444c115948e515e09dfa3062e89d98fc24
 SHA512 
068d8c456386caddcce23fa8917ffecdc9b5c39fb6794c5cd1d9099be1f127ecf680b006055581dc3d90507072a87788b46be7410f0dbede42da64c664b77ced
-DIST mongo-tools-4.0.13.tar.gz 11134653 BLAKE2B 
b963f2a4ee598f6716c6c678df029040f57e2ad17b0e025139d3ac5049aacefbf5342a455ac58161c11df734da4fe4f62f021c1544eee3542af3aed77a65e6d2
 SHA512 
0694c7ac5743b04d927e27eb913df1b9b55c6c7a26d2a4dc52af8d2e0a6934416f416da91c57e1e61804ae855ec4bd8facabacf0754f9f924f21602737f29e3c
-DIST mongo-tools-4.0.14.tar.gz 11134659 BLAKE2B 
9caf119901d528079bb9aefce78d702dc3196cb105ac623137f8ffceffef4f8f6e61c8134470abe11f0bd422df9a6bef0e15331ee71065450b97220431458fc1
 SHA512 
6a0c39cbca0d51cd42518bb68a36fb7f0ed1e7b1ecf4dcd41256c8ab5c23505ca189b81a88c2a783ad81788bcab81d7e3c69f4788366e10dea744a03a2f3cf1e
 DIST mongo-tools-4.0.16.tar.gz 11139827 BLAKE2B 
550acfd7e4434b178170dfd94c65668cb7dd37d128235c63a10f72802e3119f33d5cd2138bfd5b957f6d3813f1d9aff49218c4e122c0cd454b4ea7a969c84d4e
 SHA512 
a75831d9fd0b596bfb7354cbc05d1ecf6871d5a7230a858b09b94d5001d18069c9cbe89c9500e9c1a16fc5186fa7a1ac59c60515a3f1a2d7c81115a47c16
-DIST mongo-tools-4.2.1.tar.gz 14435826 BLAKE2B 
8d068cb39957f6773fb6ca186a1eb324e03c21b8472fede407daf7bce091f3d401f0debe6412d70bb8e338101d7ada870e7347782ffb582b58fcafc236ad4932
 SHA512 
bba754acd9e21f8f832fc2e434720347c897b2af08d66f9491110d5491f5475ae2118ff25b263606677da10b0c96b76cc507a01287180096c25c1eab5ced
-DIST mongo-tools-4.2.2.tar.gz 14433618 BLAKE2B 
7610bd6b386684836e91b6bb7f73e24267fac56ce975263ac2aaeebe51d37123baa8eb2009cf4478af89e6dcc596c9c07126224ad4bd80aee47d03fde9413eca
 SHA512 
661813c70bf891f0a834ac9970cbe390a8616f9e89e4f33918e479ba3f3ce3851edecd63c1e35e65a4dee47419e3ce0fa3186c7ee2326bef11fce3bac8bed0c7
 DIST mongo-tools-4.2.3.tar.gz 15020325 BLAKE2B 
8501a3ec6e947112ec561ce62f2ea568984f8ac911a7aff3cb8c08c1f29d2cfc64cf7f4b6a24ba73ae0f9b2b5853480f4fbed51c98fdc8c83cd433ea65e21dba
 SHA512 
772719b450f8b656c22ac0126fee1e0fa58b5320c94ac6414b1d9af13e6437393c2482f2e386f4a73c84a2d1bfe0ea88df117a6a7ae87f4884477505cf662585
 DIST mongo-tools-4.2.6.tar.gz 15016596 BLAKE2B 
5ee37bf21ea05ec5ba2764c935c1dd3632753e772a01f854dc8a9949620e9a41fe95ba658a0efae0332ed2c059561e39e681f672cf5f4302a7f92c364cfab4b6
 SHA512 

[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2020-05-20 Thread Alexys Jacob
commit: 0499938eabb273305c76d854fb654651f54102ca
Author: Alexys Jacob  gentoo  org>
AuthorDate: Wed May 20 16:15:20 2020 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Wed May 20 16:19:52 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0499938e

app-admin/mongo-tools: version bump

Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Alexys Jacob  gentoo.org>

 app-admin/mongo-tools/Manifest |  1 +
 app-admin/mongo-tools/mongo-tools-4.2.6.ebuild | 71 ++
 2 files changed, 72 insertions(+)

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index 82667b49c21..988e5b1cef2 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -9,3 +9,4 @@ DIST mongo-tools-4.0.16.tar.gz 11139827 BLAKE2B 
550acfd7e4434b178170dfd94c65668c
 DIST mongo-tools-4.2.1.tar.gz 14435826 BLAKE2B 
8d068cb39957f6773fb6ca186a1eb324e03c21b8472fede407daf7bce091f3d401f0debe6412d70bb8e338101d7ada870e7347782ffb582b58fcafc236ad4932
 SHA512 
bba754acd9e21f8f832fc2e434720347c897b2af08d66f9491110d5491f5475ae2118ff25b263606677da10b0c96b76cc507a01287180096c25c1eab5ced
 DIST mongo-tools-4.2.2.tar.gz 14433618 BLAKE2B 
7610bd6b386684836e91b6bb7f73e24267fac56ce975263ac2aaeebe51d37123baa8eb2009cf4478af89e6dcc596c9c07126224ad4bd80aee47d03fde9413eca
 SHA512 
661813c70bf891f0a834ac9970cbe390a8616f9e89e4f33918e479ba3f3ce3851edecd63c1e35e65a4dee47419e3ce0fa3186c7ee2326bef11fce3bac8bed0c7
 DIST mongo-tools-4.2.3.tar.gz 15020325 BLAKE2B 
8501a3ec6e947112ec561ce62f2ea568984f8ac911a7aff3cb8c08c1f29d2cfc64cf7f4b6a24ba73ae0f9b2b5853480f4fbed51c98fdc8c83cd433ea65e21dba
 SHA512 
772719b450f8b656c22ac0126fee1e0fa58b5320c94ac6414b1d9af13e6437393c2482f2e386f4a73c84a2d1bfe0ea88df117a6a7ae87f4884477505cf662585
+DIST mongo-tools-4.2.6.tar.gz 15016596 BLAKE2B 
5ee37bf21ea05ec5ba2764c935c1dd3632753e772a01f854dc8a9949620e9a41fe95ba658a0efae0332ed2c059561e39e681f672cf5f4302a7f92c364cfab4b6
 SHA512 
e91bfba4b015f80d35b6c2ca766c599c5eedea113d6415ec0aef433d46b5e5fe06956481a063e26908a45fdcee4002125ea01a29fa3ea9a541a9210d25625f8e

diff --git a/app-admin/mongo-tools/mongo-tools-4.2.6.ebuild 
b/app-admin/mongo-tools/mongo-tools-4.2.6.ebuild
new file mode 100644
index 000..7d8cc9a0ebc
--- /dev/null
+++ b/app-admin/mongo-tools/mongo-tools-4.2.6.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2020 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 ~arm64"
+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/*
+}



[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2020-05-11 Thread Mart Raudsepp
commit: a1e57365ecf0118f5f5f4ae652b19ba366fbd293
Author: Sam James (sam_c)  cmpct  info>
AuthorDate: Mon May 11 13:37:17 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Mon May 11 15:30:20 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1e57365

app-admin/mongo-tools: arm64 keyworded (bug #701300)

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Sam James (sam_c)  cmpct.info>
Signed-off-by: Mart Raudsepp  gentoo.org>

 app-admin/mongo-tools/mongo-tools-4.2.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/mongo-tools/mongo-tools-4.2.3.ebuild 
b/app-admin/mongo-tools/mongo-tools-4.2.3.ebuild
index 86f626904b9..7d8cc9a0ebc 100644
--- a/app-admin/mongo-tools/mongo-tools-4.2.3.ebuild
+++ b/app-admin/mongo-tools/mongo-tools-4.2.3.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/mongodb/mongo-tools/archive/r${MY_PV}.tar.gz -> mong
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~arm64"
 IUSE="sasl ssl"
 
 DEPEND="dev-lang/go:=



[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2020-02-09 Thread Alexys Jacob
commit: e4e206df9e09087fd2a65336b189821d613fe47e
Author: Alexys Jacob  gentoo  org>
AuthorDate: Sun Feb  9 16:29:32 2020 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Sun Feb  9 16:30:56 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4e206df

app-admin/mongo-tools: version bump

Package-Manager: Portage-2.3.81, Repoman-2.3.20
Signed-off-by: Alexys Jacob  gentoo.org>

 app-admin/mongo-tools/Manifest  |  3 ++
 app-admin/mongo-tools/mongo-tools-3.6.17.ebuild | 71 +
 app-admin/mongo-tools/mongo-tools-4.0.16.ebuild | 71 +
 app-admin/mongo-tools/mongo-tools-4.2.3.ebuild  | 71 +
 4 files changed, 216 insertions(+)

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index c09ca90578f..82667b49c21 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -1,8 +1,11 @@
 DIST mongo-tools-3.6.13.tar.gz 4990848 BLAKE2B 
022ddf214869c3a3e545aa9572f77f0adc21c0dbd6ea6ad9e083633c2e972b7ef77c0bda4354dbde9fd0e23c6dd02a7de8873d4b2c2a3e4423ea6f8e1c23ed52
 SHA512 
fac21c4841bfecba11a7765bb6c36d1fa19d4dd94f6f4168fa767fc11dc8b3caf04a5029becd09eba01dd694274e9cc22da8566ce878769e5c3c97016c162432
 DIST mongo-tools-3.6.14.tar.gz 4990861 BLAKE2B 
13394a7222e73c0912e7d9d04205b25e5d73d6c72b53521b0749e0998dc52bbe4c7733d460b189aff2401790f537d9aa369b969ed273ea0858520ecd75782b66
 SHA512 
3e7caaa1d568023d478c77d5e88127796b25d27c71e30af692983f4fd2160887662253ffc67e6e87aa3a7e1fd4ae231de9401b1628412a4561b9595b71df8834
 DIST mongo-tools-3.6.16.tar.gz 4990806 BLAKE2B 
743c24fe55a0353e3ce31a82a53c94560408725f9fa35d93d5bc136d2b6e465e081c8ad4b00d63826ea45db4431124cdf2b66341eba9be24db890fd80941b728
 SHA512 
ebb356690c2aeb7d47435ea05f977e9319c915e1af48b89fc9941f72871baabb5faac238b59281330fb46e7340ee354f56f438ea3d0abd97b859e2321b719038
+DIST mongo-tools-3.6.17.tar.gz 4991196 BLAKE2B 
53e86b3513aa74ad174801cea987d574c5248f438cb0a9419c2352c04333eae2f92214b11c59ee8688ad7235dc7a4586c39cc27450c654b1fc0e2eec2e4e22e2
 SHA512 
ea7a010097fdfe7807daf9352519b808b4a7b614b793ee2ac27495207bcf1cf8b4151fecd525946a0d6b8aa9332c205f437d5141b16efb613810963f502061be
 DIST mongo-tools-4.0.12.tar.gz 11134652 BLAKE2B 
d3c9703046dc577b85cefe1185678e0029411ddd44d0648f9b09fc3ab41e3661891d18afd83bf1a148dc4c9208895f444c115948e515e09dfa3062e89d98fc24
 SHA512 
068d8c456386caddcce23fa8917ffecdc9b5c39fb6794c5cd1d9099be1f127ecf680b006055581dc3d90507072a87788b46be7410f0dbede42da64c664b77ced
 DIST mongo-tools-4.0.13.tar.gz 11134653 BLAKE2B 
b963f2a4ee598f6716c6c678df029040f57e2ad17b0e025139d3ac5049aacefbf5342a455ac58161c11df734da4fe4f62f021c1544eee3542af3aed77a65e6d2
 SHA512 
0694c7ac5743b04d927e27eb913df1b9b55c6c7a26d2a4dc52af8d2e0a6934416f416da91c57e1e61804ae855ec4bd8facabacf0754f9f924f21602737f29e3c
 DIST mongo-tools-4.0.14.tar.gz 11134659 BLAKE2B 
9caf119901d528079bb9aefce78d702dc3196cb105ac623137f8ffceffef4f8f6e61c8134470abe11f0bd422df9a6bef0e15331ee71065450b97220431458fc1
 SHA512 
6a0c39cbca0d51cd42518bb68a36fb7f0ed1e7b1ecf4dcd41256c8ab5c23505ca189b81a88c2a783ad81788bcab81d7e3c69f4788366e10dea744a03a2f3cf1e
+DIST mongo-tools-4.0.16.tar.gz 11139827 BLAKE2B 
550acfd7e4434b178170dfd94c65668cb7dd37d128235c63a10f72802e3119f33d5cd2138bfd5b957f6d3813f1d9aff49218c4e122c0cd454b4ea7a969c84d4e
 SHA512 
a75831d9fd0b596bfb7354cbc05d1ecf6871d5a7230a858b09b94d5001d18069c9cbe89c9500e9c1a16fc5186fa7a1ac59c60515a3f1a2d7c81115a47c16
 DIST mongo-tools-4.2.1.tar.gz 14435826 BLAKE2B 
8d068cb39957f6773fb6ca186a1eb324e03c21b8472fede407daf7bce091f3d401f0debe6412d70bb8e338101d7ada870e7347782ffb582b58fcafc236ad4932
 SHA512 
bba754acd9e21f8f832fc2e434720347c897b2af08d66f9491110d5491f5475ae2118ff25b263606677da10b0c96b76cc507a01287180096c25c1eab5ced
 DIST mongo-tools-4.2.2.tar.gz 14433618 BLAKE2B 
7610bd6b386684836e91b6bb7f73e24267fac56ce975263ac2aaeebe51d37123baa8eb2009cf4478af89e6dcc596c9c07126224ad4bd80aee47d03fde9413eca
 SHA512 
661813c70bf891f0a834ac9970cbe390a8616f9e89e4f33918e479ba3f3ce3851edecd63c1e35e65a4dee47419e3ce0fa3186c7ee2326bef11fce3bac8bed0c7
+DIST mongo-tools-4.2.3.tar.gz 15020325 BLAKE2B 
8501a3ec6e947112ec561ce62f2ea568984f8ac911a7aff3cb8c08c1f29d2cfc64cf7f4b6a24ba73ae0f9b2b5853480f4fbed51c98fdc8c83cd433ea65e21dba
 SHA512 
772719b450f8b656c22ac0126fee1e0fa58b5320c94ac6414b1d9af13e6437393c2482f2e386f4a73c84a2d1bfe0ea88df117a6a7ae87f4884477505cf662585

diff --git a/app-admin/mongo-tools/mongo-tools-3.6.17.ebuild 
b/app-admin/mongo-tools/mongo-tools-3.6.17.ebuild
new file mode 100644
index 000..86f626904b9
--- /dev/null
+++ b/app-admin/mongo-tools/mongo-tools-3.6.17.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2020 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;

[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2019-12-30 Thread Alexys Jacob
commit: cde29d754635ba839125dac62af120a9aa134e5f
Author: Alexys Jacob  gentoo  org>
AuthorDate: Mon Dec 30 12:35:18 2019 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Mon Dec 30 12:36:40 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cde29d75

app-admin/mongo-tools: version bump, drop old

Package-Manager: Portage-2.3.81, Repoman-2.3.20
Signed-off-by: Alexys Jacob  gentoo.org>

 app-admin/mongo-tools/Manifest |  6 +-
 ...ools-4.2.0.ebuild => mongo-tools-3.6.16.ebuild} |  0
 app-admin/mongo-tools/mongo-tools-3.6.8.ebuild | 64 ---
 app-admin/mongo-tools/mongo-tools-4.0.10.ebuild| 71 --
 ...ools-4.2.0.ebuild => mongo-tools-4.0.14.ebuild} |  0
 ...tools-4.2.0.ebuild => mongo-tools-4.2.2.ebuild} |  0
 6 files changed, 3 insertions(+), 138 deletions(-)

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index c86934b1546..c09ca90578f 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -1,8 +1,8 @@
 DIST mongo-tools-3.6.13.tar.gz 4990848 BLAKE2B 
022ddf214869c3a3e545aa9572f77f0adc21c0dbd6ea6ad9e083633c2e972b7ef77c0bda4354dbde9fd0e23c6dd02a7de8873d4b2c2a3e4423ea6f8e1c23ed52
 SHA512 
fac21c4841bfecba11a7765bb6c36d1fa19d4dd94f6f4168fa767fc11dc8b3caf04a5029becd09eba01dd694274e9cc22da8566ce878769e5c3c97016c162432
 DIST mongo-tools-3.6.14.tar.gz 4990861 BLAKE2B 
13394a7222e73c0912e7d9d04205b25e5d73d6c72b53521b0749e0998dc52bbe4c7733d460b189aff2401790f537d9aa369b969ed273ea0858520ecd75782b66
 SHA512 
3e7caaa1d568023d478c77d5e88127796b25d27c71e30af692983f4fd2160887662253ffc67e6e87aa3a7e1fd4ae231de9401b1628412a4561b9595b71df8834
-DIST mongo-tools-3.6.8.tar.gz 4723878 BLAKE2B 
a1693024d60f69d25c268eaaa30a478b1e4c0042c5fb7a3fd6252ed00aef2fee3fba94516fe825165a1a57887ed38e4fbce488c48ddd4f45349f0b7a1b244020
 SHA512 
359e8ce2d847d005d48ff12bc2e8af73213d81cd1521d2b5b5ac94792468218248bebbe808e1bd8fd49234eab8480608f294c1b63f317aed58f456b84ef17dcf
-DIST mongo-tools-4.0.10.tar.gz 11134721 BLAKE2B 
f25e834622db8a2cea1658d9396b747666dee6a0e6471f5fcf351431f716735227b19f854c228ebb9ace8a7c27b8cdf83f8a5009107191aa6dd27c1a4c037505
 SHA512 
12764b2e2016ae3ab3f0ed1f5b9be9ce10e466c53b408ad2c01b26bdf39ca41a358acd07aea5847db2b40e3e89293f77efcd2b310e4e2bf3071873abf1b20f49
+DIST mongo-tools-3.6.16.tar.gz 4990806 BLAKE2B 
743c24fe55a0353e3ce31a82a53c94560408725f9fa35d93d5bc136d2b6e465e081c8ad4b00d63826ea45db4431124cdf2b66341eba9be24db890fd80941b728
 SHA512 
ebb356690c2aeb7d47435ea05f977e9319c915e1af48b89fc9941f72871baabb5faac238b59281330fb46e7340ee354f56f438ea3d0abd97b859e2321b719038
 DIST mongo-tools-4.0.12.tar.gz 11134652 BLAKE2B 
d3c9703046dc577b85cefe1185678e0029411ddd44d0648f9b09fc3ab41e3661891d18afd83bf1a148dc4c9208895f444c115948e515e09dfa3062e89d98fc24
 SHA512 
068d8c456386caddcce23fa8917ffecdc9b5c39fb6794c5cd1d9099be1f127ecf680b006055581dc3d90507072a87788b46be7410f0dbede42da64c664b77ced
 DIST mongo-tools-4.0.13.tar.gz 11134653 BLAKE2B 
b963f2a4ee598f6716c6c678df029040f57e2ad17b0e025139d3ac5049aacefbf5342a455ac58161c11df734da4fe4f62f021c1544eee3542af3aed77a65e6d2
 SHA512 
0694c7ac5743b04d927e27eb913df1b9b55c6c7a26d2a4dc52af8d2e0a6934416f416da91c57e1e61804ae855ec4bd8facabacf0754f9f924f21602737f29e3c
-DIST mongo-tools-4.2.0.tar.gz 14402906 BLAKE2B 
535a9a0e49f4288e63c905f7bd98c1f1b8e38eef562cb5c40a0c09500a18eb7fd401f05df2261c92db3e8a126cc03902fa3c61177b50a3e18f2d33bee7590f52
 SHA512 
f937a9f2b4ccfe262ca1a09e7bd103ffbdd45eae7c6deed8c1453f4499935f526f513749422e3215071ef465291c3f0544bf1e9510bbaf8dd9fa1edcf22f887a
+DIST mongo-tools-4.0.14.tar.gz 11134659 BLAKE2B 
9caf119901d528079bb9aefce78d702dc3196cb105ac623137f8ffceffef4f8f6e61c8134470abe11f0bd422df9a6bef0e15331ee71065450b97220431458fc1
 SHA512 
6a0c39cbca0d51cd42518bb68a36fb7f0ed1e7b1ecf4dcd41256c8ab5c23505ca189b81a88c2a783ad81788bcab81d7e3c69f4788366e10dea744a03a2f3cf1e
 DIST mongo-tools-4.2.1.tar.gz 14435826 BLAKE2B 
8d068cb39957f6773fb6ca186a1eb324e03c21b8472fede407daf7bce091f3d401f0debe6412d70bb8e338101d7ada870e7347782ffb582b58fcafc236ad4932
 SHA512 
bba754acd9e21f8f832fc2e434720347c897b2af08d66f9491110d5491f5475ae2118ff25b263606677da10b0c96b76cc507a01287180096c25c1eab5ced
+DIST mongo-tools-4.2.2.tar.gz 14433618 BLAKE2B 
7610bd6b386684836e91b6bb7f73e24267fac56ce975263ac2aaeebe51d37123baa8eb2009cf4478af89e6dcc596c9c07126224ad4bd80aee47d03fde9413eca
 SHA512 
661813c70bf891f0a834ac9970cbe390a8616f9e89e4f33918e479ba3f3ce3851edecd63c1e35e65a4dee47419e3ce0fa3186c7ee2326bef11fce3bac8bed0c7

diff --git a/app-admin/mongo-tools/mongo-tools-4.2.0.ebuild 
b/app-admin/mongo-tools/mongo-tools-3.6.16.ebuild
similarity index 100%
copy from app-admin/mongo-tools/mongo-tools-4.2.0.ebuild
copy to app-admin/mongo-tools/mongo-tools-3.6.16.ebuild

diff --git a/app-admin/mongo-tools/mongo-tools-3.6.8.ebuild 
b/app-admin/mongo-tools/mongo-tools-3.6.8.ebuild
deleted file mode 100644
index 81268b0dd2f..000
--- 

[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2019-09-26 Thread Mikle Kolyada
commit: 3ea9bedb7753e320054ee5eeccfeab14787cc127
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Thu Sep 26 19:56:50 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Thu Sep 26 19:56:50 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ea9bedb

app-admin/mongo-tools: amd64 stable wrt bug #695490

Package-Manager: Portage-2.3.69, Repoman-2.3.16
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Mikle Kolyada  gentoo.org>

 app-admin/mongo-tools/mongo-tools-4.0.12.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/mongo-tools/mongo-tools-4.0.12.ebuild 
b/app-admin/mongo-tools/mongo-tools-4.0.12.ebuild
index 092d770686f..11f797e129c 100644
--- a/app-admin/mongo-tools/mongo-tools-4.0.12.ebuild
+++ b/app-admin/mongo-tools/mongo-tools-4.0.12.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/mongodb/mongo-tools/archive/r${MY_PV}.tar.gz -> mong
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 IUSE="sasl ssl"
 
 DEPEND="dev-lang/go:=



[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2019-09-23 Thread Alexys Jacob
commit: 4b25a8195fa220854003ea5b3fda2d2bd8d46255
Author: Alexys Jacob  gentoo  org>
AuthorDate: Mon Sep 23 13:41:42 2019 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Mon Sep 23 13:43:43 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b25a819

app-admin/mongo-tools: version bump

Package-Manager: Portage-2.3.75, Repoman-2.3.17
Signed-off-by: Alexys Jacob  gentoo.org>

 app-admin/mongo-tools/Manifest  |  1 +
 app-admin/mongo-tools/mongo-tools-3.6.14.ebuild | 71 +
 2 files changed, 72 insertions(+)

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index f5f6e6c8a0e..8f5e9f7f8de 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -1,4 +1,5 @@
 DIST mongo-tools-3.6.13.tar.gz 4990848 BLAKE2B 
022ddf214869c3a3e545aa9572f77f0adc21c0dbd6ea6ad9e083633c2e972b7ef77c0bda4354dbde9fd0e23c6dd02a7de8873d4b2c2a3e4423ea6f8e1c23ed52
 SHA512 
fac21c4841bfecba11a7765bb6c36d1fa19d4dd94f6f4168fa767fc11dc8b3caf04a5029becd09eba01dd694274e9cc22da8566ce878769e5c3c97016c162432
+DIST mongo-tools-3.6.14.tar.gz 4990861 BLAKE2B 
13394a7222e73c0912e7d9d04205b25e5d73d6c72b53521b0749e0998dc52bbe4c7733d460b189aff2401790f537d9aa369b969ed273ea0858520ecd75782b66
 SHA512 
3e7caaa1d568023d478c77d5e88127796b25d27c71e30af692983f4fd2160887662253ffc67e6e87aa3a7e1fd4ae231de9401b1628412a4561b9595b71df8834
 DIST mongo-tools-3.6.8.tar.gz 4723878 BLAKE2B 
a1693024d60f69d25c268eaaa30a478b1e4c0042c5fb7a3fd6252ed00aef2fee3fba94516fe825165a1a57887ed38e4fbce488c48ddd4f45349f0b7a1b244020
 SHA512 
359e8ce2d847d005d48ff12bc2e8af73213d81cd1521d2b5b5ac94792468218248bebbe808e1bd8fd49234eab8480608f294c1b63f317aed58f456b84ef17dcf
 DIST mongo-tools-4.0.10.tar.gz 11134721 BLAKE2B 
f25e834622db8a2cea1658d9396b747666dee6a0e6471f5fcf351431f716735227b19f854c228ebb9ace8a7c27b8cdf83f8a5009107191aa6dd27c1a4c037505
 SHA512 
12764b2e2016ae3ab3f0ed1f5b9be9ce10e466c53b408ad2c01b26bdf39ca41a358acd07aea5847db2b40e3e89293f77efcd2b310e4e2bf3071873abf1b20f49
 DIST mongo-tools-4.0.12.tar.gz 11134652 BLAKE2B 
d3c9703046dc577b85cefe1185678e0029411ddd44d0648f9b09fc3ab41e3661891d18afd83bf1a148dc4c9208895f444c115948e515e09dfa3062e89d98fc24
 SHA512 
068d8c456386caddcce23fa8917ffecdc9b5c39fb6794c5cd1d9099be1f127ecf680b006055581dc3d90507072a87788b46be7410f0dbede42da64c664b77ced

diff --git a/app-admin/mongo-tools/mongo-tools-3.6.14.ebuild 
b/app-admin/mongo-tools/mongo-tools-3.6.14.ebuild
new file mode 100644
index 000..092d770686f
--- /dev/null
+++ b/app-admin/mongo-tools/mongo-tools-3.6.14.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/*
+}



[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2019-09-22 Thread Alexys Jacob
commit: 8b8e559075d35adf77a8bf4df5b3a29c6f857fea
Author: Alexys Jacob  gentoo  org>
AuthorDate: Sun Sep 22 18:57:02 2019 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Sun Sep 22 18:58:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b8e5590

app-admin/mongo-tools: version bump

Package-Manager: Portage-2.3.75, Repoman-2.3.17
Signed-off-by: Alexys Jacob  gentoo.org>

 app-admin/mongo-tools/Manifest |  1 +
 app-admin/mongo-tools/mongo-tools-4.2.0.ebuild | 71 ++
 2 files changed, 72 insertions(+)

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index 99045b1b43e..f5f6e6c8a0e 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -2,3 +2,4 @@ DIST mongo-tools-3.6.13.tar.gz 4990848 BLAKE2B 
022ddf214869c3a3e545aa9572f77f0ad
 DIST mongo-tools-3.6.8.tar.gz 4723878 BLAKE2B 
a1693024d60f69d25c268eaaa30a478b1e4c0042c5fb7a3fd6252ed00aef2fee3fba94516fe825165a1a57887ed38e4fbce488c48ddd4f45349f0b7a1b244020
 SHA512 
359e8ce2d847d005d48ff12bc2e8af73213d81cd1521d2b5b5ac94792468218248bebbe808e1bd8fd49234eab8480608f294c1b63f317aed58f456b84ef17dcf
 DIST mongo-tools-4.0.10.tar.gz 11134721 BLAKE2B 
f25e834622db8a2cea1658d9396b747666dee6a0e6471f5fcf351431f716735227b19f854c228ebb9ace8a7c27b8cdf83f8a5009107191aa6dd27c1a4c037505
 SHA512 
12764b2e2016ae3ab3f0ed1f5b9be9ce10e466c53b408ad2c01b26bdf39ca41a358acd07aea5847db2b40e3e89293f77efcd2b310e4e2bf3071873abf1b20f49
 DIST mongo-tools-4.0.12.tar.gz 11134652 BLAKE2B 
d3c9703046dc577b85cefe1185678e0029411ddd44d0648f9b09fc3ab41e3661891d18afd83bf1a148dc4c9208895f444c115948e515e09dfa3062e89d98fc24
 SHA512 
068d8c456386caddcce23fa8917ffecdc9b5c39fb6794c5cd1d9099be1f127ecf680b006055581dc3d90507072a87788b46be7410f0dbede42da64c664b77ced
+DIST mongo-tools-4.2.0.tar.gz 14402906 BLAKE2B 
535a9a0e49f4288e63c905f7bd98c1f1b8e38eef562cb5c40a0c09500a18eb7fd401f05df2261c92db3e8a126cc03902fa3c61177b50a3e18f2d33bee7590f52
 SHA512 
f937a9f2b4ccfe262ca1a09e7bd103ffbdd45eae7c6deed8c1453f4499935f526f513749422e3215071ef465291c3f0544bf1e9510bbaf8dd9fa1edcf22f887a

diff --git a/app-admin/mongo-tools/mongo-tools-4.2.0.ebuild 
b/app-admin/mongo-tools/mongo-tools-4.2.0.ebuild
new file mode 100644
index 000..092d770686f
--- /dev/null
+++ b/app-admin/mongo-tools/mongo-tools-4.2.0.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/*
+}



[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2019-08-12 Thread Alexys Jacob
commit: 80c643a2b6047906a0c054e38b48087e31521b87
Author: Alexys Jacob  gentoo  org>
AuthorDate: Tue Aug 13 05:56:49 2019 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Tue Aug 13 05:57:34 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80c643a2

app-admin/mongo-tools: version bump, drop old

Package-Manager: Portage-2.3.71, Repoman-2.3.17
Signed-off-by: Alexys Jacob  gentoo.org>

 app-admin/mongo-tools/Manifest  | 2 +-
 .../{mongo-tools-4.0.11.ebuild => mongo-tools-4.0.12.ebuild}| 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index a023158e43c..99045b1b43e 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -1,4 +1,4 @@
 DIST mongo-tools-3.6.13.tar.gz 4990848 BLAKE2B 
022ddf214869c3a3e545aa9572f77f0adc21c0dbd6ea6ad9e083633c2e972b7ef77c0bda4354dbde9fd0e23c6dd02a7de8873d4b2c2a3e4423ea6f8e1c23ed52
 SHA512 
fac21c4841bfecba11a7765bb6c36d1fa19d4dd94f6f4168fa767fc11dc8b3caf04a5029becd09eba01dd694274e9cc22da8566ce878769e5c3c97016c162432
 DIST mongo-tools-3.6.8.tar.gz 4723878 BLAKE2B 
a1693024d60f69d25c268eaaa30a478b1e4c0042c5fb7a3fd6252ed00aef2fee3fba94516fe825165a1a57887ed38e4fbce488c48ddd4f45349f0b7a1b244020
 SHA512 
359e8ce2d847d005d48ff12bc2e8af73213d81cd1521d2b5b5ac94792468218248bebbe808e1bd8fd49234eab8480608f294c1b63f317aed58f456b84ef17dcf
 DIST mongo-tools-4.0.10.tar.gz 11134721 BLAKE2B 
f25e834622db8a2cea1658d9396b747666dee6a0e6471f5fcf351431f716735227b19f854c228ebb9ace8a7c27b8cdf83f8a5009107191aa6dd27c1a4c037505
 SHA512 
12764b2e2016ae3ab3f0ed1f5b9be9ce10e466c53b408ad2c01b26bdf39ca41a358acd07aea5847db2b40e3e89293f77efcd2b310e4e2bf3071873abf1b20f49
-DIST mongo-tools-4.0.11.tar.gz 11134649 BLAKE2B 
8e2b01f9180314b3386b9ecabbe504faae2a10dadbc6fb39c5e9917b5b5bc860e5c274fd632b17ed310c90c106be87e00802334149b8e061e7760cb3d6bbe1ea
 SHA512 
11e5d7452aa2aaa0d8b7904d634f0b95c42910d3e63c79a69146500d089c8ffc21823ca37f8e4d41910a3343d819e14fdb01d02625461c1c5788562282436ebb
+DIST mongo-tools-4.0.12.tar.gz 11134652 BLAKE2B 
d3c9703046dc577b85cefe1185678e0029411ddd44d0648f9b09fc3ab41e3661891d18afd83bf1a148dc4c9208895f444c115948e515e09dfa3062e89d98fc24
 SHA512 
068d8c456386caddcce23fa8917ffecdc9b5c39fb6794c5cd1d9099be1f127ecf680b006055581dc3d90507072a87788b46be7410f0dbede42da64c664b77ced

diff --git a/app-admin/mongo-tools/mongo-tools-4.0.11.ebuild 
b/app-admin/mongo-tools/mongo-tools-4.0.12.ebuild
similarity index 100%
rename from app-admin/mongo-tools/mongo-tools-4.0.11.ebuild
rename to app-admin/mongo-tools/mongo-tools-4.0.12.ebuild



[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2019-08-09 Thread Agostino Sarubbo
commit: 4b416be0c7b555b36897acf292d11e54d429bc99
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Fri Aug  9 14:50:13 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Fri Aug  9 14:50:13 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b416be0

app-admin/mongo-tools: amd64 stable wrt bug #691810

Package-Manager: Portage-2.3.69, Repoman-2.3.16
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 app-admin/mongo-tools/mongo-tools-3.6.13.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/mongo-tools/mongo-tools-3.6.13.ebuild 
b/app-admin/mongo-tools/mongo-tools-3.6.13.ebuild
index 092d770686f..11f797e129c 100644
--- a/app-admin/mongo-tools/mongo-tools-3.6.13.ebuild
+++ b/app-admin/mongo-tools/mongo-tools-3.6.13.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/mongodb/mongo-tools/archive/r${MY_PV}.tar.gz -> mong
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 IUSE="sasl ssl"
 
 DEPEND="dev-lang/go:=



[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2019-08-09 Thread Agostino Sarubbo
commit: cbbf827c4ab308dc8fbb40cff99d39fdcd19da3e
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Fri Aug  9 12:51:19 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Fri Aug  9 12:51:19 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cbbf827c

app-admin/mongo-tools: amd64 stable wrt bug #691808

Package-Manager: Portage-2.3.69, Repoman-2.3.16
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 app-admin/mongo-tools/mongo-tools-4.0.10.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/mongo-tools/mongo-tools-4.0.10.ebuild 
b/app-admin/mongo-tools/mongo-tools-4.0.10.ebuild
index 092d770686f..11f797e129c 100644
--- a/app-admin/mongo-tools/mongo-tools-4.0.10.ebuild
+++ b/app-admin/mongo-tools/mongo-tools-4.0.10.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/mongodb/mongo-tools/archive/r${MY_PV}.tar.gz -> mong
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 IUSE="sasl ssl"
 
 DEPEND="dev-lang/go:=



[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2019-08-09 Thread Alexys Jacob
commit: 0b02540e226af87edb1114a137cab7702f3a9af5
Author: Alexys Jacob  gentoo  org>
AuthorDate: Fri Aug  9 07:18:46 2019 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Fri Aug  9 07:28:04 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b02540e

app-admin/mongo-tools: drop old ebuilds

Package-Manager: Portage-2.3.71, Repoman-2.3.17
Signed-off-by: Alexys Jacob  gentoo.org>

 app-admin/mongo-tools/Manifest  |  4 --
 app-admin/mongo-tools/mongo-tools-3.6.11.ebuild | 71 -
 app-admin/mongo-tools/mongo-tools-3.6.12.ebuild | 71 -
 app-admin/mongo-tools/mongo-tools-4.0.6.ebuild  | 71 -
 app-admin/mongo-tools/mongo-tools-4.0.9.ebuild  | 71 -
 5 files changed, 288 deletions(-)

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index 8b7f88fafa7..a023158e43c 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -1,8 +1,4 @@
-DIST mongo-tools-3.6.11.tar.gz 4731680 BLAKE2B 
88558a26d2552848121d984e4b963acafe9e56b37a3d393bacdcd8c0f71a29e2082845ad6d648c3c4800bd47514d339d1f1e984e339a48572ecb5f6f31d9166d
 SHA512 
2291cb963965a59a89bac35a760ce49b4b835d1447065d558c4b254aae5fe38f7ebe4c9d7a67aa475e06be95c45f8529922c6fb0b78d41bc07d1a83f3a564192
-DIST mongo-tools-3.6.12.tar.gz 4990846 BLAKE2B 
a2b649df03ba17175d95b0fb7be94e446a0cda8dd45111a41f6f74ee5498b853d9fd361f683d4db558197a1951fc79056b516cff6fcd32cc32877744456b67e3
 SHA512 
948e49719c958e8b7cd1c27b9d413df6d032189801180540ee86b927d5dd53ab4b8906e5cc7880163ecc6abf11daebfc2fb96fcf8fcfd3e0b1f8c8fedaf54558
 DIST mongo-tools-3.6.13.tar.gz 4990848 BLAKE2B 
022ddf214869c3a3e545aa9572f77f0adc21c0dbd6ea6ad9e083633c2e972b7ef77c0bda4354dbde9fd0e23c6dd02a7de8873d4b2c2a3e4423ea6f8e1c23ed52
 SHA512 
fac21c4841bfecba11a7765bb6c36d1fa19d4dd94f6f4168fa767fc11dc8b3caf04a5029becd09eba01dd694274e9cc22da8566ce878769e5c3c97016c162432
 DIST mongo-tools-3.6.8.tar.gz 4723878 BLAKE2B 
a1693024d60f69d25c268eaaa30a478b1e4c0042c5fb7a3fd6252ed00aef2fee3fba94516fe825165a1a57887ed38e4fbce488c48ddd4f45349f0b7a1b244020
 SHA512 
359e8ce2d847d005d48ff12bc2e8af73213d81cd1521d2b5b5ac94792468218248bebbe808e1bd8fd49234eab8480608f294c1b63f317aed58f456b84ef17dcf
 DIST mongo-tools-4.0.10.tar.gz 11134721 BLAKE2B 
f25e834622db8a2cea1658d9396b747666dee6a0e6471f5fcf351431f716735227b19f854c228ebb9ace8a7c27b8cdf83f8a5009107191aa6dd27c1a4c037505
 SHA512 
12764b2e2016ae3ab3f0ed1f5b9be9ce10e466c53b408ad2c01b26bdf39ca41a358acd07aea5847db2b40e3e89293f77efcd2b310e4e2bf3071873abf1b20f49
 DIST mongo-tools-4.0.11.tar.gz 11134649 BLAKE2B 
8e2b01f9180314b3386b9ecabbe504faae2a10dadbc6fb39c5e9917b5b5bc860e5c274fd632b17ed310c90c106be87e00802334149b8e061e7760cb3d6bbe1ea
 SHA512 
11e5d7452aa2aaa0d8b7904d634f0b95c42910d3e63c79a69146500d089c8ffc21823ca37f8e4d41910a3343d819e14fdb01d02625461c1c5788562282436ebb
-DIST mongo-tools-4.0.6.tar.gz 10879606 BLAKE2B 
9a7656ba1486df4b36ceb527735ad46864d7a04f2d0451fb4e04bbbdc09c3bb0ec922aa5daa584b93e123e1c3764c0ebef96a3566dd0d6b646a627d769645619
 SHA512 
d6185d7442a593d29db78889c55aba53e070bedd522d78d8c0bf52bb27f26c5fee6d010457f65774ea36a2e6d5280f38c95433ff76ed53ed9d74b1c811198cb7
-DIST mongo-tools-4.0.9.tar.gz 11134365 BLAKE2B 
ad27ad868b33a3c0802a0c79b5570a85c20106c71f38229e25a09a4ab8f0e6edbfe4338ce9862b2ba6b7836e4aa71fe5a3704a81a028a95d74168ac5107364d7
 SHA512 
55720766da5fdb9ee5a93d90be5ebe61ec4a5f5428097e9d6cb022472a2964c39b184531e1f59fb7780e834c3b03986e9edcc66e3f3933b3457b86260a6bbd8f

diff --git a/app-admin/mongo-tools/mongo-tools-3.6.11.ebuild 
b/app-admin/mongo-tools/mongo-tools-3.6.11.ebuild
deleted file mode 100644
index 092d770686f..000
--- a/app-admin/mongo-tools/mongo-tools-3.6.11.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# 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 

[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2019-08-09 Thread Alexys Jacob
commit: c308624036e48ccd324213ab8c644f1704572c9b
Author: Alexys Jacob  gentoo  org>
AuthorDate: Fri Aug  9 07:09:47 2019 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Fri Aug  9 07:28:01 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3086240

app-admin/mongo-tools: version bump

Package-Manager: Portage-2.3.71, Repoman-2.3.17
Signed-off-by: Alexys Jacob  gentoo.org>

 app-admin/mongo-tools/Manifest  |  1 +
 app-admin/mongo-tools/mongo-tools-4.0.11.ebuild | 71 +
 2 files changed, 72 insertions(+)

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index 81807a47fe4..052e0950331 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -4,5 +4,6 @@ DIST mongo-tools-3.6.12.tar.gz 4990846 BLAKE2B 
a2b649df03ba17175d95b0fb7be94e446
 DIST mongo-tools-3.6.13.tar.gz 4990848 BLAKE2B 
022ddf214869c3a3e545aa9572f77f0adc21c0dbd6ea6ad9e083633c2e972b7ef77c0bda4354dbde9fd0e23c6dd02a7de8873d4b2c2a3e4423ea6f8e1c23ed52
 SHA512 
fac21c4841bfecba11a7765bb6c36d1fa19d4dd94f6f4168fa767fc11dc8b3caf04a5029becd09eba01dd694274e9cc22da8566ce878769e5c3c97016c162432
 DIST mongo-tools-3.6.8.tar.gz 4723878 BLAKE2B 
a1693024d60f69d25c268eaaa30a478b1e4c0042c5fb7a3fd6252ed00aef2fee3fba94516fe825165a1a57887ed38e4fbce488c48ddd4f45349f0b7a1b244020
 SHA512 
359e8ce2d847d005d48ff12bc2e8af73213d81cd1521d2b5b5ac94792468218248bebbe808e1bd8fd49234eab8480608f294c1b63f317aed58f456b84ef17dcf
 DIST mongo-tools-4.0.10.tar.gz 11134721 BLAKE2B 
f25e834622db8a2cea1658d9396b747666dee6a0e6471f5fcf351431f716735227b19f854c228ebb9ace8a7c27b8cdf83f8a5009107191aa6dd27c1a4c037505
 SHA512 
12764b2e2016ae3ab3f0ed1f5b9be9ce10e466c53b408ad2c01b26bdf39ca41a358acd07aea5847db2b40e3e89293f77efcd2b310e4e2bf3071873abf1b20f49
+DIST mongo-tools-4.0.11.tar.gz 11134649 BLAKE2B 
8e2b01f9180314b3386b9ecabbe504faae2a10dadbc6fb39c5e9917b5b5bc860e5c274fd632b17ed310c90c106be87e00802334149b8e061e7760cb3d6bbe1ea
 SHA512 
11e5d7452aa2aaa0d8b7904d634f0b95c42910d3e63c79a69146500d089c8ffc21823ca37f8e4d41910a3343d819e14fdb01d02625461c1c5788562282436ebb
 DIST mongo-tools-4.0.6.tar.gz 10879606 BLAKE2B 
9a7656ba1486df4b36ceb527735ad46864d7a04f2d0451fb4e04bbbdc09c3bb0ec922aa5daa584b93e123e1c3764c0ebef96a3566dd0d6b646a627d769645619
 SHA512 
d6185d7442a593d29db78889c55aba53e070bedd522d78d8c0bf52bb27f26c5fee6d010457f65774ea36a2e6d5280f38c95433ff76ed53ed9d74b1c811198cb7
 DIST mongo-tools-4.0.9.tar.gz 11134365 BLAKE2B 
ad27ad868b33a3c0802a0c79b5570a85c20106c71f38229e25a09a4ab8f0e6edbfe4338ce9862b2ba6b7836e4aa71fe5a3704a81a028a95d74168ac5107364d7
 SHA512 
55720766da5fdb9ee5a93d90be5ebe61ec4a5f5428097e9d6cb022472a2964c39b184531e1f59fb7780e834c3b03986e9edcc66e3f3933b3457b86260a6bbd8f

diff --git a/app-admin/mongo-tools/mongo-tools-4.0.11.ebuild 
b/app-admin/mongo-tools/mongo-tools-4.0.11.ebuild
new file mode 100644
index 000..092d770686f
--- /dev/null
+++ b/app-admin/mongo-tools/mongo-tools-4.0.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/*
+}



[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2019-08-09 Thread Alexys Jacob
commit: b4a6a3313e3860845cfa42f988d00e7e1a2fe864
Author: Alexys Jacob  gentoo  org>
AuthorDate: Fri Aug  9 07:12:54 2019 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Fri Aug  9 07:28:02 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4a6a331

app-admin/mongo-tools: drop soon to EOL 3.4

Package-Manager: Portage-2.3.71, Repoman-2.3.17
Signed-off-by: Alexys Jacob  gentoo.org>

 app-admin/mongo-tools/Manifest  |  1 -
 app-admin/mongo-tools/mongo-tools-3.4.16.ebuild | 60 -
 2 files changed, 61 deletions(-)

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index 052e0950331..8b7f88fafa7 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -1,4 +1,3 @@
-DIST mongo-tools-3.4.16.tar.gz 4697191 BLAKE2B 
2e9a0e7dc8016d3e7d7c7f8d0cf80a97d3d199603c0b8b791df5a0d79d418ffaa232eee694047a7ca11fa7623023b4123becd437cfe3dec11e26cd525720bcad
 SHA512 
b40c6dee75d860de1da73faf79f5f68c098ce7c80681486c66fff04a937474dcede91c7be907a8e36033b3898f7499e8f53271944c0df3360756c27361efb6f5
 DIST mongo-tools-3.6.11.tar.gz 4731680 BLAKE2B 
88558a26d2552848121d984e4b963acafe9e56b37a3d393bacdcd8c0f71a29e2082845ad6d648c3c4800bd47514d339d1f1e984e339a48572ecb5f6f31d9166d
 SHA512 
2291cb963965a59a89bac35a760ce49b4b835d1447065d558c4b254aae5fe38f7ebe4c9d7a67aa475e06be95c45f8529922c6fb0b78d41bc07d1a83f3a564192
 DIST mongo-tools-3.6.12.tar.gz 4990846 BLAKE2B 
a2b649df03ba17175d95b0fb7be94e446a0cda8dd45111a41f6f74ee5498b853d9fd361f683d4db558197a1951fc79056b516cff6fcd32cc32877744456b67e3
 SHA512 
948e49719c958e8b7cd1c27b9d413df6d032189801180540ee86b927d5dd53ab4b8906e5cc7880163ecc6abf11daebfc2fb96fcf8fcfd3e0b1f8c8fedaf54558
 DIST mongo-tools-3.6.13.tar.gz 4990848 BLAKE2B 
022ddf214869c3a3e545aa9572f77f0adc21c0dbd6ea6ad9e083633c2e972b7ef77c0bda4354dbde9fd0e23c6dd02a7de8873d4b2c2a3e4423ea6f8e1c23ed52
 SHA512 
fac21c4841bfecba11a7765bb6c36d1fa19d4dd94f6f4168fa767fc11dc8b3caf04a5029becd09eba01dd694274e9cc22da8566ce878769e5c3c97016c162432

diff --git a/app-admin/mongo-tools/mongo-tools-3.4.16.ebuild 
b/app-admin/mongo-tools/mongo-tools-3.4.16.ebuild
deleted file mode 100644
index d2a369f77e3..000
--- a/app-admin/mongo-tools/mongo-tools-3.4.16.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# 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="!

[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2019-06-17 Thread Alexys Jacob
commit: e7e4d7f29927450732706204578fce92c508d43e
Author: Alexys Jacob  gentoo  org>
AuthorDate: Mon Jun 17 12:31:46 2019 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Mon Jun 17 12:33:19 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7e4d7f2

app-admin/mongo-tools: version bump

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Alexys Jacob  gentoo.org>

 app-admin/mongo-tools/Manifest  |  1 +
 app-admin/mongo-tools/mongo-tools-3.6.13.ebuild | 71 +
 2 files changed, 72 insertions(+)

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index 1cd3edad502..81807a47fe4 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -1,6 +1,7 @@
 DIST mongo-tools-3.4.16.tar.gz 4697191 BLAKE2B 
2e9a0e7dc8016d3e7d7c7f8d0cf80a97d3d199603c0b8b791df5a0d79d418ffaa232eee694047a7ca11fa7623023b4123becd437cfe3dec11e26cd525720bcad
 SHA512 
b40c6dee75d860de1da73faf79f5f68c098ce7c80681486c66fff04a937474dcede91c7be907a8e36033b3898f7499e8f53271944c0df3360756c27361efb6f5
 DIST mongo-tools-3.6.11.tar.gz 4731680 BLAKE2B 
88558a26d2552848121d984e4b963acafe9e56b37a3d393bacdcd8c0f71a29e2082845ad6d648c3c4800bd47514d339d1f1e984e339a48572ecb5f6f31d9166d
 SHA512 
2291cb963965a59a89bac35a760ce49b4b835d1447065d558c4b254aae5fe38f7ebe4c9d7a67aa475e06be95c45f8529922c6fb0b78d41bc07d1a83f3a564192
 DIST mongo-tools-3.6.12.tar.gz 4990846 BLAKE2B 
a2b649df03ba17175d95b0fb7be94e446a0cda8dd45111a41f6f74ee5498b853d9fd361f683d4db558197a1951fc79056b516cff6fcd32cc32877744456b67e3
 SHA512 
948e49719c958e8b7cd1c27b9d413df6d032189801180540ee86b927d5dd53ab4b8906e5cc7880163ecc6abf11daebfc2fb96fcf8fcfd3e0b1f8c8fedaf54558
+DIST mongo-tools-3.6.13.tar.gz 4990848 BLAKE2B 
022ddf214869c3a3e545aa9572f77f0adc21c0dbd6ea6ad9e083633c2e972b7ef77c0bda4354dbde9fd0e23c6dd02a7de8873d4b2c2a3e4423ea6f8e1c23ed52
 SHA512 
fac21c4841bfecba11a7765bb6c36d1fa19d4dd94f6f4168fa767fc11dc8b3caf04a5029becd09eba01dd694274e9cc22da8566ce878769e5c3c97016c162432
 DIST mongo-tools-3.6.8.tar.gz 4723878 BLAKE2B 
a1693024d60f69d25c268eaaa30a478b1e4c0042c5fb7a3fd6252ed00aef2fee3fba94516fe825165a1a57887ed38e4fbce488c48ddd4f45349f0b7a1b244020
 SHA512 
359e8ce2d847d005d48ff12bc2e8af73213d81cd1521d2b5b5ac94792468218248bebbe808e1bd8fd49234eab8480608f294c1b63f317aed58f456b84ef17dcf
 DIST mongo-tools-4.0.10.tar.gz 11134721 BLAKE2B 
f25e834622db8a2cea1658d9396b747666dee6a0e6471f5fcf351431f716735227b19f854c228ebb9ace8a7c27b8cdf83f8a5009107191aa6dd27c1a4c037505
 SHA512 
12764b2e2016ae3ab3f0ed1f5b9be9ce10e466c53b408ad2c01b26bdf39ca41a358acd07aea5847db2b40e3e89293f77efcd2b310e4e2bf3071873abf1b20f49
 DIST mongo-tools-4.0.6.tar.gz 10879606 BLAKE2B 
9a7656ba1486df4b36ceb527735ad46864d7a04f2d0451fb4e04bbbdc09c3bb0ec922aa5daa584b93e123e1c3764c0ebef96a3566dd0d6b646a627d769645619
 SHA512 
d6185d7442a593d29db78889c55aba53e070bedd522d78d8c0bf52bb27f26c5fee6d010457f65774ea36a2e6d5280f38c95433ff76ed53ed9d74b1c811198cb7

diff --git a/app-admin/mongo-tools/mongo-tools-3.6.13.ebuild 
b/app-admin/mongo-tools/mongo-tools-3.6.13.ebuild
new file mode 100644
index 000..092d770686f
--- /dev/null
+++ b/app-admin/mongo-tools/mongo-tools-3.6.13.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" \
+   

[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2019-06-07 Thread Alexys Jacob
commit: 04be46e3a496d688719b47ee86163a4bb1ca0b33
Author: Alexys Jacob  gentoo  org>
AuthorDate: Fri Jun  7 09:45:22 2019 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Fri Jun  7 09:45:42 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04be46e3

app-admin/mongo-tools: version bump

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Alexys Jacob  gentoo.org>

 app-admin/mongo-tools/Manifest  |  1 +
 app-admin/mongo-tools/mongo-tools-3.4.16.ebuild |  2 +-
 app-admin/mongo-tools/mongo-tools-4.0.10.ebuild | 71 +
 3 files changed, 73 insertions(+), 1 deletion(-)

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index 77b2833d03a..1cd3edad502 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -2,5 +2,6 @@ DIST mongo-tools-3.4.16.tar.gz 4697191 BLAKE2B 
2e9a0e7dc8016d3e7d7c7f8d0cf80a97d
 DIST mongo-tools-3.6.11.tar.gz 4731680 BLAKE2B 
88558a26d2552848121d984e4b963acafe9e56b37a3d393bacdcd8c0f71a29e2082845ad6d648c3c4800bd47514d339d1f1e984e339a48572ecb5f6f31d9166d
 SHA512 
2291cb963965a59a89bac35a760ce49b4b835d1447065d558c4b254aae5fe38f7ebe4c9d7a67aa475e06be95c45f8529922c6fb0b78d41bc07d1a83f3a564192
 DIST mongo-tools-3.6.12.tar.gz 4990846 BLAKE2B 
a2b649df03ba17175d95b0fb7be94e446a0cda8dd45111a41f6f74ee5498b853d9fd361f683d4db558197a1951fc79056b516cff6fcd32cc32877744456b67e3
 SHA512 
948e49719c958e8b7cd1c27b9d413df6d032189801180540ee86b927d5dd53ab4b8906e5cc7880163ecc6abf11daebfc2fb96fcf8fcfd3e0b1f8c8fedaf54558
 DIST mongo-tools-3.6.8.tar.gz 4723878 BLAKE2B 
a1693024d60f69d25c268eaaa30a478b1e4c0042c5fb7a3fd6252ed00aef2fee3fba94516fe825165a1a57887ed38e4fbce488c48ddd4f45349f0b7a1b244020
 SHA512 
359e8ce2d847d005d48ff12bc2e8af73213d81cd1521d2b5b5ac94792468218248bebbe808e1bd8fd49234eab8480608f294c1b63f317aed58f456b84ef17dcf
+DIST mongo-tools-4.0.10.tar.gz 11134721 BLAKE2B 
f25e834622db8a2cea1658d9396b747666dee6a0e6471f5fcf351431f716735227b19f854c228ebb9ace8a7c27b8cdf83f8a5009107191aa6dd27c1a4c037505
 SHA512 
12764b2e2016ae3ab3f0ed1f5b9be9ce10e466c53b408ad2c01b26bdf39ca41a358acd07aea5847db2b40e3e89293f77efcd2b310e4e2bf3071873abf1b20f49
 DIST mongo-tools-4.0.6.tar.gz 10879606 BLAKE2B 
9a7656ba1486df4b36ceb527735ad46864d7a04f2d0451fb4e04bbbdc09c3bb0ec922aa5daa584b93e123e1c3764c0ebef96a3566dd0d6b646a627d769645619
 SHA512 
d6185d7442a593d29db78889c55aba53e070bedd522d78d8c0bf52bb27f26c5fee6d010457f65774ea36a2e6d5280f38c95433ff76ed53ed9d74b1c811198cb7
 DIST mongo-tools-4.0.9.tar.gz 11134365 BLAKE2B 
ad27ad868b33a3c0802a0c79b5570a85c20106c71f38229e25a09a4ab8f0e6edbfe4338ce9862b2ba6b7836e4aa71fe5a3704a81a028a95d74168ac5107364d7
 SHA512 
55720766da5fdb9ee5a93d90be5ebe61ec4a5f5428097e9d6cb022472a2964c39b184531e1f59fb7780e834c3b03986e9edcc66e3f3933b3457b86260a6bbd8f

diff --git a/app-admin/mongo-tools/mongo-tools-3.4.16.ebuild 
b/app-admin/mongo-tools/mongo-tools-3.4.16.ebuild
index 5efc22cf1e8..d2a369f77e3 100644
--- a/app-admin/mongo-tools/mongo-tools-3.4.16.ebuild
+++ b/app-admin/mongo-tools/mongo-tools-3.4.16.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6

diff --git a/app-admin/mongo-tools/mongo-tools-4.0.10.ebuild 
b/app-admin/mongo-tools/mongo-tools-4.0.10.ebuild
new file mode 100644
index 000..092d770686f
--- /dev/null
+++ b/app-admin/mongo-tools/mongo-tools-4.0.10.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
+   

[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2019-04-17 Thread Alexys Jacob
commit: 789a6222096b0e3eef7c7dd0dd834c44f790c3dc
Author: Alexys Jacob  gentoo  org>
AuthorDate: Wed Apr 17 13:10:00 2019 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Wed Apr 17 13:10:43 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=789a6222

app-admin/mongo-tools: version bump

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Alexys Jacob  gentoo.org>

 app-admin/mongo-tools/Manifest  | 2 +-
 .../mongo-tools/{mongo-tools-4.0.8.ebuild => mongo-tools-4.0.9.ebuild}  | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index 842df903db9..77b2833d03a 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -3,4 +3,4 @@ DIST mongo-tools-3.6.11.tar.gz 4731680 BLAKE2B 
88558a26d2552848121d984e4b963acaf
 DIST mongo-tools-3.6.12.tar.gz 4990846 BLAKE2B 
a2b649df03ba17175d95b0fb7be94e446a0cda8dd45111a41f6f74ee5498b853d9fd361f683d4db558197a1951fc79056b516cff6fcd32cc32877744456b67e3
 SHA512 
948e49719c958e8b7cd1c27b9d413df6d032189801180540ee86b927d5dd53ab4b8906e5cc7880163ecc6abf11daebfc2fb96fcf8fcfd3e0b1f8c8fedaf54558
 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
-DIST mongo-tools-4.0.8.tar.gz 11134459 BLAKE2B 
4f47fcb0037ab0317a3e774ce8411c8add07218ea076d0b54f5aed3d76ca72e739b61c76bee505df52f1c916c1d77a683bd890a409d1d814e9b2389e37f1ee9b
 SHA512 
9e6886038b8c28d50cbec9f76869aceb79eb3214868bca367a6f7a74c346ff5da8d0ee4567bb6c17436860679ca97add3e24e6ba69a6a8d5764c0e1bc5b04813
+DIST mongo-tools-4.0.9.tar.gz 11134365 BLAKE2B 
ad27ad868b33a3c0802a0c79b5570a85c20106c71f38229e25a09a4ab8f0e6edbfe4338ce9862b2ba6b7836e4aa71fe5a3704a81a028a95d74168ac5107364d7
 SHA512 
55720766da5fdb9ee5a93d90be5ebe61ec4a5f5428097e9d6cb022472a2964c39b184531e1f59fb7780e834c3b03986e9edcc66e3f3933b3457b86260a6bbd8f

diff --git a/app-admin/mongo-tools/mongo-tools-4.0.8.ebuild 
b/app-admin/mongo-tools/mongo-tools-4.0.9.ebuild
similarity index 100%
rename from app-admin/mongo-tools/mongo-tools-4.0.8.ebuild
rename to app-admin/mongo-tools/mongo-tools-4.0.9.ebuild



[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2019-04-14 Thread Alexys Jacob
commit: 3ebb050e9d75e3b9349b9d2e5c98b1ca39b1a1b8
Author: Alexys Jacob  gentoo  org>
AuthorDate: Sun Apr 14 10:50:50 2019 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Sun Apr 14 10:50:50 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ebb050e

app-admin/mongo-tools: drop old version

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Alexys Jacob  gentoo.org>

 app-admin/mongo-tools/Manifest  |  1 -
 app-admin/mongo-tools/mongo-tools-3.6.10.ebuild | 71 -
 2 files changed, 72 deletions(-)

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index 4b2f280cd26..842df903db9 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -1,5 +1,4 @@
 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.12.tar.gz 4990846 BLAKE2B 
a2b649df03ba17175d95b0fb7be94e446a0cda8dd45111a41f6f74ee5498b853d9fd361f683d4db558197a1951fc79056b516cff6fcd32cc32877744456b67e3
 SHA512 
948e49719c958e8b7cd1c27b9d413df6d032189801180540ee86b927d5dd53ab4b8906e5cc7880163ecc6abf11daebfc2fb96fcf8fcfd3e0b1f8c8fedaf54558
 DIST mongo-tools-3.6.8.tar.gz 4723878 BLAKE2B 
a1693024d60f69d25c268eaaa30a478b1e4c0042c5fb7a3fd6252ed00aef2fee3fba94516fe825165a1a57887ed38e4fbce488c48ddd4f45349f0b7a1b244020
 SHA512 
359e8ce2d847d005d48ff12bc2e8af73213d81cd1521d2b5b5ac94792468218248bebbe808e1bd8fd49234eab8480608f294c1b63f317aed58f456b84ef17dcf

diff --git a/app-admin/mongo-tools/mongo-tools-3.6.10.ebuild 
b/app-admin/mongo-tools/mongo-tools-3.6.10.ebuild
deleted file mode 100644
index 092d770686f..000
--- a/app-admin/mongo-tools/mongo-tools-3.6.10.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# 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/*
-}



[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2019-04-14 Thread Alexys Jacob
commit: 4bbdf856dd289b0d423bca90bb09297643e7c555
Author: Alexys Jacob  gentoo  org>
AuthorDate: Sun Apr 14 10:36:14 2019 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Sun Apr 14 10:36:51 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4bbdf856

app-admin/mongo-tools: version bump

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Alexys Jacob  gentoo.org>

 app-admin/mongo-tools/Manifest  |  2 +
 app-admin/mongo-tools/mongo-tools-3.6.12.ebuild | 71 +
 app-admin/mongo-tools/mongo-tools-4.0.8.ebuild  | 71 +
 3 files changed, 144 insertions(+)

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index 10f66a07e88..4b2f280cd26 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -1,5 +1,7 @@
 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.12.tar.gz 4990846 BLAKE2B 
a2b649df03ba17175d95b0fb7be94e446a0cda8dd45111a41f6f74ee5498b853d9fd361f683d4db558197a1951fc79056b516cff6fcd32cc32877744456b67e3
 SHA512 
948e49719c958e8b7cd1c27b9d413df6d032189801180540ee86b927d5dd53ab4b8906e5cc7880163ecc6abf11daebfc2fb96fcf8fcfd3e0b1f8c8fedaf54558
 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
+DIST mongo-tools-4.0.8.tar.gz 11134459 BLAKE2B 
4f47fcb0037ab0317a3e774ce8411c8add07218ea076d0b54f5aed3d76ca72e739b61c76bee505df52f1c916c1d77a683bd890a409d1d814e9b2389e37f1ee9b
 SHA512 
9e6886038b8c28d50cbec9f76869aceb79eb3214868bca367a6f7a74c346ff5da8d0ee4567bb6c17436860679ca97add3e24e6ba69a6a8d5764c0e1bc5b04813

diff --git a/app-admin/mongo-tools/mongo-tools-3.6.12.ebuild 
b/app-admin/mongo-tools/mongo-tools-3.6.12.ebuild
new file mode 100644
index 000..092d770686f
--- /dev/null
+++ b/app-admin/mongo-tools/mongo-tools-3.6.12.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)" 

[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2019-03-28 Thread Zac Medico
commit: 75a8f7565c4012ebd30783559ed6c10b852f6b52
Author: Tomas Mozes  gmail  com>
AuthorDate: Mon Mar 18 05:53:33 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Thu Mar 28 17:39:07 2019 +
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  gmail.com>
Signed-off-by: Zac Medico  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 000..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/*
+}



[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2019-03-28 Thread Zac Medico
commit: 9bd4950ca45fa137697ff3e8d407e2014e4a9eec
Author: Tomas Mozes  gmail  com>
AuthorDate: Mon Mar 18 05:51:30 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Thu Mar 28 17:39:07 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9bd4950c

app-admin/mongo-tools: drop old

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Tomáš Mózes  gmail.com>
Signed-off-by: Zac Medico  gentoo.org>

 app-admin/mongo-tools/Manifest |  4 --
 app-admin/mongo-tools/mongo-tools-3.6.9.ebuild | 64 
 app-admin/mongo-tools/mongo-tools-4.0.3.ebuild | 64 
 app-admin/mongo-tools/mongo-tools-4.0.4.ebuild | 67 --
 app-admin/mongo-tools/mongo-tools-4.0.5.ebuild | 64 
 5 files changed, 263 deletions(-)

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index a85566e37c6..1c7246e119a 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -1,8 +1,4 @@
 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.8.tar.gz 4723878 BLAKE2B 
a1693024d60f69d25c268eaaa30a478b1e4c0042c5fb7a3fd6252ed00aef2fee3fba94516fe825165a1a57887ed38e4fbce488c48ddd4f45349f0b7a1b244020
 SHA512 
359e8ce2d847d005d48ff12bc2e8af73213d81cd1521d2b5b5ac94792468218248bebbe808e1bd8fd49234eab8480608f294c1b63f317aed58f456b84ef17dcf
-DIST mongo-tools-3.6.9.tar.gz 4723117 BLAKE2B 
2cc88b9e8424abe082d68a8f7afa02bf2b21d027cabe04298fafbd065346350d57f6a48ece1a849e779cac6da315aa9d5469c5f63ca5aae6be7e8f73fae3fe4b
 SHA512 
def8e2bb68898c540dfa9fbe742696d463c099e7d70fc2f0e114301d321e3983ef0b07588301340b0a3ffdf2280febc3fa37e77d2520f147e723d2ce147c7261
-DIST mongo-tools-4.0.3.tar.gz 10874727 BLAKE2B 
3e5d07b8ae797d0876b68a3018806e91a30758415aaa236423648a77f5e0d475848060516ee0da91a8448813a12a685410b93bf219b8180beb91f448e329a532
 SHA512 
cbe74b3fdebd0d4f6be6e3acf7f55f5f1a551b0ad1a23d82782643d2a9eb9ea4b7e0133985485b8c5a88c1fea26595e3ed9c759f1f63b578b6472d850154d67b
-DIST mongo-tools-4.0.4.tar.gz 10878921 BLAKE2B 
3960838f68333bf033be9b72191e221b449bde8157ecb6d2f595d84c862fadd9597a53be88e5b0ad691cb6163cf90294348145ecce4c796c88bf84a4d7d8ab86
 SHA512 
d7900dbbd1e1e63d5518494c85559a7eab34f53ffa38880628f3dda0a71ee1211f67cf7dfaac66498b0359eca32abb9c89410e5cc56415a1594acf38ebfa226b
-DIST mongo-tools-4.0.5.tar.gz 10878974 BLAKE2B 
704eadb7469d1f07bcf0c18fd2c3d1a2078064e8d0f33e03b0ec0a7539a8ae6e5c4ec3a4f9dff4f34d3cea8a2aa63097bfa050de0af5d0a44e54e4e47c83565f
 SHA512 
5a2ca0cb761895a6c3187bdf4ac0c11222ac681313c2c22801571a1147e07b7b6149150b07e58cd4487413017da56424ec494eaaf9aec9193498ee3cde73c5da
 DIST mongo-tools-4.0.6.tar.gz 10879606 BLAKE2B 
9a7656ba1486df4b36ceb527735ad46864d7a04f2d0451fb4e04bbbdc09c3bb0ec922aa5daa584b93e123e1c3764c0ebef96a3566dd0d6b646a627d769645619
 SHA512 
d6185d7442a593d29db78889c55aba53e070bedd522d78d8c0bf52bb27f26c5fee6d010457f65774ea36a2e6d5280f38c95433ff76ed53ed9d74b1c811198cb7

diff --git a/app-admin/mongo-tools/mongo-tools-3.6.9.ebuild 
b/app-admin/mongo-tools/mongo-tools-3.6.9.ebuild
deleted file mode 100644
index 5cf7cbaadac..000
--- a/app-admin/mongo-tools/mongo-tools-3.6.9.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2018 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"
-
-RDEPEND="!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="!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="!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
-   

[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2019-03-28 Thread Zac Medico
commit: cf2853bb8e525a2aaf580c47ad556ff716bf9789
Author: Tomas Mozes  gmail  com>
AuthorDate: Mon Mar 18 05:48:40 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Thu Mar 28 17:39:07 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf2853bb

app-admin/mongo-tools: fix building with dev-lang/go-1.12

Bug: https://bugs.gentoo.org/678924
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Tomáš Mózes  gmail.com>
Signed-off-by: Zac Medico  gentoo.org>

 app-admin/mongo-tools/mongo-tools-3.6.10.ebuild | 7 +++
 app-admin/mongo-tools/mongo-tools-3.6.8.ebuild  | 5 -
 2 files changed, 11 insertions(+), 1 deletion(-)

diff --git a/app-admin/mongo-tools/mongo-tools-3.6.10.ebuild 
b/app-admin/mongo-tools/mongo-tools-3.6.10.ebuild
index 5aacbbb1063..0e317acb91c 100644
--- a/app-admin/mongo-tools/mongo-tools-3.6.10.ebuild
+++ b/app-admin/mongo-tools/mongo-tools-3.6.10.ebuild
@@ -32,6 +32,13 @@ src_unpack() {
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=()
 

diff --git a/app-admin/mongo-tools/mongo-tools-3.6.8.ebuild 
b/app-admin/mongo-tools/mongo-tools-3.6.8.ebuild
index cb82aab24b2..81268b0dd2f 100644
--- a/app-admin/mongo-tools/mongo-tools-3.6.8.ebuild
+++ b/app-admin/mongo-tools/mongo-tools-3.6.8.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -40,6 +40,9 @@ src_prepare() {
if ! use ppc64; then
sed -i 's/\(go build\)/\1 -buildmode=pie/g' build.sh || die
fi
+
+   # allow building with go 1.12 #678924
+   sed -i 's/_Ctype_struct_/C.struct_/' 
vendor/src/github.com/google/gopacket/pcap/pcap.go || die
 }
 
 src_compile() {



[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2019-03-28 Thread Zac Medico
commit: 00e497d111d51817d243ca7892b6f5d995f423bf
Author: Tomas Mozes  gmail  com>
AuthorDate: Tue Mar 19 06:06:09 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Thu Mar 28 17:39:07 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00e497d1

app-admin/mongo-tools: fix GOROOT for 17.1 profiles

Closes: https://github.com/gentoo/gentoo/pull/11399
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Tomáš Mózes  gmail.com>
Signed-off-by: Zac Medico  gentoo.org>

 app-admin/mongo-tools/mongo-tools-3.6.10.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/mongo-tools/mongo-tools-3.6.10.ebuild 
b/app-admin/mongo-tools/mongo-tools-3.6.10.ebuild
index 0e317acb91c..092d770686f 100644
--- a/app-admin/mongo-tools/mongo-tools-3.6.10.ebuild
+++ b/app-admin/mongo-tools/mongo-tools-3.6.10.ebuild
@@ -61,7 +61,7 @@ src_compile() {
mkdir -p bin || die
for i in bsondump mongostat mongofiles mongoexport mongoimport 
mongorestore mongodump mongotop mongoreplay; do
echo "Building $i"
-   GOROOT="${PREFIX}/usr/$(get_libdir)/go" GOPATH="${WORKDIR}" go 
build -buildmode="${buildmode}" -o "bin/$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
 }



[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2019-03-06 Thread Zac Medico
commit: e6db1873022e16ad81f59871c24282fea25bccc0
Author: Tomas Mozes  gmail  com>
AuthorDate: Thu Mar  7 02:54:06 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Thu Mar  7 03:32:32 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6db1873

app-admin/mongo-tools: allow building with dev-lang/go-1.12

Closes: https://github.com/gentoo/gentoo/pull/11279
Bug: https://bugs.gentoo.org/678924
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Tomáš Mózes  gmail.com>
Signed-off-by: Zac Medico  gentoo.org>

 app-admin/mongo-tools/mongo-tools-4.0.6.ebuild | 9 -
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/app-admin/mongo-tools/mongo-tools-4.0.6.ebuild 
b/app-admin/mongo-tools/mongo-tools-4.0.6.ebuild
index 7600d4a67e5..092d770686f 100644
--- a/app-admin/mongo-tools/mongo-tools-4.0.6.ebuild
+++ b/app-admin/mongo-tools/mongo-tools-4.0.6.ebuild
@@ -15,7 +15,7 @@ SLOT="0"
 KEYWORDS="~amd64"
 IUSE="sasl ssl"
 
-DEPEND="

[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2019-03-06 Thread Zac Medico
commit: c197f79646d7c015f872af6139d7b08af514c0be
Author: Zac Medico  gentoo  org>
AuthorDate: Thu Mar  7 03:21:51 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Thu Mar  7 03:32:31 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c197f796

app-admin/mongo-tools: fix GOROOT for 17.1 profiles

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Zac Medico  gentoo.org>

 app-admin/mongo-tools/mongo-tools-4.0.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/mongo-tools/mongo-tools-4.0.6.ebuild 
b/app-admin/mongo-tools/mongo-tools-4.0.6.ebuild
index 9a10e5de211..7600d4a67e5 100644
--- a/app-admin/mongo-tools/mongo-tools-4.0.6.ebuild
+++ b/app-admin/mongo-tools/mongo-tools-4.0.6.ebuild
@@ -54,7 +54,7 @@ src_compile() {
mkdir -p bin || die
for i in bsondump mongostat mongofiles mongoexport mongoimport 
mongorestore mongodump mongotop mongoreplay; do
echo "Building $i"
-   GOROOT="${PREFIX}/usr/$(get_libdir)/go" GOPATH="${WORKDIR}" go 
build -buildmode="${buildmode}" -o "bin/$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
 }



[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2019-03-06 Thread Zac Medico
commit: 896a97d1196474616729ad75a81418789b8b7187
Author: Tomas Mozes  gmail  com>
AuthorDate: Thu Mar  7 02:54:06 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Thu Mar  7 02:56:05 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=896a97d1

app-admin/mongo-tools: allow building with dev-lang/go-1.12

Bug: https://bugs.gentoo.org/678924
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Tomáš Mózes  gmail.com>
Signed-off-by: Zac Medico  gentoo.org>

 app-admin/mongo-tools/mongo-tools-4.0.4.ebuild | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/app-admin/mongo-tools/mongo-tools-4.0.4.ebuild 
b/app-admin/mongo-tools/mongo-tools-4.0.4.ebuild
index 5cf7cbaadac..27f23784aa2 100644
--- a/app-admin/mongo-tools/mongo-tools-4.0.4.ebuild
+++ b/app-admin/mongo-tools/mongo-tools-4.0.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -43,6 +43,9 @@ src_prepare() {
if ! use ppc64; then
sed -i 's/\(go build\)/\1 -buildmode=pie/g' build.sh || die
fi
+
+   # allow building with go 1.12 #678924
+   sed -i 's/_Ctype_struct_/C.struct_/' 
vendor/src/github.com/google/gopacket/pcap/pcap.go || die
 }
 
 src_compile() {



[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2019-03-04 Thread Thomas Deutschmann
commit: 7002ba14843854bea72a9fff8195ff4700956ec3
Author: Tomas Mozes  gmail  com>
AuthorDate: Mon Mar  4 07:38:45 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Mar  4 15:49:10 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7002ba14

app-admin/mongo-tools: require https://bugs.gentoo.org/678924
Bug: https://jira.mongodb.org/browse/TOOLS-2233
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Tomáš Mózes  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/11250
Signed-off-by: Thomas Deutschmann  gentoo.org>

 app-admin/mongo-tools/mongo-tools-4.0.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/mongo-tools/mongo-tools-4.0.6.ebuild 
b/app-admin/mongo-tools/mongo-tools-4.0.6.ebuild
index 5aacbbb1063..9a10e5de211 100644
--- a/app-admin/mongo-tools/mongo-tools-4.0.6.ebuild
+++ b/app-admin/mongo-tools/mongo-tools-4.0.6.ebuild
@@ -15,7 +15,7 @@ SLOT="0"
 KEYWORDS="~amd64"
 IUSE="sasl ssl"
 
-DEPEND="dev-lang/go:=
+DEPEND="

[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2019-03-03 Thread Thomas Deutschmann
commit: fb1a9827eecead7c66d6917f36516e85fb650979
Author: Tomas Mozes  gmail  com>
AuthorDate: Sat Jan 26 05:17:02 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Mar  4 00:47:14 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb1a9827

app-admin/mongo-tools: bump to 3.6.10

Signed-off-by: Tomas Mozes  gmail.com>
Signed-off-by: Thomas Deutschmann  gentoo.org>

 app-admin/mongo-tools/Manifest  |  1 +
 app-admin/mongo-tools/mongo-tools-3.6.10.ebuild | 64 +
 2 files changed, 65 insertions(+)

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index 3105cbeafe0..77b75c086d1 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.8.tar.gz 4723878 BLAKE2B 
a1693024d60f69d25c268eaaa30a478b1e4c0042c5fb7a3fd6252ed00aef2fee3fba94516fe825165a1a57887ed38e4fbce488c48ddd4f45349f0b7a1b244020
 SHA512 
359e8ce2d847d005d48ff12bc2e8af73213d81cd1521d2b5b5ac94792468218248bebbe808e1bd8fd49234eab8480608f294c1b63f317aed58f456b84ef17dcf
 DIST mongo-tools-3.6.9.tar.gz 4723117 BLAKE2B 
2cc88b9e8424abe082d68a8f7afa02bf2b21d027cabe04298fafbd065346350d57f6a48ece1a849e779cac6da315aa9d5469c5f63ca5aae6be7e8f73fae3fe4b
 SHA512 
def8e2bb68898c540dfa9fbe742696d463c099e7d70fc2f0e114301d321e3983ef0b07588301340b0a3ffdf2280febc3fa37e77d2520f147e723d2ce147c7261
 DIST mongo-tools-4.0.3.tar.gz 10874727 BLAKE2B 
3e5d07b8ae797d0876b68a3018806e91a30758415aaa236423648a77f5e0d475848060516ee0da91a8448813a12a685410b93bf219b8180beb91f448e329a532
 SHA512 
cbe74b3fdebd0d4f6be6e3acf7f55f5f1a551b0ad1a23d82782643d2a9eb9ea4b7e0133985485b8c5a88c1fea26595e3ed9c759f1f63b578b6472d850154d67b

diff --git a/app-admin/mongo-tools/mongo-tools-3.6.10.ebuild 
b/app-admin/mongo-tools/mongo-tools-3.6.10.ebuild
new file mode 100644
index 000..5aacbbb1063
--- /dev/null
+++ b/app-admin/mongo-tools/mongo-tools-3.6.10.ebuild
@@ -0,0 +1,64 @@
+# 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_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="${PREFIX}/usr/$(get_libdir)/go" 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/*
+}



[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2019-03-03 Thread Thomas Deutschmann
commit: ad544cbe82a46faaf1948428926f91d2cb5a88cb
Author: Tomas Mozes  gmail  com>
AuthorDate: Thu Feb 14 14:55:57 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Mar  4 00:47:33 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad544cbe

app-admin/mongo-tools: bump to 4.0.6

Package-Manager: Portage-2.3.59, Repoman-2.3.12
Signed-off-by: Tomáš Mózes  gmail.com>
Signed-off-by: Thomas Deutschmann  gentoo.org>

 app-admin/mongo-tools/Manifest |  1 +
 app-admin/mongo-tools/mongo-tools-4.0.6.ebuild | 64 ++
 2 files changed, 65 insertions(+)

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index d82ee7d7359..a85566e37c6 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -5,3 +5,4 @@ DIST mongo-tools-3.6.9.tar.gz 4723117 BLAKE2B 
2cc88b9e8424abe082d68a8f7afa02bf2b
 DIST mongo-tools-4.0.3.tar.gz 10874727 BLAKE2B 
3e5d07b8ae797d0876b68a3018806e91a30758415aaa236423648a77f5e0d475848060516ee0da91a8448813a12a685410b93bf219b8180beb91f448e329a532
 SHA512 
cbe74b3fdebd0d4f6be6e3acf7f55f5f1a551b0ad1a23d82782643d2a9eb9ea4b7e0133985485b8c5a88c1fea26595e3ed9c759f1f63b578b6472d850154d67b
 DIST mongo-tools-4.0.4.tar.gz 10878921 BLAKE2B 
3960838f68333bf033be9b72191e221b449bde8157ecb6d2f595d84c862fadd9597a53be88e5b0ad691cb6163cf90294348145ecce4c796c88bf84a4d7d8ab86
 SHA512 
d7900dbbd1e1e63d5518494c85559a7eab34f53ffa38880628f3dda0a71ee1211f67cf7dfaac66498b0359eca32abb9c89410e5cc56415a1594acf38ebfa226b
 DIST mongo-tools-4.0.5.tar.gz 10878974 BLAKE2B 
704eadb7469d1f07bcf0c18fd2c3d1a2078064e8d0f33e03b0ec0a7539a8ae6e5c4ec3a4f9dff4f34d3cea8a2aa63097bfa050de0af5d0a44e54e4e47c83565f
 SHA512 
5a2ca0cb761895a6c3187bdf4ac0c11222ac681313c2c22801571a1147e07b7b6149150b07e58cd4487413017da56424ec494eaaf9aec9193498ee3cde73c5da
+DIST mongo-tools-4.0.6.tar.gz 10879606 BLAKE2B 
9a7656ba1486df4b36ceb527735ad46864d7a04f2d0451fb4e04bbbdc09c3bb0ec922aa5daa584b93e123e1c3764c0ebef96a3566dd0d6b646a627d769645619
 SHA512 
d6185d7442a593d29db78889c55aba53e070bedd522d78d8c0bf52bb27f26c5fee6d010457f65774ea36a2e6d5280f38c95433ff76ed53ed9d74b1c811198cb7

diff --git a/app-admin/mongo-tools/mongo-tools-4.0.6.ebuild 
b/app-admin/mongo-tools/mongo-tools-4.0.6.ebuild
new file mode 100644
index 000..5aacbbb1063
--- /dev/null
+++ b/app-admin/mongo-tools/mongo-tools-4.0.6.ebuild
@@ -0,0 +1,64 @@
+# 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_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="${PREFIX}/usr/$(get_libdir)/go" 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/*
+}



[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2019-03-03 Thread Thomas Deutschmann
commit: 74a5ae50f389dace3c7b7c9b76d517b9f89cb541
Author: Tomas Mozes  gmail  com>
AuthorDate: Sat Jan 26 05:18:44 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Mar  4 00:47:21 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74a5ae50

app-admin/mongo-tools: bump to 4.0.5

Signed-off-by: Tomas Mozes  gmail.com>
Signed-off-by: Thomas Deutschmann  gentoo.org>

 app-admin/mongo-tools/Manifest |  1 +
 app-admin/mongo-tools/mongo-tools-4.0.5.ebuild | 64 ++
 2 files changed, 65 insertions(+)

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index 77b75c086d1..d82ee7d7359 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -4,3 +4,4 @@ DIST mongo-tools-3.6.8.tar.gz 4723878 BLAKE2B 
a1693024d60f69d25c268eaaa30a478b1e
 DIST mongo-tools-3.6.9.tar.gz 4723117 BLAKE2B 
2cc88b9e8424abe082d68a8f7afa02bf2b21d027cabe04298fafbd065346350d57f6a48ece1a849e779cac6da315aa9d5469c5f63ca5aae6be7e8f73fae3fe4b
 SHA512 
def8e2bb68898c540dfa9fbe742696d463c099e7d70fc2f0e114301d321e3983ef0b07588301340b0a3ffdf2280febc3fa37e77d2520f147e723d2ce147c7261
 DIST mongo-tools-4.0.3.tar.gz 10874727 BLAKE2B 
3e5d07b8ae797d0876b68a3018806e91a30758415aaa236423648a77f5e0d475848060516ee0da91a8448813a12a685410b93bf219b8180beb91f448e329a532
 SHA512 
cbe74b3fdebd0d4f6be6e3acf7f55f5f1a551b0ad1a23d82782643d2a9eb9ea4b7e0133985485b8c5a88c1fea26595e3ed9c759f1f63b578b6472d850154d67b
 DIST mongo-tools-4.0.4.tar.gz 10878921 BLAKE2B 
3960838f68333bf033be9b72191e221b449bde8157ecb6d2f595d84c862fadd9597a53be88e5b0ad691cb6163cf90294348145ecce4c796c88bf84a4d7d8ab86
 SHA512 
d7900dbbd1e1e63d5518494c85559a7eab34f53ffa38880628f3dda0a71ee1211f67cf7dfaac66498b0359eca32abb9c89410e5cc56415a1594acf38ebfa226b
+DIST mongo-tools-4.0.5.tar.gz 10878974 BLAKE2B 
704eadb7469d1f07bcf0c18fd2c3d1a2078064e8d0f33e03b0ec0a7539a8ae6e5c4ec3a4f9dff4f34d3cea8a2aa63097bfa050de0af5d0a44e54e4e47c83565f
 SHA512 
5a2ca0cb761895a6c3187bdf4ac0c11222ac681313c2c22801571a1147e07b7b6149150b07e58cd4487413017da56424ec494eaaf9aec9193498ee3cde73c5da

diff --git a/app-admin/mongo-tools/mongo-tools-4.0.5.ebuild 
b/app-admin/mongo-tools/mongo-tools-4.0.5.ebuild
new file mode 100644
index 000..5aacbbb1063
--- /dev/null
+++ b/app-admin/mongo-tools/mongo-tools-4.0.5.ebuild
@@ -0,0 +1,64 @@
+# 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_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="${PREFIX}/usr/$(get_libdir)/go" 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/*
+}



[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2018-12-17 Thread Alexys Jacob
commit: 7fd1e90884b5d5c2b326654c39dab1958ac1f70d
Author: Tomas Mozes  gmail  com>
AuthorDate: Mon Dec 17 07:45:03 2018 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Mon Dec 17 11:25:42 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7fd1e908

app-admin/mongo-tools: bump to 3.6.9

Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Tomáš Mózes  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/10651
Signed-off-by: Alexys Jacob  gentoo.org>

 app-admin/mongo-tools/Manifest |  1 +
 app-admin/mongo-tools/mongo-tools-3.6.9.ebuild | 64 ++
 2 files changed, 65 insertions(+)

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index 6491b331801..3105cbeafe0 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.8.tar.gz 4723878 BLAKE2B 
a1693024d60f69d25c268eaaa30a478b1e4c0042c5fb7a3fd6252ed00aef2fee3fba94516fe825165a1a57887ed38e4fbce488c48ddd4f45349f0b7a1b244020
 SHA512 
359e8ce2d847d005d48ff12bc2e8af73213d81cd1521d2b5b5ac94792468218248bebbe808e1bd8fd49234eab8480608f294c1b63f317aed58f456b84ef17dcf
+DIST mongo-tools-3.6.9.tar.gz 4723117 BLAKE2B 
2cc88b9e8424abe082d68a8f7afa02bf2b21d027cabe04298fafbd065346350d57f6a48ece1a849e779cac6da315aa9d5469c5f63ca5aae6be7e8f73fae3fe4b
 SHA512 
def8e2bb68898c540dfa9fbe742696d463c099e7d70fc2f0e114301d321e3983ef0b07588301340b0a3ffdf2280febc3fa37e77d2520f147e723d2ce147c7261
 DIST mongo-tools-4.0.3.tar.gz 10874727 BLAKE2B 
3e5d07b8ae797d0876b68a3018806e91a30758415aaa236423648a77f5e0d475848060516ee0da91a8448813a12a685410b93bf219b8180beb91f448e329a532
 SHA512 
cbe74b3fdebd0d4f6be6e3acf7f55f5f1a551b0ad1a23d82782643d2a9eb9ea4b7e0133985485b8c5a88c1fea26595e3ed9c759f1f63b578b6472d850154d67b
 DIST mongo-tools-4.0.4.tar.gz 10878921 BLAKE2B 
3960838f68333bf033be9b72191e221b449bde8157ecb6d2f595d84c862fadd9597a53be88e5b0ad691cb6163cf90294348145ecce4c796c88bf84a4d7d8ab86
 SHA512 
d7900dbbd1e1e63d5518494c85559a7eab34f53ffa38880628f3dda0a71ee1211f67cf7dfaac66498b0359eca32abb9c89410e5cc56415a1594acf38ebfa226b

diff --git a/app-admin/mongo-tools/mongo-tools-3.6.9.ebuild 
b/app-admin/mongo-tools/mongo-tools-3.6.9.ebuild
new file mode 100644
index 000..5cf7cbaadac
--- /dev/null
+++ b/app-admin/mongo-tools/mongo-tools-3.6.9.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2018 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"
+
+RDEPEND="!

[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2018-11-10 Thread Thomas Deutschmann
commit: 5c6584bda352f622c7db805bf091211910b9b4da
Author: Tomas Mozes  gmail  com>
AuthorDate: Thu Nov  8 08:34:29 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sat Nov 10 20:56:26 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c6584bd

app-admin/mongo-tools: drop old

Package-Manager: Portage-2.3.51, Repoman-2.3.12
Signed-off-by: Tomáš Mózes  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/10360
Signed-off-by: Thomas Deutschmann  gentoo.org>

 app-admin/mongo-tools/Manifest  |  1 -
 app-admin/mongo-tools/mongo-tools-3.4.10.ebuild | 62 -
 2 files changed, 63 deletions(-)

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index 8a15070a1d1..6491b331801 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -1,4 +1,3 @@
-DIST mongo-tools-3.4.10.tar.gz 4719399 BLAKE2B 
8165248bf58f2ea2b02e365a3609c72b72e98dd5902f176e251fa2add1ad26e90900e06c35dc6db4dbe161e541bedfc1776f5e15bbb41dcc9a7be17800424362
 SHA512 
b861bb3fb1a32c3aa2efefcf6a13bb6d4783ac1a9b006c477fd04deb338cbf6b7adc3944bc6919513b92bd96b8500813ff4af49c9dec0719ebd2fdaa99bc39a5
 DIST mongo-tools-3.4.16.tar.gz 4697191 BLAKE2B 
2e9a0e7dc8016d3e7d7c7f8d0cf80a97d3d199603c0b8b791df5a0d79d418ffaa232eee694047a7ca11fa7623023b4123becd437cfe3dec11e26cd525720bcad
 SHA512 
b40c6dee75d860de1da73faf79f5f68c098ce7c80681486c66fff04a937474dcede91c7be907a8e36033b3898f7499e8f53271944c0df3360756c27361efb6f5
 DIST mongo-tools-3.6.8.tar.gz 4723878 BLAKE2B 
a1693024d60f69d25c268eaaa30a478b1e4c0042c5fb7a3fd6252ed00aef2fee3fba94516fe825165a1a57887ed38e4fbce488c48ddd4f45349f0b7a1b244020
 SHA512 
359e8ce2d847d005d48ff12bc2e8af73213d81cd1521d2b5b5ac94792468218248bebbe808e1bd8fd49234eab8480608f294c1b63f317aed58f456b84ef17dcf
 DIST mongo-tools-4.0.3.tar.gz 10874727 BLAKE2B 
3e5d07b8ae797d0876b68a3018806e91a30758415aaa236423648a77f5e0d475848060516ee0da91a8448813a12a685410b93bf219b8180beb91f448e329a532
 SHA512 
cbe74b3fdebd0d4f6be6e3acf7f55f5f1a551b0ad1a23d82782643d2a9eb9ea4b7e0133985485b8c5a88c1fea26595e3ed9c759f1f63b578b6472d850154d67b

diff --git a/app-admin/mongo-tools/mongo-tools-3.4.10.ebuild 
b/app-admin/mongo-tools/mongo-tools-3.4.10.ebuild
deleted file mode 100644
index 0fd4699fdad..000
--- a/app-admin/mongo-tools/mongo-tools-3.4.10.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-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="https://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"
-
-RDEPEND="!

[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2018-11-10 Thread Thomas Deutschmann
commit: 41e2dd4e00486c73ae4b0ef4c0399e0165420f8b
Author: Tomas Mozes  gmail  com>
AuthorDate: Thu Nov  8 08:09:30 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sat Nov 10 20:56:21 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41e2dd4e

app-admin/mongo-tools: bump to 4.0.4

Package-Manager: Portage-2.3.51, Repoman-2.3.12
Signed-off-by: Tomáš Mózes  gmail.com>
Signed-off-by: Thomas Deutschmann  gentoo.org>

 app-admin/mongo-tools/Manifest |  1 +
 app-admin/mongo-tools/mongo-tools-4.0.4.ebuild | 64 ++
 2 files changed, 65 insertions(+)

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index 03b34396760..8a15070a1d1 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -2,3 +2,4 @@ DIST mongo-tools-3.4.10.tar.gz 4719399 BLAKE2B 
8165248bf58f2ea2b02e365a3609c72b7
 DIST mongo-tools-3.4.16.tar.gz 4697191 BLAKE2B 
2e9a0e7dc8016d3e7d7c7f8d0cf80a97d3d199603c0b8b791df5a0d79d418ffaa232eee694047a7ca11fa7623023b4123becd437cfe3dec11e26cd525720bcad
 SHA512 
b40c6dee75d860de1da73faf79f5f68c098ce7c80681486c66fff04a937474dcede91c7be907a8e36033b3898f7499e8f53271944c0df3360756c27361efb6f5
 DIST mongo-tools-3.6.8.tar.gz 4723878 BLAKE2B 
a1693024d60f69d25c268eaaa30a478b1e4c0042c5fb7a3fd6252ed00aef2fee3fba94516fe825165a1a57887ed38e4fbce488c48ddd4f45349f0b7a1b244020
 SHA512 
359e8ce2d847d005d48ff12bc2e8af73213d81cd1521d2b5b5ac94792468218248bebbe808e1bd8fd49234eab8480608f294c1b63f317aed58f456b84ef17dcf
 DIST mongo-tools-4.0.3.tar.gz 10874727 BLAKE2B 
3e5d07b8ae797d0876b68a3018806e91a30758415aaa236423648a77f5e0d475848060516ee0da91a8448813a12a685410b93bf219b8180beb91f448e329a532
 SHA512 
cbe74b3fdebd0d4f6be6e3acf7f55f5f1a551b0ad1a23d82782643d2a9eb9ea4b7e0133985485b8c5a88c1fea26595e3ed9c759f1f63b578b6472d850154d67b
+DIST mongo-tools-4.0.4.tar.gz 10878921 BLAKE2B 
3960838f68333bf033be9b72191e221b449bde8157ecb6d2f595d84c862fadd9597a53be88e5b0ad691cb6163cf90294348145ecce4c796c88bf84a4d7d8ab86
 SHA512 
d7900dbbd1e1e63d5518494c85559a7eab34f53ffa38880628f3dda0a71ee1211f67cf7dfaac66498b0359eca32abb9c89410e5cc56415a1594acf38ebfa226b

diff --git a/app-admin/mongo-tools/mongo-tools-4.0.4.ebuild 
b/app-admin/mongo-tools/mongo-tools-4.0.4.ebuild
new file mode 100644
index 000..5cf7cbaadac
--- /dev/null
+++ b/app-admin/mongo-tools/mongo-tools-4.0.4.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2018 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"
+
+RDEPEND="!

[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/, app-admin/mongo-tools/files/

2018-11-05 Thread Alexys Jacob
commit: e48022cccde01d32d71536aae3987daeaadacc37
Author: Ultrabug  gentoo  org>
AuthorDate: Mon Nov  5 12:29:22 2018 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Mon Nov  5 12:29:22 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e48022cc

app-admin/mongo-tools: obsolete ebuilds clean up

Signed-off-by: Alexys Jacob  gentoo.org>
Package-Manager: Portage-2.3.50, Repoman-2.3.11

 app-admin/mongo-tools/Manifest |  2 -
 .../mongo-tools/files/mongo-tools-3.2.10-pie.patch | 12 -
 app-admin/mongo-tools/mongo-tools-3.2.17.ebuild| 60 -
 app-admin/mongo-tools/mongo-tools-4.0.2.ebuild | 61 --
 4 files changed, 135 deletions(-)

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index 2c0f74ff36b..03b34396760 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -1,6 +1,4 @@
-DIST mongo-tools-3.2.17.tar.gz 2719970 BLAKE2B 
666b67d8abdd10f7fa7c557e3c3906fb3cc6bcfa0b97a05e39e5f1ea923d2beb5ec249b3b0a521c4cce4bd595bf18672d8bce38152f84825bb3fffb058fd3b29
 SHA512 
62c2540027e07b8276621e08d13657864d16021030e3c8f9bc0d351454319d448f889cf6a48b8467ea3270365376ed0c3beb42ceae3f28357910148c6b4054b2
 DIST mongo-tools-3.4.10.tar.gz 4719399 BLAKE2B 
8165248bf58f2ea2b02e365a3609c72b72e98dd5902f176e251fa2add1ad26e90900e06c35dc6db4dbe161e541bedfc1776f5e15bbb41dcc9a7be17800424362
 SHA512 
b861bb3fb1a32c3aa2efefcf6a13bb6d4783ac1a9b006c477fd04deb338cbf6b7adc3944bc6919513b92bd96b8500813ff4af49c9dec0719ebd2fdaa99bc39a5
 DIST mongo-tools-3.4.16.tar.gz 4697191 BLAKE2B 
2e9a0e7dc8016d3e7d7c7f8d0cf80a97d3d199603c0b8b791df5a0d79d418ffaa232eee694047a7ca11fa7623023b4123becd437cfe3dec11e26cd525720bcad
 SHA512 
b40c6dee75d860de1da73faf79f5f68c098ce7c80681486c66fff04a937474dcede91c7be907a8e36033b3898f7499e8f53271944c0df3360756c27361efb6f5
 DIST mongo-tools-3.6.8.tar.gz 4723878 BLAKE2B 
a1693024d60f69d25c268eaaa30a478b1e4c0042c5fb7a3fd6252ed00aef2fee3fba94516fe825165a1a57887ed38e4fbce488c48ddd4f45349f0b7a1b244020
 SHA512 
359e8ce2d847d005d48ff12bc2e8af73213d81cd1521d2b5b5ac94792468218248bebbe808e1bd8fd49234eab8480608f294c1b63f317aed58f456b84ef17dcf
-DIST mongo-tools-4.0.2.tar.gz 10872395 BLAKE2B 
6d02a51677509abb5a00f7f4f324a2c979d7e55ebd55754023c80e51e9e8121bea84692574739f83882c0426074c0a3a5c5df2cb8cba58ee80c06e5a75504a8d
 SHA512 
45971d96c512a920c40052f0d11097e88db137e975125de375a63e8f0eefbe22ae5252d239455c60e12ef65e0abce7a658dfb9dda0cbcc153718bb6711cf5e43
 DIST mongo-tools-4.0.3.tar.gz 10874727 BLAKE2B 
3e5d07b8ae797d0876b68a3018806e91a30758415aaa236423648a77f5e0d475848060516ee0da91a8448813a12a685410b93bf219b8180beb91f448e329a532
 SHA512 
cbe74b3fdebd0d4f6be6e3acf7f55f5f1a551b0ad1a23d82782643d2a9eb9ea4b7e0133985485b8c5a88c1fea26595e3ed9c759f1f63b578b6472d850154d67b

diff --git a/app-admin/mongo-tools/files/mongo-tools-3.2.10-pie.patch 
b/app-admin/mongo-tools/files/mongo-tools-3.2.10-pie.patch
deleted file mode 100644
index 6a80d75b2cb..000
--- a/app-admin/mongo-tools/files/mongo-tools-3.2.10-pie.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -uNr mongo-tools-r3.2.10.ORIG/build.sh mongo-tools-r3.2.10/build.sh
 mongo-tools-r3.2.10.ORIG/build.sh  2016-11-15 16:15:09.487441283 +
-+++ mongo-tools-r3.2.10/build.sh   2016-11-15 16:15:23.127235064 +
-@@ -22,7 +22,7 @@
- 
- for i in bsondump mongostat mongofiles mongoexport mongoimport mongorestore 
mongodump mongotop mongooplog; do
- echo "Building ${i}..."
--go build -o "bin/$i" -tags "$tags" "$i/main/$i.go"
-+go build -buildmode=pie -o "bin/$i" -tags "$tags" "$i/main/$i.go"
- ./bin/$i --version
- done
- 

diff --git a/app-admin/mongo-tools/mongo-tools-3.2.17.ebuild 
b/app-admin/mongo-tools/mongo-tools-3.2.17.ebuild
deleted file mode 100644
index 9616e980141..000
--- a/app-admin/mongo-tools/mongo-tools-3.2.17.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2017 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.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"
-
-RDEPEND="!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="!

[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2018-11-03 Thread Mikle Kolyada
commit: 881d269cf77c79ddd39367bad09af709f2f7cfe8
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sat Nov  3 18:30:16 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sat Nov  3 18:30:16 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=881d269c

app-admin/mongo-tools: amd64 stable wrt bug #664490

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.49, Repoman-2.3.11

 app-admin/mongo-tools/mongo-tools-3.6.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/mongo-tools/mongo-tools-3.6.8.ebuild 
b/app-admin/mongo-tools/mongo-tools-3.6.8.ebuild
index 75a83217e20..cb82aab24b2 100644
--- a/app-admin/mongo-tools/mongo-tools-3.6.8.ebuild
+++ b/app-admin/mongo-tools/mongo-tools-3.6.8.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/mongodb/mongo-tools/archive/r${MY_PV}.tar.gz -> mong
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 IUSE="sasl ssl"
 
 RDEPEND="!

[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2018-10-26 Thread Thomas Deutschmann
commit: 2c843c86be4d7c1f8c1c697aa759eb12b86c9bba
Author: Tomas Mozes  gmail  com>
AuthorDate: Fri Oct 26 07:09:11 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Oct 26 13:18:00 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c843c86

app-admin/mongo-tools: bump to 4.0.3

Signed-off-by: Tomáš Mózes  gmail.com>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
Signed-off-by: Thomas Deutschmann  gentoo.org>

 app-admin/mongo-tools/Manifest |  1 +
 app-admin/mongo-tools/mongo-tools-4.0.3.ebuild | 64 ++
 2 files changed, 65 insertions(+)

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index 122c15cbe0d..2c0f74ff36b 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -3,3 +3,4 @@ DIST mongo-tools-3.4.10.tar.gz 4719399 BLAKE2B 
8165248bf58f2ea2b02e365a3609c72b7
 DIST mongo-tools-3.4.16.tar.gz 4697191 BLAKE2B 
2e9a0e7dc8016d3e7d7c7f8d0cf80a97d3d199603c0b8b791df5a0d79d418ffaa232eee694047a7ca11fa7623023b4123becd437cfe3dec11e26cd525720bcad
 SHA512 
b40c6dee75d860de1da73faf79f5f68c098ce7c80681486c66fff04a937474dcede91c7be907a8e36033b3898f7499e8f53271944c0df3360756c27361efb6f5
 DIST mongo-tools-3.6.8.tar.gz 4723878 BLAKE2B 
a1693024d60f69d25c268eaaa30a478b1e4c0042c5fb7a3fd6252ed00aef2fee3fba94516fe825165a1a57887ed38e4fbce488c48ddd4f45349f0b7a1b244020
 SHA512 
359e8ce2d847d005d48ff12bc2e8af73213d81cd1521d2b5b5ac94792468218248bebbe808e1bd8fd49234eab8480608f294c1b63f317aed58f456b84ef17dcf
 DIST mongo-tools-4.0.2.tar.gz 10872395 BLAKE2B 
6d02a51677509abb5a00f7f4f324a2c979d7e55ebd55754023c80e51e9e8121bea84692574739f83882c0426074c0a3a5c5df2cb8cba58ee80c06e5a75504a8d
 SHA512 
45971d96c512a920c40052f0d11097e88db137e975125de375a63e8f0eefbe22ae5252d239455c60e12ef65e0abce7a658dfb9dda0cbcc153718bb6711cf5e43
+DIST mongo-tools-4.0.3.tar.gz 10874727 BLAKE2B 
3e5d07b8ae797d0876b68a3018806e91a30758415aaa236423648a77f5e0d475848060516ee0da91a8448813a12a685410b93bf219b8180beb91f448e329a532
 SHA512 
cbe74b3fdebd0d4f6be6e3acf7f55f5f1a551b0ad1a23d82782643d2a9eb9ea4b7e0133985485b8c5a88c1fea26595e3ed9c759f1f63b578b6472d850154d67b

diff --git a/app-admin/mongo-tools/mongo-tools-4.0.3.ebuild 
b/app-admin/mongo-tools/mongo-tools-4.0.3.ebuild
new file mode 100644
index 000..5cf7cbaadac
--- /dev/null
+++ b/app-admin/mongo-tools/mongo-tools-4.0.3.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2018 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"
+
+RDEPEND="!

[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2018-10-26 Thread Thomas Deutschmann
commit: b37514fa385558784381ea45fb6ae8d499acd503
Author: Tomas Mozes  gmail  com>
AuthorDate: Thu Oct 11 10:52:25 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Oct 26 13:17:58 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b37514fa

app-admin/mongo-tools: drop old

Signed-off-by: Tomáš Mózes  gmail.com>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
Signed-off-by: Thomas Deutschmann  gentoo.org>

 app-admin/mongo-tools/Manifest  | 13 --
 app-admin/mongo-tools/mongo-tools-3.0.14.ebuild | 56 ---
 app-admin/mongo-tools/mongo-tools-3.0.15.ebuild | 56 ---
 app-admin/mongo-tools/mongo-tools-3.4.13.ebuild | 60 
 app-admin/mongo-tools/mongo-tools-3.4.14.ebuild | 60 
 app-admin/mongo-tools/mongo-tools-3.4.15.ebuild | 60 
 app-admin/mongo-tools/mongo-tools-3.6.2.ebuild  | 61 -
 app-admin/mongo-tools/mongo-tools-3.6.3.ebuild  | 61 -
 app-admin/mongo-tools/mongo-tools-3.6.4.ebuild  | 61 -
 app-admin/mongo-tools/mongo-tools-3.6.5.ebuild  | 61 -
 app-admin/mongo-tools/mongo-tools-3.6.6.ebuild  | 61 -
 app-admin/mongo-tools/mongo-tools-3.6.7.ebuild  | 61 -
 app-admin/mongo-tools/mongo-tools-4.0.0.ebuild  | 61 -
 app-admin/mongo-tools/mongo-tools-4.0.1.ebuild  | 61 -
 14 files changed, 793 deletions(-)

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index 631eeacf0b9..122c15cbe0d 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -1,18 +1,5 @@
-DIST mongo-tools-3.0.14.tar.gz 2413148 BLAKE2B 
a085b452019f7354a8f2fcb4d7a493746fd6504dc836b3bc522bca6dfd054dc4940db1b07021b305c52bc12da076220c3e137507b656a00ca1330ba336532458
 SHA512 
0e77417b2c36080515a2ff611427cb18f6d6c2432159c2a09af8d6ff14ae7f25ecbfe0a6631eeb7de084fdfe517a09364d731f5b63923404b6319fc1ca44b840
-DIST mongo-tools-3.0.15.tar.gz 2413131 BLAKE2B 
5f971d6b47685ef8db246a71f59a31a722e84b8191639fe7da849162701c944325bc4cbdb9a27b7a6ae32f1a8ccedac91d6a485dfbe54dd17b8735d5b32e4f2c
 SHA512 
b5baeea89f5287e055c43c58cfc31e4618df2b7b7fffd7d77248131daf503522b1d041253df8d3ad2ffa22efff344334dc05e3a3462cf7c646d4e83040bd95dc
 DIST mongo-tools-3.2.17.tar.gz 2719970 BLAKE2B 
666b67d8abdd10f7fa7c557e3c3906fb3cc6bcfa0b97a05e39e5f1ea923d2beb5ec249b3b0a521c4cce4bd595bf18672d8bce38152f84825bb3fffb058fd3b29
 SHA512 
62c2540027e07b8276621e08d13657864d16021030e3c8f9bc0d351454319d448f889cf6a48b8467ea3270365376ed0c3beb42ceae3f28357910148c6b4054b2
 DIST mongo-tools-3.4.10.tar.gz 4719399 BLAKE2B 
8165248bf58f2ea2b02e365a3609c72b72e98dd5902f176e251fa2add1ad26e90900e06c35dc6db4dbe161e541bedfc1776f5e15bbb41dcc9a7be17800424362
 SHA512 
b861bb3fb1a32c3aa2efefcf6a13bb6d4783ac1a9b006c477fd04deb338cbf6b7adc3944bc6919513b92bd96b8500813ff4af49c9dec0719ebd2fdaa99bc39a5
-DIST mongo-tools-3.4.13.tar.gz 4719488 BLAKE2B 
27c7716b21f1a23408d0f31aee111c5877f5172121a987c234ff01eb2690bbc71bca4e00fc13b701ca6b91dce0c9aaae43c2239a60a52e130e1390bf5bafef60
 SHA512 
c233268328ef868ec06c9a9d83009141b39c84ba642e7de7dece3210717ba8de600f39896a30ed23d1577db9f4697c3a8d720cf35248bca2b00a17642b043237
-DIST mongo-tools-3.4.14.tar.gz 4719370 BLAKE2B 
2add25ddf9b5b7d2ebecdd647dfb2c818643b16f623fd1faba36a8d6f5a181e80ad47de45fc56e462290f61f6c16c27a6b0587542315981537627256e69b4958
 SHA512 
a0d715fe36769740ba25e92b742b157dc264b141ddd56d64ca4c6f8ffea11df291ce871aaa723acdb8b7f5318ac1edb8c5fb9dd7bf2edfe08d4e7cef343abea7
-DIST mongo-tools-3.4.15.tar.gz 4697188 BLAKE2B 
690ec3187cb781c9cae903a27eca9d1d504e2e52cc7f48790b5d5b5a1dfe18cff95dd52f8fa03854548a2e634d2aed56e626b8702f2fcd27a10952a37dff9120
 SHA512 
f7c8655f56a1f5fedad00fbadd26b150d6fea071edccaa7ac18e80c9051ed2324691e98e799e6a9ca09e944ebe340b63a2ac0b9caeffbcc8c8dee0744cba1af7
 DIST mongo-tools-3.4.16.tar.gz 4697191 BLAKE2B 
2e9a0e7dc8016d3e7d7c7f8d0cf80a97d3d199603c0b8b791df5a0d79d418ffaa232eee694047a7ca11fa7623023b4123becd437cfe3dec11e26cd525720bcad
 SHA512 
b40c6dee75d860de1da73faf79f5f68c098ce7c80681486c66fff04a937474dcede91c7be907a8e36033b3898f7499e8f53271944c0df3360756c27361efb6f5
-DIST mongo-tools-3.6.2.tar.gz 4693924 BLAKE2B 
61c44d579f6eb4013ee6c0118ebe89a2d454ef8cf6ad933479885cb71d169185272b03d9c63fa738d67bbd1b9efd4bc964eb17adcc5002508589d198cdb17752
 SHA512 
5ac2b1d2b33271f63c406c69bd8a576a21f4dcaa6f75839e0f907ebc9968f0e121eb3800e88da050c120856e7ddda4f12d551bb731d4acac0f5cf09f66fc948a
-DIST mongo-tools-3.6.3.tar.gz 4693833 BLAKE2B 
fc7139984cf3dcb7b4ce6f6c2028296651aa59ac68d7068bdf748e28eeb65b1fd9b07580d0c93f3f41dbb01030a12433a07a04deadf28e0ff792387fa78ae4aa
 SHA512 
7dba782c84a728aa9ceb28cbd9934f58b615dccfb238a9dbd63b18661ba4e74ddba21f93d9f12e6d80d293ebe42a82d31fa64448aacdba75bd07d964a5f631fc
-DIST mongo-tools-3.6.4.tar.gz 4693872 

[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2018-09-28 Thread Alexys Jacob
commit: ce23372da5d3c8feee57c6304a6ac28382eb58d9
Author: Tomas Mozes  gmail  com>
AuthorDate: Thu Sep 27 12:27:24 2018 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Fri Sep 28 07:53:28 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce23372d

app-admin/mongo-tools: bump to 3.6.8

Signed-off-by: Tomáš Mózes  gmail.com>
Package-Manager: Portage-2.3.50, Repoman-2.3.11
Closes: https://github.com/gentoo/gentoo/pull/9985

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

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index 2393b43b60e..631eeacf0b9 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -12,6 +12,7 @@ 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-3.6.7.tar.gz 4723244 BLAKE2B 
82a61b8e72122a9a2b80aceeaa6767fcb13740c324c83c53b18297d9138807950dc656506ffd8a694d2f697c934342541c0ca6f62539bb07be266093e82a17a6
 SHA512 
5367259f27cf21234db2f69693fc2e21051b42b1acc7eaf8f9b366ed264943cff179c8565239fe36bb1d5d21f5e08ec58ff0df5d4c60526d321d63389f37fac2
+DIST mongo-tools-3.6.8.tar.gz 4723878 BLAKE2B 
a1693024d60f69d25c268eaaa30a478b1e4c0042c5fb7a3fd6252ed00aef2fee3fba94516fe825165a1a57887ed38e4fbce488c48ddd4f45349f0b7a1b244020
 SHA512 
359e8ce2d847d005d48ff12bc2e8af73213d81cd1521d2b5b5ac94792468218248bebbe808e1bd8fd49234eab8480608f294c1b63f317aed58f456b84ef17dcf
 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
 DIST mongo-tools-4.0.2.tar.gz 10872395 BLAKE2B 
6d02a51677509abb5a00f7f4f324a2c979d7e55ebd55754023c80e51e9e8121bea84692574739f83882c0426074c0a3a5c5df2cb8cba58ee80c06e5a75504a8d
 SHA512 
45971d96c512a920c40052f0d11097e88db137e975125de375a63e8f0eefbe22ae5252d239455c60e12ef65e0abce7a658dfb9dda0cbcc153718bb6711cf5e43

diff --git a/app-admin/mongo-tools/mongo-tools-3.6.8.ebuild 
b/app-admin/mongo-tools/mongo-tools-3.6.8.ebuild
new file mode 100644
index 000..75a83217e20
--- /dev/null
+++ b/app-admin/mongo-tools/mongo-tools-3.6.8.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2018 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"
+
+RDEPEND="!

[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2018-09-09 Thread Thomas Deutschmann
commit: dce5f03eaecc1889f45c8d5c470d54cea74f464e
Author: Tomas Mozes  gmail  com>
AuthorDate: Sun Sep  9 19:57:35 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Sep  9 20:40:57 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dce5f03e

app-admin/mongo-tools: bump to 4.0.2

Package-Manager: Portage-2.3.48, Repoman-2.3.10

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

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index 9c4a955c732..2393b43b60e 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -14,3 +14,4 @@ DIST mongo-tools-3.6.6.tar.gz 4723751 BLAKE2B 
876d46c47190398d1218a760bdeb8167c9
 DIST mongo-tools-3.6.7.tar.gz 4723244 BLAKE2B 
82a61b8e72122a9a2b80aceeaa6767fcb13740c324c83c53b18297d9138807950dc656506ffd8a694d2f697c934342541c0ca6f62539bb07be266093e82a17a6
 SHA512 
5367259f27cf21234db2f69693fc2e21051b42b1acc7eaf8f9b366ed264943cff179c8565239fe36bb1d5d21f5e08ec58ff0df5d4c60526d321d63389f37fac2
 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
+DIST mongo-tools-4.0.2.tar.gz 10872395 BLAKE2B 
6d02a51677509abb5a00f7f4f324a2c979d7e55ebd55754023c80e51e9e8121bea84692574739f83882c0426074c0a3a5c5df2cb8cba58ee80c06e5a75504a8d
 SHA512 
45971d96c512a920c40052f0d11097e88db137e975125de375a63e8f0eefbe22ae5252d239455c60e12ef65e0abce7a658dfb9dda0cbcc153718bb6711cf5e43

diff --git a/app-admin/mongo-tools/mongo-tools-4.0.2.ebuild 
b/app-admin/mongo-tools/mongo-tools-4.0.2.ebuild
new file mode 100644
index 000..8461951acd0
--- /dev/null
+++ b/app-admin/mongo-tools/mongo-tools-4.0.2.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2018 Gentoo Foundation
+# 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"
+
+RDEPEND="!

[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2018-08-29 Thread Alexys Jacob
commit: f7b2c142b2c42b219248f6118f06fc9d45991d24
Author: Tomas Mozes  gmail  com>
AuthorDate: Tue Aug 28 07:45:44 2018 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Wed Aug 29 20:57:22 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7b2c142

app-admin/mongo-tools: bump to 3.6.7

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

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

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index 258a50c0769..9c4a955c732 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -11,5 +11,6 @@ DIST mongo-tools-3.6.3.tar.gz 4693833 BLAKE2B 
fc7139984cf3dcb7b4ce6f6c2028296651
 DIST mongo-tools-3.6.4.tar.gz 4693872 BLAKE2B 
5d72b32fa8ad7bc106c6ea3c09a27a093b9a1ae2392b4fa534042c5461fdc2b958dcbbf32e0ed596be234921e2ee21cc8f6132d57ae870a234abfc7adbb3b2e9
 SHA512 
53d06fa4a1b58de8001d6bf6e85f7edc97ce2cfbbb69c1ab05219deaa05ad9dd77d93f98c5526b4f58644a766e1b0f123686358095f059c71a4277634603f23f
 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-3.6.7.tar.gz 4723244 BLAKE2B 
82a61b8e72122a9a2b80aceeaa6767fcb13740c324c83c53b18297d9138807950dc656506ffd8a694d2f697c934342541c0ca6f62539bb07be266093e82a17a6
 SHA512 
5367259f27cf21234db2f69693fc2e21051b42b1acc7eaf8f9b366ed264943cff179c8565239fe36bb1d5d21f5e08ec58ff0df5d4c60526d321d63389f37fac2
 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-3.6.7.ebuild 
b/app-admin/mongo-tools/mongo-tools-3.6.7.ebuild
new file mode 100644
index 000..8461951acd0
--- /dev/null
+++ b/app-admin/mongo-tools/mongo-tools-3.6.7.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2018 Gentoo Foundation
+# 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"
+
+RDEPEND="!

[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2018-08-09 Thread Alexys Jacob
commit: 6f9be927bd631ec951cd06d4f610c1245bd0bb59
Author: Tomas Mozes  gmail  com>
AuthorDate: Tue Aug  7 14:41:25 2018 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Thu Aug  9 09:04:21 2018 +
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 000..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="!

[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/, dev-db/mongodb/

2018-08-02 Thread Alexys Jacob
commit: 56192c875c9139eee2bd13e85928efe499d5c01f
Author: Tomas Mozes  gmail  com>
AuthorDate: Thu Jul 19 10:46:43 2018 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Thu Aug  2 07:30:53 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56192c87

dev-db/mongodb: bump to 3.6.6

Package-Manager: Portage-2.3.43, Repoman-2.3.10

 app-admin/mongo-tools/mongo-tools-3.4.16.ebuild| 18 +++---
 app-admin/mongo-tools/mongo-tools-3.6.6.ebuild | 20 +++
 dev-db/mongodb/Manifest|  1 +
 dev-db/mongodb/mongodb-3.4.16.ebuild   | 51 +++-
 ...{mongodb-3.4.16.ebuild => mongodb-3.6.6.ebuild} | 69 +++---
 5 files changed, 75 insertions(+), 84 deletions(-)

diff --git a/app-admin/mongo-tools/mongo-tools-3.4.16.ebuild 
b/app-admin/mongo-tools/mongo-tools-3.4.16.ebuild
index 509a9eb6a0e..5efc22cf1e8 100644
--- a/app-admin/mongo-tools/mongo-tools-3.4.16.ebuild
+++ b/app-admin/mongo-tools/mongo-tools-3.4.16.ebuild
@@ -27,32 +27,32 @@ S=${WORKDIR}/${MY_P}
 src_prepare() {
default
 
-   # do not substitute version because it uses git
-   sed -i '/^sed/,+3d' build.sh || die
-   sed -i '/^mv/d' build.sh || die
+   # 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 '/^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
-
-   # ensure we use bash wrt #582906
-   sed -i 's@/bin/sh@/bin/bash@g' build.sh || die
 }
 
 src_compile() {
local myconf=()
 
if use sasl; then
- myconf+=(sasl)
+   myconf+=(sasl)
fi
 
if use ssl; then
- myconf+=(ssl)
+   myconf+=(ssl)
fi
 
-   ./build.sh ${myconf[@]} || die "build failed"
+   ./build.sh "${myconf[@]}" || die "build failed"
 }
 
 src_install() {

diff --git a/app-admin/mongo-tools/mongo-tools-3.6.6.ebuild 
b/app-admin/mongo-tools/mongo-tools-3.6.6.ebuild
index 3589981cbd8..47f22a423a8 100644
--- a/app-admin/mongo-tools/mongo-tools-3.6.6.ebuild
+++ b/app-admin/mongo-tools/mongo-tools-3.6.6.ebuild
@@ -27,33 +27,33 @@ S=${WORKDIR}/${MY_P}
 src_prepare() {
default
 
-   # do not substitute version because it uses git
-   sed -i '/^sed/,+3d' build.sh || die
-   sed -i '/^stty/d' build.sh || die
-   sed -i '/^mv/d' build.sh || die
+   # 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
-
-   # ensure we use bash wrt #582906
-   sed -i 's@/bin/sh@/bin/bash@g' build.sh || die
 }
 
 src_compile() {
local myconf=()
 
if use sasl; then
- myconf+=(sasl)
+   myconf+=(sasl)
fi
 
if use ssl; then
- myconf+=(ssl)
+   myconf+=(ssl)
fi
 
-   ./build.sh ${myconf[@]} || die "build failed"
+   ./build.sh "${myconf[@]}" || die "build failed"
 }
 
 src_install() {

diff --git a/dev-db/mongodb/Manifest b/dev-db/mongodb/Manifest
index 08ba14fc001..b59b7af8535 100644
--- a/dev-db/mongodb/Manifest
+++ b/dev-db/mongodb/Manifest
@@ -10,4 +10,5 @@ DIST mongodb-src-r3.6.2.tar.gz 3539 BLAKE2B 
3e38917ebaf79b63bf054279fbb91a64
 DIST mongodb-src-r3.6.3.tar.gz 40093607 BLAKE2B 
bb21bf0487661eec6140ade22526617b26b2499bd36e138d955d14a4b13a0685ec7308bccfc11ef17c785cd8a71c5b6cd9d154d461b8973410b03952b93953ec
 SHA512 
94aa9955f99d5f6bbbe65dc3755583952525398308ca7cb9224b91d1fa403de5bb3abb63a651583815cbecaff58966b5cfe7334a36ef6583f73d8c213410ddbc
 DIST mongodb-src-r3.6.4.tar.gz 40159916 BLAKE2B 
d3878d4e6bbf331de672768b2c92a4d71f758232170432d757f7e61849e6e1ef3b190e6a089101c9ea23c4ce23087c684c86fc6ea0f32f6fe052ce322d47e438
 SHA512 
02c2a697af9fdcbb16d19792be17d987e18c684418a63ed4750471c7ec22eb2eabf84e93cb1d298f67898b7e23687f668bb333c50ffc4e1b8adf8859f856ad95
 DIST mongodb-src-r3.6.5.tar.gz 40310152 BLAKE2B 
72110ae47b17ec8b1f60636a5ef8491b076e1cc019513fd872ea38b3bb8393efff4bddc7b795b3da711f258d21be9fa23e24d396a9429349c51ce05fff180a53
 SHA512 
6ecb3140ee4a7929fabe62d698f23e87cb5030cf31abefe7f82374f407fb87dc05f712089998f96bc40e23698836a86e7f3590892bde9d2d6f2c4bcc15cc3ebf
+DIST mongodb-src-r3.6.6.tar.gz 40391572 BLAKE2B 

[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2018-08-02 Thread Alexys Jacob
commit: a6efaf49a08b15427b7c7e6a6338426ff59aa47f
Author: Tomas Mozes  gmail  com>
AuthorDate: Thu Jul 19 10:45:09 2018 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Thu Aug  2 07:30:52 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6efaf49

app-admin/mongo-tools: bump to 3.6.6

Package-Manager: Portage-2.3.43, Repoman-2.3.10

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

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index f38748714e5..de52b6ba6f8 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -10,4 +10,5 @@ DIST mongo-tools-3.6.2.tar.gz 4693924 BLAKE2B 
61c44d579f6eb4013ee6c0118ebe89a2d4
 DIST mongo-tools-3.6.3.tar.gz 4693833 BLAKE2B 
fc7139984cf3dcb7b4ce6f6c2028296651aa59ac68d7068bdf748e28eeb65b1fd9b07580d0c93f3f41dbb01030a12433a07a04deadf28e0ff792387fa78ae4aa
 SHA512 
7dba782c84a728aa9ceb28cbd9934f58b615dccfb238a9dbd63b18661ba4e74ddba21f93d9f12e6d80d293ebe42a82d31fa64448aacdba75bd07d964a5f631fc
 DIST mongo-tools-3.6.4.tar.gz 4693872 BLAKE2B 
5d72b32fa8ad7bc106c6ea3c09a27a093b9a1ae2392b4fa534042c5461fdc2b958dcbbf32e0ed596be234921e2ee21cc8f6132d57ae870a234abfc7adbb3b2e9
 SHA512 
53d06fa4a1b58de8001d6bf6e85f7edc97ce2cfbbb69c1ab05219deaa05ad9dd77d93f98c5526b4f58644a766e1b0f123686358095f059c71a4277634603f23f
 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

diff --git a/app-admin/mongo-tools/mongo-tools-3.6.6.ebuild 
b/app-admin/mongo-tools/mongo-tools-3.6.6.ebuild
new file mode 100644
index 000..3589981cbd8
--- /dev/null
+++ b/app-admin/mongo-tools/mongo-tools-3.6.6.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="!

[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2018-08-02 Thread Alexys Jacob
commit: 20f6c1370cf8a73a984e137f167894d542be8416
Author: Tomas Mozes  gmail  com>
AuthorDate: Thu Jul 19 09:12:21 2018 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Thu Aug  2 07:30:45 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20f6c137

app-admin/mongo-tools: bump to 3.4.16

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

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

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index 53a8e777488..f38748714e5 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -5,6 +5,7 @@ DIST mongo-tools-3.4.10.tar.gz 4719399 BLAKE2B 
8165248bf58f2ea2b02e365a3609c72b7
 DIST mongo-tools-3.4.13.tar.gz 4719488 BLAKE2B 
27c7716b21f1a23408d0f31aee111c5877f5172121a987c234ff01eb2690bbc71bca4e00fc13b701ca6b91dce0c9aaae43c2239a60a52e130e1390bf5bafef60
 SHA512 
c233268328ef868ec06c9a9d83009141b39c84ba642e7de7dece3210717ba8de600f39896a30ed23d1577db9f4697c3a8d720cf35248bca2b00a17642b043237
 DIST mongo-tools-3.4.14.tar.gz 4719370 BLAKE2B 
2add25ddf9b5b7d2ebecdd647dfb2c818643b16f623fd1faba36a8d6f5a181e80ad47de45fc56e462290f61f6c16c27a6b0587542315981537627256e69b4958
 SHA512 
a0d715fe36769740ba25e92b742b157dc264b141ddd56d64ca4c6f8ffea11df291ce871aaa723acdb8b7f5318ac1edb8c5fb9dd7bf2edfe08d4e7cef343abea7
 DIST mongo-tools-3.4.15.tar.gz 4697188 BLAKE2B 
690ec3187cb781c9cae903a27eca9d1d504e2e52cc7f48790b5d5b5a1dfe18cff95dd52f8fa03854548a2e634d2aed56e626b8702f2fcd27a10952a37dff9120
 SHA512 
f7c8655f56a1f5fedad00fbadd26b150d6fea071edccaa7ac18e80c9051ed2324691e98e799e6a9ca09e944ebe340b63a2ac0b9caeffbcc8c8dee0744cba1af7
+DIST mongo-tools-3.4.16.tar.gz 4697191 BLAKE2B 
2e9a0e7dc8016d3e7d7c7f8d0cf80a97d3d199603c0b8b791df5a0d79d418ffaa232eee694047a7ca11fa7623023b4123becd437cfe3dec11e26cd525720bcad
 SHA512 
b40c6dee75d860de1da73faf79f5f68c098ce7c80681486c66fff04a937474dcede91c7be907a8e36033b3898f7499e8f53271944c0df3360756c27361efb6f5
 DIST mongo-tools-3.6.2.tar.gz 4693924 BLAKE2B 
61c44d579f6eb4013ee6c0118ebe89a2d454ef8cf6ad933479885cb71d169185272b03d9c63fa738d67bbd1b9efd4bc964eb17adcc5002508589d198cdb17752
 SHA512 
5ac2b1d2b33271f63c406c69bd8a576a21f4dcaa6f75839e0f907ebc9968f0e121eb3800e88da050c120856e7ddda4f12d551bb731d4acac0f5cf09f66fc948a
 DIST mongo-tools-3.6.3.tar.gz 4693833 BLAKE2B 
fc7139984cf3dcb7b4ce6f6c2028296651aa59ac68d7068bdf748e28eeb65b1fd9b07580d0c93f3f41dbb01030a12433a07a04deadf28e0ff792387fa78ae4aa
 SHA512 
7dba782c84a728aa9ceb28cbd9934f58b615dccfb238a9dbd63b18661ba4e74ddba21f93d9f12e6d80d293ebe42a82d31fa64448aacdba75bd07d964a5f631fc
 DIST mongo-tools-3.6.4.tar.gz 4693872 BLAKE2B 
5d72b32fa8ad7bc106c6ea3c09a27a093b9a1ae2392b4fa534042c5461fdc2b958dcbbf32e0ed596be234921e2ee21cc8f6132d57ae870a234abfc7adbb3b2e9
 SHA512 
53d06fa4a1b58de8001d6bf6e85f7edc97ce2cfbbb69c1ab05219deaa05ad9dd77d93f98c5526b4f58644a766e1b0f123686358095f059c71a4277634603f23f

diff --git a/app-admin/mongo-tools/mongo-tools-3.4.16.ebuild 
b/app-admin/mongo-tools/mongo-tools-3.4.16.ebuild
new file mode 100644
index 000..509a9eb6a0e
--- /dev/null
+++ b/app-admin/mongo-tools/mongo-tools-3.4.16.ebuild
@@ -0,0 +1,60 @@
+# 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="!

[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2018-06-28 Thread Alexys Jacob
commit: 59908f020e401a1e6161646e6ae7e43c5ab89e91
Author: Tomas Mozes  sygic  com>
AuthorDate: Thu Jun 28 10:38:14 2018 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Thu Jun 28 12:45:13 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59908f02

app-admin/mongo-tools: bump to 4.0.0

Package-Manager: Portage-2.3.40, Repoman-2.3.9
Closes: https://github.com/gentoo/gentoo/pull/9004

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

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index 6ab03912068..53a8e777488 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -9,3 +9,4 @@ DIST mongo-tools-3.6.2.tar.gz 4693924 BLAKE2B 
61c44d579f6eb4013ee6c0118ebe89a2d4
 DIST mongo-tools-3.6.3.tar.gz 4693833 BLAKE2B 
fc7139984cf3dcb7b4ce6f6c2028296651aa59ac68d7068bdf748e28eeb65b1fd9b07580d0c93f3f41dbb01030a12433a07a04deadf28e0ff792387fa78ae4aa
 SHA512 
7dba782c84a728aa9ceb28cbd9934f58b615dccfb238a9dbd63b18661ba4e74ddba21f93d9f12e6d80d293ebe42a82d31fa64448aacdba75bd07d964a5f631fc
 DIST mongo-tools-3.6.4.tar.gz 4693872 BLAKE2B 
5d72b32fa8ad7bc106c6ea3c09a27a093b9a1ae2392b4fa534042c5461fdc2b958dcbbf32e0ed596be234921e2ee21cc8f6132d57ae870a234abfc7adbb3b2e9
 SHA512 
53d06fa4a1b58de8001d6bf6e85f7edc97ce2cfbbb69c1ab05219deaa05ad9dd77d93f98c5526b4f58644a766e1b0f123686358095f059c71a4277634603f23f
 DIST mongo-tools-3.6.5.tar.gz 4720814 BLAKE2B 
5dd064f70557ec1ab979d08523f3dd305fb310c533b69bc99be3ad3d006036354f62b9f3d61c242e1481a254bed538a5e1cf5662f0e35705f1c50a76f31fddbb
 SHA512 
dd2d7cc64043b42a70b5de0ea493f94722a4476248bfd77d6892861e4be6ab20175992367965dfd687bf8b7ebece6113b7f7a3e59256497e3ecd7e2678875965
+DIST mongo-tools-4.0.0.tar.gz 10872217 BLAKE2B 
84e92178c0e4827926de525a70d6124635d59e270a3d37e23ec8653cc64d99bb7489fa6266917437ca45aa3ca5e00bc59b81e65c5b72e717db2701c6f7327bec
 SHA512 
d67c4aca9b41266109adc39bb1a642206738fda393e1f9f05570c02a00a02e29ec71c71e67ad232c72d66543ae7e7bfe07fbcf26958d48ed0e631da452c1904d

diff --git a/app-admin/mongo-tools/mongo-tools-4.0.0.ebuild 
b/app-admin/mongo-tools/mongo-tools-4.0.0.ebuild
new file mode 100644
index 000..3589981cbd8
--- /dev/null
+++ b/app-admin/mongo-tools/mongo-tools-4.0.0.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="!

[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2018-06-11 Thread Alexys Jacob
commit: 1ab717bd9632531fbecdce4e31a992a94268fbed
Author: Tomas Mozes  gmail  com>
AuthorDate: Fri May 25 12:30:10 2018 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Mon Jun 11 19:25:13 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ab717bd

app-admin/mongo-tools: bump to 3.6.5

Package-Manager: Portage-2.3.38, Repoman-2.3.9

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

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index 88627c6b6ce..6ab03912068 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -8,3 +8,4 @@ DIST mongo-tools-3.4.15.tar.gz 4697188 BLAKE2B 
690ec3187cb781c9cae903a27eca9d1d5
 DIST mongo-tools-3.6.2.tar.gz 4693924 BLAKE2B 
61c44d579f6eb4013ee6c0118ebe89a2d454ef8cf6ad933479885cb71d169185272b03d9c63fa738d67bbd1b9efd4bc964eb17adcc5002508589d198cdb17752
 SHA512 
5ac2b1d2b33271f63c406c69bd8a576a21f4dcaa6f75839e0f907ebc9968f0e121eb3800e88da050c120856e7ddda4f12d551bb731d4acac0f5cf09f66fc948a
 DIST mongo-tools-3.6.3.tar.gz 4693833 BLAKE2B 
fc7139984cf3dcb7b4ce6f6c2028296651aa59ac68d7068bdf748e28eeb65b1fd9b07580d0c93f3f41dbb01030a12433a07a04deadf28e0ff792387fa78ae4aa
 SHA512 
7dba782c84a728aa9ceb28cbd9934f58b615dccfb238a9dbd63b18661ba4e74ddba21f93d9f12e6d80d293ebe42a82d31fa64448aacdba75bd07d964a5f631fc
 DIST mongo-tools-3.6.4.tar.gz 4693872 BLAKE2B 
5d72b32fa8ad7bc106c6ea3c09a27a093b9a1ae2392b4fa534042c5461fdc2b958dcbbf32e0ed596be234921e2ee21cc8f6132d57ae870a234abfc7adbb3b2e9
 SHA512 
53d06fa4a1b58de8001d6bf6e85f7edc97ce2cfbbb69c1ab05219deaa05ad9dd77d93f98c5526b4f58644a766e1b0f123686358095f059c71a4277634603f23f
+DIST mongo-tools-3.6.5.tar.gz 4720814 BLAKE2B 
5dd064f70557ec1ab979d08523f3dd305fb310c533b69bc99be3ad3d006036354f62b9f3d61c242e1481a254bed538a5e1cf5662f0e35705f1c50a76f31fddbb
 SHA512 
dd2d7cc64043b42a70b5de0ea493f94722a4476248bfd77d6892861e4be6ab20175992367965dfd687bf8b7ebece6113b7f7a3e59256497e3ecd7e2678875965

diff --git a/app-admin/mongo-tools/mongo-tools-3.6.5.ebuild 
b/app-admin/mongo-tools/mongo-tools-3.6.5.ebuild
new file mode 100644
index 000..3589981cbd8
--- /dev/null
+++ b/app-admin/mongo-tools/mongo-tools-3.6.5.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="!

[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2018-06-11 Thread Alexys Jacob
commit: 1c5c2ab0c5cef9190b092d02b8a50956e8e3d325
Author: Tomas Mozes  sygic  com>
AuthorDate: Fri May 25 12:28:38 2018 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Mon Jun 11 19:25:07 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c5c2ab0

app-admin/mongo-tools: bump to 3.4.15

Package-Manager: Portage-2.3.38, Repoman-2.3.9
Closes: https://github.com/gentoo/gentoo/pull/8578

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

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index bf2f10c2a4c..88627c6b6ce 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -4,6 +4,7 @@ DIST mongo-tools-3.2.17.tar.gz 2719970 BLAKE2B 
666b67d8abdd10f7fa7c557e3c3906fb3
 DIST mongo-tools-3.4.10.tar.gz 4719399 BLAKE2B 
8165248bf58f2ea2b02e365a3609c72b72e98dd5902f176e251fa2add1ad26e90900e06c35dc6db4dbe161e541bedfc1776f5e15bbb41dcc9a7be17800424362
 SHA512 
b861bb3fb1a32c3aa2efefcf6a13bb6d4783ac1a9b006c477fd04deb338cbf6b7adc3944bc6919513b92bd96b8500813ff4af49c9dec0719ebd2fdaa99bc39a5
 DIST mongo-tools-3.4.13.tar.gz 4719488 BLAKE2B 
27c7716b21f1a23408d0f31aee111c5877f5172121a987c234ff01eb2690bbc71bca4e00fc13b701ca6b91dce0c9aaae43c2239a60a52e130e1390bf5bafef60
 SHA512 
c233268328ef868ec06c9a9d83009141b39c84ba642e7de7dece3210717ba8de600f39896a30ed23d1577db9f4697c3a8d720cf35248bca2b00a17642b043237
 DIST mongo-tools-3.4.14.tar.gz 4719370 BLAKE2B 
2add25ddf9b5b7d2ebecdd647dfb2c818643b16f623fd1faba36a8d6f5a181e80ad47de45fc56e462290f61f6c16c27a6b0587542315981537627256e69b4958
 SHA512 
a0d715fe36769740ba25e92b742b157dc264b141ddd56d64ca4c6f8ffea11df291ce871aaa723acdb8b7f5318ac1edb8c5fb9dd7bf2edfe08d4e7cef343abea7
+DIST mongo-tools-3.4.15.tar.gz 4697188 BLAKE2B 
690ec3187cb781c9cae903a27eca9d1d504e2e52cc7f48790b5d5b5a1dfe18cff95dd52f8fa03854548a2e634d2aed56e626b8702f2fcd27a10952a37dff9120
 SHA512 
f7c8655f56a1f5fedad00fbadd26b150d6fea071edccaa7ac18e80c9051ed2324691e98e799e6a9ca09e944ebe340b63a2ac0b9caeffbcc8c8dee0744cba1af7
 DIST mongo-tools-3.6.2.tar.gz 4693924 BLAKE2B 
61c44d579f6eb4013ee6c0118ebe89a2d454ef8cf6ad933479885cb71d169185272b03d9c63fa738d67bbd1b9efd4bc964eb17adcc5002508589d198cdb17752
 SHA512 
5ac2b1d2b33271f63c406c69bd8a576a21f4dcaa6f75839e0f907ebc9968f0e121eb3800e88da050c120856e7ddda4f12d551bb731d4acac0f5cf09f66fc948a
 DIST mongo-tools-3.6.3.tar.gz 4693833 BLAKE2B 
fc7139984cf3dcb7b4ce6f6c2028296651aa59ac68d7068bdf748e28eeb65b1fd9b07580d0c93f3f41dbb01030a12433a07a04deadf28e0ff792387fa78ae4aa
 SHA512 
7dba782c84a728aa9ceb28cbd9934f58b615dccfb238a9dbd63b18661ba4e74ddba21f93d9f12e6d80d293ebe42a82d31fa64448aacdba75bd07d964a5f631fc
 DIST mongo-tools-3.6.4.tar.gz 4693872 BLAKE2B 
5d72b32fa8ad7bc106c6ea3c09a27a093b9a1ae2392b4fa534042c5461fdc2b958dcbbf32e0ed596be234921e2ee21cc8f6132d57ae870a234abfc7adbb3b2e9
 SHA512 
53d06fa4a1b58de8001d6bf6e85f7edc97ce2cfbbb69c1ab05219deaa05ad9dd77d93f98c5526b4f58644a766e1b0f123686358095f059c71a4277634603f23f

diff --git a/app-admin/mongo-tools/mongo-tools-3.4.15.ebuild 
b/app-admin/mongo-tools/mongo-tools-3.4.15.ebuild
new file mode 100644
index 000..509a9eb6a0e
--- /dev/null
+++ b/app-admin/mongo-tools/mongo-tools-3.4.15.ebuild
@@ -0,0 +1,60 @@
+# 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="!

[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2018-05-07 Thread Alexys Jacob
commit: 58f3a56fc51cea34b07f078b1652467e45ecc240
Author: Tomas Mozes  sygic  com>
AuthorDate: Thu Apr 26 12:14:58 2018 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Mon May  7 07:39:18 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58f3a56f

app-admin/mongo-tools: bump to 3.4.14/3.6.4

Package-Manager: Portage-2.3.31, Repoman-2.3.9
Closes: https://github.com/gentoo/gentoo/pull/8150

 app-admin/mongo-tools/Manifest  |  2 +
 app-admin/mongo-tools/mongo-tools-3.4.14.ebuild | 60 
 app-admin/mongo-tools/mongo-tools-3.6.4.ebuild  | 61 +
 3 files changed, 123 insertions(+)

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index ae713d8aafd..bf2f10c2a4c 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -3,5 +3,7 @@ DIST mongo-tools-3.0.15.tar.gz 2413131 BLAKE2B 
5f971d6b47685ef8db246a71f59a31a72
 DIST mongo-tools-3.2.17.tar.gz 2719970 BLAKE2B 
666b67d8abdd10f7fa7c557e3c3906fb3cc6bcfa0b97a05e39e5f1ea923d2beb5ec249b3b0a521c4cce4bd595bf18672d8bce38152f84825bb3fffb058fd3b29
 SHA512 
62c2540027e07b8276621e08d13657864d16021030e3c8f9bc0d351454319d448f889cf6a48b8467ea3270365376ed0c3beb42ceae3f28357910148c6b4054b2
 DIST mongo-tools-3.4.10.tar.gz 4719399 BLAKE2B 
8165248bf58f2ea2b02e365a3609c72b72e98dd5902f176e251fa2add1ad26e90900e06c35dc6db4dbe161e541bedfc1776f5e15bbb41dcc9a7be17800424362
 SHA512 
b861bb3fb1a32c3aa2efefcf6a13bb6d4783ac1a9b006c477fd04deb338cbf6b7adc3944bc6919513b92bd96b8500813ff4af49c9dec0719ebd2fdaa99bc39a5
 DIST mongo-tools-3.4.13.tar.gz 4719488 BLAKE2B 
27c7716b21f1a23408d0f31aee111c5877f5172121a987c234ff01eb2690bbc71bca4e00fc13b701ca6b91dce0c9aaae43c2239a60a52e130e1390bf5bafef60
 SHA512 
c233268328ef868ec06c9a9d83009141b39c84ba642e7de7dece3210717ba8de600f39896a30ed23d1577db9f4697c3a8d720cf35248bca2b00a17642b043237
+DIST mongo-tools-3.4.14.tar.gz 4719370 BLAKE2B 
2add25ddf9b5b7d2ebecdd647dfb2c818643b16f623fd1faba36a8d6f5a181e80ad47de45fc56e462290f61f6c16c27a6b0587542315981537627256e69b4958
 SHA512 
a0d715fe36769740ba25e92b742b157dc264b141ddd56d64ca4c6f8ffea11df291ce871aaa723acdb8b7f5318ac1edb8c5fb9dd7bf2edfe08d4e7cef343abea7
 DIST mongo-tools-3.6.2.tar.gz 4693924 BLAKE2B 
61c44d579f6eb4013ee6c0118ebe89a2d454ef8cf6ad933479885cb71d169185272b03d9c63fa738d67bbd1b9efd4bc964eb17adcc5002508589d198cdb17752
 SHA512 
5ac2b1d2b33271f63c406c69bd8a576a21f4dcaa6f75839e0f907ebc9968f0e121eb3800e88da050c120856e7ddda4f12d551bb731d4acac0f5cf09f66fc948a
 DIST mongo-tools-3.6.3.tar.gz 4693833 BLAKE2B 
fc7139984cf3dcb7b4ce6f6c2028296651aa59ac68d7068bdf748e28eeb65b1fd9b07580d0c93f3f41dbb01030a12433a07a04deadf28e0ff792387fa78ae4aa
 SHA512 
7dba782c84a728aa9ceb28cbd9934f58b615dccfb238a9dbd63b18661ba4e74ddba21f93d9f12e6d80d293ebe42a82d31fa64448aacdba75bd07d964a5f631fc
+DIST mongo-tools-3.6.4.tar.gz 4693872 BLAKE2B 
5d72b32fa8ad7bc106c6ea3c09a27a093b9a1ae2392b4fa534042c5461fdc2b958dcbbf32e0ed596be234921e2ee21cc8f6132d57ae870a234abfc7adbb3b2e9
 SHA512 
53d06fa4a1b58de8001d6bf6e85f7edc97ce2cfbbb69c1ab05219deaa05ad9dd77d93f98c5526b4f58644a766e1b0f123686358095f059c71a4277634603f23f

diff --git a/app-admin/mongo-tools/mongo-tools-3.4.14.ebuild 
b/app-admin/mongo-tools/mongo-tools-3.4.14.ebuild
new file mode 100644
index 000..de23914b111
--- /dev/null
+++ b/app-admin/mongo-tools/mongo-tools-3.4.14.ebuild
@@ -0,0 +1,60 @@
+# 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.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"
+IUSE="sasl ssl"
+
+RDEPEND="!https://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"
+
+RDEPEND="!

[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2018-03-02 Thread Alexys Jacob
commit: 419f45e80387c0cb3c780e36a0bc18110695ed2d
Author: Tomas Mozes  gmail  com>
AuthorDate: Fri Mar  2 06:59:30 2018 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Fri Mar  2 14:34:01 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=419f45e8

app-admin/mongo-tools: drop old

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 app-admin/mongo-tools/Manifest  |  3 --
 app-admin/mongo-tools/mongo-tools-3.2.12.ebuild | 58 -
 app-admin/mongo-tools/mongo-tools-3.2.13.ebuild | 58 -
 app-admin/mongo-tools/mongo-tools-3.2.16.ebuild | 58 -
 4 files changed, 177 deletions(-)

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index 1e70fe00e72..ae713d8aafd 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -1,8 +1,5 @@
 DIST mongo-tools-3.0.14.tar.gz 2413148 BLAKE2B 
a085b452019f7354a8f2fcb4d7a493746fd6504dc836b3bc522bca6dfd054dc4940db1b07021b305c52bc12da076220c3e137507b656a00ca1330ba336532458
 SHA512 
0e77417b2c36080515a2ff611427cb18f6d6c2432159c2a09af8d6ff14ae7f25ecbfe0a6631eeb7de084fdfe517a09364d731f5b63923404b6319fc1ca44b840
 DIST mongo-tools-3.0.15.tar.gz 2413131 BLAKE2B 
5f971d6b47685ef8db246a71f59a31a722e84b8191639fe7da849162701c944325bc4cbdb9a27b7a6ae32f1a8ccedac91d6a485dfbe54dd17b8735d5b32e4f2c
 SHA512 
b5baeea89f5287e055c43c58cfc31e4618df2b7b7fffd7d77248131daf503522b1d041253df8d3ad2ffa22efff344334dc05e3a3462cf7c646d4e83040bd95dc
-DIST mongo-tools-3.2.12.tar.gz 2712079 BLAKE2B 
173301fb4b47460eb9674ba80540c9a2f42688a4753576ca5fe08c199a63ec71b1d50d3ed9291eede05e4de6540a654e5bcd8d65bc739ecdb7ed1b36114430f9
 SHA512 
66f7beb85a83ad6a217e65bba97ace6ad0bf84688f40e598e5fb1cf4bbe481b4069e1247d6829f8d06c8230d33c3e0c8bd8465a975576cad584065c361b6fb72
-DIST mongo-tools-3.2.13.tar.gz 2712076 BLAKE2B 
66e76e049b6a322e05dea21c241d983ebecb0005ceba915d9990b1d5b059a5b56ba7f7e52d9e5e54619a66e64cc57cb3db3265543f3ebd110197d97a01cd3cc6
 SHA512 
caa0ba0f1452a16921c187cb407258326324b7222af91b1cd1b870ee2c9e6909d4fa94087a6da148a807f75b40f0bb97808a85804134d53cdab7970d8adf59f8
-DIST mongo-tools-3.2.16.tar.gz 2720003 BLAKE2B 
e5cb694549b5c70cd07fc8e891b1a78cffec0f99aab62978c70d38c01d9b1ae9c401f9618d24d9afc036ae66657eac40f710076d177497b51c97b963cff31d86
 SHA512 
61c8cfd04a36e329c3573b73945d20a5623e1aa0a3430b309530e85e4289a27a46a850ec48ede7f04e66e67e23745ef26f5f4ddcf68ffeb647128e3d2526a724
 DIST mongo-tools-3.2.17.tar.gz 2719970 BLAKE2B 
666b67d8abdd10f7fa7c557e3c3906fb3cc6bcfa0b97a05e39e5f1ea923d2beb5ec249b3b0a521c4cce4bd595bf18672d8bce38152f84825bb3fffb058fd3b29
 SHA512 
62c2540027e07b8276621e08d13657864d16021030e3c8f9bc0d351454319d448f889cf6a48b8467ea3270365376ed0c3beb42ceae3f28357910148c6b4054b2
 DIST mongo-tools-3.4.10.tar.gz 4719399 BLAKE2B 
8165248bf58f2ea2b02e365a3609c72b72e98dd5902f176e251fa2add1ad26e90900e06c35dc6db4dbe161e541bedfc1776f5e15bbb41dcc9a7be17800424362
 SHA512 
b861bb3fb1a32c3aa2efefcf6a13bb6d4783ac1a9b006c477fd04deb338cbf6b7adc3944bc6919513b92bd96b8500813ff4af49c9dec0719ebd2fdaa99bc39a5
 DIST mongo-tools-3.4.13.tar.gz 4719488 BLAKE2B 
27c7716b21f1a23408d0f31aee111c5877f5172121a987c234ff01eb2690bbc71bca4e00fc13b701ca6b91dce0c9aaae43c2239a60a52e130e1390bf5bafef60
 SHA512 
c233268328ef868ec06c9a9d83009141b39c84ba642e7de7dece3210717ba8de600f39896a30ed23d1577db9f4697c3a8d720cf35248bca2b00a17642b043237

diff --git a/app-admin/mongo-tools/mongo-tools-3.2.12.ebuild 
b/app-admin/mongo-tools/mongo-tools-3.2.12.ebuild
deleted file mode 100644
index 1978809739a..000
--- a/app-admin/mongo-tools/mongo-tools-3.2.12.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-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="!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="!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="!

[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2018-03-02 Thread Alexys Jacob
commit: 72ea3107794c7e3f5250d1060cf4817ecf891603
Author: Tomas Mozes  gmail  com>
AuthorDate: Fri Mar  2 06:45:25 2018 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Fri Mar  2 14:33:50 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72ea3107

app-admin/mongo-tools: bump to 3.6.3

Package-Manager: Portage-2.3.24, Repoman-2.3.6
Closes: https://github.com/gentoo/gentoo/pull/7333

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

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index 590cb75622c..1e70fe00e72 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -7,3 +7,4 @@ DIST mongo-tools-3.2.17.tar.gz 2719970 BLAKE2B 
666b67d8abdd10f7fa7c557e3c3906fb3
 DIST mongo-tools-3.4.10.tar.gz 4719399 BLAKE2B 
8165248bf58f2ea2b02e365a3609c72b72e98dd5902f176e251fa2add1ad26e90900e06c35dc6db4dbe161e541bedfc1776f5e15bbb41dcc9a7be17800424362
 SHA512 
b861bb3fb1a32c3aa2efefcf6a13bb6d4783ac1a9b006c477fd04deb338cbf6b7adc3944bc6919513b92bd96b8500813ff4af49c9dec0719ebd2fdaa99bc39a5
 DIST mongo-tools-3.4.13.tar.gz 4719488 BLAKE2B 
27c7716b21f1a23408d0f31aee111c5877f5172121a987c234ff01eb2690bbc71bca4e00fc13b701ca6b91dce0c9aaae43c2239a60a52e130e1390bf5bafef60
 SHA512 
c233268328ef868ec06c9a9d83009141b39c84ba642e7de7dece3210717ba8de600f39896a30ed23d1577db9f4697c3a8d720cf35248bca2b00a17642b043237
 DIST mongo-tools-3.6.2.tar.gz 4693924 BLAKE2B 
61c44d579f6eb4013ee6c0118ebe89a2d454ef8cf6ad933479885cb71d169185272b03d9c63fa738d67bbd1b9efd4bc964eb17adcc5002508589d198cdb17752
 SHA512 
5ac2b1d2b33271f63c406c69bd8a576a21f4dcaa6f75839e0f907ebc9968f0e121eb3800e88da050c120856e7ddda4f12d551bb731d4acac0f5cf09f66fc948a
+DIST mongo-tools-3.6.3.tar.gz 4693833 BLAKE2B 
fc7139984cf3dcb7b4ce6f6c2028296651aa59ac68d7068bdf748e28eeb65b1fd9b07580d0c93f3f41dbb01030a12433a07a04deadf28e0ff792387fa78ae4aa
 SHA512 
7dba782c84a728aa9ceb28cbd9934f58b615dccfb238a9dbd63b18661ba4e74ddba21f93d9f12e6d80d293ebe42a82d31fa64448aacdba75bd07d964a5f631fc

diff --git a/app-admin/mongo-tools/mongo-tools-3.6.3.ebuild 
b/app-admin/mongo-tools/mongo-tools-3.6.3.ebuild
new file mode 100644
index 000..f8c4a23a746
--- /dev/null
+++ b/app-admin/mongo-tools/mongo-tools-3.6.3.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.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"
+
+RDEPEND="!

[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2018-02-15 Thread Alexys Jacob
commit: a9f2bfc4f15d2512a4cbd9f4ae1d7ba7e5068f1c
Author: Tomas Mozes  gmail  com>
AuthorDate: Wed Feb 14 15:31:56 2018 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Thu Feb 15 15:01:55 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9f2bfc4

app-admin/mongo-tools: improve ebuild

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 app-admin/mongo-tools/mongo-tools-3.4.13.ebuild | 6 ++
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/app-admin/mongo-tools/mongo-tools-3.4.13.ebuild 
b/app-admin/mongo-tools/mongo-tools-3.4.13.ebuild
index 1ec457f1ee8..de23914b111 100644
--- a/app-admin/mongo-tools/mongo-tools-3.4.13.ebuild
+++ b/app-admin/mongo-tools/mongo-tools-3.4.13.ebuild
@@ -3,8 +3,6 @@
 
 EAPI=6
 
-inherit eutils
-
 MY_PV=${PV/_rc/-rc}
 MY_P=${PN}-r${MY_PV}
 
@@ -27,6 +25,8 @@ DEPEND="${RDEPEND}
 S=${WORKDIR}/${MY_P}
 
 src_prepare() {
+   default
+
# do not substitute version because it uses git
sed -i '/^sed/,+3d' build.sh || die
sed -i '/^mv/d' build.sh || die
@@ -39,8 +39,6 @@ src_prepare() {
 
# ensure we use bash wrt #582906
sed -i 's@/bin/sh@/bin/bash@g' build.sh || die
-
-   default
 }
 
 src_compile() {



[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2018-02-14 Thread Alexys Jacob
commit: 5f6dab2fc0746430fde372788bfbf15ce51d3653
Author: Ultrabug  gentoo  org>
AuthorDate: Wed Feb 14 15:11:04 2018 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Wed Feb 14 15:11:04 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f6dab2f

app-admin/mongo-tools: version bump fix #647470

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

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index 498276f23fd..590cb75622c 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -5,4 +5,5 @@ DIST mongo-tools-3.2.13.tar.gz 2712076 BLAKE2B 
66e76e049b6a322e05dea21c241d983eb
 DIST mongo-tools-3.2.16.tar.gz 2720003 BLAKE2B 
e5cb694549b5c70cd07fc8e891b1a78cffec0f99aab62978c70d38c01d9b1ae9c401f9618d24d9afc036ae66657eac40f710076d177497b51c97b963cff31d86
 SHA512 
61c8cfd04a36e329c3573b73945d20a5623e1aa0a3430b309530e85e4289a27a46a850ec48ede7f04e66e67e23745ef26f5f4ddcf68ffeb647128e3d2526a724
 DIST mongo-tools-3.2.17.tar.gz 2719970 BLAKE2B 
666b67d8abdd10f7fa7c557e3c3906fb3cc6bcfa0b97a05e39e5f1ea923d2beb5ec249b3b0a521c4cce4bd595bf18672d8bce38152f84825bb3fffb058fd3b29
 SHA512 
62c2540027e07b8276621e08d13657864d16021030e3c8f9bc0d351454319d448f889cf6a48b8467ea3270365376ed0c3beb42ceae3f28357910148c6b4054b2
 DIST mongo-tools-3.4.10.tar.gz 4719399 BLAKE2B 
8165248bf58f2ea2b02e365a3609c72b72e98dd5902f176e251fa2add1ad26e90900e06c35dc6db4dbe161e541bedfc1776f5e15bbb41dcc9a7be17800424362
 SHA512 
b861bb3fb1a32c3aa2efefcf6a13bb6d4783ac1a9b006c477fd04deb338cbf6b7adc3944bc6919513b92bd96b8500813ff4af49c9dec0719ebd2fdaa99bc39a5
+DIST mongo-tools-3.4.13.tar.gz 4719488 BLAKE2B 
27c7716b21f1a23408d0f31aee111c5877f5172121a987c234ff01eb2690bbc71bca4e00fc13b701ca6b91dce0c9aaae43c2239a60a52e130e1390bf5bafef60
 SHA512 
c233268328ef868ec06c9a9d83009141b39c84ba642e7de7dece3210717ba8de600f39896a30ed23d1577db9f4697c3a8d720cf35248bca2b00a17642b043237
 DIST mongo-tools-3.6.2.tar.gz 4693924 BLAKE2B 
61c44d579f6eb4013ee6c0118ebe89a2d454ef8cf6ad933479885cb71d169185272b03d9c63fa738d67bbd1b9efd4bc964eb17adcc5002508589d198cdb17752
 SHA512 
5ac2b1d2b33271f63c406c69bd8a576a21f4dcaa6f75839e0f907ebc9968f0e121eb3800e88da050c120856e7ddda4f12d551bb731d4acac0f5cf09f66fc948a

diff --git a/app-admin/mongo-tools/mongo-tools-3.4.13.ebuild 
b/app-admin/mongo-tools/mongo-tools-3.4.13.ebuild
new file mode 100644
index 000..1ec457f1ee8
--- /dev/null
+++ b/app-admin/mongo-tools/mongo-tools-3.4.13.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+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="https://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"
+IUSE="sasl ssl"
+
+RDEPEND="!

[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2018-01-26 Thread Mikle Kolyada
commit: 677f904be71b1b1aa51421fe0103bb6684408da6
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Jan 26 21:23:48 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Jan 26 21:24:35 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=677f904b

app-admin/mongo-tools: amd64 stable wrt bug #643546

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 app-admin/mongo-tools/mongo-tools-3.4.10.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-admin/mongo-tools/mongo-tools-3.4.10.ebuild 
b/app-admin/mongo-tools/mongo-tools-3.4.10.ebuild
index ba96c8cbca3..0fd4699fdad 100644
--- a/app-admin/mongo-tools/mongo-tools-3.4.10.ebuild
+++ b/app-admin/mongo-tools/mongo-tools-3.4.10.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/mongodb/mongo-tools/archive/r${MY_PV}.tar.gz -> mong
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="sasl ssl"
 
 RDEPEND="!

[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/, dev-db/mongodb/

2018-01-11 Thread Alexys Jacob
commit: 0a6fcc38163ff9d4dfeb58c3504b98311e28a172
Author: Ultrabug  gentoo  org>
AuthorDate: Thu Jan 11 12:54:34 2018 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Thu Jan 11 12:54:55 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a6fcc38

dev-db/mongodb: version bump

 app-admin/mongo-tools/Manifest  | 2 +-
 .../mongo-tools/{mongo-tools-3.6.1.ebuild => mongo-tools-3.6.2.ebuild}  | 0
 dev-db/mongodb/Manifest | 2 +-
 dev-db/mongodb/{mongodb-3.6.1-r1.ebuild => mongodb-3.6.2.ebuild}| 0
 4 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index aef3a609055..498276f23fd 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -5,4 +5,4 @@ DIST mongo-tools-3.2.13.tar.gz 2712076 BLAKE2B 
66e76e049b6a322e05dea21c241d983eb
 DIST mongo-tools-3.2.16.tar.gz 2720003 BLAKE2B 
e5cb694549b5c70cd07fc8e891b1a78cffec0f99aab62978c70d38c01d9b1ae9c401f9618d24d9afc036ae66657eac40f710076d177497b51c97b963cff31d86
 SHA512 
61c8cfd04a36e329c3573b73945d20a5623e1aa0a3430b309530e85e4289a27a46a850ec48ede7f04e66e67e23745ef26f5f4ddcf68ffeb647128e3d2526a724
 DIST mongo-tools-3.2.17.tar.gz 2719970 BLAKE2B 
666b67d8abdd10f7fa7c557e3c3906fb3cc6bcfa0b97a05e39e5f1ea923d2beb5ec249b3b0a521c4cce4bd595bf18672d8bce38152f84825bb3fffb058fd3b29
 SHA512 
62c2540027e07b8276621e08d13657864d16021030e3c8f9bc0d351454319d448f889cf6a48b8467ea3270365376ed0c3beb42ceae3f28357910148c6b4054b2
 DIST mongo-tools-3.4.10.tar.gz 4719399 BLAKE2B 
8165248bf58f2ea2b02e365a3609c72b72e98dd5902f176e251fa2add1ad26e90900e06c35dc6db4dbe161e541bedfc1776f5e15bbb41dcc9a7be17800424362
 SHA512 
b861bb3fb1a32c3aa2efefcf6a13bb6d4783ac1a9b006c477fd04deb338cbf6b7adc3944bc6919513b92bd96b8500813ff4af49c9dec0719ebd2fdaa99bc39a5
-DIST mongo-tools-3.6.1.tar.gz 4693844 BLAKE2B 
1c6a600abf41a32cbac37cbcef540957e39b6e4574413ecedacdafc761e62b7bb45c285db985bbae01936fddbde0e8d10aa16cd512bd28ae3b60d072ac18b09e
 SHA512 
15a073e92281b515d16c778ef3f540939dfaeaeb92afb303899ea3a7bbecd2782efa0ba05b9ed271660e9000c6108c05a28e2dec826880867c625d06ac65a0be
+DIST mongo-tools-3.6.2.tar.gz 4693924 BLAKE2B 
61c44d579f6eb4013ee6c0118ebe89a2d454ef8cf6ad933479885cb71d169185272b03d9c63fa738d67bbd1b9efd4bc964eb17adcc5002508589d198cdb17752
 SHA512 
5ac2b1d2b33271f63c406c69bd8a576a21f4dcaa6f75839e0f907ebc9968f0e121eb3800e88da050c120856e7ddda4f12d551bb731d4acac0f5cf09f66fc948a

diff --git a/app-admin/mongo-tools/mongo-tools-3.6.1.ebuild 
b/app-admin/mongo-tools/mongo-tools-3.6.2.ebuild
similarity index 100%
rename from app-admin/mongo-tools/mongo-tools-3.6.1.ebuild
rename to app-admin/mongo-tools/mongo-tools-3.6.2.ebuild

diff --git a/dev-db/mongodb/Manifest b/dev-db/mongodb/Manifest
index 1d9f22ce951..663d7836fff 100644
--- a/dev-db/mongodb/Manifest
+++ b/dev-db/mongodb/Manifest
@@ -5,4 +5,4 @@ DIST mongodb-src-r3.2.13.tar.gz 29273616 BLAKE2B 
9fb9851953ef1561340bcb33cac6a2c
 DIST mongodb-src-r3.2.16.tar.gz 29293555 BLAKE2B 
e2863ed0210bc66fcf2c80e28668674c254e78ee750a0eb84c45569c2224157f1db65aca5296a0ed0c32ef83ab6269de25bd69dbf1f0ef54b021bb0aecd2e46a
 SHA512 
ba57aae430959f7df036b7e19e1b7d81956184bededd35631616c6e3dc9423dc79a50ab3265bc48b06d198a7043bca902aee2ea75954e38151ebead5b5ab2db2
 DIST mongodb-src-r3.2.17.tar.gz 29295394 BLAKE2B 
3fa9d8fa0b50b72c3b2aa86980dd4d46bd053f23d044e321d6f98f5edb76c566bf00455cf745110a8c39355843664d9d1fbbdf554fc8696de73db2b270446adc
 SHA512 
0d6a01278bc61805afd164e4a29abe150a5a96d551ed2c7c5d385b269924a7c5f065315e4f19c0ab070aa275ac03447959af45f33826457e5db0c5f98e623512
 DIST mongodb-src-r3.4.10.tar.gz 39959937 BLAKE2B 
f14f081525f694b939bc21f8cb6364c2a37573c0e1867322dd2062dc167b112751579c3e2d76730b3ff07b0c6bbfd3bbea99162b7c10eef62d92eb1b0850
 SHA512 
6293dde40a8433477ba3b1cf77abbdb32b28ce58279cc616b488647c8ab71b5ab3eab2146058c4a74b9e00f0938f1415020e2f26ea01f2b29dd78a1a38d58c3a
-DIST mongodb-src-r3.6.1.tar.gz 39996730 BLAKE2B 
4d05b5bec959ff6d87913aae7a30af1cdec5d22eaf7785ec7f49e3deb5d4d92db35f278c7cddf91ed8bd3750797c0461bb7bc188214c82cecf9d3b2e43fbf6aa
 SHA512 
ad02fac423186da725493bf82a417cf5f68b08afe91c67f007b46324dfde3d6b4c51ed8eb1a314da73563be498b844f79be66a4f5d1fb83095df6c5458bd6d1f
+DIST mongodb-src-r3.6.2.tar.gz 3539 BLAKE2B 
3e38917ebaf79b63bf054279fbb91a648fe52e69d8194998dc74453ad6766688929a80456f6cb4801f2806ac938a5dfc0407e5f46345b47a80ecce0ba03d7fde
 SHA512 
7acfbcc68c1bd4e6e63eee09be1dfbb064be6f8b0144418105100a065f8162cafc9b776fe0429fd64c79b958561aa42d0bdef56588dda65acee27ccc98631f39

diff --git a/dev-db/mongodb/mongodb-3.6.1-r1.ebuild 
b/dev-db/mongodb/mongodb-3.6.2.ebuild
similarity index 100%
rename from dev-db/mongodb/mongodb-3.6.1-r1.ebuild
rename to dev-db/mongodb/mongodb-3.6.2.ebuild



[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2018-01-06 Thread Alexys Jacob
commit: b182ce3b3a7ea65e7ab02f38c92ffd50becda992
Author: Tomas Mozes  gmail  com>
AuthorDate: Fri Jan  5 23:12:19 2018 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Sat Jan  6 21:34:25 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b182ce3b

app-admin/mongo-tools: version bump to 3.6.1

Closes: https://github.com/gentoo/gentoo/pull/6604

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

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index a92f9451e6c..aef3a609055 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -5,3 +5,4 @@ DIST mongo-tools-3.2.13.tar.gz 2712076 BLAKE2B 
66e76e049b6a322e05dea21c241d983eb
 DIST mongo-tools-3.2.16.tar.gz 2720003 BLAKE2B 
e5cb694549b5c70cd07fc8e891b1a78cffec0f99aab62978c70d38c01d9b1ae9c401f9618d24d9afc036ae66657eac40f710076d177497b51c97b963cff31d86
 SHA512 
61c8cfd04a36e329c3573b73945d20a5623e1aa0a3430b309530e85e4289a27a46a850ec48ede7f04e66e67e23745ef26f5f4ddcf68ffeb647128e3d2526a724
 DIST mongo-tools-3.2.17.tar.gz 2719970 BLAKE2B 
666b67d8abdd10f7fa7c557e3c3906fb3cc6bcfa0b97a05e39e5f1ea923d2beb5ec249b3b0a521c4cce4bd595bf18672d8bce38152f84825bb3fffb058fd3b29
 SHA512 
62c2540027e07b8276621e08d13657864d16021030e3c8f9bc0d351454319d448f889cf6a48b8467ea3270365376ed0c3beb42ceae3f28357910148c6b4054b2
 DIST mongo-tools-3.4.10.tar.gz 4719399 BLAKE2B 
8165248bf58f2ea2b02e365a3609c72b72e98dd5902f176e251fa2add1ad26e90900e06c35dc6db4dbe161e541bedfc1776f5e15bbb41dcc9a7be17800424362
 SHA512 
b861bb3fb1a32c3aa2efefcf6a13bb6d4783ac1a9b006c477fd04deb338cbf6b7adc3944bc6919513b92bd96b8500813ff4af49c9dec0719ebd2fdaa99bc39a5
+DIST mongo-tools-3.6.1.tar.gz 4693844 BLAKE2B 
1c6a600abf41a32cbac37cbcef540957e39b6e4574413ecedacdafc761e62b7bb45c285db985bbae01936fddbde0e8d10aa16cd512bd28ae3b60d072ac18b09e
 SHA512 
15a073e92281b515d16c778ef3f540939dfaeaeb92afb303899ea3a7bbecd2782efa0ba05b9ed271660e9000c6108c05a28e2dec826880867c625d06ac65a0be

diff --git a/app-admin/mongo-tools/mongo-tools-3.6.1.ebuild 
b/app-admin/mongo-tools/mongo-tools-3.6.1.ebuild
new file mode 100644
index 000..f8c4a23a746
--- /dev/null
+++ b/app-admin/mongo-tools/mongo-tools-3.6.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.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"
+
+RDEPEND="!

[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/files/

2017-12-06 Thread Michael Palimaka
commit: bce2e4ab466b6c5866e38d523382fb318644e652
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Tue Dec  5 18:04:41 2017 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Wed Dec  6 11:59:46 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bce2e4ab

app-admin/mongo-tools: remove unused patches

Closes: https://github.com/gentoo/gentoo/pull/6460

 app-admin/mongo-tools/files/mongo-tools-3.0.0-build.patch  | 10 --
 app-admin/mongo-tools/files/mongo-tools-3.0.12-build.patch |  9 -
 app-admin/mongo-tools/files/mongo-tools-3.2.5-build.patch  |  9 -
 3 files changed, 28 deletions(-)

diff --git a/app-admin/mongo-tools/files/mongo-tools-3.0.0-build.patch 
b/app-admin/mongo-tools/files/mongo-tools-3.0.0-build.patch
deleted file mode 100644
index f7fd93b04a5..000
--- a/app-admin/mongo-tools/files/mongo-tools-3.0.0-build.patch
+++ /dev/null
@@ -1,10 +0,0 @@
 build.sh.orig  2015-02-17 16:55:47.0 +
-+++ build.sh   2015-02-18 09:22:30.671123198 +
-@@ -19,5 +19,5 @@
- for i in bsondump mongostat mongofiles mongoexport mongoimport mongorestore 
mongodump mongotop mongooplog; do
-   echo "Building ${i}..."
-   # Build the tool, using -ldflags to link in the current gitspec
--  go build -o "bin/$i" -ldflags "-X 
github.com/mongodb/mongo-tools/common/options.Gitspec `git rev-parse HEAD`" 
-tags "$tags" "$i/main/$i.go"
-+  go build -o "bin/$i" -tags "$tags" "$i/main/$i.go"
- done
-

diff --git a/app-admin/mongo-tools/files/mongo-tools-3.0.12-build.patch 
b/app-admin/mongo-tools/files/mongo-tools-3.0.12-build.patch
deleted file mode 100644
index f3d88194867..000
--- a/app-admin/mongo-tools/files/mongo-tools-3.0.12-build.patch
+++ /dev/null
@@ -1,9 +0,0 @@
 a/build.sh 2016-04-29 20:14:54.0 +0200
-+++ b/build.sh 2016-05-17 17:22:50.830113156 +0200
-@@ -19,5 +19,5 @@
- for i in bsondump mongostat mongofiles mongoexport mongoimport mongorestore 
mongodump mongotop mongooplog; do
-   echo "Building ${i}..."
-   # Build the tool, using -ldflags to link in the current gitspec
--go build -o "bin/$i" -ldflags "-X 
github.com/mongodb/mongo-tools/common/options.Gitspec=`git rev-parse HEAD` -X 
github.com/mongodb/mongo-tools/common/options.VersionStr=$(git describe)" -tags 
"$tags" "$i/main/$i.go"
-+go build -o "bin/$i" -tags "$tags" "$i/main/$i.go" || exit 1
- done

diff --git a/app-admin/mongo-tools/files/mongo-tools-3.2.5-build.patch 
b/app-admin/mongo-tools/files/mongo-tools-3.2.5-build.patch
deleted file mode 100644
index 31d94dd65ca..000
--- a/app-admin/mongo-tools/files/mongo-tools-3.2.5-build.patch
+++ /dev/null
@@ -1,9 +0,0 @@
 a/build.sh 2016-04-21 17:31:22.156178084 +0200
-+++ b/build.sh 2016-04-21 17:32:07.723421116 +0200
-@@ -19,5 +19,5 @@
- for i in bsondump mongostat mongofiles mongoexport mongoimport mongorestore 
mongodump mongotop mongooplog; do
-   echo "Building ${i}..."
-   # Build the tool, using -ldflags to link in the current gitspec
--go build -o "bin/$i" -ldflags "-X 
github.com/mongodb/mongo-tools/common/options.Gitspec `git rev-parse HEAD` -X 
github.com/mongodb/mongo-tools/common/options.VersionStr $(git describe)" -tags 
"$tags" "$i/main/$i.go"
-+  go build -o "bin/$i" -tags "$tags" "$i/main/$i.go"
- done



[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2017-11-21 Thread Alexys Jacob
commit: 5b48124d95a4b6ef85c525a9958ccb801db7fddc
Author: Tomáš Mózes  gmail  com>
AuthorDate: Mon Nov  6 21:20:57 2017 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Tue Nov 21 21:15:48 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b48124d

app-admin/mongo-tools: bump to 3.2.17

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

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index e9b196bcdb7..e9f2d2ba0ae 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -3,4 +3,5 @@ DIST mongo-tools-3.0.15.tar.gz 2413131 SHA256 
9e1a936b42eff999a83afc3885faee0c64
 DIST mongo-tools-3.2.12.tar.gz 2712079 SHA256 
cda5e869b9233d591e91cac0b4c709a2e71dcabd9ac6bcc8b33d906ce3b13afd SHA512 
66f7beb85a83ad6a217e65bba97ace6ad0bf84688f40e598e5fb1cf4bbe481b4069e1247d6829f8d06c8230d33c3e0c8bd8465a975576cad584065c361b6fb72
 WHIRLPOOL 
46123dc3c97fdf20ff94ac373e774932bd30aca677047fe3366653aaab269bf6d7e59cb420cf1e5716558fa959cb3649ee359cc27932bac276e6d24d2eea43b1
 DIST mongo-tools-3.2.13.tar.gz 2712076 SHA256 
a855eb0141445e34ff3b01807b016467519c390fce79f3566000b5aaecb65d72 SHA512 
caa0ba0f1452a16921c187cb407258326324b7222af91b1cd1b870ee2c9e6909d4fa94087a6da148a807f75b40f0bb97808a85804134d53cdab7970d8adf59f8
 WHIRLPOOL 
e2fb38cc8a35ab7c9461f680a2bf0647b5cb5d1225978b7321e6c4227b02ae3cae93e5f2a105f188f3329b0f0f8741e9a0c5439f37196ca875b049d3a91836d3
 DIST mongo-tools-3.2.16.tar.gz 2720003 SHA256 
1cd699f0e45b0b3afb0cfc7014258fb69e93c98e254ef9ef1605cd2de0b56d4c SHA512 
61c8cfd04a36e329c3573b73945d20a5623e1aa0a3430b309530e85e4289a27a46a850ec48ede7f04e66e67e23745ef26f5f4ddcf68ffeb647128e3d2526a724
 WHIRLPOOL 
2d2855f578f15e9afd133f6b24b23bd5d6a20516c96f665581223ca1c9a472ead6634749db46b55a1351a8b63923531046ab83a262ec54f439ccf008cb854f9e
+DIST mongo-tools-3.2.17.tar.gz 2719970 SHA256 
51eb688b294ada69e8aad09c81d338705196d5e1ece7e10409e9da032d3ce3de SHA512 
62c2540027e07b8276621e08d13657864d16021030e3c8f9bc0d351454319d448f889cf6a48b8467ea3270365376ed0c3beb42ceae3f28357910148c6b4054b2
 WHIRLPOOL 
7d8ee216aca92013b56012bab1f619408edfefe2b32c78ec21b378b07aa0c7366fe4f0150eb6116be0d8ba33ec2e60b627480d889187e927dc9e4eb37671719d
 DIST mongo-tools-3.4.10.tar.gz 4719399 SHA256 
adaff068b7f340866dcd2085222ee4f879b26cd98a3010652fea4d53ffb8e0c7 SHA512 
b861bb3fb1a32c3aa2efefcf6a13bb6d4783ac1a9b006c477fd04deb338cbf6b7adc3944bc6919513b92bd96b8500813ff4af49c9dec0719ebd2fdaa99bc39a5
 WHIRLPOOL 
e484cec2036b1d9d88c3fa3b8142a681e0ba1d96f9a8d772fb7c7035033dac6d4e40fe154042dc8016b3a31ed09dce0081c7bc9b7d2c9f420cc2286eb47ccd2e

diff --git a/app-admin/mongo-tools/mongo-tools-3.2.17.ebuild 
b/app-admin/mongo-tools/mongo-tools-3.2.17.ebuild
new file mode 100644
index 000..1da373e5820
--- /dev/null
+++ b/app-admin/mongo-tools/mongo-tools-3.2.17.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2017 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.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"
+
+RDEPEND="!

[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2017-11-05 Thread Alexys Jacob
commit: 7503ef760835c50bf8a51b063b934f5446cb653e
Author: Tomas Mozes  gmail  com>
AuthorDate: Thu Nov  2 10:22:53 2017 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Sun Nov  5 17:10:58 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7503ef76

app-admin/mongo-tools: bump to 3.4.10

Package-Manager: Portage-2.3.13, Repoman-2.3.4
Closes: https://github.com/gentoo/gentoo/pull/6108

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

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index 05c4c4bc303..03fe161e926 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -3,6 +3,7 @@ DIST mongo-tools-3.0.15.tar.gz 2413131 SHA256 
9e1a936b42eff999a83afc3885faee0c64
 DIST mongo-tools-3.2.12.tar.gz 2712079 SHA256 
cda5e869b9233d591e91cac0b4c709a2e71dcabd9ac6bcc8b33d906ce3b13afd SHA512 
66f7beb85a83ad6a217e65bba97ace6ad0bf84688f40e598e5fb1cf4bbe481b4069e1247d6829f8d06c8230d33c3e0c8bd8465a975576cad584065c361b6fb72
 WHIRLPOOL 
46123dc3c97fdf20ff94ac373e774932bd30aca677047fe3366653aaab269bf6d7e59cb420cf1e5716558fa959cb3649ee359cc27932bac276e6d24d2eea43b1
 DIST mongo-tools-3.2.13.tar.gz 2712076 SHA256 
a855eb0141445e34ff3b01807b016467519c390fce79f3566000b5aaecb65d72 SHA512 
caa0ba0f1452a16921c187cb407258326324b7222af91b1cd1b870ee2c9e6909d4fa94087a6da148a807f75b40f0bb97808a85804134d53cdab7970d8adf59f8
 WHIRLPOOL 
e2fb38cc8a35ab7c9461f680a2bf0647b5cb5d1225978b7321e6c4227b02ae3cae93e5f2a105f188f3329b0f0f8741e9a0c5439f37196ca875b049d3a91836d3
 DIST mongo-tools-3.2.16.tar.gz 2720003 SHA256 
1cd699f0e45b0b3afb0cfc7014258fb69e93c98e254ef9ef1605cd2de0b56d4c SHA512 
61c8cfd04a36e329c3573b73945d20a5623e1aa0a3430b309530e85e4289a27a46a850ec48ede7f04e66e67e23745ef26f5f4ddcf68ffeb647128e3d2526a724
 WHIRLPOOL 
2d2855f578f15e9afd133f6b24b23bd5d6a20516c96f665581223ca1c9a472ead6634749db46b55a1351a8b63923531046ab83a262ec54f439ccf008cb854f9e
+DIST mongo-tools-3.4.10.tar.gz 4719399 SHA256 
adaff068b7f340866dcd2085222ee4f879b26cd98a3010652fea4d53ffb8e0c7 SHA512 
b861bb3fb1a32c3aa2efefcf6a13bb6d4783ac1a9b006c477fd04deb338cbf6b7adc3944bc6919513b92bd96b8500813ff4af49c9dec0719ebd2fdaa99bc39a5
 WHIRLPOOL 
e484cec2036b1d9d88c3fa3b8142a681e0ba1d96f9a8d772fb7c7035033dac6d4e40fe154042dc8016b3a31ed09dce0081c7bc9b7d2c9f420cc2286eb47ccd2e
 DIST mongo-tools-3.4.3.tar.gz 4700637 SHA256 
70348800ca4cc04a319ca414291d5359e7dc86c888bc8264045fbc4de00adab2 SHA512 
ec754e8b19c517d9603e0eb89cc315e0af53886b74a905c0742faf5369af8b87b84cedf57aaa25f93068cd21370fa8a274a97dc3c58bbb4a50db6c2e4f0109d9
 WHIRLPOOL 
0b85fcdb52d5f08624bbcedb96d66c8a519e6415b9aefe68e7957627f3f1e220ca1174ea0a037f53ef2de0e594793ab42d6ec7db9cb42aa09b1892500dac5dd5
 DIST mongo-tools-3.4.4.tar.gz 4700326 SHA256 
d14f4ce153aec373459c802e5a159661ccfde4e5df39d8d750586bae54896cdd SHA512 
d49243e41bf3144264add3766a6f7016a07509a583a7368a639d85d2305500dd5afcfbc4449f3dcc8bec6e88bfb76ce021c813fe14169e3bd2476ed0db7c2d5d
 WHIRLPOOL 
33cb527ce7df19e92871219aef9b38f16ae292a4d1cbdd7bb3a1c6ccc752687469b9e4309cc4fd540a65e623740e1ebe20f4bdf8629b50aab25d4ea84c2988cc
 DIST mongo-tools-3.4.6.tar.gz 4715189 SHA256 
0b41ee2cb0a3d656f50ad950cc3853b41d5eb77a67ea0eb288f5ac80711ffc1d SHA512 
ad1d3acee1969934e8f679d6407b3b55aba85fb99ea806463b7418494fac491ff68033f3e59b55e17276a4d28932c6b74398fffc89ab7c229cf69e5a4714c4a2
 WHIRLPOOL 
993be475af7b71a189f2b9f7c98e3f49d7ae8d05f99928b242efbd3dd504415394c7c812c4debed192ca0a856f16f9839dc771be8efb1db48b3359e48ea48280

diff --git a/app-admin/mongo-tools/mongo-tools-3.4.10.ebuild 
b/app-admin/mongo-tools/mongo-tools-3.4.10.ebuild
new file mode 100644
index 000..ba96c8cbca3
--- /dev/null
+++ b/app-admin/mongo-tools/mongo-tools-3.4.10.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+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="https://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"
+
+RDEPEND="!

[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2017-10-13 Thread Alexys Jacob
commit: 02300643eca8f1e5c46b28f79006746ac9644ffe
Author: Tomas Mozes  gmail  com>
AuthorDate: Fri Sep 22 07:24:26 2017 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Fri Oct 13 08:33:04 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02300643

app-admin/mongo-tools: bump to 3.4.9

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

 app-admin/mongo-tools/Manifest |  1 +
 app-admin/mongo-tools/mongo-tools-3.4.9.ebuild | 69 ++
 2 files changed, 70 insertions(+)

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index 2fe3ee553d6..05c4c4bc303 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -7,3 +7,4 @@ DIST mongo-tools-3.4.3.tar.gz 4700637 SHA256 
70348800ca4cc04a319ca414291d5359e7d
 DIST mongo-tools-3.4.4.tar.gz 4700326 SHA256 
d14f4ce153aec373459c802e5a159661ccfde4e5df39d8d750586bae54896cdd SHA512 
d49243e41bf3144264add3766a6f7016a07509a583a7368a639d85d2305500dd5afcfbc4449f3dcc8bec6e88bfb76ce021c813fe14169e3bd2476ed0db7c2d5d
 WHIRLPOOL 
33cb527ce7df19e92871219aef9b38f16ae292a4d1cbdd7bb3a1c6ccc752687469b9e4309cc4fd540a65e623740e1ebe20f4bdf8629b50aab25d4ea84c2988cc
 DIST mongo-tools-3.4.6.tar.gz 4715189 SHA256 
0b41ee2cb0a3d656f50ad950cc3853b41d5eb77a67ea0eb288f5ac80711ffc1d SHA512 
ad1d3acee1969934e8f679d6407b3b55aba85fb99ea806463b7418494fac491ff68033f3e59b55e17276a4d28932c6b74398fffc89ab7c229cf69e5a4714c4a2
 WHIRLPOOL 
993be475af7b71a189f2b9f7c98e3f49d7ae8d05f99928b242efbd3dd504415394c7c812c4debed192ca0a856f16f9839dc771be8efb1db48b3359e48ea48280
 DIST mongo-tools-3.4.7.tar.gz 4719398 SHA256 
8ff8c790108d3b858bb188f4cd45aedf3a1a9eddf3bd3f69627ecb35a0de2fb4 SHA512 
974062e934ff2004c2ec1b55398a04dce542542c122577326e6120154e4887dcc772fa90b0ea5e7bc57124526bbb76b8935efa75080fed78da6c252e3e599f3f
 WHIRLPOOL 
67a8e1ece75b1371df8da60780eb71db1f039912baa2f66d7cf0c79e863f5ce74a27131f1978578cebf47c3de66a5c9ef8227ce19d3a23effa40da05136ad3e4
+DIST mongo-tools-3.4.9.tar.gz 4719526 SHA256 
4b6f17afa628482c107567a82715b780d1e885125b4862ee07e0ab5080b8e0aa SHA512 
546060a65124e722a1c6eb152fd4e086bc523656312888e16238b4a1df5313ab63ece41e638f012676af4be94ed156855b053afa62d778f72cd31f0ccd70f19d
 WHIRLPOOL 
5707db723a3e502749f052d3825d5aba6bdc0ecf0d93f7f156285b2dee1196741baab4c4cabaad01eb156ad15e05b96d1dde23c24e543d17d99a7533ca80dee2

diff --git a/app-admin/mongo-tools/mongo-tools-3.4.9.ebuild 
b/app-admin/mongo-tools/mongo-tools-3.4.9.ebuild
new file mode 100644
index 000..648cbb9ac1e
--- /dev/null
+++ b/app-admin/mongo-tools/mongo-tools-3.4.9.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+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="https://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 libressl"
+
+# Maintainer note:
+# openssl DEPEND constraint, see:
+# https://github.com/mongodb/mongo-tools/issues/11
+
+RDEPEND="!

[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/, dev-db/mongodb/

2017-10-13 Thread Alexys Jacob
commit: 68ae0a5e3a71bf3796cd642cbb5e9ee8529ca817
Author: Tomas Mozes  gmail  com>
AuthorDate: Thu Sep 28 09:18:07 2017 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Fri Oct 13 08:33:15 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68ae0a5e

app-admin/mongo-tools: use local variable
dev-db/mongodb: drop obsolete yaml-cpp dependency

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

 app-admin/mongo-tools/mongo-tools-3.4.9.ebuild | 2 +-
 dev-db/mongodb/mongodb-3.2.12.ebuild   | 2 +-
 dev-db/mongodb/mongodb-3.2.13.ebuild   | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/app-admin/mongo-tools/mongo-tools-3.4.9.ebuild 
b/app-admin/mongo-tools/mongo-tools-3.4.9.ebuild
index c93fd9f4bac..ba96c8cbca3 100644
--- a/app-admin/mongo-tools/mongo-tools-3.4.9.ebuild
+++ b/app-admin/mongo-tools/mongo-tools-3.4.9.ebuild
@@ -44,7 +44,7 @@ src_prepare() {
 }
 
 src_compile() {
-   declare -a myconf
+   local myconf=()
 
if use sasl; then
  myconf+=(sasl)

diff --git a/dev-db/mongodb/mongodb-3.2.12.ebuild 
b/dev-db/mongodb/mongodb-3.2.12.ebuild
index 52572e12131..e6fac48d7a7 100644
--- a/dev-db/mongodb/mongodb-3.2.12.ebuild
+++ b/dev-db/mongodb/mongodb-3.2.12.ebuild
@@ -21,7 +21,7 @@ KEYWORDS="~amd64 ~x86"
 IUSE="debug kerberos libressl mms-agent ssl test +tools"
 
 RDEPEND=">=app-arch/snappy-1.1.2
-   || ( =dev-cpp/yaml-cpp-0.5.1 >dev-cpp/yaml-cpp-0.5.2 )
+   >dev-cpp/yaml-cpp-0.5.2
>=dev-libs/boost-1.57[threads(+)]
>=dev-libs/libpcre-8.39[cxx]
dev-libs/snowball-stemmer

diff --git a/dev-db/mongodb/mongodb-3.2.13.ebuild 
b/dev-db/mongodb/mongodb-3.2.13.ebuild
index 52572e12131..e6fac48d7a7 100644
--- a/dev-db/mongodb/mongodb-3.2.13.ebuild
+++ b/dev-db/mongodb/mongodb-3.2.13.ebuild
@@ -21,7 +21,7 @@ KEYWORDS="~amd64 ~x86"
 IUSE="debug kerberos libressl mms-agent ssl test +tools"
 
 RDEPEND=">=app-arch/snappy-1.1.2
-   || ( =dev-cpp/yaml-cpp-0.5.1 >dev-cpp/yaml-cpp-0.5.2 )
+   >dev-cpp/yaml-cpp-0.5.2
>=dev-libs/boost-1.57[threads(+)]
>=dev-libs/libpcre-8.39[cxx]
dev-libs/snowball-stemmer



[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2017-10-13 Thread Alexys Jacob
commit: e73510098582c084cfe2c422e3b874f88161c655
Author: Tomas Mozes  gmail  com>
AuthorDate: Tue Sep 26 07:56:07 2017 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Fri Oct 13 08:33:12 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7351009

app-admin/mongo-tools: remove libressl support (bug #614384)

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

 app-admin/mongo-tools/mongo-tools-3.4.3.ebuild |  7 ++-
 app-admin/mongo-tools/mongo-tools-3.4.4.ebuild |  7 ++-
 app-admin/mongo-tools/mongo-tools-3.4.6.ebuild |  7 ++-
 app-admin/mongo-tools/mongo-tools-3.4.7.ebuild |  7 ++-
 app-admin/mongo-tools/mongo-tools-3.4.9.ebuild | 11 ++-
 5 files changed, 10 insertions(+), 29 deletions(-)

diff --git a/app-admin/mongo-tools/mongo-tools-3.4.3.ebuild 
b/app-admin/mongo-tools/mongo-tools-3.4.3.ebuild
index c631cc6fb83..992baa372c2 100644
--- a/app-admin/mongo-tools/mongo-tools-3.4.3.ebuild
+++ b/app-admin/mongo-tools/mongo-tools-3.4.3.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://github.com/mongodb/mongo-tools/archive/r${MY_PV}.tar.gz -> mong
 LICENSE="Apache-2.0"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="sasl ssl libressl"
+IUSE="sasl ssl"
 
 # Maintainer note:
 # openssl DEPEND constraint, see:
@@ -26,10 +26,7 @@ DEPEND="${RDEPEND}
dev-lang/go:=
net-libs/libpcap
sasl? ( dev-libs/cyrus-sasl )
-   ssl? (
-   !libressl? ( dev-libs/openssl:0= )
-   libressl? ( dev-libs/libressl:0= )
-   )"
+   ssl? ( dev-libs/openssl:0= )"
 
 S=${WORKDIR}/${MY_P}
 

diff --git a/app-admin/mongo-tools/mongo-tools-3.4.4.ebuild 
b/app-admin/mongo-tools/mongo-tools-3.4.4.ebuild
index c631cc6fb83..992baa372c2 100644
--- a/app-admin/mongo-tools/mongo-tools-3.4.4.ebuild
+++ b/app-admin/mongo-tools/mongo-tools-3.4.4.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://github.com/mongodb/mongo-tools/archive/r${MY_PV}.tar.gz -> mong
 LICENSE="Apache-2.0"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="sasl ssl libressl"
+IUSE="sasl ssl"
 
 # Maintainer note:
 # openssl DEPEND constraint, see:
@@ -26,10 +26,7 @@ DEPEND="${RDEPEND}
dev-lang/go:=
net-libs/libpcap
sasl? ( dev-libs/cyrus-sasl )
-   ssl? (
-   !libressl? ( dev-libs/openssl:0= )
-   libressl? ( dev-libs/libressl:0= )
-   )"
+   ssl? ( dev-libs/openssl:0= )"
 
 S=${WORKDIR}/${MY_P}
 

diff --git a/app-admin/mongo-tools/mongo-tools-3.4.6.ebuild 
b/app-admin/mongo-tools/mongo-tools-3.4.6.ebuild
index c631cc6fb83..992baa372c2 100644
--- a/app-admin/mongo-tools/mongo-tools-3.4.6.ebuild
+++ b/app-admin/mongo-tools/mongo-tools-3.4.6.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://github.com/mongodb/mongo-tools/archive/r${MY_PV}.tar.gz -> mong
 LICENSE="Apache-2.0"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="sasl ssl libressl"
+IUSE="sasl ssl"
 
 # Maintainer note:
 # openssl DEPEND constraint, see:
@@ -26,10 +26,7 @@ DEPEND="${RDEPEND}
dev-lang/go:=
net-libs/libpcap
sasl? ( dev-libs/cyrus-sasl )
-   ssl? (
-   !libressl? ( dev-libs/openssl:0= )
-   libressl? ( dev-libs/libressl:0= )
-   )"
+   ssl? ( dev-libs/openssl:0= )"
 
 S=${WORKDIR}/${MY_P}
 

diff --git a/app-admin/mongo-tools/mongo-tools-3.4.7.ebuild 
b/app-admin/mongo-tools/mongo-tools-3.4.7.ebuild
index eb6528eb5fb..01dd107aa1f 100644
--- a/app-admin/mongo-tools/mongo-tools-3.4.7.ebuild
+++ b/app-admin/mongo-tools/mongo-tools-3.4.7.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://github.com/mongodb/mongo-tools/archive/r${MY_PV}.tar.gz -> mong
 LICENSE="Apache-2.0"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="sasl ssl libressl"
+IUSE="sasl ssl"
 
 # Maintainer note:
 # openssl DEPEND constraint, see:
@@ -26,10 +26,7 @@ DEPEND="${RDEPEND}
dev-lang/go:=
net-libs/libpcap
sasl? ( dev-libs/cyrus-sasl )
-   ssl? (
-   !libressl? ( dev-libs/openssl:0= )
-   libressl? ( dev-libs/libressl:0= )
-   )"
+   ssl? ( dev-libs/openssl:0= )"
 
 S=${WORKDIR}/${MY_P}
 

diff --git a/app-admin/mongo-tools/mongo-tools-3.4.9.ebuild 
b/app-admin/mongo-tools/mongo-tools-3.4.9.ebuild
index 648cbb9ac1e..c93fd9f4bac 100644
--- a/app-admin/mongo-tools/mongo-tools-3.4.9.ebuild
+++ b/app-admin/mongo-tools/mongo-tools-3.4.9.ebuild
@@ -15,21 +15,14 @@ 
SRC_URI="https://github.com/mongodb/mongo-tools/archive/r${MY_PV}.tar.gz -> mong
 LICENSE="Apache-2.0"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="sasl ssl libressl"
-
-# Maintainer note:
-# openssl DEPEND constraint, see:
-# https://github.com/mongodb/mongo-tools/issues/11
+IUSE="sasl ssl"
 
 RDEPEND="!

[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2017-09-22 Thread Patrice Clement
commit: dd2f75bfd1511aa7c5b7dfa4639a32c77bf085eb
Author: Tomas Mozes  gmail  com>
AuthorDate: Fri Sep 22 07:56:35 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Fri Sep 22 08:13:18 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd2f75bf

app-admin/mongo-tools: regenerate Manifest.

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

 app-admin/mongo-tools/Manifest | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index 30200dd8f63..2fe3ee553d6 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -6,4 +6,4 @@ DIST mongo-tools-3.2.16.tar.gz 2720003 SHA256 
1cd699f0e45b0b3afb0cfc7014258fb69e
 DIST mongo-tools-3.4.3.tar.gz 4700637 SHA256 
70348800ca4cc04a319ca414291d5359e7dc86c888bc8264045fbc4de00adab2 SHA512 
ec754e8b19c517d9603e0eb89cc315e0af53886b74a905c0742faf5369af8b87b84cedf57aaa25f93068cd21370fa8a274a97dc3c58bbb4a50db6c2e4f0109d9
 WHIRLPOOL 
0b85fcdb52d5f08624bbcedb96d66c8a519e6415b9aefe68e7957627f3f1e220ca1174ea0a037f53ef2de0e594793ab42d6ec7db9cb42aa09b1892500dac5dd5
 DIST mongo-tools-3.4.4.tar.gz 4700326 SHA256 
d14f4ce153aec373459c802e5a159661ccfde4e5df39d8d750586bae54896cdd SHA512 
d49243e41bf3144264add3766a6f7016a07509a583a7368a639d85d2305500dd5afcfbc4449f3dcc8bec6e88bfb76ce021c813fe14169e3bd2476ed0db7c2d5d
 WHIRLPOOL 
33cb527ce7df19e92871219aef9b38f16ae292a4d1cbdd7bb3a1c6ccc752687469b9e4309cc4fd540a65e623740e1ebe20f4bdf8629b50aab25d4ea84c2988cc
 DIST mongo-tools-3.4.6.tar.gz 4715189 SHA256 
0b41ee2cb0a3d656f50ad950cc3853b41d5eb77a67ea0eb288f5ac80711ffc1d SHA512 
ad1d3acee1969934e8f679d6407b3b55aba85fb99ea806463b7418494fac491ff68033f3e59b55e17276a4d28932c6b74398fffc89ab7c229cf69e5a4714c4a2
 WHIRLPOOL 
993be475af7b71a189f2b9f7c98e3f49d7ae8d05f99928b242efbd3dd504415394c7c812c4debed192ca0a856f16f9839dc771be8efb1db48b3359e48ea48280
-DIST mongo-tools-3.4.7.tar.gz 4719382 SHA256 
f7a7b014ad2947c0fa4d6973a669f53e8c1af29df7e8bc6daf879b1456c90ce1 SHA512 
4ccc77c858f88f57f6b29bfc56361efc3362782fe82e8d73474202ca02c0cad49134f622dcc36cba669b37ac19e869cc76e07254a9eb26e9c175f8bad104a07d
 WHIRLPOOL 
0456ccba63331496bbb8b90ce3e2ef07de97376225ffc547e598a2699d41ad5ddd23de26633a013f38d36945f89cb69fe79b930f77db00956a8ccc2d392f50dc
+DIST mongo-tools-3.4.7.tar.gz 4719398 SHA256 
8ff8c790108d3b858bb188f4cd45aedf3a1a9eddf3bd3f69627ecb35a0de2fb4 SHA512 
974062e934ff2004c2ec1b55398a04dce542542c122577326e6120154e4887dcc772fa90b0ea5e7bc57124526bbb76b8935efa75080fed78da6c252e3e599f3f
 WHIRLPOOL 
67a8e1ece75b1371df8da60780eb71db1f039912baa2f66d7cf0c79e863f5ce74a27131f1978578cebf47c3de66a5c9ef8227ce19d3a23effa40da05136ad3e4



[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2017-09-21 Thread Patrice Clement
commit: 99753cfc16c5c572a27a1725002c0a4ef0660e49
Author: Tomas Mozes  gmail  com>
AuthorDate: Tue Sep  5 16:02:12 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Thu Sep 21 19:49:58 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99753cfc

app-admin/mongo-tools: version bump to 3.4.7.

Package-Manager: Portage-2.3.8, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/5527

 app-admin/mongo-tools/Manifest |  1 +
 app-admin/mongo-tools/mongo-tools-3.4.7.ebuild | 66 ++
 2 files changed, 67 insertions(+)

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index c998423a295..30200dd8f63 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -6,3 +6,4 @@ DIST mongo-tools-3.2.16.tar.gz 2720003 SHA256 
1cd699f0e45b0b3afb0cfc7014258fb69e
 DIST mongo-tools-3.4.3.tar.gz 4700637 SHA256 
70348800ca4cc04a319ca414291d5359e7dc86c888bc8264045fbc4de00adab2 SHA512 
ec754e8b19c517d9603e0eb89cc315e0af53886b74a905c0742faf5369af8b87b84cedf57aaa25f93068cd21370fa8a274a97dc3c58bbb4a50db6c2e4f0109d9
 WHIRLPOOL 
0b85fcdb52d5f08624bbcedb96d66c8a519e6415b9aefe68e7957627f3f1e220ca1174ea0a037f53ef2de0e594793ab42d6ec7db9cb42aa09b1892500dac5dd5
 DIST mongo-tools-3.4.4.tar.gz 4700326 SHA256 
d14f4ce153aec373459c802e5a159661ccfde4e5df39d8d750586bae54896cdd SHA512 
d49243e41bf3144264add3766a6f7016a07509a583a7368a639d85d2305500dd5afcfbc4449f3dcc8bec6e88bfb76ce021c813fe14169e3bd2476ed0db7c2d5d
 WHIRLPOOL 
33cb527ce7df19e92871219aef9b38f16ae292a4d1cbdd7bb3a1c6ccc752687469b9e4309cc4fd540a65e623740e1ebe20f4bdf8629b50aab25d4ea84c2988cc
 DIST mongo-tools-3.4.6.tar.gz 4715189 SHA256 
0b41ee2cb0a3d656f50ad950cc3853b41d5eb77a67ea0eb288f5ac80711ffc1d SHA512 
ad1d3acee1969934e8f679d6407b3b55aba85fb99ea806463b7418494fac491ff68033f3e59b55e17276a4d28932c6b74398fffc89ab7c229cf69e5a4714c4a2
 WHIRLPOOL 
993be475af7b71a189f2b9f7c98e3f49d7ae8d05f99928b242efbd3dd504415394c7c812c4debed192ca0a856f16f9839dc771be8efb1db48b3359e48ea48280
+DIST mongo-tools-3.4.7.tar.gz 4719382 SHA256 
f7a7b014ad2947c0fa4d6973a669f53e8c1af29df7e8bc6daf879b1456c90ce1 SHA512 
4ccc77c858f88f57f6b29bfc56361efc3362782fe82e8d73474202ca02c0cad49134f622dcc36cba669b37ac19e869cc76e07254a9eb26e9c175f8bad104a07d
 WHIRLPOOL 
0456ccba63331496bbb8b90ce3e2ef07de97376225ffc547e598a2699d41ad5ddd23de26633a013f38d36945f89cb69fe79b930f77db00956a8ccc2d392f50dc

diff --git a/app-admin/mongo-tools/mongo-tools-3.4.7.ebuild 
b/app-admin/mongo-tools/mongo-tools-3.4.7.ebuild
new file mode 100644
index 000..eb6528eb5fb
--- /dev/null
+++ b/app-admin/mongo-tools/mongo-tools-3.4.7.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+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="https://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 libressl"
+
+# Maintainer note:
+# openssl DEPEND constraint, see:
+# https://github.com/mongodb/mongo-tools/issues/11
+
+RDEPEND="!

[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2017-07-31 Thread Alexys Jacob
commit: ea072d5d06412adc1f54717c57083ddc79714c2a
Author: Ultrabug  gentoo  org>
AuthorDate: Mon Jul 31 14:37:10 2017 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Mon Jul 31 14:38:23 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea072d5d

app-admin/mongo-tools: drop old 3.2

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 app-admin/mongo-tools/Manifest  |  1 -
 app-admin/mongo-tools/mongo-tools-3.2.15.ebuild | 58 -
 2 files changed, 59 deletions(-)

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index 5eb95ef3094..c998423a295 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -2,7 +2,6 @@ DIST mongo-tools-3.0.14.tar.gz 2413148 SHA256 
5a3f706827a9567fc98e2b64a33a2071c6
 DIST mongo-tools-3.0.15.tar.gz 2413131 SHA256 
9e1a936b42eff999a83afc3885faee0c64592ff43d3620d1b9d69d44b7d84d38 SHA512 
b5baeea89f5287e055c43c58cfc31e4618df2b7b7fffd7d77248131daf503522b1d041253df8d3ad2ffa22efff344334dc05e3a3462cf7c646d4e83040bd95dc
 WHIRLPOOL 
46c992dcc90fabe8f698e89a93232cc2e450a7dd560fb64a5f954b7937a98e298af8d4fa4bf626ccbcf96bef80743b69d7e6fcb9b012dd8da68a1c382276
 DIST mongo-tools-3.2.12.tar.gz 2712079 SHA256 
cda5e869b9233d591e91cac0b4c709a2e71dcabd9ac6bcc8b33d906ce3b13afd SHA512 
66f7beb85a83ad6a217e65bba97ace6ad0bf84688f40e598e5fb1cf4bbe481b4069e1247d6829f8d06c8230d33c3e0c8bd8465a975576cad584065c361b6fb72
 WHIRLPOOL 
46123dc3c97fdf20ff94ac373e774932bd30aca677047fe3366653aaab269bf6d7e59cb420cf1e5716558fa959cb3649ee359cc27932bac276e6d24d2eea43b1
 DIST mongo-tools-3.2.13.tar.gz 2712076 SHA256 
a855eb0141445e34ff3b01807b016467519c390fce79f3566000b5aaecb65d72 SHA512 
caa0ba0f1452a16921c187cb407258326324b7222af91b1cd1b870ee2c9e6909d4fa94087a6da148a807f75b40f0bb97808a85804134d53cdab7970d8adf59f8
 WHIRLPOOL 
e2fb38cc8a35ab7c9461f680a2bf0647b5cb5d1225978b7321e6c4227b02ae3cae93e5f2a105f188f3329b0f0f8741e9a0c5439f37196ca875b049d3a91836d3
-DIST mongo-tools-3.2.15.tar.gz 2712102 SHA256 
d2f69303037810b9f1785aece94e62cff71e20a07edacf4d477a40b4b9b7a390 SHA512 
76a77564825eae547f85ead374050f3b9a29c3cd775bc86a452ba42ee843dbc800805340232094167e288a59d9592db3fe8aeba83ccbaae41196674781476220
 WHIRLPOOL 
66a2bac4edf113017826b55958c970e4abb946aeb3449f330eb157e3bb76fb8f5a2892e3f6323e0a27dc6f439015d7c02b303dc6a08c2d99680f65f8b4888e2a
 DIST mongo-tools-3.2.16.tar.gz 2720003 SHA256 
1cd699f0e45b0b3afb0cfc7014258fb69e93c98e254ef9ef1605cd2de0b56d4c SHA512 
61c8cfd04a36e329c3573b73945d20a5623e1aa0a3430b309530e85e4289a27a46a850ec48ede7f04e66e67e23745ef26f5f4ddcf68ffeb647128e3d2526a724
 WHIRLPOOL 
2d2855f578f15e9afd133f6b24b23bd5d6a20516c96f665581223ca1c9a472ead6634749db46b55a1351a8b63923531046ab83a262ec54f439ccf008cb854f9e
 DIST mongo-tools-3.4.3.tar.gz 4700637 SHA256 
70348800ca4cc04a319ca414291d5359e7dc86c888bc8264045fbc4de00adab2 SHA512 
ec754e8b19c517d9603e0eb89cc315e0af53886b74a905c0742faf5369af8b87b84cedf57aaa25f93068cd21370fa8a274a97dc3c58bbb4a50db6c2e4f0109d9
 WHIRLPOOL 
0b85fcdb52d5f08624bbcedb96d66c8a519e6415b9aefe68e7957627f3f1e220ca1174ea0a037f53ef2de0e594793ab42d6ec7db9cb42aa09b1892500dac5dd5
 DIST mongo-tools-3.4.4.tar.gz 4700326 SHA256 
d14f4ce153aec373459c802e5a159661ccfde4e5df39d8d750586bae54896cdd SHA512 
d49243e41bf3144264add3766a6f7016a07509a583a7368a639d85d2305500dd5afcfbc4449f3dcc8bec6e88bfb76ce021c813fe14169e3bd2476ed0db7c2d5d
 WHIRLPOOL 
33cb527ce7df19e92871219aef9b38f16ae292a4d1cbdd7bb3a1c6ccc752687469b9e4309cc4fd540a65e623740e1ebe20f4bdf8629b50aab25d4ea84c2988cc

diff --git a/app-admin/mongo-tools/mongo-tools-3.2.15.ebuild 
b/app-admin/mongo-tools/mongo-tools-3.2.15.ebuild
deleted file mode 100644
index 1978809739a..000
--- a/app-admin/mongo-tools/mongo-tools-3.2.15.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-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="!

[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2017-07-31 Thread Alexys Jacob
commit: 672722933402bcb7fd290d97c0278be0c468169b
Author: Ultrabug  gentoo  org>
AuthorDate: Mon Jul 31 14:35:38 2017 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Mon Jul 31 14:38:16 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67272293

dev-db/mongodb: 3.2 bump

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 app-admin/mongo-tools/Manifest  |  1 +
 app-admin/mongo-tools/mongo-tools-3.2.16.ebuild | 58 +
 2 files changed, 59 insertions(+)

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index 8106c5289d5..5eb95ef3094 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -3,6 +3,7 @@ DIST mongo-tools-3.0.15.tar.gz 2413131 SHA256 
9e1a936b42eff999a83afc3885faee0c64
 DIST mongo-tools-3.2.12.tar.gz 2712079 SHA256 
cda5e869b9233d591e91cac0b4c709a2e71dcabd9ac6bcc8b33d906ce3b13afd SHA512 
66f7beb85a83ad6a217e65bba97ace6ad0bf84688f40e598e5fb1cf4bbe481b4069e1247d6829f8d06c8230d33c3e0c8bd8465a975576cad584065c361b6fb72
 WHIRLPOOL 
46123dc3c97fdf20ff94ac373e774932bd30aca677047fe3366653aaab269bf6d7e59cb420cf1e5716558fa959cb3649ee359cc27932bac276e6d24d2eea43b1
 DIST mongo-tools-3.2.13.tar.gz 2712076 SHA256 
a855eb0141445e34ff3b01807b016467519c390fce79f3566000b5aaecb65d72 SHA512 
caa0ba0f1452a16921c187cb407258326324b7222af91b1cd1b870ee2c9e6909d4fa94087a6da148a807f75b40f0bb97808a85804134d53cdab7970d8adf59f8
 WHIRLPOOL 
e2fb38cc8a35ab7c9461f680a2bf0647b5cb5d1225978b7321e6c4227b02ae3cae93e5f2a105f188f3329b0f0f8741e9a0c5439f37196ca875b049d3a91836d3
 DIST mongo-tools-3.2.15.tar.gz 2712102 SHA256 
d2f69303037810b9f1785aece94e62cff71e20a07edacf4d477a40b4b9b7a390 SHA512 
76a77564825eae547f85ead374050f3b9a29c3cd775bc86a452ba42ee843dbc800805340232094167e288a59d9592db3fe8aeba83ccbaae41196674781476220
 WHIRLPOOL 
66a2bac4edf113017826b55958c970e4abb946aeb3449f330eb157e3bb76fb8f5a2892e3f6323e0a27dc6f439015d7c02b303dc6a08c2d99680f65f8b4888e2a
+DIST mongo-tools-3.2.16.tar.gz 2720003 SHA256 
1cd699f0e45b0b3afb0cfc7014258fb69e93c98e254ef9ef1605cd2de0b56d4c SHA512 
61c8cfd04a36e329c3573b73945d20a5623e1aa0a3430b309530e85e4289a27a46a850ec48ede7f04e66e67e23745ef26f5f4ddcf68ffeb647128e3d2526a724
 WHIRLPOOL 
2d2855f578f15e9afd133f6b24b23bd5d6a20516c96f665581223ca1c9a472ead6634749db46b55a1351a8b63923531046ab83a262ec54f439ccf008cb854f9e
 DIST mongo-tools-3.4.3.tar.gz 4700637 SHA256 
70348800ca4cc04a319ca414291d5359e7dc86c888bc8264045fbc4de00adab2 SHA512 
ec754e8b19c517d9603e0eb89cc315e0af53886b74a905c0742faf5369af8b87b84cedf57aaa25f93068cd21370fa8a274a97dc3c58bbb4a50db6c2e4f0109d9
 WHIRLPOOL 
0b85fcdb52d5f08624bbcedb96d66c8a519e6415b9aefe68e7957627f3f1e220ca1174ea0a037f53ef2de0e594793ab42d6ec7db9cb42aa09b1892500dac5dd5
 DIST mongo-tools-3.4.4.tar.gz 4700326 SHA256 
d14f4ce153aec373459c802e5a159661ccfde4e5df39d8d750586bae54896cdd SHA512 
d49243e41bf3144264add3766a6f7016a07509a583a7368a639d85d2305500dd5afcfbc4449f3dcc8bec6e88bfb76ce021c813fe14169e3bd2476ed0db7c2d5d
 WHIRLPOOL 
33cb527ce7df19e92871219aef9b38f16ae292a4d1cbdd7bb3a1c6ccc752687469b9e4309cc4fd540a65e623740e1ebe20f4bdf8629b50aab25d4ea84c2988cc
 DIST mongo-tools-3.4.6.tar.gz 4715189 SHA256 
0b41ee2cb0a3d656f50ad950cc3853b41d5eb77a67ea0eb288f5ac80711ffc1d SHA512 
ad1d3acee1969934e8f679d6407b3b55aba85fb99ea806463b7418494fac491ff68033f3e59b55e17276a4d28932c6b74398fffc89ab7c229cf69e5a4714c4a2
 WHIRLPOOL 
993be475af7b71a189f2b9f7c98e3f49d7ae8d05f99928b242efbd3dd504415394c7c812c4debed192ca0a856f16f9839dc771be8efb1db48b3359e48ea48280

diff --git a/app-admin/mongo-tools/mongo-tools-3.2.16.ebuild 
b/app-admin/mongo-tools/mongo-tools-3.2.16.ebuild
new file mode 100644
index 000..1978809739a
--- /dev/null
+++ b/app-admin/mongo-tools/mongo-tools-3.2.16.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+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="!

[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2017-07-31 Thread Alexys Jacob
commit: 4286e6a34d2796f5d7b3b8491cbecf1956441026
Author: Tomas Mozes  gmail  com>
AuthorDate: Fri Jul  7 12:28:43 2017 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Mon Jul 31 12:14:05 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4286e6a3

app-admin/mongo-tools: bump to 3.4.6

Package-Manager: Portage-2.3.6, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/5062

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

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index e399c6b39eb..8106c5289d5 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -5,3 +5,4 @@ DIST mongo-tools-3.2.13.tar.gz 2712076 SHA256 
a855eb0141445e34ff3b01807b01646751
 DIST mongo-tools-3.2.15.tar.gz 2712102 SHA256 
d2f69303037810b9f1785aece94e62cff71e20a07edacf4d477a40b4b9b7a390 SHA512 
76a77564825eae547f85ead374050f3b9a29c3cd775bc86a452ba42ee843dbc800805340232094167e288a59d9592db3fe8aeba83ccbaae41196674781476220
 WHIRLPOOL 
66a2bac4edf113017826b55958c970e4abb946aeb3449f330eb157e3bb76fb8f5a2892e3f6323e0a27dc6f439015d7c02b303dc6a08c2d99680f65f8b4888e2a
 DIST mongo-tools-3.4.3.tar.gz 4700637 SHA256 
70348800ca4cc04a319ca414291d5359e7dc86c888bc8264045fbc4de00adab2 SHA512 
ec754e8b19c517d9603e0eb89cc315e0af53886b74a905c0742faf5369af8b87b84cedf57aaa25f93068cd21370fa8a274a97dc3c58bbb4a50db6c2e4f0109d9
 WHIRLPOOL 
0b85fcdb52d5f08624bbcedb96d66c8a519e6415b9aefe68e7957627f3f1e220ca1174ea0a037f53ef2de0e594793ab42d6ec7db9cb42aa09b1892500dac5dd5
 DIST mongo-tools-3.4.4.tar.gz 4700326 SHA256 
d14f4ce153aec373459c802e5a159661ccfde4e5df39d8d750586bae54896cdd SHA512 
d49243e41bf3144264add3766a6f7016a07509a583a7368a639d85d2305500dd5afcfbc4449f3dcc8bec6e88bfb76ce021c813fe14169e3bd2476ed0db7c2d5d
 WHIRLPOOL 
33cb527ce7df19e92871219aef9b38f16ae292a4d1cbdd7bb3a1c6ccc752687469b9e4309cc4fd540a65e623740e1ebe20f4bdf8629b50aab25d4ea84c2988cc
+DIST mongo-tools-3.4.6.tar.gz 4715189 SHA256 
0b41ee2cb0a3d656f50ad950cc3853b41d5eb77a67ea0eb288f5ac80711ffc1d SHA512 
ad1d3acee1969934e8f679d6407b3b55aba85fb99ea806463b7418494fac491ff68033f3e59b55e17276a4d28932c6b74398fffc89ab7c229cf69e5a4714c4a2
 WHIRLPOOL 
993be475af7b71a189f2b9f7c98e3f49d7ae8d05f99928b242efbd3dd504415394c7c812c4debed192ca0a856f16f9839dc771be8efb1db48b3359e48ea48280

diff --git a/app-admin/mongo-tools/mongo-tools-3.4.6.ebuild 
b/app-admin/mongo-tools/mongo-tools-3.4.6.ebuild
new file mode 100644
index 000..c631cc6fb83
--- /dev/null
+++ b/app-admin/mongo-tools/mongo-tools-3.4.6.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+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 libressl"
+
+# Maintainer note:
+# openssl DEPEND constraint, see:
+# https://github.com/mongodb/mongo-tools/issues/11
+
+RDEPEND="!

[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2017-07-31 Thread Alexys Jacob
commit: a1158f1d678e0c1852ac38039c31416095fe2d7d
Author: Tomas Mozes  gmail  com>
AuthorDate: Fri Jul  7 09:14:29 2017 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Mon Jul 31 12:13:58 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1158f1d

app-admin/mongo-tools: bump to 3.0.15 and 3.2.15

Package-Manager: Portage-2.3.6, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/5062

 app-admin/mongo-tools/Manifest  |  2 +
 app-admin/mongo-tools/mongo-tools-3.0.15.ebuild | 56 
 app-admin/mongo-tools/mongo-tools-3.2.15.ebuild | 58 +
 3 files changed, 116 insertions(+)

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index db524caed6b..e399c6b39eb 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -1,5 +1,7 @@
 DIST mongo-tools-3.0.14.tar.gz 2413148 SHA256 
5a3f706827a9567fc98e2b64a33a2071c68c89090c6f135a508cb4e615051db1 SHA512 
0e77417b2c36080515a2ff611427cb18f6d6c2432159c2a09af8d6ff14ae7f25ecbfe0a6631eeb7de084fdfe517a09364d731f5b63923404b6319fc1ca44b840
 WHIRLPOOL 
615153e87ea0b3cfd837066f850f92e7ea9c533e09bf6e3f4231ff489ac21a5a52a4afe06c827304e9340f9e8172714dae969c65cdd7215939a35c7026d60d98
+DIST mongo-tools-3.0.15.tar.gz 2413131 SHA256 
9e1a936b42eff999a83afc3885faee0c64592ff43d3620d1b9d69d44b7d84d38 SHA512 
b5baeea89f5287e055c43c58cfc31e4618df2b7b7fffd7d77248131daf503522b1d041253df8d3ad2ffa22efff344334dc05e3a3462cf7c646d4e83040bd95dc
 WHIRLPOOL 
46c992dcc90fabe8f698e89a93232cc2e450a7dd560fb64a5f954b7937a98e298af8d4fa4bf626ccbcf96bef80743b69d7e6fcb9b012dd8da68a1c382276
 DIST mongo-tools-3.2.12.tar.gz 2712079 SHA256 
cda5e869b9233d591e91cac0b4c709a2e71dcabd9ac6bcc8b33d906ce3b13afd SHA512 
66f7beb85a83ad6a217e65bba97ace6ad0bf84688f40e598e5fb1cf4bbe481b4069e1247d6829f8d06c8230d33c3e0c8bd8465a975576cad584065c361b6fb72
 WHIRLPOOL 
46123dc3c97fdf20ff94ac373e774932bd30aca677047fe3366653aaab269bf6d7e59cb420cf1e5716558fa959cb3649ee359cc27932bac276e6d24d2eea43b1
 DIST mongo-tools-3.2.13.tar.gz 2712076 SHA256 
a855eb0141445e34ff3b01807b016467519c390fce79f3566000b5aaecb65d72 SHA512 
caa0ba0f1452a16921c187cb407258326324b7222af91b1cd1b870ee2c9e6909d4fa94087a6da148a807f75b40f0bb97808a85804134d53cdab7970d8adf59f8
 WHIRLPOOL 
e2fb38cc8a35ab7c9461f680a2bf0647b5cb5d1225978b7321e6c4227b02ae3cae93e5f2a105f188f3329b0f0f8741e9a0c5439f37196ca875b049d3a91836d3
+DIST mongo-tools-3.2.15.tar.gz 2712102 SHA256 
d2f69303037810b9f1785aece94e62cff71e20a07edacf4d477a40b4b9b7a390 SHA512 
76a77564825eae547f85ead374050f3b9a29c3cd775bc86a452ba42ee843dbc800805340232094167e288a59d9592db3fe8aeba83ccbaae41196674781476220
 WHIRLPOOL 
66a2bac4edf113017826b55958c970e4abb946aeb3449f330eb157e3bb76fb8f5a2892e3f6323e0a27dc6f439015d7c02b303dc6a08c2d99680f65f8b4888e2a
 DIST mongo-tools-3.4.3.tar.gz 4700637 SHA256 
70348800ca4cc04a319ca414291d5359e7dc86c888bc8264045fbc4de00adab2 SHA512 
ec754e8b19c517d9603e0eb89cc315e0af53886b74a905c0742faf5369af8b87b84cedf57aaa25f93068cd21370fa8a274a97dc3c58bbb4a50db6c2e4f0109d9
 WHIRLPOOL 
0b85fcdb52d5f08624bbcedb96d66c8a519e6415b9aefe68e7957627f3f1e220ca1174ea0a037f53ef2de0e594793ab42d6ec7db9cb42aa09b1892500dac5dd5
 DIST mongo-tools-3.4.4.tar.gz 4700326 SHA256 
d14f4ce153aec373459c802e5a159661ccfde4e5df39d8d750586bae54896cdd SHA512 
d49243e41bf3144264add3766a6f7016a07509a583a7368a639d85d2305500dd5afcfbc4449f3dcc8bec6e88bfb76ce021c813fe14169e3bd2476ed0db7c2d5d
 WHIRLPOOL 
33cb527ce7df19e92871219aef9b38f16ae292a4d1cbdd7bb3a1c6ccc752687469b9e4309cc4fd540a65e623740e1ebe20f4bdf8629b50aab25d4ea84c2988cc

diff --git a/app-admin/mongo-tools/mongo-tools-3.0.15.ebuild 
b/app-admin/mongo-tools/mongo-tools-3.0.15.ebuild
new file mode 100644
index 000..221680a90f8
--- /dev/null
+++ b/app-admin/mongo-tools/mongo-tools-3.0.15.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+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="!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="!

[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2017-05-02 Thread Alexys Jacob
commit: 5fb383ffc897dedae915231804882fc16571632e
Author: Ultrabug  gentoo  org>
AuthorDate: Tue May  2 08:40:08 2017 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Tue May  2 08:56:44 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5fb383ff

app-admin/mongo-tools: version bump

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 app-admin/mongo-tools/Manifest  |  1 +
 app-admin/mongo-tools/mongo-tools-3.2.13.ebuild | 58 +
 2 files changed, 59 insertions(+)

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index 98355dc7988..db524caed6b 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -1,4 +1,5 @@
 DIST mongo-tools-3.0.14.tar.gz 2413148 SHA256 
5a3f706827a9567fc98e2b64a33a2071c68c89090c6f135a508cb4e615051db1 SHA512 
0e77417b2c36080515a2ff611427cb18f6d6c2432159c2a09af8d6ff14ae7f25ecbfe0a6631eeb7de084fdfe517a09364d731f5b63923404b6319fc1ca44b840
 WHIRLPOOL 
615153e87ea0b3cfd837066f850f92e7ea9c533e09bf6e3f4231ff489ac21a5a52a4afe06c827304e9340f9e8172714dae969c65cdd7215939a35c7026d60d98
 DIST mongo-tools-3.2.12.tar.gz 2712079 SHA256 
cda5e869b9233d591e91cac0b4c709a2e71dcabd9ac6bcc8b33d906ce3b13afd SHA512 
66f7beb85a83ad6a217e65bba97ace6ad0bf84688f40e598e5fb1cf4bbe481b4069e1247d6829f8d06c8230d33c3e0c8bd8465a975576cad584065c361b6fb72
 WHIRLPOOL 
46123dc3c97fdf20ff94ac373e774932bd30aca677047fe3366653aaab269bf6d7e59cb420cf1e5716558fa959cb3649ee359cc27932bac276e6d24d2eea43b1
+DIST mongo-tools-3.2.13.tar.gz 2712076 SHA256 
a855eb0141445e34ff3b01807b016467519c390fce79f3566000b5aaecb65d72 SHA512 
caa0ba0f1452a16921c187cb407258326324b7222af91b1cd1b870ee2c9e6909d4fa94087a6da148a807f75b40f0bb97808a85804134d53cdab7970d8adf59f8
 WHIRLPOOL 
e2fb38cc8a35ab7c9461f680a2bf0647b5cb5d1225978b7321e6c4227b02ae3cae93e5f2a105f188f3329b0f0f8741e9a0c5439f37196ca875b049d3a91836d3
 DIST mongo-tools-3.4.3.tar.gz 4700637 SHA256 
70348800ca4cc04a319ca414291d5359e7dc86c888bc8264045fbc4de00adab2 SHA512 
ec754e8b19c517d9603e0eb89cc315e0af53886b74a905c0742faf5369af8b87b84cedf57aaa25f93068cd21370fa8a274a97dc3c58bbb4a50db6c2e4f0109d9
 WHIRLPOOL 
0b85fcdb52d5f08624bbcedb96d66c8a519e6415b9aefe68e7957627f3f1e220ca1174ea0a037f53ef2de0e594793ab42d6ec7db9cb42aa09b1892500dac5dd5
 DIST mongo-tools-3.4.4.tar.gz 4700326 SHA256 
d14f4ce153aec373459c802e5a159661ccfde4e5df39d8d750586bae54896cdd SHA512 
d49243e41bf3144264add3766a6f7016a07509a583a7368a639d85d2305500dd5afcfbc4449f3dcc8bec6e88bfb76ce021c813fe14169e3bd2476ed0db7c2d5d
 WHIRLPOOL 
33cb527ce7df19e92871219aef9b38f16ae292a4d1cbdd7bb3a1c6ccc752687469b9e4309cc4fd540a65e623740e1ebe20f4bdf8629b50aab25d4ea84c2988cc

diff --git a/app-admin/mongo-tools/mongo-tools-3.2.13.ebuild 
b/app-admin/mongo-tools/mongo-tools-3.2.13.ebuild
new file mode 100644
index 000..1978809739a
--- /dev/null
+++ b/app-admin/mongo-tools/mongo-tools-3.2.13.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+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="!

[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2017-04-26 Thread Alexys Jacob
commit: 7db1ff74feb072c4bf67e3746b256886a12d726f
Author: Ultrabug  gentoo  org>
AuthorDate: Wed Apr 26 13:20:52 2017 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Wed Apr 26 13:21:56 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7db1ff74

app-admin/mongo-tools: ebuild cleanup

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 app-admin/mongo-tools/Manifest  |  4 --
 app-admin/mongo-tools/mongo-tools-3.0.10.ebuild | 52 -
 app-admin/mongo-tools/mongo-tools-3.2.11.ebuild | 57 ---
 app-admin/mongo-tools/mongo-tools-3.4.1.ebuild  | 57 ---
 app-admin/mongo-tools/mongo-tools-3.4.2.ebuild  | 61 -
 5 files changed, 231 deletions(-)

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index 7cc619def58..98355dc7988 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -1,8 +1,4 @@
-DIST mongo-tools-3.0.10.tar.gz 218 SHA256 
2bd5c984ca8b745b33aeb1e1a8118acd675bc5a408845eb3bb0b70c4fa680d71 SHA512 
36d57150f4fb331149a2a7cbcde54253316cf3c5bc8ab195584c057c35b30d5acfabcafa25d314d378388254ac5a0ce75d0d8867e344fb7006593319ce9d028c
 WHIRLPOOL 
a6961a1fccb7ba353616fe4bfbe182c6a076f13c23492f4d06d274a0ff4d3f09a811413f77a2353b20801462b3a72f74073e38b8b1b4f4e3abf0026774dbcea2
 DIST mongo-tools-3.0.14.tar.gz 2413148 SHA256 
5a3f706827a9567fc98e2b64a33a2071c68c89090c6f135a508cb4e615051db1 SHA512 
0e77417b2c36080515a2ff611427cb18f6d6c2432159c2a09af8d6ff14ae7f25ecbfe0a6631eeb7de084fdfe517a09364d731f5b63923404b6319fc1ca44b840
 WHIRLPOOL 
615153e87ea0b3cfd837066f850f92e7ea9c533e09bf6e3f4231ff489ac21a5a52a4afe06c827304e9340f9e8172714dae969c65cdd7215939a35c7026d60d98
-DIST mongo-tools-3.2.11.tar.gz 2712014 SHA256 
992e9fb94df6bed49e68684afee096f1193dc9cfca8ce8bcc4c912996bba365c SHA512 
a6e2dd8dd567f04205e57be2983f5f0ddf2c4aca915f5ffaa777d17b94f62e0f106eb9bad93213d25f60c3949d47f4d91cdf767744e8094278e8ecf3546dfae5
 WHIRLPOOL 
6d75a9b0e6cd4271f8c6571dd280adafc7ff1bb60f973a037c78b39df0981d6c35f1a38309a8d96300f45053054c4454f22ce75aea2d62da6db06a2b1adcf90d
 DIST mongo-tools-3.2.12.tar.gz 2712079 SHA256 
cda5e869b9233d591e91cac0b4c709a2e71dcabd9ac6bcc8b33d906ce3b13afd SHA512 
66f7beb85a83ad6a217e65bba97ace6ad0bf84688f40e598e5fb1cf4bbe481b4069e1247d6829f8d06c8230d33c3e0c8bd8465a975576cad584065c361b6fb72
 WHIRLPOOL 
46123dc3c97fdf20ff94ac373e774932bd30aca677047fe3366653aaab269bf6d7e59cb420cf1e5716558fa959cb3649ee359cc27932bac276e6d24d2eea43b1
-DIST mongo-tools-3.4.1.tar.gz 4700560 SHA256 
283d729442fca7a331ca475e234b0880ec7c4339597e0a8e271ca7e153b45439 SHA512 
bd5862b220bc9d77d938b87b1e2c974d0088239c51cd091b5e4d578d774e28aa6b25ab18936c9f388fd1ed3caeca264225c14cd5a85e749c3c3e148ca073a990
 WHIRLPOOL 
2b5ba4e2c91372e5cec355d0e6d651d4fd3de7b3d72839e855e099c75a9ffec172b43caff82d2cf7371fd3c7ac1ca1e71fc303eff75cd2e5afc352fbbf4dba42
-DIST mongo-tools-3.4.2.tar.gz 4700591 SHA256 
3679576153ab1a9e1a7fe9811cb6d7c32c6d9320f07be9a94d064d6904618b5a SHA512 
5ad4b5421acb10010f72f6b9f8342c095c4f571ac3cb9dc3db78251262f8285a4e2bddbeed3ad26c64f36d5b33ed7f43a759c74e00d2878c0ac6a71069508a2f
 WHIRLPOOL 
208bd7116e1a7be2854f81df95d418667d50166d91522e14fdfa4e1f0b1ce007966fc5b0b1367f3be2c273fa7abbbfe04cb6e970a5010d44ac8542dc1bbd3424
 DIST mongo-tools-3.4.3.tar.gz 4700637 SHA256 
70348800ca4cc04a319ca414291d5359e7dc86c888bc8264045fbc4de00adab2 SHA512 
ec754e8b19c517d9603e0eb89cc315e0af53886b74a905c0742faf5369af8b87b84cedf57aaa25f93068cd21370fa8a274a97dc3c58bbb4a50db6c2e4f0109d9
 WHIRLPOOL 
0b85fcdb52d5f08624bbcedb96d66c8a519e6415b9aefe68e7957627f3f1e220ca1174ea0a037f53ef2de0e594793ab42d6ec7db9cb42aa09b1892500dac5dd5
 DIST mongo-tools-3.4.4.tar.gz 4700326 SHA256 
d14f4ce153aec373459c802e5a159661ccfde4e5df39d8d750586bae54896cdd SHA512 
d49243e41bf3144264add3766a6f7016a07509a583a7368a639d85d2305500dd5afcfbc4449f3dcc8bec6e88bfb76ce021c813fe14169e3bd2476ed0db7c2d5d
 WHIRLPOOL 
33cb527ce7df19e92871219aef9b38f16ae292a4d1cbdd7bb3a1c6ccc752687469b9e4309cc4fd540a65e623740e1ebe20f4bdf8629b50aab25d4ea84c2988cc

diff --git a/app-admin/mongo-tools/mongo-tools-3.0.10.ebuild 
b/app-admin/mongo-tools/mongo-tools-3.0.10.ebuild
deleted file mode 100644
index c30ce82a7e8..000
--- a/app-admin/mongo-tools/mongo-tools-3.0.10.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-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="!http://www.mongodb.org;

[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2017-04-26 Thread Alexys Jacob
commit: db740f9c1a6da2b125e9403dcdfd4ef47f3c1c26
Author: Ultrabug  gentoo  org>
AuthorDate: Wed Apr 26 13:18:26 2017 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Wed Apr 26 13:21:51 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db740f9c

app-admin/mongo-tools: version bump

Package-Manager: Portage-2.3.5, Repoman-2.3.2

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

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index 61087326aa8..7cc619def58 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -5,3 +5,4 @@ DIST mongo-tools-3.2.12.tar.gz 2712079 SHA256 
cda5e869b9233d591e91cac0b4c709a2e7
 DIST mongo-tools-3.4.1.tar.gz 4700560 SHA256 
283d729442fca7a331ca475e234b0880ec7c4339597e0a8e271ca7e153b45439 SHA512 
bd5862b220bc9d77d938b87b1e2c974d0088239c51cd091b5e4d578d774e28aa6b25ab18936c9f388fd1ed3caeca264225c14cd5a85e749c3c3e148ca073a990
 WHIRLPOOL 
2b5ba4e2c91372e5cec355d0e6d651d4fd3de7b3d72839e855e099c75a9ffec172b43caff82d2cf7371fd3c7ac1ca1e71fc303eff75cd2e5afc352fbbf4dba42
 DIST mongo-tools-3.4.2.tar.gz 4700591 SHA256 
3679576153ab1a9e1a7fe9811cb6d7c32c6d9320f07be9a94d064d6904618b5a SHA512 
5ad4b5421acb10010f72f6b9f8342c095c4f571ac3cb9dc3db78251262f8285a4e2bddbeed3ad26c64f36d5b33ed7f43a759c74e00d2878c0ac6a71069508a2f
 WHIRLPOOL 
208bd7116e1a7be2854f81df95d418667d50166d91522e14fdfa4e1f0b1ce007966fc5b0b1367f3be2c273fa7abbbfe04cb6e970a5010d44ac8542dc1bbd3424
 DIST mongo-tools-3.4.3.tar.gz 4700637 SHA256 
70348800ca4cc04a319ca414291d5359e7dc86c888bc8264045fbc4de00adab2 SHA512 
ec754e8b19c517d9603e0eb89cc315e0af53886b74a905c0742faf5369af8b87b84cedf57aaa25f93068cd21370fa8a274a97dc3c58bbb4a50db6c2e4f0109d9
 WHIRLPOOL 
0b85fcdb52d5f08624bbcedb96d66c8a519e6415b9aefe68e7957627f3f1e220ca1174ea0a037f53ef2de0e594793ab42d6ec7db9cb42aa09b1892500dac5dd5
+DIST mongo-tools-3.4.4.tar.gz 4700326 SHA256 
d14f4ce153aec373459c802e5a159661ccfde4e5df39d8d750586bae54896cdd SHA512 
d49243e41bf3144264add3766a6f7016a07509a583a7368a639d85d2305500dd5afcfbc4449f3dcc8bec6e88bfb76ce021c813fe14169e3bd2476ed0db7c2d5d
 WHIRLPOOL 
33cb527ce7df19e92871219aef9b38f16ae292a4d1cbdd7bb3a1c6ccc752687469b9e4309cc4fd540a65e623740e1ebe20f4bdf8629b50aab25d4ea84c2988cc

diff --git a/app-admin/mongo-tools/mongo-tools-3.4.4.ebuild 
b/app-admin/mongo-tools/mongo-tools-3.4.4.ebuild
new file mode 100644
index 000..c631cc6fb83
--- /dev/null
+++ b/app-admin/mongo-tools/mongo-tools-3.4.4.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+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 libressl"
+
+# Maintainer note:
+# openssl DEPEND constraint, see:
+# https://github.com/mongodb/mongo-tools/issues/11
+
+RDEPEND="!

[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2017-03-31 Thread Alexys Jacob
commit: 0fd5ad85de713ab52c8ac7c12805df86b4edbb4c
Author: Ultrabug  gentoo  org>
AuthorDate: Fri Mar 31 14:46:54 2017 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Fri Mar 31 14:47:15 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0fd5ad85

app-admin/mongo-tools: fix 3.0 pie build #608292

Package-Manager: Portage-2.3.4, Repoman-2.3.2

 app-admin/mongo-tools/mongo-tools-3.0.14.ebuild | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/app-admin/mongo-tools/mongo-tools-3.0.14.ebuild 
b/app-admin/mongo-tools/mongo-tools-3.0.14.ebuild
index 5cc5d5b5c2a..bca9db8974e 100644
--- a/app-admin/mongo-tools/mongo-tools-3.0.14.ebuild
+++ b/app-admin/mongo-tools/mongo-tools-3.0.14.ebuild
@@ -32,6 +32,9 @@ S=${WORKDIR}/${MY_P}
 src_prepare() {
# ensure we use bash wrt #582906
sed -e 's@/bin/sh@/bin/bash@g' -i build.sh || die
+
+   # see #608292
+   epatch "${FILESDIR}/${PN}-3.2.10-pie.patch"
 }
 
 src_compile() {



[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2017-03-31 Thread Alexys Jacob
commit: 54cc8b0ce671f4ccc898452174c7248fcdd2e3a1
Author: Ultrabug  gentoo  org>
AuthorDate: Fri Mar 31 14:43:27 2017 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Fri Mar 31 14:47:14 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54cc8b0c

app-admin/mongo-tools: version bump

Package-Manager: Portage-2.3.4, Repoman-2.3.2

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

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index 45f3487059e..61087326aa8 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -4,3 +4,4 @@ DIST mongo-tools-3.2.11.tar.gz 2712014 SHA256 
992e9fb94df6bed49e68684afee096f119
 DIST mongo-tools-3.2.12.tar.gz 2712079 SHA256 
cda5e869b9233d591e91cac0b4c709a2e71dcabd9ac6bcc8b33d906ce3b13afd SHA512 
66f7beb85a83ad6a217e65bba97ace6ad0bf84688f40e598e5fb1cf4bbe481b4069e1247d6829f8d06c8230d33c3e0c8bd8465a975576cad584065c361b6fb72
 WHIRLPOOL 
46123dc3c97fdf20ff94ac373e774932bd30aca677047fe3366653aaab269bf6d7e59cb420cf1e5716558fa959cb3649ee359cc27932bac276e6d24d2eea43b1
 DIST mongo-tools-3.4.1.tar.gz 4700560 SHA256 
283d729442fca7a331ca475e234b0880ec7c4339597e0a8e271ca7e153b45439 SHA512 
bd5862b220bc9d77d938b87b1e2c974d0088239c51cd091b5e4d578d774e28aa6b25ab18936c9f388fd1ed3caeca264225c14cd5a85e749c3c3e148ca073a990
 WHIRLPOOL 
2b5ba4e2c91372e5cec355d0e6d651d4fd3de7b3d72839e855e099c75a9ffec172b43caff82d2cf7371fd3c7ac1ca1e71fc303eff75cd2e5afc352fbbf4dba42
 DIST mongo-tools-3.4.2.tar.gz 4700591 SHA256 
3679576153ab1a9e1a7fe9811cb6d7c32c6d9320f07be9a94d064d6904618b5a SHA512 
5ad4b5421acb10010f72f6b9f8342c095c4f571ac3cb9dc3db78251262f8285a4e2bddbeed3ad26c64f36d5b33ed7f43a759c74e00d2878c0ac6a71069508a2f
 WHIRLPOOL 
208bd7116e1a7be2854f81df95d418667d50166d91522e14fdfa4e1f0b1ce007966fc5b0b1367f3be2c273fa7abbbfe04cb6e970a5010d44ac8542dc1bbd3424
+DIST mongo-tools-3.4.3.tar.gz 4700637 SHA256 
70348800ca4cc04a319ca414291d5359e7dc86c888bc8264045fbc4de00adab2 SHA512 
ec754e8b19c517d9603e0eb89cc315e0af53886b74a905c0742faf5369af8b87b84cedf57aaa25f93068cd21370fa8a274a97dc3c58bbb4a50db6c2e4f0109d9
 WHIRLPOOL 
0b85fcdb52d5f08624bbcedb96d66c8a519e6415b9aefe68e7957627f3f1e220ca1174ea0a037f53ef2de0e594793ab42d6ec7db9cb42aa09b1892500dac5dd5

diff --git a/app-admin/mongo-tools/mongo-tools-3.4.3.ebuild 
b/app-admin/mongo-tools/mongo-tools-3.4.3.ebuild
new file mode 100644
index 000..c631cc6fb83
--- /dev/null
+++ b/app-admin/mongo-tools/mongo-tools-3.4.3.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+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 libressl"
+
+# Maintainer note:
+# openssl DEPEND constraint, see:
+# https://github.com/mongodb/mongo-tools/issues/11
+
+RDEPEND="!

[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2017-03-03 Thread Anthony G. Basile
commit: b7f4a0c9380392e771cf06e2cb426b4d2238cd56
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Fri Mar  3 13:49:23 2017 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Fri Mar  3 13:49:23 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7f4a0c9

app-admin/mongo-tools: add libressl support to latest version

Package-Manager: portage-2.3.3

 app-admin/mongo-tools/mongo-tools-3.4.2.ebuild | 7 +--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/app-admin/mongo-tools/mongo-tools-3.4.2.ebuild 
b/app-admin/mongo-tools/mongo-tools-3.4.2.ebuild
index 1978809739a..c631cc6fb83 100644
--- a/app-admin/mongo-tools/mongo-tools-3.4.2.ebuild
+++ b/app-admin/mongo-tools/mongo-tools-3.4.2.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://github.com/mongodb/mongo-tools/archive/r${MY_PV}.tar.gz -> mong
 LICENSE="Apache-2.0"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="sasl ssl"
+IUSE="sasl ssl libressl"
 
 # Maintainer note:
 # openssl DEPEND constraint, see:
@@ -26,7 +26,10 @@ DEPEND="${RDEPEND}
dev-lang/go:=
net-libs/libpcap
sasl? ( dev-libs/cyrus-sasl )
-   ssl? ( dev-libs/openssl )"
+   ssl? (
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
+   )"
 
 S=${WORKDIR}/${MY_P}
 



[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2017-02-08 Thread Alexys Jacob
commit: d42976363974e63c8cef1acef93daf37337774cb
Author: Ultrabug  gentoo  org>
AuthorDate: Wed Feb  8 08:17:35 2017 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Wed Feb  8 08:19:04 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4297636

app-admin/mongo-tools: version bump, fix libpcap dep #607626

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 app-admin/mongo-tools/Manifest   | 1 +
 app-admin/mongo-tools/mongo-tools-3.2.12.ebuild  | 1 +
 .../mongo-tools/{mongo-tools-3.2.12.ebuild => mongo-tools-3.4.2.ebuild}  | 1 +
 3 files changed, 3 insertions(+)

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index 79fcee6f07..45f3487059 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -3,3 +3,4 @@ DIST mongo-tools-3.0.14.tar.gz 2413148 SHA256 
5a3f706827a9567fc98e2b64a33a2071c6
 DIST mongo-tools-3.2.11.tar.gz 2712014 SHA256 
992e9fb94df6bed49e68684afee096f1193dc9cfca8ce8bcc4c912996bba365c SHA512 
a6e2dd8dd567f04205e57be2983f5f0ddf2c4aca915f5ffaa777d17b94f62e0f106eb9bad93213d25f60c3949d47f4d91cdf767744e8094278e8ecf3546dfae5
 WHIRLPOOL 
6d75a9b0e6cd4271f8c6571dd280adafc7ff1bb60f973a037c78b39df0981d6c35f1a38309a8d96300f45053054c4454f22ce75aea2d62da6db06a2b1adcf90d
 DIST mongo-tools-3.2.12.tar.gz 2712079 SHA256 
cda5e869b9233d591e91cac0b4c709a2e71dcabd9ac6bcc8b33d906ce3b13afd SHA512 
66f7beb85a83ad6a217e65bba97ace6ad0bf84688f40e598e5fb1cf4bbe481b4069e1247d6829f8d06c8230d33c3e0c8bd8465a975576cad584065c361b6fb72
 WHIRLPOOL 
46123dc3c97fdf20ff94ac373e774932bd30aca677047fe3366653aaab269bf6d7e59cb420cf1e5716558fa959cb3649ee359cc27932bac276e6d24d2eea43b1
 DIST mongo-tools-3.4.1.tar.gz 4700560 SHA256 
283d729442fca7a331ca475e234b0880ec7c4339597e0a8e271ca7e153b45439 SHA512 
bd5862b220bc9d77d938b87b1e2c974d0088239c51cd091b5e4d578d774e28aa6b25ab18936c9f388fd1ed3caeca264225c14cd5a85e749c3c3e148ca073a990
 WHIRLPOOL 
2b5ba4e2c91372e5cec355d0e6d651d4fd3de7b3d72839e855e099c75a9ffec172b43caff82d2cf7371fd3c7ac1ca1e71fc303eff75cd2e5afc352fbbf4dba42
+DIST mongo-tools-3.4.2.tar.gz 4700591 SHA256 
3679576153ab1a9e1a7fe9811cb6d7c32c6d9320f07be9a94d064d6904618b5a SHA512 
5ad4b5421acb10010f72f6b9f8342c095c4f571ac3cb9dc3db78251262f8285a4e2bddbeed3ad26c64f36d5b33ed7f43a759c74e00d2878c0ac6a71069508a2f
 WHIRLPOOL 
208bd7116e1a7be2854f81df95d418667d50166d91522e14fdfa4e1f0b1ce007966fc5b0b1367f3be2c273fa7abbbfe04cb6e970a5010d44ac8542dc1bbd3424

diff --git a/app-admin/mongo-tools/mongo-tools-3.2.12.ebuild 
b/app-admin/mongo-tools/mongo-tools-3.2.12.ebuild
index f43e57c218..5a82e19fa5 100644
--- a/app-admin/mongo-tools/mongo-tools-3.2.12.ebuild
+++ b/app-admin/mongo-tools/mongo-tools-3.2.12.ebuild
@@ -25,6 +25,7 @@ IUSE="sasl ssl"
 RDEPEND="!

[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2017-02-06 Thread Alexys Jacob
commit: 868f3223ff0975e49086b260ae4d05359e00ad67
Author: Ultrabug  gentoo  org>
AuthorDate: Mon Feb  6 16:08:41 2017 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Mon Feb  6 16:09:53 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=868f3223

app-admin/mongo-tools: version bump

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 app-admin/mongo-tools/Manifest  |  1 +
 app-admin/mongo-tools/mongo-tools-3.2.12.ebuild | 58 +
 2 files changed, 59 insertions(+)

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index cd2ab94..79fcee6 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -1,4 +1,5 @@
 DIST mongo-tools-3.0.10.tar.gz 218 SHA256 
2bd5c984ca8b745b33aeb1e1a8118acd675bc5a408845eb3bb0b70c4fa680d71 SHA512 
36d57150f4fb331149a2a7cbcde54253316cf3c5bc8ab195584c057c35b30d5acfabcafa25d314d378388254ac5a0ce75d0d8867e344fb7006593319ce9d028c
 WHIRLPOOL 
a6961a1fccb7ba353616fe4bfbe182c6a076f13c23492f4d06d274a0ff4d3f09a811413f77a2353b20801462b3a72f74073e38b8b1b4f4e3abf0026774dbcea2
 DIST mongo-tools-3.0.14.tar.gz 2413148 SHA256 
5a3f706827a9567fc98e2b64a33a2071c68c89090c6f135a508cb4e615051db1 SHA512 
0e77417b2c36080515a2ff611427cb18f6d6c2432159c2a09af8d6ff14ae7f25ecbfe0a6631eeb7de084fdfe517a09364d731f5b63923404b6319fc1ca44b840
 WHIRLPOOL 
615153e87ea0b3cfd837066f850f92e7ea9c533e09bf6e3f4231ff489ac21a5a52a4afe06c827304e9340f9e8172714dae969c65cdd7215939a35c7026d60d98
 DIST mongo-tools-3.2.11.tar.gz 2712014 SHA256 
992e9fb94df6bed49e68684afee096f1193dc9cfca8ce8bcc4c912996bba365c SHA512 
a6e2dd8dd567f04205e57be2983f5f0ddf2c4aca915f5ffaa777d17b94f62e0f106eb9bad93213d25f60c3949d47f4d91cdf767744e8094278e8ecf3546dfae5
 WHIRLPOOL 
6d75a9b0e6cd4271f8c6571dd280adafc7ff1bb60f973a037c78b39df0981d6c35f1a38309a8d96300f45053054c4454f22ce75aea2d62da6db06a2b1adcf90d
+DIST mongo-tools-3.2.12.tar.gz 2712079 SHA256 
cda5e869b9233d591e91cac0b4c709a2e71dcabd9ac6bcc8b33d906ce3b13afd SHA512 
66f7beb85a83ad6a217e65bba97ace6ad0bf84688f40e598e5fb1cf4bbe481b4069e1247d6829f8d06c8230d33c3e0c8bd8465a975576cad584065c361b6fb72
 WHIRLPOOL 
46123dc3c97fdf20ff94ac373e774932bd30aca677047fe3366653aaab269bf6d7e59cb420cf1e5716558fa959cb3649ee359cc27932bac276e6d24d2eea43b1
 DIST mongo-tools-3.4.1.tar.gz 4700560 SHA256 
283d729442fca7a331ca475e234b0880ec7c4339597e0a8e271ca7e153b45439 SHA512 
bd5862b220bc9d77d938b87b1e2c974d0088239c51cd091b5e4d578d774e28aa6b25ab18936c9f388fd1ed3caeca264225c14cd5a85e749c3c3e148ca073a990
 WHIRLPOOL 
2b5ba4e2c91372e5cec355d0e6d651d4fd3de7b3d72839e855e099c75a9ffec172b43caff82d2cf7371fd3c7ac1ca1e71fc303eff75cd2e5afc352fbbf4dba42

diff --git a/app-admin/mongo-tools/mongo-tools-3.2.12.ebuild 
b/app-admin/mongo-tools/mongo-tools-3.2.12.ebuild
new file mode 100644
index ..f43e57c
--- /dev/null
+++ b/app-admin/mongo-tools/mongo-tools-3.2.12.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2017 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="!

[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2017-01-25 Thread Agostino Sarubbo
commit: bbeb682cef92620d1b248acacdfca3be00486bcd
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Jan 25 15:35:35 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Jan 25 15:35:35 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bbeb682c

app-admin/mongo-tools: x86 stable wrt bug #568324

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 app-admin/mongo-tools/mongo-tools-3.0.14.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/mongo-tools/mongo-tools-3.0.14.ebuild 
b/app-admin/mongo-tools/mongo-tools-3.0.14.ebuild
index 8528391..a931ba3 100644
--- a/app-admin/mongo-tools/mongo-tools-3.0.14.ebuild
+++ b/app-admin/mongo-tools/mongo-tools-3.0.14.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://github.com/mongodb/mongo-tools/archive/r${MY_PV}.tar.gz -> mong
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="sasl ssl"
 
 # Maintainer note:



[gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/

2017-01-25 Thread Agostino Sarubbo
commit: 98e68b63be6d36e874a9035c681cb14b3e046acb
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Jan 25 14:28:03 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Jan 25 14:28:03 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98e68b63

app-admin/mongo-tools: amd64 stable wrt bug #568324

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 app-admin/mongo-tools/mongo-tools-3.0.14.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-admin/mongo-tools/mongo-tools-3.0.14.ebuild 
b/app-admin/mongo-tools/mongo-tools-3.0.14.ebuild
index 1eeb2ac..8528391 100644
--- a/app-admin/mongo-tools/mongo-tools-3.0.14.ebuild
+++ b/app-admin/mongo-tools/mongo-tools-3.0.14.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -15,7 +15,7 @@ 
SRC_URI="https://github.com/mongodb/mongo-tools/archive/r${MY_PV}.tar.gz -> mong
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="sasl ssl"
 
 # Maintainer note:



  1   2   >