Skip to content

Commit

Permalink
sci-biology/SPAdes: keyword 3.15.5 for ~amd64
Browse files Browse the repository at this point in the history
Signed-off-by: Horea Christian <[email protected]>
  • Loading branch information
TheChymera committed Jan 22, 2024
1 parent 41349a8 commit dd4ee9b
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 3 deletions.
8 changes: 5 additions & 3 deletions sci-biology/SPAdes/SPAdes-3.15.5.ebuild
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,7 @@ SRC_URI="

LICENSE="GPL-2"
SLOT="0"
KEYWORDS=""
# Fails to build:
# https://github.com/ablab/spades/issues/1238
KEYWORDS="~amd64"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"

DEPEND="
Expand All @@ -31,6 +29,10 @@ DEPEND="
RDEPEND="${DEPEND}"
BDEPEND="dev-build/cmake"

PATCHES=(
"${FILESDIR}/${P}-gcc13.patch"
)

src_install(){
einstalldocs
# WORKAROUND: This script does both compile and install in one go
Expand Down
49 changes: 49 additions & 0 deletions sci-biology/SPAdes/files/SPAdes-3.15.5-gcc13.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
From 3e802fa51d156fc958c36e25d607f20bf756f0bf Mon Sep 17 00:00:00 2001
From: Bo YU <[email protected]>
Date: Wed, 19 Jul 2023 18:42:04 +0800
Subject: [PATCH] fix build issues due to gcc-13

Signed-off-by: Bo YU <[email protected]>
---
ext/include/llvm/Support/Signals.h | 1 +
src/common/pipeline/library_data.hpp | 1 +
src/common/sequence/nucl.hpp | 2 ++
3 files changed, 4 insertions(+)

diff --git a/assembler/ext/include/llvm/Support/Signals.h b/assembler/ext/include/llvm/Support/Signals.h
index e0a18e72f..148216b8f 100644
--- a/ext/include/llvm/Support/Signals.h
+++ b/ext/include/llvm/Support/Signals.h
@@ -14,6 +14,7 @@
#ifndef LLVM_SUPPORT_SIGNALS_H
#define LLVM_SUPPORT_SIGNALS_H

+#include <cstdint>
#include <string>

namespace llvm {
diff --git a/assembler/src/common/pipeline/library_data.hpp b/assembler/src/common/pipeline/library_data.hpp
index 3cbaf0adb..1ffaa7b37 100644
--- a/src/common/pipeline/library_data.hpp
+++ b/src/common/pipeline/library_data.hpp
@@ -8,6 +8,7 @@

#include <map>
#include <string>
+#include <cstdint>

// Forward decls for LLVM YAML API
namespace llvm { namespace yaml { class IO; template<typename T> struct MappingTraits; } }
diff --git a/assembler/src/common/sequence/nucl.hpp b/assembler/src/common/sequence/nucl.hpp
index 9c7d6de13..e10e7f583 100755
--- a/src/common/sequence/nucl.hpp
+++ b/src/common/sequence/nucl.hpp
@@ -8,6 +8,8 @@
#ifndef NUCL_HPP_
#define NUCL_HPP_

+#include <cstdint>
+
#include "utils/verify.hpp"

/**

0 comments on commit dd4ee9b

Please sign in to comment.