guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 267c8648221f929f0b076bcaadb58c1ef6d64ef3
Author: Maxim Cournoyer <[email protected]>
AuthorDate: Thu Oct 30 16:20:03 2025 +0900

    Revert "gnu: binutils: Fix indentation."
    
    This reverts commit afe80d2a6356f016d5e2a9f5efbb83d783593f9f.
---
 gnu/packages/base.scm | 103 +++++++++++++++++++++++++-------------------------
 1 file changed, 51 insertions(+), 52 deletions(-)

diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm
index 93019516a6..a9e97e0371 100644
--- a/gnu/packages/base.scm
+++ b/gnu/packages/base.scm
@@ -693,63 +693,62 @@ change.  GNU make offers many powerful extensions over 
the standard utility.")
 
 (define-public binutils
   (package
-    (name "binutils")
-    (version "2.44")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (string-append "mirror://gnu/binutils/binutils-"
-                           version ".tar.bz2"))
-       (sha256
-        (base32 "0fnwaasfglbphqzvz5n25js9gl695p7pjbmb1z81g8gsc6k90qzn"))
-       (patches (search-patches
-                 "binutils-2.41-fix-cross.patch"
-                 "binutils-loongson-workaround.patch"))))
-    (build-system gnu-build-system)
-    (arguments
-     (list #:out-of-source? #t          ;recommended in the README
-           #:configure-flags
-           #~'( ;; Add `-static-libgcc' to not retain a dependency
-               ;; on GCC when bootstrapping.
-               "LDFLAGS=-static-libgcc"
-
-               ;; Turn on --enable-new-dtags by default to make the
-               ;; linker set RUNPATH instead of RPATH on binaries.
-               ;; This is important because RUNPATH can be overriden
-               ;; using LD_LIBRARY_PATH at runtime.
-               "--enable-new-dtags"
-
-               ;; Don't search under /usr/lib & co.
-               "--with-lib-path=/no-ld-lib-path"
-
-               ;; Install BFD.  It ends up in a hidden directory,
-               ;; but it's here.
-               "--enable-install-libbfd"
-
-               ;; Make sure 'ar' and 'ranlib' produce archives in a
-               ;; deterministic fashion.
-               "--enable-deterministic-archives"
-
-               "--enable-64-bit-bfd"
-               "--enable-compressed-debug-sections=all"
-               "--enable-lto"
-               "--enable-separate-code"
-               "--enable-threads")
-
-           ;; For some reason, the build machinery insists on rebuilding .info
-           ;; files, even though they're already provided by the tarball.
-           #:make-flags #~'("MAKEINFO=true")))
-    (native-inputs (list bison))        ;needed to build 'gprofng'
-    (synopsis "Binary utilities: bfd gas gprof ld")
-    (description
-     "GNU Binutils is a collection of tools for working with binary files.
+   (name "binutils")
+   (version "2.44")
+   (source
+    (origin
+      (method url-fetch)
+      (uri (string-append "mirror://gnu/binutils/binutils-"
+                          version ".tar.bz2"))
+      (sha256
+       (base32 "0fnwaasfglbphqzvz5n25js9gl695p7pjbmb1z81g8gsc6k90qzn"))
+      (patches (search-patches
+                "binutils-2.41-fix-cross.patch"
+                "binutils-loongson-workaround.patch"))))
+   (build-system gnu-build-system)
+   (arguments
+    (list #:out-of-source? #t ;recommended in the README
+          #:configure-flags #~'(;; Add `-static-libgcc' to not retain a 
dependency
+                                ;; on GCC when bootstrapping.
+                                "LDFLAGS=-static-libgcc"
+
+                                ;; Turn on --enable-new-dtags by default to 
make the
+                                ;; linker set RUNPATH instead of RPATH on 
binaries.
+                                ;; This is important because RUNPATH can be 
overriden
+                                ;; using LD_LIBRARY_PATH at runtime.
+                                "--enable-new-dtags"
+
+                                ;; Don't search under /usr/lib & co.
+                                "--with-lib-path=/no-ld-lib-path"
+
+                                ;; Install BFD.  It ends up in a hidden 
directory,
+                                ;; but it's here.
+                                "--enable-install-libbfd"
+
+                                ;; Make sure 'ar' and 'ranlib' produce 
archives in a
+                                ;; deterministic fashion.
+                                "--enable-deterministic-archives"
+
+                                "--enable-64-bit-bfd"
+                                "--enable-compressed-debug-sections=all"
+                                "--enable-lto"
+                                "--enable-separate-code"
+                                "--enable-threads")
+
+          ;; For some reason, the build machinery insists on rebuilding .info
+          ;; files, even though they're already provided by the tarball.
+          #:make-flags #~'("MAKEINFO=true")))
+   (native-inputs (list bison))                   ;needed to build 'gprofng'
+   (synopsis "Binary utilities: bfd gas gprof ld")
+   (description
+    "GNU Binutils is a collection of tools for working with binary files.
 Perhaps the most notable are \"ld\", a linker, and \"as\", an assembler.
 Other tools include programs to display binary profiling information, list
 the strings in a binary file, and utilities for working with archives.  The
 \"bfd\" library for working with executable and object formats is also
 included.")
-    (license gpl3+)
-    (home-page "https://www.gnu.org/software/binutils/";)))
+   (license gpl3+)
+   (home-page "https://www.gnu.org/software/binutils/";)))
 
 ;; FIXME: ath9k-firmware-htc-binutils.patch do not apply on 2.34 because of a
 ;; big refactoring of xtensa-modules.c (commit 567607c11fbf7105 upstream).

Reply via email to