2016-10-07 23:57:08 +02:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2017-04-03 15:01:24 +02:00
|
|
|
;;; Copyright © 2016, 2017 Andy Patterson <ajpatter@uwaterloo.ca>
|
2016-10-07 23:57:08 +02:00
|
|
|
;;;
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
;;; your option) any later version.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
;;;
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
(define-module (guix build-system asdf)
|
|
|
|
#:use-module (guix store)
|
|
|
|
#:use-module (guix utils)
|
2017-12-10 23:39:01 +01:00
|
|
|
#:use-module (guix memoization)
|
2016-10-07 23:57:08 +02:00
|
|
|
#:use-module (guix packages)
|
|
|
|
#:use-module (guix derivations)
|
|
|
|
#:use-module (guix search-paths)
|
2017-04-09 05:48:38 +02:00
|
|
|
#:use-module ((guix build utils)
|
|
|
|
#:select ((package-name->name+version
|
|
|
|
. hyphen-separated-name->name+version)))
|
2016-10-07 23:57:08 +02:00
|
|
|
#:use-module (guix build-system)
|
|
|
|
#:use-module (guix build-system gnu)
|
|
|
|
#:use-module (ice-9 match)
|
|
|
|
#:use-module (ice-9 regex)
|
|
|
|
#:use-module (srfi srfi-1)
|
|
|
|
#:use-module (srfi srfi-26)
|
|
|
|
#:export (%asdf-build-system-modules
|
|
|
|
%asdf-build-modules
|
|
|
|
asdf-build
|
|
|
|
asdf-build-system/sbcl
|
|
|
|
asdf-build-system/ecl
|
|
|
|
asdf-build-system/source
|
|
|
|
sbcl-package->cl-source-package
|
|
|
|
sbcl-package->ecl-package))
|
|
|
|
|
|
|
|
;; Commentary:
|
|
|
|
;;
|
|
|
|
;; Standard build procedure for asdf packages. This is implemented as an
|
|
|
|
;; extension of 'gnu-build-system'.
|
|
|
|
;;
|
|
|
|
;; Code:
|
|
|
|
|
|
|
|
(define %asdf-build-system-modules
|
|
|
|
;; Imported build-side modules
|
|
|
|
`((guix build asdf-build-system)
|
|
|
|
(guix build lisp-utils)
|
|
|
|
,@%gnu-build-system-modules))
|
|
|
|
|
|
|
|
(define %asdf-build-modules
|
|
|
|
;; Used (visible) build-side modules
|
|
|
|
'((guix build asdf-build-system)
|
|
|
|
(guix build utils)
|
|
|
|
(guix build lisp-utils)))
|
|
|
|
|
|
|
|
(define (default-lisp implementation)
|
|
|
|
"Return the default package for the lisp IMPLEMENTATION."
|
2018-08-21 16:27:03 +02:00
|
|
|
;; Lazily resolve the binding to avoid a circular dependency.
|
2016-10-07 23:57:08 +02:00
|
|
|
(let ((lisp-module (resolve-interface '(gnu packages lisp))))
|
|
|
|
(module-ref lisp-module implementation)))
|
|
|
|
|
|
|
|
(define* (lower/source name
|
|
|
|
#:key source inputs outputs native-inputs system target
|
|
|
|
#:allow-other-keys
|
|
|
|
#:rest arguments)
|
|
|
|
"Return a bag for NAME"
|
|
|
|
(define private-keywords
|
|
|
|
'(#:target #:inputs #:native-inputs))
|
|
|
|
|
|
|
|
(and (not target)
|
|
|
|
(bag
|
|
|
|
(name name)
|
|
|
|
(system system)
|
|
|
|
(host-inputs `(,@(if source
|
|
|
|
`(("source" ,source))
|
|
|
|
'())
|
|
|
|
,@inputs
|
|
|
|
,@(standard-packages)))
|
|
|
|
(build-inputs native-inputs)
|
|
|
|
(outputs outputs)
|
|
|
|
(build asdf-build/source)
|
|
|
|
(arguments (strip-keyword-arguments private-keywords arguments)))))
|
|
|
|
|
|
|
|
(define* (asdf-build/source store name inputs
|
|
|
|
#:key source outputs
|
|
|
|
(phases '(@ (guix build asdf-build-system)
|
|
|
|
%standard-phases/source))
|
|
|
|
(search-paths '())
|
|
|
|
(system (%current-system))
|
|
|
|
(guile #f)
|
|
|
|
(imported-modules %asdf-build-system-modules)
|
|
|
|
(modules %asdf-build-modules))
|
|
|
|
(define builder
|
|
|
|
`(begin
|
|
|
|
(use-modules ,@modules)
|
|
|
|
(asdf-build/source #:name ,name
|
|
|
|
#:source ,(match (assoc-ref inputs "source")
|
|
|
|
(((? derivation? source))
|
|
|
|
(derivation->output-path source))
|
|
|
|
((source) source)
|
|
|
|
(source source))
|
|
|
|
#:system ,system
|
|
|
|
#:phases ,phases
|
|
|
|
#:outputs %outputs
|
|
|
|
#:search-paths ',(map search-path-specification->sexp
|
|
|
|
search-paths)
|
|
|
|
#:inputs %build-inputs)))
|
|
|
|
|
|
|
|
(define guile-for-build
|
|
|
|
(match guile
|
|
|
|
((? package?)
|
|
|
|
(package-derivation store guile system #:graft? #f))
|
|
|
|
(#f
|
|
|
|
(let* ((distro (resolve-interface '(gnu packages commencement)))
|
|
|
|
(guile (module-ref distro 'guile-final)))
|
|
|
|
(package-derivation store guile system #:graft? #f)))))
|
|
|
|
|
|
|
|
(build-expression->derivation store name builder
|
|
|
|
#:inputs inputs
|
|
|
|
#:system system
|
|
|
|
#:modules imported-modules
|
|
|
|
#:outputs outputs
|
|
|
|
#:guile-for-build guile-for-build))
|
|
|
|
|
|
|
|
(define* (package-with-build-system from-build-system to-build-system
|
|
|
|
from-prefix to-prefix
|
|
|
|
#:key variant-property
|
|
|
|
phases-transformer)
|
|
|
|
"Return a precedure which takes a package PKG which uses FROM-BUILD-SYSTEM,
|
|
|
|
and returns one using TO-BUILD-SYSTEM. If PKG was prefixed by FROM-PREFIX,
|
|
|
|
the resulting package will be prefixed by TO-PREFIX. Inputs of PKG are
|
|
|
|
recursively transformed using the same rule. The result's #:phases argument
|
|
|
|
will be modified by PHASES-TRANSFORMER, an S-expression which evaluates on the
|
|
|
|
build side to a procedure of one argument.
|
|
|
|
|
|
|
|
VARIANT-PROPERTY can be added to a package's properties to indicate that the
|
|
|
|
corresponding package promise should be used as the result of this
|
|
|
|
transformation. This allows the result to differ from what the transformation
|
|
|
|
would otherwise produce.
|
|
|
|
|
|
|
|
If TO-BUILD-SYSTEM is asdf-build-system/source, the resulting package will be
|
|
|
|
set up using CL source package conventions."
|
|
|
|
(define target-is-source? (eq? asdf-build-system/source to-build-system))
|
|
|
|
|
|
|
|
(define (transform-package-name name)
|
|
|
|
(if (string-prefix? from-prefix name)
|
|
|
|
(let ((new-name (string-drop name (string-length from-prefix))))
|
|
|
|
(if (string-prefix? to-prefix new-name)
|
|
|
|
new-name
|
|
|
|
(string-append to-prefix new-name)))
|
|
|
|
name))
|
|
|
|
|
|
|
|
(define (has-from-build-system? pkg)
|
|
|
|
(eq? from-build-system (package-build-system pkg)))
|
|
|
|
|
|
|
|
(define transform
|
2017-12-10 23:39:01 +01:00
|
|
|
(mlambda (pkg)
|
|
|
|
(define rewrite
|
|
|
|
(match-lambda
|
|
|
|
((name content . rest)
|
|
|
|
(let* ((is-package? (package? content))
|
|
|
|
(new-content (if is-package? (transform content) content)))
|
|
|
|
`(,name ,new-content ,@rest)))))
|
|
|
|
|
|
|
|
;; Special considerations for source packages: CL inputs become
|
|
|
|
;; propagated, and un-handled arguments are removed.
|
|
|
|
|
2019-01-09 15:01:40 +01:00
|
|
|
(define (new-propagated-inputs)
|
2017-12-10 23:39:01 +01:00
|
|
|
(if target-is-source?
|
|
|
|
(map rewrite
|
|
|
|
(append
|
2016-10-07 23:57:08 +02:00
|
|
|
(filter (match-lambda
|
|
|
|
((_ input . _)
|
2017-12-10 23:39:01 +01:00
|
|
|
(has-from-build-system? input)))
|
|
|
|
(append (package-inputs pkg)
|
|
|
|
;; The native inputs might be needed just
|
|
|
|
;; to load the system.
|
|
|
|
(package-native-inputs pkg)))
|
|
|
|
(package-propagated-inputs pkg)))
|
|
|
|
|
|
|
|
(map rewrite (package-propagated-inputs pkg))))
|
|
|
|
|
|
|
|
(define (new-inputs inputs-getter)
|
|
|
|
(if target-is-source?
|
|
|
|
(map rewrite
|
|
|
|
(filter (match-lambda
|
|
|
|
((_ input . _)
|
|
|
|
(not (has-from-build-system? input))))
|
|
|
|
(inputs-getter pkg)))
|
|
|
|
(map rewrite (inputs-getter pkg))))
|
|
|
|
|
|
|
|
(define base-arguments
|
|
|
|
(if target-is-source?
|
|
|
|
(strip-keyword-arguments
|
|
|
|
'(#:tests? #:asd-file #:lisp #:asd-system-name #:test-asd-file)
|
|
|
|
(package-arguments pkg))
|
|
|
|
(package-arguments pkg)))
|
|
|
|
|
|
|
|
(cond
|
|
|
|
((and variant-property
|
|
|
|
(assoc-ref (package-properties pkg) variant-property))
|
|
|
|
=> force)
|
|
|
|
|
|
|
|
((has-from-build-system? pkg)
|
|
|
|
(package
|
|
|
|
(inherit pkg)
|
|
|
|
(location (package-location pkg))
|
|
|
|
(name (transform-package-name (package-name pkg)))
|
|
|
|
(build-system to-build-system)
|
|
|
|
(arguments
|
|
|
|
(substitute-keyword-arguments base-arguments
|
|
|
|
((#:phases phases) (list phases-transformer phases))))
|
|
|
|
(inputs (new-inputs package-inputs))
|
2019-01-09 15:01:40 +01:00
|
|
|
(propagated-inputs (new-propagated-inputs))
|
2017-12-10 23:39:01 +01:00
|
|
|
(native-inputs (new-inputs package-native-inputs))
|
|
|
|
(outputs (if target-is-source?
|
|
|
|
'("out")
|
|
|
|
(package-outputs pkg)))))
|
|
|
|
(else pkg))))
|
2016-10-07 23:57:08 +02:00
|
|
|
|
|
|
|
transform)
|
|
|
|
|
|
|
|
(define (strip-variant-as-necessary variant pkg)
|
|
|
|
(define properties (package-properties pkg))
|
|
|
|
(if (assoc variant properties)
|
|
|
|
(package
|
|
|
|
(inherit pkg)
|
|
|
|
(properties (alist-delete variant properties)))
|
|
|
|
pkg))
|
|
|
|
|
2017-04-03 15:01:26 +02:00
|
|
|
(define (lower lisp-type)
|
2016-10-07 23:57:08 +02:00
|
|
|
(lambda* (name
|
|
|
|
#:key source inputs outputs native-inputs system target
|
2017-04-03 15:01:26 +02:00
|
|
|
(lisp (default-lisp (string->symbol lisp-type)))
|
2016-10-07 23:57:08 +02:00
|
|
|
#:allow-other-keys
|
|
|
|
#:rest arguments)
|
|
|
|
"Return a bag for NAME"
|
|
|
|
(define private-keywords
|
|
|
|
'(#:target #:inputs #:native-inputs #:lisp))
|
|
|
|
|
|
|
|
(and (not target)
|
|
|
|
(bag
|
|
|
|
(name name)
|
|
|
|
(system system)
|
|
|
|
(host-inputs `(,@(if source
|
|
|
|
`(("source" ,source))
|
|
|
|
'())
|
|
|
|
,@inputs
|
|
|
|
,@(standard-packages)))
|
2017-04-03 15:01:26 +02:00
|
|
|
(build-inputs `((,lisp-type ,lisp)
|
2016-10-07 23:57:08 +02:00
|
|
|
,@native-inputs))
|
|
|
|
(outputs outputs)
|
2017-04-03 15:01:26 +02:00
|
|
|
(build (asdf-build lisp-type))
|
2016-10-07 23:57:08 +02:00
|
|
|
(arguments (strip-keyword-arguments private-keywords arguments))))))
|
|
|
|
|
2017-04-03 15:01:26 +02:00
|
|
|
(define (asdf-build lisp-type)
|
2016-10-07 23:57:08 +02:00
|
|
|
(lambda* (store name inputs
|
|
|
|
#:key source outputs
|
|
|
|
(tests? #t)
|
|
|
|
(asd-file #f)
|
2017-04-09 05:48:38 +02:00
|
|
|
(asd-system-name #f)
|
2017-04-09 05:43:31 +02:00
|
|
|
(test-asd-file #f)
|
2016-10-07 23:57:08 +02:00
|
|
|
(phases '(@ (guix build asdf-build-system)
|
|
|
|
%standard-phases))
|
|
|
|
(search-paths '())
|
|
|
|
(system (%current-system))
|
|
|
|
(guile #f)
|
|
|
|
(imported-modules %asdf-build-system-modules)
|
|
|
|
(modules %asdf-build-modules))
|
|
|
|
|
2017-04-09 05:48:38 +02:00
|
|
|
(define system-name
|
|
|
|
(or asd-system-name
|
|
|
|
(string-drop
|
|
|
|
;; NAME is the value returned from `package-full-name'.
|
|
|
|
(hyphen-separated-name->name+version name)
|
|
|
|
(1+ (string-length lisp-type))))) ; drop the "<lisp>-" prefix.
|
|
|
|
|
2016-10-07 23:57:08 +02:00
|
|
|
(define builder
|
|
|
|
`(begin
|
|
|
|
(use-modules ,@modules)
|
2017-04-03 15:01:27 +02:00
|
|
|
(parameterize ((%lisp (string-append
|
|
|
|
(assoc-ref %build-inputs ,lisp-type)
|
|
|
|
"/bin/" ,lisp-type))
|
|
|
|
(%lisp-type ,lisp-type))
|
|
|
|
(asdf-build #:name ,name
|
|
|
|
#:source ,(match (assoc-ref inputs "source")
|
|
|
|
(((? derivation? source))
|
|
|
|
(derivation->output-path source))
|
|
|
|
((source) source)
|
|
|
|
(source source))
|
2017-04-03 15:01:29 +02:00
|
|
|
#:asd-file ,(or asd-file (string-append system-name ".asd"))
|
2017-04-09 05:48:38 +02:00
|
|
|
#:asd-system-name ,system-name
|
2017-04-09 05:43:31 +02:00
|
|
|
#:test-asd-file ,test-asd-file
|
2017-04-03 15:01:27 +02:00
|
|
|
#:system ,system
|
|
|
|
#:tests? ,tests?
|
|
|
|
#:phases ,phases
|
|
|
|
#:outputs %outputs
|
|
|
|
#:search-paths ',(map search-path-specification->sexp
|
|
|
|
search-paths)
|
|
|
|
#:inputs %build-inputs))))
|
2016-10-07 23:57:08 +02:00
|
|
|
|
|
|
|
(define guile-for-build
|
|
|
|
(match guile
|
|
|
|
((? package?)
|
|
|
|
(package-derivation store guile system #:graft? #f))
|
|
|
|
(#f
|
|
|
|
(let* ((distro (resolve-interface '(gnu packages commencement)))
|
|
|
|
(guile (module-ref distro 'guile-final)))
|
|
|
|
(package-derivation store guile system #:graft? #f)))))
|
|
|
|
|
|
|
|
(build-expression->derivation store name builder
|
|
|
|
#:inputs inputs
|
|
|
|
#:system system
|
|
|
|
#:modules imported-modules
|
|
|
|
#:outputs outputs
|
|
|
|
#:guile-for-build guile-for-build)))
|
|
|
|
|
|
|
|
(define asdf-build-system/sbcl
|
|
|
|
(build-system
|
|
|
|
(name 'asdf/sbcl)
|
|
|
|
(description "The build system for ASDF binary packages using SBCL")
|
|
|
|
(lower (lower "sbcl"))))
|
|
|
|
|
|
|
|
(define asdf-build-system/ecl
|
|
|
|
(build-system
|
|
|
|
(name 'asdf/ecl)
|
|
|
|
(description "The build system for ASDF binary packages using ECL")
|
|
|
|
(lower (lower "ecl"))))
|
|
|
|
|
|
|
|
(define asdf-build-system/source
|
|
|
|
(build-system
|
|
|
|
(name 'asdf/source)
|
|
|
|
(description "The build system for ASDF source packages")
|
|
|
|
(lower lower/source)))
|
|
|
|
|
|
|
|
(define sbcl-package->cl-source-package
|
|
|
|
(let* ((property 'cl-source-variant)
|
|
|
|
(transformer
|
|
|
|
(package-with-build-system asdf-build-system/sbcl
|
|
|
|
asdf-build-system/source
|
|
|
|
"sbcl-"
|
|
|
|
"cl-"
|
|
|
|
#:variant-property property
|
|
|
|
#:phases-transformer
|
|
|
|
'(const %standard-phases/source))))
|
|
|
|
(lambda (pkg)
|
|
|
|
(transformer
|
|
|
|
(strip-variant-as-necessary property pkg)))))
|
|
|
|
|
|
|
|
(define sbcl-package->ecl-package
|
|
|
|
(let* ((property 'ecl-variant)
|
|
|
|
(transformer
|
|
|
|
(package-with-build-system asdf-build-system/sbcl
|
|
|
|
asdf-build-system/ecl
|
|
|
|
"sbcl-"
|
|
|
|
"ecl-"
|
|
|
|
#:variant-property property
|
|
|
|
#:phases-transformer
|
|
|
|
'identity)))
|
|
|
|
(lambda (pkg)
|
|
|
|
(transformer
|
|
|
|
(strip-variant-as-necessary property pkg)))))
|
|
|
|
|
|
|
|
;;; asdf.scm ends here
|