gnu: Add diffstat. * gnu/packages/version-control.scm (diffstat): New variable.
system: Add first-class file system declarations. * gnu/system.scm (<operating-system>)[initrd]: Default to 'qemu-initrd'. (<file-system>): New record type. (operating-system-root-file-system): New procedure. (operating-system-derivation): Take the device name for GRUB from 'operating-system-root-file-system'. Pass the 'operating-system-initrd' procedure the list of boot file systems. * gnu/system/linux-initrd.scm (file-system->spec): New procedure. (qemu-initrd): Add 'file-systems' parameter, and remove #:mounts parameter. [file-system-type-predicate]: New procedure. [linux-modules]: Use it. Adjust #:mounts argument in 'boot-system' call. (gnu-system-initrd): Remove. * gnu/system/vm.scm (%linux-vm-file-systems): New variable. (expression->derivation-in-linux-vm): Adjust call to 'qemu-initrd'. (virtualized-operating-system): New procedure. (system-qemu-image/shared-store-script)[initrd]: Remove. Use 'virtualized-operating-system'. Get the 'initrd' file from OS-DRV. * guix/build/linux-initrd.scm (mount-qemu-smb-share, mount-qemu-9p): Remove. (MS_RDONLY, MS_BIND): New global variables. (bind-mount): Remove local 'MS_BIND' definition. (mount-root-file-system): New procedure, with code formerly in 'boot-system'. (mount-file-system): New procedure. (boot-system): Add #:root-fs-type parameter. Remove 'MS_RDONLY' local variable. Use 'mount-root-file-system' and 'mount-file-system'. * doc/guix.texi (Using the Configuration System): Add 'file-system' declaration.
gnu: Add missing copyright line * gnu/packages/maths.scm: Add copyright line missing from 3de01d3.
gnu: petsc: Add input superlu. * gnu/packages/maths.scm (petsc): Configure with superlu support.
gnu: Add superlu * gnu/packages/maths.scm (superlu): New variable
gnu: qemu: Upgrade to 2.0.0. * gnu/packages/qemu.scm (qemu-headless): Upgrade to 2.0.0.
system: Add 'sudo' to the setuid programs, and handle /etc/sudoers. * gnu/system.scm (<operating-system>)[groups]: Change default to just the 'root' group. [sudoers]: New field. (etc-directory): Add #:sudoers parameter. Add 'sudoers' to the file union. (operating-system-etc-directory): Pass #:sudoers to 'etc-directory'. (%setuid-programs): Add 'sudo'. (%sudoers-specification): New variable. * gnu/system/linux.scm (base-pam-services): Add 'sudo'. * build-aux/hydra/demo-os.scm: Add 'groups' field; add 'guest' to the 'wheel' group.
gnu: Add petsc * gnu/packages/maths.scm (petsc): New variable. (petsc-complex): New variable. * gnu/packages/patches/petsc-fix-threadcomm.patch: New patch. * gnu-system.am (dist_patch_DATA): Add it.
gnu: Add abbaye. * gnu/packages/games.scm (abbaye): New variable.
gnu: Propagate necessary inputs for sdl-image. * gnu/packages/sdl.scm (sdl-image): Propagate jpeg, png, and tiff libraries.
gnu: Add sudo. * gnu/packages/admin.scm (sudo): New variable.
system: Add support for setuid binaries. * gnu/system.scm (<operating-system>)[pam-services, setuid-programs]: New fields. (etc-directory)[bashrc]: Prepend /run/setuid-programs to $PATH. (operating-system-etc-directory): Honor 'operating-system-pam-services'. (%setuid-programs): New variable. (operating-system-boot-script): Add (guix build utils) to the set of imported modules. Call 'activate-setuid-programs' in boot script. * gnu/system/linux.scm (base-pam-services): New procedure. * guix/build/activation.scm (%setuid-directory): New variable. (activate-setuid-programs): New procedure. * build-aux/hydra/demo-os.scm: Add 'pam-services' field.
system: Add (guix build activation). * gnu/services/dmd.scm (dmd-configuration-file): Remove 'etc' parameter. Move /etc activation code to... * guix/build/activation.scm: ... here; new file. * gnu/system.scm (operating-system-boot-script): Augment script: add (guix build activation) to the load path; call 'activate-etc'. * Makefile.am (MODULES): Add guix/build/activation.scm.
gnu: calcurse: Fix module definition. * gnu/packages/calcurse.scm: Define calcurse module correctly.
gnu: gmsh: Fix typos * gnu/packages/maths.scm (gmsh): Fix typo and space aftern end-of-sentence.
gnu: Add gmsh * gnu/packages/maths.scm (gmsh): New variable
gnu: guile-ncurses: Build with Unicode support. * gnu/packages/guile.scm (guile-ncurses)[arguments]: Pass "--with-ncursesw".
gnu: screen: Upgrade to 4.2.1. * gnu/packages/screen.scm (screen): Upgrade to 4.2.1.
gnu: mcron: Upgrade to 1.0.7. * gnu/packages/guile.scm (mcron): Upgrade to 1.0.7. Use GUILE-2.0 instead of GUILE-1.8; add 'native-inputs' field.
linux-initrd: Rewrite using gexps. * gnu/system/linux-initrd.scm (expression->initrd): Rename 'inputs' parameter to 'to-copy'. Remove 'files-to-copy'. Rewrite 'builder' as a gexp, and use 'gexp->derivation'. (qemu-initrd): Adjust accordingly.