Age | Commit message (Collapse) | Author |
|
* guix/build-system/asdf.scm (asdf-build)[builder]: Parameterize %lisp-type
and %lisp before invoking the build procedure. Don't pass #:lisp-type as an
argument to said procedure.
* guix/build/asdf-build-system.scm: Adjust accordingly.
(source-install-prefix): Rename to %lisp-source-install-prefix.
* guix/build/lisp-utils.scm: Adjust accordingly.
(%lisp-type): New parameter.
(bundle-install-prefix): Rename to %bundle-install-prefix.
* gnu/packages/lisp.scm: Adjust accordingly.
|
|
* guix/build-system/asdf.scm (lower): Change argument name to `lisp-type'.
(asdf-build): Change argument name to `lisp-type'. Remove `lisp' as an
argument to the returned procedure. Change the argument passed to build
phases to `lisp-type'.
* guix/build/asdf-build-system.scm (copy-source, build, check)
(create-asd-file, symlink-asd-files, cleanup-files, strip): Respect
`lisp-type` argument.
* gnu/packages/lisp.scm (sbcl-stumpwm, sbcl-stumpwm+slynk): Likewise.
|
|
This may be necessary to produce programs or images with ecl.
* guix/build/asdf-build-system.scm (cleanup-files): Don't delete .a files.
|
|
* guix/build-system/asdf.scm (package-with-build-system)[transform]: Use updated
`new-inputs' procedure for inputs and native-inputs.
<rewrite>: Don't rename inputs.
<new-propagated-inputs>: Draw from package-inputs and package-native-inputs
for source packages. Use the original package's propagated-inputs otherwise.
<new-inputs>: Convert into a function to be used to transform inputs and
native-inputs.
* gnu/packages/lisp.scm (sbcl-fiveam, sbcl-bordeaux-threads)
(sbcl-flexi-streams, sbcl-cl-ppcre, sbcl-stumpwm, sbcl-slynk-arglists)
(sbcl-slynk-fancy-inspector): Don't prefix input names.
|
|
This removes the need for conventions to determine which inputs are run-time
dependencies, and also the need to specify "special" dependencies.
* guix/build/lisp-utils.scm (patch-asd-file, lisp-dependencies)
(wrap-perform-method): Remove them.
(inputs->asd-file-map, system-dependencies, generate-system-definition)
(generate-dependency-links, make-asd-file): New procedures.
(lisp-eval-program): Add an error if no lisp matches.
(compile-system): Don't use asdf's in-built asd-file generator.
|
|
* gnu/packages/lisp.scm (sbcl-stumpwm)[outputs]: Remove "bin" and add "lib".
[arguments]<#:phases>: Change the target of `build-program' to the "out"
output. Likewise, change the target of the desktop file generation.
(sbcl-stumpwm+slynk)[inputs]: Use the "lib" output of sbcl-stumpwm.
|
|
* guix/build/asdf-build-system.scm (library-output): New procedure.
(copy-source, build, check, patch-asd-files, symlink-asd-files)
(cleanup-files): Use it.
(copy-files-to-output): Rework to take an output instead of an outputs and
string pair.
(install, copy-source): Use the new method.
|
|
* guix/build/lisp-utils.scm (%install-prefix): Rename to
%source-install-prefix.
(build-install-prefix): Use it.
* guix/build/asdf-build-system.scm (source-install-prefix)
(%system-install-prefix, source-directory, copy-source): Likewise.
|
|
* gnu/packages/lisp.scm (sbcl-slynk-boot0): Add comments explaining its
purpose and the reason its package-name must differ from its name.
|
|
* gnu/packages/lisp.scm (sbcl-slynk-boot0)[description]: Describe slime.
|
|
* gnu/packages/package-management.scm (guix): Update to ce92d26.
|
|
* guix/scripts/system.scm (display-system-generation): Display
bootloader name.
|
|
* guix/scripts/system.scm (reinstall-grub): Rename to
reinstall-bootloader. Read boot-device and boot-type from parameters file to
be able to restore the correct bootloader on specified device.
Factorize bootloader installation code by calling install-bootloader.
(system-bootloader-name): New procedure.
(switch-to-system-generation): Adapt.
|
|
* guix/scripts/system.scm (install): Pass installer a new
argument. Rename other arguments.
Call install-bootloader instead of install-grub*.
(perform-action): Adapt.
|
|
* guix/scripts/system.scm (install-grub*): Rename to install-bootloader. Use
keys to pass arguments. Pass a new argument, "installer-drv" which is a script
in store dealing with bootloader-specific install actions. Also call
"install-boot-config" to install the bootloader config file.
(install-bootloader-derivation): New procedure. It returns a derivation that
builds a file containing "install-procedure" gexp.
(perform-action): Build install-proc derivation and call install-bootloader
with the resulting file. Stop adding GRUB to PATH as bootloaders are called in
install-proc with direct store paths.
|
|
* gnu/system.scm (<boot-parameters>)[name]: New field.
(boot-parameters-boot-name): Ditto.
(operating-system-boot-parameters-file): Add new field.
(operating-system-boot-parameters): Ditto.
(read-boot-parameters): Ditto.
|
|
* gnu/build/install.scm (install-boot-config): New procedure.
(install-grub): Move to (gnu bootloader grub).
* gnu/build/vm.scm (register-bootcfg-root): Rename register-grub.cfg-root and
adjust accordingly.
(initialize-hard-disk): Takes a bootloader-package, bootcfg, bootcfg-location and
bootloader-installer procedure. Adjust accordingly.
* gnu/system/vm.scm (qemu-image): Adjust to initialize-hard-disk.
(system-disk-image, system-qemu-image, system-qemu-image/shared-store):
Adjust to qemu-image.
|
|
* gnu/bootloader.scm: New file.
* gnu/bootloader/extlinux.scm: New file.
* gnu/bootloader/grub.scm: New file.
* gnu/local.mk: Build new files.
* gnu/system.scm: Adapt to new bootloader api.
* gnu/scripts/system.scm: Adapt to new bootloader api.
* gnu.scm: Remove (gnu system grub) and replace by (gnu bootloader) and (gnu
bootloader grub) modules.
* gnu/system/grub.scm: Moved content to gnu/bootloader/grub.scm.
* gnu/system/vm: Replace (gnu system grub) module by (gnu bootloader).
* gnu/tests.scm: Ditto.
* gnu/tests/nfs.scm: Ditto.
|
|
* guix/ui.scm (initialize-guix): Call (debug-disable 'warn-deprecated)
when "GUILE_WARN_DEPRECATED" is not set.
|
|
* gnu/packages/patches/guile-ssh-rexec-bug.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/ssh.scm (guile-ssh)[source](patches): New field.
|
|
* build-aux/hydra/gnu-system.scm (%core-packages): Add GUILE-2.2.
|
|
* gnu/packages/mail.scm (khard): Update to 0.11.4.
|
|
Reported by Leo Famulari.
* gnu/packages/dns.scm (bind): Rename to...
(isc-bind): ... this.
* gnu/packages/sssd.scm (sssd)[inputs]: Adjust accordingly.
|
|
Suggested by librenoob on #guix.
* doc/guix.texi (USB Stick Installation): Add 'sync' invocation.
|
|
* gnu/services/base.scm (%default-authorized-guix-keys): Add
"bayfront.guixsd.org".
|
|
* doc/guix.texi (Defining Packages): Mention 'GUIX_PACKAGE_PATH'.
|
|
* guix/utils.scm (compressed-file?): Add "lzma" to the list.
|
|
* gnu/packages/java.scm (antlr2)[source]: Fix indentation; end snippet on #t;
add comment next to disabled tests.
|
|
* gnu/packages/java.scm (antl2)[arguments]: Simplify build phases.
|
|
* gnu/packages/music.scm (non-timeline): New variable.
|
|
* gnu/packages/music.scm (non-mixer): New variable.
|
|
* gnu/packages/java.scm (java-javax-mail): New variable.
|
|
* guix/licenses.scm (edl1.0): New variable.
|
|
* gnu/packages/java.scm (java-log4j-api): New variable.
|
|
* gnu/packages/java.scm (java-eclipse-jdt-core): New variable.
|
|
* gnu/packages/java.scm (java-eclipse-text): New variable.
|
|
* gnu/packages/java.scm (java-eclipse-core-commands): New variable.
|
|
* gnu/packages/java.scm (java-eclipse-team-core): New variable.
|
|
* gnu/packages/java.scm (java-eclipse-compare-core): New variable.
|
|
* gnu/packages/icu4c.scm (java-icu4j): New variable.
|
|
* gnu/packages/java.scm (java-eclipse-core-resources): New variable.
|
|
* gnu/packages/java.scm (java-eclipse-ant-core): New variable.
|
|
* gnu/packages/java.scm (java-eclipse-core-variables): New variable.
|
|
* gnu/packages/java.scm (java-eclipse-core-expressions): New variable.
|
|
* gnu/packages/java.scm (java-eclipse-core-filesystem): New variable.
|
|
* gnu/packages/java.scm (java-eclipse-core-runtime): New variable.
|
|
* gnu/packages/java.scm (java-eclipse-core-contenttype): New variable.
|
|
* gnu/packages/java.scm (java-eclipse-equinox-preferences): New variable.
|
|
* gnu/packages/java.scm (java-eclipse-equinox-app): New variable.
|
|
* gnu/packages/java.scm (java-eclipse-equinox-registry): New variable.
|