guix_mirror_bot pushed a commit to branch rust-team
in repository guix.

commit bf5a0defd3d1c71a4113993bc4b729e562703369
Author: Efraim Flashner <[email protected]>
AuthorDate: Sun Feb 8 11:16:52 2026 +0200

    gnu: gdb: Reverse order of inheritance.
    
    * gnu/packages/gdb.scm (gdb-14, gdb-15, gdb-16, gdb/pinned): Inherit
    from gdb-17.
    
    Change-Id: I3a5b52d0117361c9292b846ba1ef943c7b6ea19e
---
 gnu/packages/gdb.scm | 24 ++++++++++++------------
 1 file changed, 12 insertions(+), 12 deletions(-)

diff --git a/gnu/packages/gdb.scm b/gnu/packages/gdb.scm
index 8d3c26639e..878165e424 100644
--- a/gnu/packages/gdb.scm
+++ b/gnu/packages/gdb.scm
@@ -1,7 +1,7 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2013, 2014, 2015, 2019, 2020, 2023 Ludovic Courtès 
<[email protected]>
 ;;; Copyright © 2015 Mark H Weaver <[email protected]>
-;;; Copyright © 2015, 2016, 2019, 2021, 2023 Efraim Flashner 
<[email protected]>
+;;; Copyright © 2015, 2016, 2019, 2021, 2023, 2026 Efraim Flashner 
<[email protected]>
 ;;; Copyright © 2020 Marius Bakke <[email protected]>
 ;;; Copyright © 2020 Vincent Legoll <[email protected]>
 ;;; Copyright © 2020, 2021, 2024 Janneke Nieuwenhuizen <[email protected]>
@@ -68,17 +68,17 @@
                      "python3-embed" "--variable=exec_prefix"))
             (_  (exit 1)))))))
 
-(define-public gdb-14
+(define-public gdb-17
   (package
     (name "gdb")
-    (version "14.2")
+    (version "17.1")
     (source (origin
               (method url-fetch)
               (uri (string-append "mirror://gnu/gdb/gdb-"
                                   version ".tar.xz"))
               (sha256
                (base32
-                "0wkprsjyyh204fdjlkaz20k847l88i9y8m9zqsv15vcd3l3dhk9d"))))
+                "0xnqqv3j463r5rnfmblj3zwhf0l0lyy4bp1zaid8zxn9fignz68l"))))
     (build-system gnu-build-system)
     (outputs '("out" "debug"))
     (arguments
@@ -200,7 +200,7 @@ written in C, C++, Ada, Objective-C, Pascal and more.")
   ;; This is the fixed version that packages depend on.  Update it rarely
   ;; enough to avoid massive rebuilds.
   (package
-    (inherit gdb-14)
+    (inherit gdb-17)
     (version "12.1")
     (source (origin
               (method url-fetch)
@@ -211,7 +211,7 @@ written in C, C++, Ada, Objective-C, Pascal and more.")
                 "1vczsqcbh5y0gx7qrclpna0qzx26sk7lra6y8qzxam1biyzr65qf"))))
     ;; TODO: Remove this when updating gdb/pinned.
     (arguments
-     (substitute-keyword-arguments (package-arguments gdb-14)
+     (substitute-keyword-arguments (package-arguments gdb-17)
        ((#:configure-flags flags '())
         (if (target-hurd64?)
             #~'("--enable-targets=i586-pc-gnu,x86_64-pc-gnu")
@@ -220,7 +220,7 @@ written in C, C++, Ada, Objective-C, Pascal and more.")
 
 (define-public gdb-15
   (package
-    (inherit gdb-14)
+    (inherit gdb-17)
     (version "15.2")
     (source (origin
               (method url-fetch)
@@ -233,7 +233,7 @@ written in C, C++, Ada, Objective-C, Pascal and more.")
 
 (define-public gdb-16
   (package
-    (inherit gdb-14)
+    (inherit gdb-17)
     (version "16.3")
     (source (origin
               (method url-fetch)
@@ -244,17 +244,17 @@ written in C, C++, Ada, Objective-C, Pascal and more.")
                (base32
                 "1i940b04404xr44xc66c4r4nk091czqz7zzrmhbpk64aaaax1z5w"))))))
 
-(define-public gdb-17
+(define-public gdb-14
   (package
-    (inherit gdb-14)
-    (version "17.1")
+    (inherit gdb-17)
+    (version "14.2")
     (source (origin
               (method url-fetch)
               (uri (string-append "mirror://gnu/gdb/gdb-"
                                   version ".tar.xz"))
               (sha256
                (base32
-                "0xnqqv3j463r5rnfmblj3zwhf0l0lyy4bp1zaid8zxn9fignz68l"))))))
+                "0wkprsjyyh204fdjlkaz20k847l88i9y8m9zqsv15vcd3l3dhk9d"))))))
 
 (define-public gdb
   ;; The "default" version.

Reply via email to