all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#38636] [PATCH] gnu: gfortran: change to a hidden package
@ 2019-12-16 11:18 Konrad Hinsen
  2019-12-16 12:51 ` [bug#38636] Rationale Konrad Hinsen
  2019-12-17 15:22 ` bug#38636: [PATCH] gnu: gfortran: change to a hidden package Ludovic Courtès
  0 siblings, 2 replies; 3+ messages in thread
From: Konrad Hinsen @ 2019-12-16 11:18 UTC (permalink / raw)
  To: 38636

* gnu/packages/gcc.scm (gfortran-4.8): hidden package.
* gnu/packages/gcc.scm (gfortran-4.9): hidden package.
* gnu/packages/gcc.scm (gfortran-5): hidden package.
* gnu/packages/gcc.scm (gfortran-6): hidden package.
* gnu/packages/gcc.scm (gfortran-7): hidden package.
* gnu/packages/gcc.scm (gfortran-8): hidden package.
* gnu/packages/gcc.scm (gfortran-9): hidden package.
---
 gnu/packages/gcc.scm | 35 +++++++++++++++++++++--------------
 1 file changed, 21 insertions(+), 14 deletions(-)

diff --git a/gnu/packages/gcc.scm b/gnu/packages/gcc.scm
index bda6a2b48a..29b9d34569 100644
--- a/gnu/packages/gcc.scm
+++ b/gnu/packages/gcc.scm
@@ -649,32 +649,39 @@ as the 'native-search-paths' field."
          (files '("lib" "lib64")))))
 
 (define-public gfortran-4.8
-  (custom-gcc gcc-4.8 "gfortran" '("fortran")
-              %generic-search-paths))
+  (hidden-package
+   (custom-gcc gcc-4.8 "gfortran" '("fortran")
+               %generic-search-paths)))
 
 (define-public gfortran-4.9
-  (custom-gcc gcc-4.9 "gfortran" '("fortran")
-              %generic-search-paths))
+  (hidden-package
+   (custom-gcc gcc-4.9 "gfortran" '("fortran")
+               %generic-search-paths)))
 
 (define-public gfortran-5
-  (custom-gcc gcc-5 "gfortran" '("fortran")
-              %generic-search-paths))
+  (hidden-package
+   (custom-gcc gcc-5 "gfortran" '("fortran")
+               %generic-search-paths)))
 
 (define-public gfortran-6
-  (custom-gcc gcc-6 "gfortran" '("fortran")
-              %generic-search-paths))
+  (hidden-package
+   (custom-gcc gcc-6 "gfortran" '("fortran")
+               %generic-search-paths)))
 
 (define-public gfortran-7
-  (custom-gcc gcc-7 "gfortran" '("fortran")
-              %generic-search-paths))
+  (hidden-package
+   (custom-gcc gcc-7 "gfortran" '("fortran")
+               %generic-search-paths)))
 
 (define-public gfortran-8
-  (custom-gcc gcc-8 "gfortran" '("fortran")
-              %generic-search-paths))
+  (hidden-package
+   (custom-gcc gcc-8 "gfortran" '("fortran")
+               %generic-search-paths)))
 
 (define-public gfortran-9
-  (custom-gcc gcc-9 "gfortran" '("fortran")
-              %generic-search-paths))
+  (hidden-package
+   (custom-gcc gcc-9 "gfortran" '("fortran")
+               %generic-search-paths)))
 
 (define-public gfortran
   ;; Note: Update this when GCC changes!  We cannot use
-- 
2.24.1

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2019-12-17 15:23 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-12-16 11:18 [bug#38636] [PATCH] gnu: gfortran: change to a hidden package Konrad Hinsen
2019-12-16 12:51 ` [bug#38636] Rationale Konrad Hinsen
2019-12-17 15:22 ` bug#38636: [PATCH] gnu: gfortran: change to a hidden package Ludovic Courtès

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.