summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Young <A-N-Other@users.noreply.github.com>2023-09-12 09:03:02 +0100
committerGitHub <noreply@github.com>2023-09-12 04:03:02 -0400
commit12e1768fdb25b4e4b4deda90d208fcedaa2f31ab (patch)
tree247885d59140141eb1cfb375a6155fc7123f7a7b
parent28a3be3eca64097dcd5f220ddfc26f5193009ff0 (diff)
downloadspack-12e1768fdb25b4e4b4deda90d208fcedaa2f31ab.tar.gz
spack-12e1768fdb25b4e4b4deda90d208fcedaa2f31ab.tar.bz2
spack-12e1768fdb25b4e4b4deda90d208fcedaa2f31ab.tar.xz
spack-12e1768fdb25b4e4b4deda90d208fcedaa2f31ab.zip
filtlong: add v0.2.1, patch for %gcc@13: (#39775)
Co-authored-by: LMS Bioinformatics <bioinformatics@lms.mrc.ac.uk>
-rw-r--r--var/spack/repos/builtin/packages/filtlong/gcc13.patch10
-rw-r--r--var/spack/repos/builtin/packages/filtlong/package.py4
2 files changed, 14 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/filtlong/gcc13.patch b/var/spack/repos/builtin/packages/filtlong/gcc13.patch
new file mode 100644
index 0000000000..6ff541ab88
--- /dev/null
+++ b/var/spack/repos/builtin/packages/filtlong/gcc13.patch
@@ -0,0 +1,10 @@
+--- src/kmers.h 2018-01-04 03:52:20.000000000 +0000
++++ src/kmers.h.patched 2023-09-04 13:19:09.206573971 +0100
+@@ -17,6 +17,7 @@
+ #define KMERS_H
+
+
++#include <cstdint>
+ #include <string>
+ #include <vector>
+ #include <unordered_set>
diff --git a/var/spack/repos/builtin/packages/filtlong/package.py b/var/spack/repos/builtin/packages/filtlong/package.py
index 4b0acffe88..fa32ca6633 100644
--- a/var/spack/repos/builtin/packages/filtlong/package.py
+++ b/var/spack/repos/builtin/packages/filtlong/package.py
@@ -13,11 +13,15 @@ class Filtlong(MakefilePackage):
homepage = "https://github.com/rrwick/Filtlong"
url = "https://github.com/rrwick/Filtlong/archive/v0.2.0.tar.gz"
+ version("0.2.1", sha256="e6f47675e87f98cf2481a60bef5cad38396f1e4db653a5c1673139f37770273a")
version("0.2.0", sha256="a4afb925d7ced8d083be12ca58911bb16d5348754e7c2f6431127138338ee02a")
version("0.1.1", sha256="ddae7a5850efeb64424965a443540b1ced34286fbefad9230ab71f4af314081b")
depends_on("zlib-api")
+ # %gcc@13: requires std libraries be manually added - add an include for `cstdint`
+ patch("gcc13.patch", level=0, when="%gcc@13:")
+
def install(self, spec, prefix):
mkdir(prefix.bin)
install_tree("bin", prefix.bin)