distro: Rename (distro ...) to (distro packages ...).
* distro/base.scm, distro/ld-wrapper.scm: Move to `distro/packages'. Adjust LD-WRAPPER-BOOT3 input file name accordingly. * Makefile.am (MODULES): Adjust accordingly. * distro.scm (%distro-module-directory): Change to "/distro/packages". * guix/build-system/gnu.scm (standard-inputs): Change module name to (distro packages base). * tests/packages.scm (test-packages): Likewise.
This commit is contained in:
parent
8ffae202ac
commit
1f455fdca6
|
@ -35,8 +35,8 @@ MODULES = \
|
||||||
guix/packages.scm \
|
guix/packages.scm \
|
||||||
guix.scm \
|
guix.scm \
|
||||||
distro.scm \
|
distro.scm \
|
||||||
distro/base.scm \
|
distro/packages/base.scm \
|
||||||
distro/ld-wrapper.scm
|
distro/packages/ld-wrapper.scm
|
||||||
|
|
||||||
GOBJECTS = $(MODULES:%.scm=%.go)
|
GOBJECTS = $(MODULES:%.scm=%.go)
|
||||||
|
|
||||||
|
|
|
@ -48,7 +48,7 @@
|
||||||
(define %distro-module-directory
|
(define %distro-module-directory
|
||||||
;; Absolute path of the (distro ...) module root.
|
;; Absolute path of the (distro ...) module root.
|
||||||
(string-append (dirname (search-path %load-path "distro.scm"))
|
(string-append (dirname (search-path %load-path "distro.scm"))
|
||||||
"/distro"))
|
"/distro/packages"))
|
||||||
|
|
||||||
(define (package-files)
|
(define (package-files)
|
||||||
"Return the list of files that implement distro modules."
|
"Return the list of files that implement distro modules."
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
;;; You should have received a copy of the GNU General Public License
|
;;; You should have received a copy of the GNU General Public License
|
||||||
;;; along with Guix. If not, see <http://www.gnu.org/licenses/>.
|
;;; along with Guix. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
(define-module (distro base)
|
(define-module (distro packages base)
|
||||||
#:use-module (distro)
|
#:use-module (distro)
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
#:use-module (guix ftp)
|
#:use-module (guix ftp)
|
||||||
|
@ -1676,7 +1676,8 @@ exec ~a/bin/~a-gcc -B~a/lib -Wl,-dynamic-linker -Wl,~a/lib/~a \"$@\"~%"
|
||||||
(build-system trivial-build-system)
|
(build-system trivial-build-system)
|
||||||
(inputs `(("binutils" ,binutils-final)
|
(inputs `(("binutils" ,binutils-final)
|
||||||
("guile" ,(nixpkgs-derivation* "guile"))
|
("guile" ,(nixpkgs-derivation* "guile"))
|
||||||
("wrapper" ,(search-path %load-path "distro/ld-wrapper.scm"))))
|
("wrapper" ,(search-path %load-path
|
||||||
|
"distro/packages/ld-wrapper.scm"))))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:modules ((guix build utils))
|
`(#:modules ((guix build utils))
|
||||||
#:builder (begin
|
#:builder (begin
|
|
@ -7,7 +7,7 @@
|
||||||
# Use `load-compiled' because `load' (and `-l') doesn't otherwise load our
|
# Use `load-compiled' because `load' (and `-l') doesn't otherwise load our
|
||||||
# .go file (see <http://bugs.gnu.org/12519>).
|
# .go file (see <http://bugs.gnu.org/12519>).
|
||||||
|
|
||||||
main="(@ (distro ld-wrapper) ld-wrapper)"
|
main="(@ (distro packages ld-wrapper) ld-wrapper)"
|
||||||
exec @GUILE@ -c "(load-compiled \"$0.go\") (apply $main (cdr (command-line)))" "$@"
|
exec @GUILE@ -c "(load-compiled \"$0.go\") (apply $main (cdr (command-line)))" "$@"
|
||||||
!#
|
!#
|
||||||
;;; Guix --- Nix package management from Guile. -*- coding: utf-8 -*-
|
;;; Guix --- Nix package management from Guile. -*- coding: utf-8 -*-
|
||||||
|
@ -28,7 +28,7 @@ exec @GUILE@ -c "(load-compiled \"$0.go\") (apply $main (cdr (command-line)))" "
|
||||||
;;; You should have received a copy of the GNU General Public License
|
;;; You should have received a copy of the GNU General Public License
|
||||||
;;; along with Guix. If not, see <http://www.gnu.org/licenses/>.
|
;;; along with Guix. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
(define-module (distro ld-wrapper)
|
(define-module (distro packages ld-wrapper)
|
||||||
#:use-module (srfi srfi-1)
|
#:use-module (srfi srfi-1)
|
||||||
#:export (ld-wrapper))
|
#:export (ld-wrapper))
|
||||||
|
|
|
@ -87,8 +87,8 @@ System: GCC, GNU Make, Bash, Coreutils, etc."
|
||||||
(z
|
(z
|
||||||
(error "invalid standard input" z)))
|
(error "invalid standard input" z)))
|
||||||
|
|
||||||
;; Resolve (distro base) lazily to hide circular dependency.
|
;; Resolve (distro packages base) lazily to hide circular dependency.
|
||||||
(let* ((distro (resolve-module '(distro base)))
|
(let* ((distro (resolve-module '(distro packages base)))
|
||||||
(inputs (module-ref distro '%final-inputs)))
|
(inputs (module-ref distro '%final-inputs)))
|
||||||
(append inputs
|
(append inputs
|
||||||
(append-map (match-lambda
|
(append-map (match-lambda
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
#:use-module (guix build-system trivial)
|
#:use-module (guix build-system trivial)
|
||||||
#:use-module (guix build-system gnu)
|
#:use-module (guix build-system gnu)
|
||||||
#:use-module (distro)
|
#:use-module (distro)
|
||||||
#:use-module (distro base)
|
#:use-module (distro packages base)
|
||||||
#:use-module (srfi srfi-26)
|
#:use-module (srfi srfi-26)
|
||||||
#:use-module (srfi srfi-64)
|
#:use-module (srfi srfi-64)
|
||||||
#:use-module (ice-9 match))
|
#:use-module (ice-9 match))
|
||||||
|
|
Loading…
Reference in New Issue