gnu: Disambiguate packages with the same name.
* gnu/packages/algebra.scm (fftw-with-threads, fftwf-with-threads): Add 'name' field. * gnu/packages/llvm.scm (llvm-for-extempore): Likewise.
This commit is contained in:
parent
9af076245f
commit
7355634db3
|
@ -1,6 +1,6 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2012, 2013, 2014, 2015, 2016 Andreas Enge <andreas@enge.fr>
|
;;; Copyright © 2012, 2013, 2014, 2015, 2016 Andreas Enge <andreas@enge.fr>
|
||||||
;;; Copyright © 2013, 2015 Ludovic Courtès <ludo@gnu.org>
|
;;; Copyright © 2013, 2015, 2017 Ludovic Courtès <ludo@gnu.org>
|
||||||
;;; Copyright © 2016 Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
;;; Copyright © 2016 Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
||||||
;;; Copyright © 2014 Mark H Weaver <mhw@netris.org>
|
;;; Copyright © 2014 Mark H Weaver <mhw@netris.org>
|
||||||
;;; Copyright © 2016 Ricardo Wurmus <rekado@elephly.net>
|
;;; Copyright © 2016 Ricardo Wurmus <rekado@elephly.net>
|
||||||
|
@ -581,6 +581,7 @@ cosine/ sine transforms or DCT/DST).")
|
||||||
;; "--enable-flags" is added to the fftw and fftwf packages.
|
;; "--enable-flags" is added to the fftw and fftwf packages.
|
||||||
(define-public fftw-with-threads
|
(define-public fftw-with-threads
|
||||||
(package (inherit fftw)
|
(package (inherit fftw)
|
||||||
|
(name "fftw-pthreads")
|
||||||
(arguments
|
(arguments
|
||||||
(substitute-keyword-arguments (package-arguments fftw)
|
(substitute-keyword-arguments (package-arguments fftw)
|
||||||
((#:configure-flags flags)
|
((#:configure-flags flags)
|
||||||
|
@ -588,6 +589,7 @@ cosine/ sine transforms or DCT/DST).")
|
||||||
|
|
||||||
(define-public fftwf-with-threads
|
(define-public fftwf-with-threads
|
||||||
(package (inherit fftwf)
|
(package (inherit fftwf)
|
||||||
|
(name "fftwf-pthreads")
|
||||||
(arguments
|
(arguments
|
||||||
(substitute-keyword-arguments (package-arguments fftwf)
|
(substitute-keyword-arguments (package-arguments fftwf)
|
||||||
((#:configure-flags flags)
|
((#:configure-flags flags)
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2014, 2016 Eric Bavier <bavier@member.fsf.org>
|
;;; Copyright © 2014, 2016 Eric Bavier <bavier@member.fsf.org>
|
||||||
;;; Copyright © 2015 Mark H Weaver <mhw@netris.org>
|
;;; Copyright © 2015 Mark H Weaver <mhw@netris.org>
|
||||||
;;; Copyright © 2015 Ludovic Courtès <ludo@gnu.org>
|
;;; Copyright © 2015, 2017 Ludovic Courtès <ludo@gnu.org>
|
||||||
;;; Copyright © 2016 Dennis Mungai <dmngaie@gmail.com>
|
;;; Copyright © 2016 Dennis Mungai <dmngaie@gmail.com>
|
||||||
;;; Copyright © 2016 Ricardo Wurmus <rekado@elephly.net>
|
;;; Copyright © 2016 Ricardo Wurmus <rekado@elephly.net>
|
||||||
;;;
|
;;;
|
||||||
|
@ -283,6 +283,7 @@ code analysis tools.")
|
||||||
|
|
||||||
(define-public llvm-for-extempore
|
(define-public llvm-for-extempore
|
||||||
(package (inherit llvm-3.7)
|
(package (inherit llvm-3.7)
|
||||||
|
(name "llvm-for-extempore")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(inherit (package-source llvm-3.7))
|
(inherit (package-source llvm-3.7))
|
||||||
|
|
Loading…
Reference in New Issue