diff options
author | Alexys Jacob <ultrabug@gentoo.org> | 2019-08-09 09:12:54 +0200 |
---|---|---|
committer | Alexys Jacob <ultrabug@gentoo.org> | 2019-08-09 09:28:02 +0200 |
commit | b4a6a3313e3860845cfa42f988d00e7e1a2fe864 (patch) | |
tree | 116704ef6f3fa12232bd9b1bd9b60c5618f30347 /app-admin/mongo-tools | |
parent | app-admin/mongo-tools: version bump (diff) | |
download | gentoo-b4a6a3313e3860845cfa42f988d00e7e1a2fe864.tar.gz gentoo-b4a6a3313e3860845cfa42f988d00e7e1a2fe864.tar.bz2 gentoo-b4a6a3313e3860845cfa42f988d00e7e1a2fe864.zip |
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 <ultrabug@gentoo.org>
Diffstat (limited to 'app-admin/mongo-tools')
-rw-r--r-- | app-admin/mongo-tools/Manifest | 1 | ||||
-rw-r--r-- | app-admin/mongo-tools/mongo-tools-3.4.16.ebuild | 60 |
2 files changed, 0 insertions, 61 deletions
diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest index 052e09503310..8b7f88fafa7a 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 d2a369f77e33..000000000000 --- 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="!<dev-db/mongodb-3.0.0" -DEPEND="${RDEPEND} - dev-lang/go:= - net-libs/libpcap - sasl? ( dev-libs/cyrus-sasl ) - ssl? ( dev-libs/openssl:0= )" - -S=${WORKDIR}/${MY_P} - -src_prepare() { - default - - # 1) ensure we use bash wrt #582906 - # 2) do not substitute version because it uses git - sed -e 's@/bin/sh@/bin/bash@g' \ - -e '/^sed/,+3d' \ - -e '/^mv/d' \ - -i build.sh || die - - # build pie to avoid text relocations wrt #582854 - # skip on ppc64 wrt #610984 - if ! use ppc64; then - sed -i 's/\(go build\)/\1 -buildmode=pie/g' build.sh || die - fi -} - -src_compile() { - local myconf=() - - if use sasl; then - myconf+=(sasl) - fi - - if use ssl; then - myconf+=(ssl) - fi - - ./build.sh "${myconf[@]}" || die "build failed" -} - -src_install() { - dobin bin/* -} |