Gentoo Archives: gentoo-commits

From: Alexys Jacob <ultrabug@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/mongo-tools/
Date: Fri, 09 Aug 2019 07:28:15
Message-Id: 1565335682.b4a6a3313e3860845cfa42f988d00e7e1a2fe864.ultrabug@gentoo
1 commit: b4a6a3313e3860845cfa42f988d00e7e1a2fe864
2 Author: Alexys Jacob <ultrabug <AT> gentoo <DOT> org>
3 AuthorDate: Fri Aug 9 07:12:54 2019 +0000
4 Commit: Alexys Jacob <ultrabug <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 9 07:28:02 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4a6a331
7
8 app-admin/mongo-tools: drop soon to EOL 3.4
9
10 Package-Manager: Portage-2.3.71, Repoman-2.3.17
11 Signed-off-by: Alexys Jacob <ultrabug <AT> gentoo.org>
12
13 app-admin/mongo-tools/Manifest | 1 -
14 app-admin/mongo-tools/mongo-tools-3.4.16.ebuild | 60 -------------------------
15 2 files changed, 61 deletions(-)
16
17 diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
18 index 052e0950331..8b7f88fafa7 100644
19 --- a/app-admin/mongo-tools/Manifest
20 +++ b/app-admin/mongo-tools/Manifest
21 @@ -1,4 +1,3 @@
22 -DIST mongo-tools-3.4.16.tar.gz 4697191 BLAKE2B 2e9a0e7dc8016d3e7d7c7f8d0cf80a97d3d199603c0b8b791df5a0d79d418ffaa232eee694047a7ca11fa7623023b4123becd437cfe3dec11e26cd525720bcad SHA512 b40c6dee75d860de1da73faf79f5f68c098ce7c80681486c66fff04a937474dcede91c7be907a8e36033b3898f7499e8f53271944c0df3360756c27361efb6f5
23 DIST mongo-tools-3.6.11.tar.gz 4731680 BLAKE2B 88558a26d2552848121d984e4b963acafe9e56b37a3d393bacdcd8c0f71a29e2082845ad6d648c3c4800bd47514d339d1f1e984e339a48572ecb5f6f31d9166d SHA512 2291cb963965a59a89bac35a760ce49b4b835d1447065d558c4b254aae5fe38f7ebe4c9d7a67aa475e06be95c45f8529922c6fb0b78d41bc07d1a83f3a564192
24 DIST mongo-tools-3.6.12.tar.gz 4990846 BLAKE2B a2b649df03ba17175d95b0fb7be94e446a0cda8dd45111a41f6f74ee5498b853d9fd361f683d4db558197a1951fc79056b516cff6fcd32cc32877744456b67e3 SHA512 948e49719c958e8b7cd1c27b9d413df6d032189801180540ee86b927d5dd53ab4b8906e5cc7880163ecc6abf11daebfc2fb96fcf8fcfd3e0b1f8c8fedaf54558
25 DIST mongo-tools-3.6.13.tar.gz 4990848 BLAKE2B 022ddf214869c3a3e545aa9572f77f0adc21c0dbd6ea6ad9e083633c2e972b7ef77c0bda4354dbde9fd0e23c6dd02a7de8873d4b2c2a3e4423ea6f8e1c23ed52 SHA512 fac21c4841bfecba11a7765bb6c36d1fa19d4dd94f6f4168fa767fc11dc8b3caf04a5029becd09eba01dd694274e9cc22da8566ce878769e5c3c97016c162432
26
27 diff --git a/app-admin/mongo-tools/mongo-tools-3.4.16.ebuild b/app-admin/mongo-tools/mongo-tools-3.4.16.ebuild
28 deleted file mode 100644
29 index d2a369f77e3..00000000000
30 --- a/app-admin/mongo-tools/mongo-tools-3.4.16.ebuild
31 +++ /dev/null
32 @@ -1,60 +0,0 @@
33 -# Copyright 1999-2019 Gentoo Authors
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=6
37 -
38 -MY_PV=${PV/_rc/-rc}
39 -MY_P=${PN}-r${MY_PV}
40 -
41 -DESCRIPTION="A high-performance, open source, schema-free document-oriented database"
42 -HOMEPAGE="https://www.mongodb.com"
43 -SRC_URI="https://github.com/mongodb/mongo-tools/archive/r${MY_PV}.tar.gz -> mongo-tools-${MY_PV}.tar.gz"
44 -
45 -LICENSE="Apache-2.0"
46 -SLOT="0"
47 -KEYWORDS="~amd64"
48 -IUSE="sasl ssl"
49 -
50 -RDEPEND="!<dev-db/mongodb-3.0.0"
51 -DEPEND="${RDEPEND}
52 - dev-lang/go:=
53 - net-libs/libpcap
54 - sasl? ( dev-libs/cyrus-sasl )
55 - ssl? ( dev-libs/openssl:0= )"
56 -
57 -S=${WORKDIR}/${MY_P}
58 -
59 -src_prepare() {
60 - default
61 -
62 - # 1) ensure we use bash wrt #582906
63 - # 2) do not substitute version because it uses git
64 - sed -e 's@/bin/sh@/bin/bash@g' \
65 - -e '/^sed/,+3d' \
66 - -e '/^mv/d' \
67 - -i build.sh || die
68 -
69 - # build pie to avoid text relocations wrt #582854
70 - # skip on ppc64 wrt #610984
71 - if ! use ppc64; then
72 - sed -i 's/\(go build\)/\1 -buildmode=pie/g' build.sh || die
73 - fi
74 -}
75 -
76 -src_compile() {
77 - local myconf=()
78 -
79 - if use sasl; then
80 - myconf+=(sasl)
81 - fi
82 -
83 - if use ssl; then
84 - myconf+=(ssl)
85 - fi
86 -
87 - ./build.sh "${myconf[@]}" || die "build failed"
88 -}
89 -
90 -src_install() {
91 - dobin bin/*
92 -}