summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Seifert <soap@gentoo.org>2021-05-15 00:13:22 +0200
committerDavid Seifert <soap@gentoo.org>2021-05-15 00:13:22 +0200
commitd79466b366191b872b76d95b9b89e90a52499ad1 (patch)
tree855ab7ad4571808db626cf5b946cfc1e80daee98
parentsys-block/open-isns: drop 0.99, 0.100 (diff)
downloadgentoo-d79466b3.tar.gz
gentoo-d79466b3.tar.bz2
gentoo-d79466b3.zip
sys-block/sedutil: drop 1.15
Signed-off-by: David Seifert <soap@gentoo.org>
-rw-r--r--sys-block/sedutil/Manifest1
-rw-r--r--sys-block/sedutil/sedutil-1.15.ebuild45
2 files changed, 0 insertions, 46 deletions
diff --git a/sys-block/sedutil/Manifest b/sys-block/sedutil/Manifest
index bf6fd7390f1e..ea146504e60d 100644
--- a/sys-block/sedutil/Manifest
+++ b/sys-block/sedutil/Manifest
@@ -1,2 +1 @@
DIST sedutil-1.15.1.tar.gz 297551 BLAKE2B 233ce75a75e298cf77b5737ab8a072b615ea1ee6f13936d4bd2c35d26036fe663efd2ccbf23e7bb1506230014e8282f590a8905a1349a2d7f0d8c77848a613e5 SHA512 9708ef307b457fad2f45735b044685ac6731c353af428c49ff0e312190f3bdc521bcfa71a9e1239d9ffe637d18293a99b09b7e001df96494cdce53f5442750f1
-DIST sedutil-1.15.tar.gz 295399 BLAKE2B 28d4a748248d1d1e7409afbe68dc608c037716aa694c2682d766654cc369136aab00a4af84d4abd2cf7bf1e32bf37b1d8eb55d2386a5b0db5b05471f1895ace5 SHA512 f4071d510db8227c7a4e37e1055993436cd8469e584cdb9d2bf507e006570c103b9e19353733f4ba6631226856c9d2aa8817c134febf96750318cffc935707da
diff --git a/sys-block/sedutil/sedutil-1.15.ebuild b/sys-block/sedutil/sedutil-1.15.ebuild
deleted file mode 100644
index 058b0ec518c8..000000000000
--- a/sys-block/sedutil/sedutil-1.15.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit toolchain-funcs
-
-DESCRIPTION="The Drive Trust Alliance Self Encrypting Drive Utility"
-HOMEPAGE="https://github.com/Drive-Trust-Alliance/sedutil"
-SRC_URI="https://github.com/Drive-Trust-Alliance/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-src_prepare() {
- default
- # https://github.com/Drive-Trust-Alliance/sedutil/pull/49
- find -name '*.mk' -exec sed -E -i 's: -(Werror|g|O[0-9]?) : :g' {} + || die
-}
-
-src_configure() {
- case $(tc-arch) in
- x86) sedutil_arch="Release_i686" ;;
- amd64) sedutil_arch="Release_x86_64" ;;
- *) die "unsupported architecture" ;;
- esac
-}
-
-src_compile() {
- emake \
- -C "linux/CLI" \
- V=1 \
- CONF="${sedutil_arch}" \
- CC="$(tc-getCC)" \
- CXX="$(tc-getCXX)" \
- CFLAGS="${CFLAGS}" \
- CXXFLAGS="${CXXFLAGS}"
-}
-
-src_install() {
- dobin "linux/CLI/dist/${sedutil_arch}/GNU-Linux/sedutil-cli"
- dodoc README.md
-}