summaryrefslogtreecommitdiff
path: root/sys-block/sedutil
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-12 11:50:53 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-12 11:50:53 -0500
commit290aebdea65a02557706eaeda477fef0437b6a48 (patch)
treef87a939169a508a2e943570501b64cc16b411cda /sys-block/sedutil
parent6783ddcd4b73d9ce586a71770caed352bec93b16 (diff)
downloadbaldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.gz
baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.xz
baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.zip
Adding metadata
Diffstat (limited to 'sys-block/sedutil')
-rw-r--r--sys-block/sedutil/Manifest1
-rw-r--r--sys-block/sedutil/files/sedutil-1.20.0-gcc-13.patch25
-rw-r--r--sys-block/sedutil/metadata.xml8
-rw-r--r--sys-block/sedutil/sedutil-1.20.0.ebuild27
4 files changed, 0 insertions, 61 deletions
diff --git a/sys-block/sedutil/Manifest b/sys-block/sedutil/Manifest
deleted file mode 100644
index 5f2b318e0c37..000000000000
--- a/sys-block/sedutil/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST sedutil-1.20.0.tar.gz 301067 BLAKE2B 6eb18b15a00a2555684459f00c59a9ffa1c0a85ab275bfd4de50225e3e7e9990751c7e4065987527f9c9c798c52abb5d45ef2336c72d6ee1c0e06c8a668ca210 SHA512 b85891f1c519295bf9551ffc2488300611f519aec88c60d74555e0870e125efd6153a49a6ae5a9783102e0ad0fbb148a0c0a804a61984934c23020add85287d3
diff --git a/sys-block/sedutil/files/sedutil-1.20.0-gcc-13.patch b/sys-block/sedutil/files/sedutil-1.20.0-gcc-13.patch
deleted file mode 100644
index 7b803028230b..000000000000
--- a/sys-block/sedutil/files/sedutil-1.20.0-gcc-13.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-https://github.com/Drive-Trust-Alliance/sedutil/pull/425
-
-From 927cd88cad7bea94c2eebecc18f7881f0defaccb Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Thu, 26 Jan 2023 23:36:29 -0800
-Subject: [PATCH] include missing <cstdint>
-
-gcc 13 moved some includes around and as a result <cstdint>
-is no longer transitively included [1]. Explicitly include
-it for uint{32,64}_t.
-
-[1] https://gcc.gnu.org/gcc-13/porting_to.html#header-dep-changes
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
---- a/Common/DtaOptions.h
-+++ b/Common/DtaOptions.h
-@@ -21,6 +21,7 @@ along with sedutil. If not, see <http://www.gnu.org/licenses/>.
- #ifndef _DTAOPTIONS_H
- #define _DTAOPTIONS_H
-
-+#include <cstdint>
- /** Output modes */
- typedef enum _sedutiloutput {
- sedutilNormal,
-
diff --git a/sys-block/sedutil/metadata.xml b/sys-block/sedutil/metadata.xml
deleted file mode 100644
index 9948806b74b4..000000000000
--- a/sys-block/sedutil/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://docs.baldeagleos.com/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>base-system@gentoo.org</email>
- </maintainer>
- <origin>baldeagleos-repo</origin>
-</pkgmetadata>
diff --git a/sys-block/sedutil/sedutil-1.20.0.ebuild b/sys-block/sedutil/sedutil-1.20.0.ebuild
deleted file mode 100644
index d920ad8c3c36..000000000000
--- a/sys-block/sedutil/sedutil-1.20.0.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools
-
-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 ~ppc64 x86"
-
-PATCHES=(
- "${FILESDIR}"/${PN}-1.20.0-gcc-13.patch
-)
-
-src_prepare() {
- default
- # https://github.com/Drive-Trust-Alliance/sedutil/pull/49
- sed 's: -Werror: :g' \
- -i configure.ac \
- -i Makefile.am || die
- eautoreconf
-}