~ruther/guix-local

641f9a2a — Ludovic Courtès 11 years ago
vm: Modularize build-side code.

* guix/build/install.scm (install-grub): Call 'error' if 'system*'
  returns non-zero.
* guix/build/vm.scm (initialize-partition-table): Make 'partition-size'
  a positional parameter.  Call 'error' when 'system*' returns
  non-zero'.
  (format-partition, initialize-root-partition): New procedures.
  (initialize-hard-disk): Use them.
d1f47719 — Ludovic Courtès 11 years ago
vm: Remove misleading comment.

* guix/build/vm.scm (load-in-linux-vm): Remove misleading comment.
952298d7 — Ludovic Courtès 11 years ago
gnu: Add wpa_supplicant.

* gnu/packages/admin.scm (wpa-supplicant): New variable.
d28869af — Ludovic Courtès 11 years ago
store: Flush the output when the build process emits '\r'.

This allows progress reports emitted by 'substitute-binary' to be
correctly displayed.

* guix/store.scm (%newlines): New variable.
  (process-stderr) <%stderr-next>: Flush (current-build-output-port)
  when S contains one of %NEWLINES.
29decd1f — Ludovic Courtès 12 years ago
Augment (guix).

* guix.scm (%public-modules): Add 'monads' and 'gexp'.
c5df1839 — Ludovic Courtès 12 years ago
Add (gnu system file-systems).

This fixes a circular dependency between (gnu system) and (gnu system
linux-initrd), where the latter could end up being compiled before
'file-system-type' was defined as a macro.

* gnu/system.scm (<file-system>, %fuse-control-file-system,
  %binary-format-file-system): Move to...
* gnu/system/file-systems.scm: ... here.  New file.
* build-aux/hydra/demo-os.scm, gnu/system/linux-initrd.scm,
  gnu/system/vm.scm: Use it.
* gnu-system.am (GNU_SYSTEM_MODULES): Add it.
eb7ccb1a — Ludovic Courtès 12 years ago
linux-initrd: Display a backtrace when the initial program fails.

* guix/build/linux-initrd.scm (boot-system): Add pre-unwind handler in
  'catch' form around 'primitive-load', and call 'format' and
  'display-backtrace' from there.
9bea3b42 — Ludovic Courtès 12 years ago
vm: Fix typo.

Regression introduced in e38e18f.

* guix/build/vm.scm (initialize-hard-disk)[partition]: Use a string.
5bbd6bf1 — Eric Bavier 12 years ago
gnu: Add ccache.

* gnu/packages/ccache.scm: New file.
* gnu/packages/patches/ccache-stdc-predef-test.patch: New patch.
* gnu-system.am (GNU_SYSTEM_MODULES): Add ccache.scm.
  (dist_patch_DATA): Add patch.
16ecf3ff — Eric Bavier 12 years ago
gnu: Edit synopses of petsc packages.

* gnu/packages/maths.scm (petsc) [synopsis]: Shorten.
  (petsc-complex,petsc-openmpi,petsc-complex-openmpi) [synopsis]:
  Repeat synopsis from petsc package with extensions.  [description]: Remove.
7886e23b — Eric Bavier 12 years ago
gnu: offlineimap: fix license.

* gnu/packages/mail.scm (offlineimap) [license]: Change to gpl2+.
d2938d59 — Eric Bavier 12 years ago
gnu: Add mu.

* gnu/packages/mail.scm (mu): New variable.
3919a31a — Eric Bavier 12 years ago
gnu: Add offlineimap

* gnu/packages/mail.scm (offlineimap): New variable.
b10e9ff6 — Ludovic Courtès 12 years ago
gnu: Add Linux kbd.

* gnu/packages/linux.scm (kbd): New variable.
52ddf2ae — Ludovic Courtès 12 years ago
ui: Gracefully deal with zero-output derivations.

* guix/ui.scm (show-what-to-build)[built-or-substitutable?]: New
  procedure.  Check whether OUT is #f.
  Use it.
* tests/ui.scm ("show-what-to-build, zero outputs"): New test.
79b0d4e1 — Ludovic Courtès 12 years ago
guix system: Check whether we are installing to /.

* guix/scripts/system.scm (install): Check whether TARGET is / and warn.
c56d19fb — Ludovic Courtès 12 years ago
guix system: Factorize out closure copy.

* guix/scripts/system.scm (copy-closure): New procedure.
  (install): Use it.
d467e640 — Ludovic Courtès 12 years ago
doc: Show the 'bootloader' field in system example.

* doc/guix.texi (Using the Configuration System): Add 'bootloader'
  field.
c79d54fe — Ludovic Courtès 12 years ago
guix system: 'guix system init' installs GRUB by default.

* guix/scripts/system.scm (install): Add #:grub?, #:grub.cfg, and
  #:device parameters; honor them.
  (show-help): Document '--no-grub'.
  (%options): Add '--no-grub'.
  (%default-options): Add 'install-grub?'.
  (guix-system): Honor 'install-grub?' option from OPTS.  Adjust
  'install' call accordingly.
* doc/guix.texi (Invoking guix system): Document '--no-grub'.
e38e18ff — Ludovic Courtès 12 years ago
vm: Make the device name a parameter.

* guix/build/vm.scm (initialize-partition-table): Honor 'device'
  parameter.
  (initialize-hard-disk): Add 'device' parameter and honor it.
* gnu/system/vm.scm (qemu-image): Adjust accordingly.
Next