guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

09/09: gnu: gfortran-toolchain, gdc-toolchain: Make visible again.


From: guix-commits
Subject: 09/09: gnu: gfortran-toolchain, gdc-toolchain: Make visible again.
Date: Thu, 6 Jan 2022 10:41:31 -0500 (EST)

civodul pushed a commit to branch master
in repository guix.

commit af1b5de6d8a54439ef3f7e1f5fe9a8e7d109972d
Author: Ludovic Courtès <ludovic.courtes@inria.fr>
AuthorDate: Thu Jan 6 16:18:06 2022 +0100

    gnu: gfortran-toolchain, gdc-toolchain: Make visible again.
    
    These two packages were made accidentally "hidden" in commit
    2576e2019d2f5049ad3dc51404c7e991af45d1d6.
    
    * gnu/packages/commencement.scm (make-gcc-toolchain): Remove the
    'hidden?' property.
---
 gnu/packages/commencement.scm | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index 8c81098bc0..a067c9cd27 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -1,5 +1,5 @@
 ;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021 
Ludovic Courtès <ludo@gnu.org>
+;;; Copyright © 2012-2022 Ludovic Courtès <ludo@gnu.org>
 ;;; Copyright © 2014 Andreas Enge <andreas@enge.fr>
 ;;; Copyright © 2012 Nikita Karetnikov <nikita@karetnikov.org>
 ;;; Copyright © 2014, 2015, 2017 Mark H Weaver <mhw@netris.org>
@@ -3768,7 +3768,10 @@ COREUTILS-FINAL vs. COREUTILS, etc."
        (append (package-search-paths gcc)
                (package-search-paths libc)))
 
-      (properties (package-properties gcc))  ;for 'compiler-cpu-architectures'
+      ;; Copy the 'compiler-cpu-architectures' property and other things that
+      ;; may be useful, but not the 'hidden?' property.
+      (properties (alist-delete 'hidden? (package-properties gcc)))
+
       (license (package-license gcc))
       (synopsis "Complete GCC tool chain for C/C++ development")
       (description



reply via email to

[Prev in Thread] Current Thread [Next in Thread]