commit:     d7da98abe0bfa8bc168818b78b663489513ac43f
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 28 01:31:31 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jan 28 01:33:16 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7da98ab

sys-block/sedutil: fix build w/ gcc 13

Signed-off-by: Sam James <sam <AT> gentoo.org>

 .../sedutil/files/sedutil-1.20.0-gcc-13.patch      | 25 ++++++++++++++++++++++
 sys-block/sedutil/sedutil-1.20.0.ebuild            |  6 +++++-
 2 files changed, 30 insertions(+), 1 deletion(-)

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
new file mode 100644
index 000000000000..7b803028230b
--- /dev/null
+++ b/sys-block/sedutil/files/sedutil-1.20.0-gcc-13.patch
@@ -0,0 +1,25 @@
+https://github.com/Drive-Trust-Alliance/sedutil/pull/425
+
+From 927cd88cad7bea94c2eebecc18f7881f0defaccb Mon Sep 17 00:00:00 2001
+From: Khem Raj <[email protected]>
+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 <[email protected]>
+--- 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/sedutil-1.20.0.ebuild 
b/sys-block/sedutil/sedutil-1.20.0.ebuild
index 917e43286854..d920ad8c3c36 100644
--- a/sys-block/sedutil/sedutil-1.20.0.ebuild
+++ b/sys-block/sedutil/sedutil-1.20.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -13,6 +13,10 @@ 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

Reply via email to