diff options
author | Robert Mijakovic <robert.mijakovic@gmail.com> | 2021-05-19 15:37:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-19 15:37:08 +0200 |
commit | fbc20e0fe8810593b1a0c9e99f20d56420bc0125 (patch) | |
tree | 70ea606a2a54379e4186d0292971bc24cac1dc32 | |
parent | f5c7ab7f6c55c64e0d87d9e290a2fc70e3f339d3 (diff) | |
download | spack-fbc20e0fe8810593b1a0c9e99f20d56420bc0125.tar.gz spack-fbc20e0fe8810593b1a0c9e99f20d56420bc0125.tar.bz2 spack-fbc20e0fe8810593b1a0c9e99f20d56420bc0125.tar.xz spack-fbc20e0fe8810593b1a0c9e99f20d56420bc0125.zip |
gdb: new version, 10.2 (#23754)
* gdb: new version, 10.2
* gdb: applies patch to the newer releases
Co-authored-by: Robert Mijakovic <robert.mijakovic@lxp.lu>
-rw-r--r-- | var/spack/repos/builtin/packages/gdb/package.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/gdb/package.py b/var/spack/repos/builtin/packages/gdb/package.py index 0e6b942c68..db46399edf 100644 --- a/var/spack/repos/builtin/packages/gdb/package.py +++ b/var/spack/repos/builtin/packages/gdb/package.py @@ -18,6 +18,7 @@ class Gdb(AutotoolsPackage, GNUMirrorPackage): maintainers = ['robertu94'] + version('10.2', sha256='b33ad58d687487a821ec8d878daab0f716be60d0936f2e3ac5cf08419ce70350') version('10.1', sha256='f12f388b99e1408c01308c3f753313fafa45517740c81ab7ed0d511b13e2cf55') version('9.2', sha256='38ef247d41ba7cc3f6f93a612a78bab9484de9accecbe3b0150a3c0391a3faf0') version('9.1', sha256='fcda54d4f35bc53fb24b50009a71ca98410d71ff2620942e3c829a7f5d614252') @@ -47,7 +48,7 @@ class Gdb(AutotoolsPackage, GNUMirrorPackage): # Resolves the undefined references to libintl_gettext while linking gdbserver # https://www.gnu.org/software/gettext/FAQ.html#integrating_undefined - patch('gdb-libintl.patch', level=0, when='@10.1') + patch('gdb-libintl.patch', level=0, when='@10.1:') # Required dependency depends_on('texinfo', type='build') |