Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-block/sedutil/
Date: Fri, 14 May 2021 22:14:12
Message-Id: 1621030402.d79466b366191b872b76d95b9b89e90a52499ad1.soap@gentoo
1 commit: d79466b366191b872b76d95b9b89e90a52499ad1
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 14 22:13:22 2021 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Fri May 14 22:13:22 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d79466b3
7
8 sys-block/sedutil: drop 1.15
9
10 Signed-off-by: David Seifert <soap <AT> gentoo.org>
11
12 sys-block/sedutil/Manifest | 1 -
13 sys-block/sedutil/sedutil-1.15.ebuild | 45 -----------------------------------
14 2 files changed, 46 deletions(-)
15
16 diff --git a/sys-block/sedutil/Manifest b/sys-block/sedutil/Manifest
17 index bf6fd7390f1..ea146504e60 100644
18 --- a/sys-block/sedutil/Manifest
19 +++ b/sys-block/sedutil/Manifest
20 @@ -1,2 +1 @@
21 DIST sedutil-1.15.1.tar.gz 297551 BLAKE2B 233ce75a75e298cf77b5737ab8a072b615ea1ee6f13936d4bd2c35d26036fe663efd2ccbf23e7bb1506230014e8282f590a8905a1349a2d7f0d8c77848a613e5 SHA512 9708ef307b457fad2f45735b044685ac6731c353af428c49ff0e312190f3bdc521bcfa71a9e1239d9ffe637d18293a99b09b7e001df96494cdce53f5442750f1
22 -DIST sedutil-1.15.tar.gz 295399 BLAKE2B 28d4a748248d1d1e7409afbe68dc608c037716aa694c2682d766654cc369136aab00a4af84d4abd2cf7bf1e32bf37b1d8eb55d2386a5b0db5b05471f1895ace5 SHA512 f4071d510db8227c7a4e37e1055993436cd8469e584cdb9d2bf507e006570c103b9e19353733f4ba6631226856c9d2aa8817c134febf96750318cffc935707da
23
24 diff --git a/sys-block/sedutil/sedutil-1.15.ebuild b/sys-block/sedutil/sedutil-1.15.ebuild
25 deleted file mode 100644
26 index 058b0ec518c..00000000000
27 --- a/sys-block/sedutil/sedutil-1.15.ebuild
28 +++ /dev/null
29 @@ -1,45 +0,0 @@
30 -# Copyright 1999-2017 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -inherit toolchain-funcs
36 -
37 -DESCRIPTION="The Drive Trust Alliance Self Encrypting Drive Utility"
38 -HOMEPAGE="https://github.com/Drive-Trust-Alliance/sedutil"
39 -SRC_URI="https://github.com/Drive-Trust-Alliance/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
40 -
41 -LICENSE="GPL-3+"
42 -SLOT="0"
43 -KEYWORDS="~amd64 ~x86"
44 -IUSE=""
45 -
46 -src_prepare() {
47 - default
48 - # https://github.com/Drive-Trust-Alliance/sedutil/pull/49
49 - find -name '*.mk' -exec sed -E -i 's: -(Werror|g|O[0-9]?) : :g' {} + || die
50 -}
51 -
52 -src_configure() {
53 - case $(tc-arch) in
54 - x86) sedutil_arch="Release_i686" ;;
55 - amd64) sedutil_arch="Release_x86_64" ;;
56 - *) die "unsupported architecture" ;;
57 - esac
58 -}
59 -
60 -src_compile() {
61 - emake \
62 - -C "linux/CLI" \
63 - V=1 \
64 - CONF="${sedutil_arch}" \
65 - CC="$(tc-getCC)" \
66 - CXX="$(tc-getCXX)" \
67 - CFLAGS="${CFLAGS}" \
68 - CXXFLAGS="${CXXFLAGS}"
69 -}
70 -
71 -src_install() {
72 - dobin "linux/CLI/dist/${sedutil_arch}/GNU-Linux/sedutil-cli"
73 - dodoc README.md
74 -}