Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fabric/mstflint/
Date: Tue, 11 Jan 2022 21:07:20
Message-Id: 1641935232.2e540a2d35e6a771939da3558ebe5d170df1ba95.zmedico@gentoo
1 commit: 2e540a2d35e6a771939da3558ebe5d170df1ba95
2 Author: Zac Medico <zachary.medico <AT> sony <DOT> com>
3 AuthorDate: Tue Jan 11 21:04:31 2022 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 11 21:07:12 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e540a2d
7
8 sys-fabric/mstflint: Remove old version
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>
12
13 sys-fabric/mstflint/Manifest | 1 -
14 sys-fabric/mstflint/mstflint-4.16.0_p2.ebuild | 46 ---------------------------
15 2 files changed, 47 deletions(-)
16
17 diff --git a/sys-fabric/mstflint/Manifest b/sys-fabric/mstflint/Manifest
18 index e708e215ed11..e3914046bff0 100644
19 --- a/sys-fabric/mstflint/Manifest
20 +++ b/sys-fabric/mstflint/Manifest
21 @@ -1,2 +1 @@
22 -DIST mstflint-4.16.0_p2.tar.gz 4534457 BLAKE2B c199cd0b4eed8ecc20b8ab89235035b7ad258fe583c464dafb31a1e5ba8f6cfd745b132ff12631fa0d98c2d94f16ca69c908c0b6ad94391ec1a3e56ba9967d59 SHA512 03a6b055384b9fab44a31ba6f2de02d1580e08af981c1cad5111a96279872ea960024bfa9debbbdb36019b88713906c3c59d3910a11f169ad5f3a0090bc6c7df
23 DIST mstflint-4.18.0_p1.tar.gz 4877851 BLAKE2B 7fb995561155ccc73b0c36d2994c0398483a92788c5ce045f0263a3e5b0ff7230ca8bb0f5b821e957d5879e0629f11716b179e3bc581849335cc95715631c1d6 SHA512 aed2302dc88b9b95892eb6dd929a922ac6257ddae808db656c7fd01c393f9f0a0d3aa4e13da6c07fe0118cd48a43795f39cc16e619408b05e6bed7d085dbf0d4
24
25 diff --git a/sys-fabric/mstflint/mstflint-4.16.0_p2.ebuild b/sys-fabric/mstflint/mstflint-4.16.0_p2.ebuild
26 deleted file mode 100644
27 index bac06d183ae9..000000000000
28 --- a/sys-fabric/mstflint/mstflint-4.16.0_p2.ebuild
29 +++ /dev/null
30 @@ -1,46 +0,0 @@
31 -# Copyright 1999-2021 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -inherit autotools
37 -
38 -DESCRIPTION="Mstflint - an open source version of MFT (Mellanox Firmware Tools)"
39 -HOMEPAGE="https://github.com/Mellanox/mstflint"
40 -LICENSE="|| ( GPL-2 BSD-2 )"
41 -KEYWORDS="~amd64 ~x86"
42 -EGIT_COMMIT="bd8852742cbd5d4d5eb0d67e000275c953cc0820"
43 -MY_PV=${PV/_p/-}
44 -MY_P=""
45 -SRC_URI="https://github.com/Mellanox/mstflint/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz"
46 -IUSE="adb-generic-tools inband ssl"
47 -SLOT="0"
48 -RDEPEND="dev-db/sqlite:3=
49 - sys-libs/zlib:=
50 - inband? ( sys-fabric/libibmad )
51 - adb-generic-tools? (
52 - dev-libs/boost:=
53 - dev-libs/expat:=
54 - )
55 - ssl? ( dev-libs/openssl:= )"
56 -DEPEND="${RDEPEND}"
57 -S="${WORKDIR}/${PN}-${MY_PV}"
58 -
59 -src_prepare() {
60 - default
61 - echo '#define TOOLS_GIT_SHA "'${EGIT_COMMIT}'"' > ./common/gitversion.h || die
62 -}
63 -
64 -src_configure() {
65 - eautoreconf
66 - econf $(use_enable inband) $(use_enable ssl openssl) $(use adb-generic-tools && printf -- '--enable-adb-generic-tools')
67 -}
68 -
69 -src_compile() {
70 - if use adb-generic-tools; then
71 - pushd ext_libs/json >/dev/null || die
72 - emake
73 - popd >/dev/null || die
74 - fi
75 - default
76 -}