gnu: Add git-flow. * gnu/packages/version-control.scm (git-flow, shflags): New variables.
gnu: wpa-supplicant: Remove dependency on DBus. * gnu/packages/admin.scm (wpa-supplicant): Remove dependency on DBUS.
guix: scripts: Add GUIX_BUILD_OPTIONS environment handling. * doc/guix.texi (Invoking guix build): Mention 'GUIX_BUILD_OPTIONS'. * guix/scripts/archive.scm: (append args (environment-build-options)). * guix/scripts/build.scm: Ditto. * guix/scripts/environment.scm: Ditto. * guix/scripts/package.scm: Ditto. * guix/scripts/system.scm: Ditto. * guix/ui.scm (environment-build-options): New function. * guix/utils.scm (arguments-from-environment-variable): New function. * tests/guix-build.sh: Add tests. * test-env.in: Unset GUIX_BUILD_OPTIONS. Co-authored-by: Ludovic Courtès <ludo@gnu.org>
daemon: Default to '--cores=0'. Suggested by Deck Pickard <deck.r.pickard@gmail.com>. * nix/nix-daemon/guix-daemon.cc (main): Set 'settings.buildCores' to 0. * doc/guix.texi (Invoking guix-daemon): Adjust accordingly.
doc: Explain that 'file-system' must refer to mapped devices by file name. * doc/guix.texi (File Systems): Clarify what to do when mapped devices are used.
Revert "system: Add a 'needed-for-boot?' field to 'mapped-device'." This reverts commit 3b09332adf7ce8e976a4d117a62c586a53af04aa, which turned out to be a bad idea because we need to have dependency information between the device-mapping service and the file-system service that uses it.
gnu: Add matplotlib. * gnu/packages/python.scm (python-matplotlib, python2-matplotlib): New variables.
services: xorg: Add 'xf86-video-sis'. * gnu/services/xorg.scm (xorg-start-command)[xserver.conf]: Add ModulePath for 'xf86-video-sis'.
gnu-maintenance: Support .zip files. Reported by Andreas Enge <andreas@enge.fr>. * guix/gnu-maintenance.scm (sans-extension): Add case for ".zip". (%tarball-rx): Extend to handle .zip extension.
gnu: Add mg. * gnu/packages/mg.scm: New file. * gnu-system.am (GNU_SYSTEM_MODULES): Add mg.scm. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
gnu: wireless-tools: Install the manual pages under $out/share/man. * gnu/packages/linux.scm (wireless-tools)[origin]: Add snippet. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
gnu: Add abcde. * gnu/packages/cdrom.scm (abcde): New variable.
gnu: Add cd-discid. * gnu/packages/cdrom.scm (cd-discid): New variable.
gnu: guix: Update snapshot. * gnu/packages/package-management.scm (guix-devel): Update.
doc: Improve porting instructions. * doc/guix.texi (Porting): Move 'glibc-dynamic-linker' paragraph above. Clarify what is meant by updating (gnu packages bootstrap). Mention 'gnu-system.am'.
system: locale: Fix typo in docstring. * gnu/system/locale.scm (localedef-command): Fix typo.
gnu: Rename fonts according to our new naming scheme. * gnu/packages/fonts.scm (ttf-dejavu): Rename to ... * gnu/packages/fonts.scm (font-dejavu): ... this. * gnu/packages/fonts.scm (ttf-bitstream-vera): Rename to ... * gnu/packages/fonts.scm (font-bitstream-vera): ... this. * gnu/packages/fonts.scm (freefont-ttf): Rename to ... * gnu/packages/fonts.scm (font-gnu-freefont-ttf): ... this. * gnu/packages/fonts.scm (terminus-font): Rename to ... * gnu/packages/fonts.scm (font-terminus): ... this.
system: Add a 'needed-for-boot?' field to 'mapped-device'. * gnu/system/file-systems.scm (<mapped-device>)[needed-for-boot?]: New field. * gnu/system.scm (operating-system-user-mapped-devices, operating-system-boot-mapped-devices): Use it instead of trying to guess. Guessing doesn't work when one refers to a partition using its label, for instance. * doc/guix.texi (Mapped Devices): Document 'needed-for-boot?'.
system: Change "en_US.UTF-8" to "en_US.utf8". * build-aux/hydra/demo-os.scm (locale): Change to "en_US.utf8". * gnu/system/install.scm (installation-os)[locale]: Ditto.
linux-modules: Correctly propagate error code from 'init_module'. * gnu/packages/patches/guile-linux-syscalls.patch (scm_load_linux_module): Leave 'errno' unchanged when ERR != 0. * gnu/build/linux-modules.scm (load-linux-module*): Check for the errno value of ARGS to determine whether the module was already loaded.