From 1b13df509e435a08e1472347edbcd79c0c3eb9a7 Mon Sep 17 00:00:00 2001 From: Jason Self Date: Wed, 30 Jul 2014 07:55:53 -0700 Subject: [PATCH 1/4] gnu: linux-libre: Update to 3.15.7. * gnu/packages/linux.scm (linux-libre): Update to version 3.15.7. --- gnu/packages/linux.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 3ffe2a4cdd..048cdbcdb0 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -186,7 +186,7 @@ for SYSTEM, or #f if there is no configuration for SYSTEM." #f))) (define-public linux-libre - (let* ((version "3.15.6") + (let* ((version "3.15.7") (build-phase '(lambda* (#:key system inputs #:allow-other-keys #:rest args) ;; Apply the neat patch. @@ -259,7 +259,7 @@ for SYSTEM, or #f if there is no configuration for SYSTEM." (uri (linux-libre-urls version)) (sha256 (base32 - "07v45q8r9fz9jgj1m7dibbmcdlzfzpcj7kh2bp1s1pv512h7fnw0")))) + "1cgyq0v5jr8pj0qypdmnym7smzjymdj4hp0743f5vv0kr3xlzk5i")))) (build-system gnu-build-system) (native-inputs `(("perl" ,perl) ("bc" ,bc) From c4df90a594672042ae106730ab5ce07fe85cf46f Mon Sep 17 00:00:00 2001 From: Mark H Weaver Date: Thu, 31 Jul 2014 18:19:22 -0400 Subject: [PATCH 2/4] gnu: gccgo: Suppress the separate "lib" output. Fixes . * gnu/packages/gcc.scm (custom-gcc): Add 'separate-lib-output?' keyword argument. (gccgo-4.8): Pass #:separate-lib-output? #f to 'custom-gcc'. --- gnu/packages/gcc.scm | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/gnu/packages/gcc.scm b/gnu/packages/gcc.scm index aed2e8925e..938c38e670 100644 --- a/gnu/packages/gcc.scm +++ b/gnu/packages/gcc.scm @@ -281,10 +281,13 @@ Go. It also includes runtime support libraries for these languages.") (base32 "0zki3ngi0gsidnmsp88mjl2868cc7cm5wm1vwqw6znja28d7hd6k")))))) -(define (custom-gcc gcc name languages) +(define* (custom-gcc gcc name languages #:key (separate-lib-output? #t)) "Return a custom version of GCC that supports LANGUAGES." (package (inherit gcc) (name name) + (outputs (if separate-lib-output? + (package-outputs gcc) + (delete "lib" (package-outputs gcc)))) (arguments (substitute-keyword-arguments `(#:modules ((guix build gnu-build-system) (guix build utils) @@ -302,7 +305,11 @@ Go. It also includes runtime support libraries for these languages.") (custom-gcc gcc-4.8 "gfortran" '("fortran"))) (define-public gccgo-4.8 - (custom-gcc gcc-4.8 "gccgo" '("go"))) + (custom-gcc gcc-4.8 "gccgo" '("go") + ;; Suppress the separate "lib" output, because otherwise the + ;; "lib" and "out" outputs would refer to each other, creating + ;; a cyclic dependency. + #:separate-lib-output? #f)) (define-public gcc-objc-4.8 (custom-gcc gcc-4.8 "gcc-objc" '("objc"))) From 087f67b641b117fe52e3bed5dca9993439b6d1ca Mon Sep 17 00:00:00 2001 From: Jason Self Date: Fri, 1 Aug 2014 15:35:16 -0700 Subject: [PATCH 3/4] gnu: linux-libre: Update to 3.15.8. * gnu/packages/linux.scm (linux-libre): Update to version 3.15.8. --- gnu/packages/linux.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 048cdbcdb0..105a8cb5c6 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -186,7 +186,7 @@ for SYSTEM, or #f if there is no configuration for SYSTEM." #f))) (define-public linux-libre - (let* ((version "3.15.7") + (let* ((version "3.15.8") (build-phase '(lambda* (#:key system inputs #:allow-other-keys #:rest args) ;; Apply the neat patch. @@ -259,7 +259,7 @@ for SYSTEM, or #f if there is no configuration for SYSTEM." (uri (linux-libre-urls version)) (sha256 (base32 - "1cgyq0v5jr8pj0qypdmnym7smzjymdj4hp0743f5vv0kr3xlzk5i")))) + "1ichq7b08rrfq61i8kpan9vxw9mxcfpcl8cw0a6lbc1ycwzvm7xw")))) (build-system gnu-build-system) (native-inputs `(("perl" ,perl) ("bc" ,bc) From 684a2f59748d55de62b45c190127b704d4cdcb60 Mon Sep 17 00:00:00 2001 From: Mark H Weaver Date: Sun, 3 Aug 2014 12:34:40 -0400 Subject: [PATCH 4/4] gnu: gdb: Update to 7.8. * gnu/packages/gdb.scm (gdb): Update to 7.8. Add 'guile' and 'python' as inputs. Add 'pkg-config' as a native-input. --- gnu/packages/gdb.scm | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/gnu/packages/gdb.scm b/gnu/packages/gdb.scm index 1b8a0bbe22..b8d622e89d 100644 --- a/gnu/packages/gdb.scm +++ b/gnu/packages/gdb.scm @@ -24,7 +24,9 @@ #:use-module (gnu packages texinfo) #:use-module (gnu packages multiprecision) #:use-module (gnu packages xml) + #:use-module (gnu packages guile) #:use-module (gnu packages python) + #:use-module (gnu packages pkg-config) #:use-module ((guix licenses) #:select (gpl3+)) #:use-module (guix packages) #:use-module (guix download) @@ -33,14 +35,14 @@ (define-public gdb (package (name "gdb") - (version "7.7.1") + (version "7.8") (source (origin (method url-fetch) (uri (string-append "mirror://gnu/gdb/gdb-" - version ".tar.bz2")) + version ".tar.xz")) (sha256 (base32 - "199sn1p0gzli6icp9dcvrphdvyi7hm4cc9zhziq0q6vg81h55g8d")))) + "0xdqxjj77q60k19hn85msnbv9nchnpzi0lp7z7hm97zpfkhspi29")))) (build-system gnu-build-system) (arguments '(#:tests? #f ; FIXME "make check" fails on single-processor systems. @@ -56,14 +58,17 @@ ("gmp" ,gmp) ("readline" ,readline) ("ncurses" ,ncurses) - ("python" ,python-wrapper) + ("guile" ,guile-2.0) + ("python" ,python) + ("python-wrapper" ,python-wrapper) ("dejagnu" ,dejagnu) ;; Allow use of XML-formatted syscall information. This enables 'catch ;; syscall' and similar commands. ("libxml2" ,libxml2))) (native-inputs - `(("texinfo" ,texinfo))) + `(("texinfo" ,texinfo) + ("pkg-config" ,pkg-config))) (home-page "http://www.gnu.org/software/gdb/") (synopsis "The GNU debugger") (description