summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* maint: Mark 'doc-pot-update' and 'doc-po-update' as phony.Ludovic Courtès2019-04-29
| | | | * po/doc/local.mk (doc-pot-update, doc-pot-update): Mark as phony.
* tests: Adjust wildcard when testing OS examples.Ludovic Courtès2019-04-29
| | | | | * tests/guix-system.sh: Use *.tmpl instead of *, to avoid catching backup files, etc.
* processes: Gracefully handle daemons without clients.Ludovic Courtès2019-04-29
| | | | | | | | | | | | | | | | | | | | | Fixes <https://bugs.gnu.org/34716>. Reported by Mark H Weaver <mhw@netris.org>. The problem could be reproduced by running, on one hand: sh -c 'exec -a guix-daemon sleep 777' and on the other hand: guix processes If there is no process with PID 777, 'guix processes' would barf as it stumbles upon a <daemon-session> record whose client is #f. * guix/scripts/processes.scm (daemon-sessions)[child-process->session]: New procedure, with lambda formerly passed to 'map'. Handle #f returns from 'lookup-process'. Call 'child-process->session' within 'filter-map', not just 'map'.
* processes: 'process-open-files' ignores disappeared /proc/PID/fd entries.Ludovic Courtès2019-04-29
| | | | | | | | Previously, 'process-open-files' would throw ENOENT if an entry had vanished after the 'scandir' call and before the 'readlink' call. * guix/scripts/processes.scm (process-open-files): Catch ENOENT errors from 'readlink'.
* gnu: u-boot: Update to 2019.04.Vagrant Cascadian2019-04-29
| | | | | | | | | | | | | | | * gnu/packages/bootloaders.scm (u-boot): Update to 2019.04. [source]: Add patch. (u-boot-novena): Update dynamic patch to handle config key rename. (u-boot-am335x-evm): New variable. (u-boot-am335x-boneblack): Build with modified am335x-evm config. (u-boot-novena): Fix typo in description. * gnu/bootloader/u-boot.scm (u-boot-beaglebone-black-bootloader): Use u-boot-am335x-boneblack. * gnu/packages/patches/u-boot-fix-mkimage-header-verification.patch: New file. * gnu/local.mk (dist_patch_DATA): Update accordingly. Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
* guix package: Add 'guix search' alias.Ludovic Courtès2019-04-29
| | | | | | | | | * guix/scripts/search.scm: New file. * Makefile.am (MODULES): Add it. * po/guix/POTFILES.in: Add it. * tests/guix-package-aliases.sh: Add test. * doc/guix.texi (Invoking guix package): Document it and use it in a couple of examples.
* file-systems: Support the 'no-atime' flag.rendaw2019-04-29
| | | | | | | | | * guix/build/syscalls.scm (MS_NOATIME): New variable. * gnu/build/file-systems.scm (mount-flags->bit-mask): Support it. * doc/guix.texi (File Systems): Document it and add cross-references to the relevant documentation. Co-authored-by: Ludovic Courtès <ludo@gnu.org>
* Update NEWS.Ludovic Courtès2019-04-29
|
* doc: Remove traces of "Guix System Distribution".Ludovic Courtès2019-04-29
| | | | | | * doc/guix.texi (Invoking guix package) (Official Substitute Server, System Configuration): Replace "the Guix System Distribution" by "Guix System".
* doc: Add 'SUBSTITUTE-URL' variable.Ludovic Courtès2019-04-29
| | | | | * doc/guix.texi (SUBSTITUTE-SERVER): New variable. (Invoking guix weather): Use it.
* guix package: Add 'install', 'remove', and 'upgrade' aliases.Ludovic Courtès2019-04-29
| | | | | | | | | | | | | | | | * guix/scripts/install.scm, guix/scripts/remove.scm, guix/scripts/upgrade.scm, tests/guix-package-aliases.sh: New files. * Makefile.am (MODULES, SH_TESTS): Add them. * po/guix/POTFILES.in: Add them. * guix/scripts/package.scm (guix-package): Split with... (guix-package*): ... this. New procedure. * doc/guix.texi (Invoking guix package): Document them. (Binary Installation, Application Setup, Package Management) (Packages with Multiple Outputs, Package Modules) (X.509 Certificates, Installing Debugging Files): Use 'guix install' in simple examples. * etc/completion/bash/guix (_guix_complete): Handle "install", "remove", and "upgrade".
* gnu: font-public-sans: Adjust synopsis and description.Ludovic Courtès2019-04-29
| | | | | * gnu/packages/fonts.scm (font-public-sans)[synopsis, description]: Adjust.
* gnu: Add font-public-sans.Jens M2019-04-29
| | | | | | * gnu/packages/fonts.scm (font-public-sans): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* installer: Fix typo in docstring.Meiyo Peng2019-04-29
| | | | | | * gnu/installer/newt/wifi.scm (draw-scanning-page): Fix typo in docstring. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* gnu: diffoscope: Update to 114.Vagrant Cascadian2019-04-29
| | | | | | * gnu/packages/package-management (diffoscope): Update to 114. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* services: slim: Honor the value of slim from slim-configuration.Diego Nicola Barbato2019-04-29
| | | | | | | | | Previously setting the slim field in slim-configuration would have no effect. * gnu/services/xorg.scm (slim-shepherd-service): Remove unused let binding for slim. Use (slim-configuration-slim config) instead of the default slim. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* gnu: Fix missing bison package in (gnu packages algebra).Christopher Baines2019-04-28
| | | | | | | This fixes a regression introduced in 6d3896b9fc115b03046860a9aa12966926bccf53. * gnu/packages/algebra.scm: Use the (gnu packages bison) module.
* gnu: direnv: Change to the go-build-system.Christopher Baines2019-04-28
| | | | | | | | | | | | | | The go-build-system is slightly more appropriate, and switching resolves an issue with combining the 'unpack phase from the gnu-build-system, and the 'setup-go-environment from the go-build-system. With both of those phases creating a directory, the first-subdirectory call at the end of the 'unpack phase can return different values depending on the filesystem ordering. * gnu/packages/shellutils.scm (direnv)[source]: Use the git repository, as this works better with the go-build-system. [build-system]: Change to the go-build-system. [arguments]: Adjust for the go-build-system. [native-inputs]: Remove go.
* installer: Tell the user where the config file is.Ludovic Courtès2019-04-28
| | | | | | * gnu/installer/newt/final.scm (strip-prefix): New procedure. (run-config-display-page): Add a sentence showing where the config file is stored.
* installer: Fix handling of user password mismatches.Ludovic Courtès2019-04-28
| | | | | | | | | Previously, if we had a password mismatch, the 'password' field would end up containing a <user> record instead of the actual password. * gnu/installer/newt/user.scm (confirm-password): Make TRY-AGAIN optional and adjust docstring. (run-user-add-page): Move 'confirm-password' call one level higher.
* installer: User accounts can now have a "real name."Ludovic Courtès2019-04-28
| | | | | | | | * gnu/installer/newt/user.scm (run-user-add-page): Add #:real-name. Add a label and entry for the real name and initialize the 'real-name' field of the <user> record. * gnu/installer/final.scm (create-user-database): Set the 'comment' field of the <user-account> record.
* installer: User can have a "real name".Ludovic Courtès2019-04-28
| | | | | * gnu/installer/user.scm (<user>)[real-name]: New field. (users->configuration)[use->sexp]: Turn it into a 'comment' field.
* installer: Improve layout of the partitioning page.Ludovic Courtès2019-04-28
| | | | | | | | Previously the "listbox" would be unnecessarily high, leaving too little space for the German translation of the text above. * gnu/installer/newt/partition.scm (run-disk-page): Increase #:info-textbox-width and pass #:listbox-height.
* installer: Add 'nss-certs' to the networking services.Ludovic Courtès2019-04-28
| | | | | | | | Fixes <https://bugs.gnu.org/35469>. Reported by Florian Pelz <pelzflorian@pelzflorian.de>. * gnu/installer/services.scm (%system-services): Add service for 'nss-certs', with 'recommended?' set to #t.
* installer: Recommended services are pre-selected.Ludovic Courtès2019-04-28
| | | | | | | | | * gnu/installer/services.scm (<system-service>)[recommended?]: New field. * gnu/installer/newt/services.scm (run-desktop-environments-cbt-page): Pass #:selection to 'run-checkbox-tree-page', computed from the 'recommended?' field of each service. (run-networking-cbt-page): Likewise.
* installer: Add #:selection parameter to 'run-checkbox-tree-page'.Ludovic Courtès2019-04-28
| | | | | | * gnu/installer/newt/page.scm (%none-selected): New variable. (run-checkbox-tree-page): Add #:selection. [fill-checkbox-tree]: Honor it.
* doc: Duplicate recommendation about 'guix-install.sh'.Ludovic Courtès2019-04-28
| | | | | | | Since our web site points to "Binary Installation", it's best to have that note there. * doc/guix.texi (Binary Installation): Add note about guix-install.sh.
* Update NEWS.Ludovic Courtès2019-04-28
|
* vm-image: Add 'nss-certs' to the global package set.Ludovic Courtès2019-04-28
| | | | * gnu/system/examples/vm-image.tmpl (packages): Add NSS-CERTS.
* describe: Provide a hint when origin detection fails.Ludovic Courtès2019-04-28
| | | | | * guix/scripts/describe.scm (display-checkout-info): Add call to 'display-hint' in the error case.
* gnu: Fix typo.Nicolas Goaziou2019-04-28
| | | | * gnu/packages/algebra.scm (giac-xcas): Fix typo.
* gnu: giac-xcas: Rename to "giac" to match upstream name.Nicolas Goaziou2019-04-28
| | | | | * gnu/packages/algebra.scm (giac): New variable. (giac-xcas): Deprecate.
* gnu: giac-xcas: Add inputs.Nicolas Goaziou2019-04-28
| | | | | * gnu/packages/algebra.scm (giac-xcas)[inputs]: Add glpk, libsamplerate, bison and flex.
* gnu: giac-xcas: Fix documentation.Nicolas Goaziou2019-04-28
| | | | | | | | * gnu/packages/algebra.scm (giac-xcas): Use a single output. Fix licensing issues in documentation. Xcas expects documentation to be located at a fixed location, not compatible with a "doc" output.
* gnu: linux-libre: Update to 5.0.10.Mark H Weaver2019-04-28
| | | | | * gnu/packages/linux.scm (%linux-libre-version): Update to 5.0.10. (%linux-libre-hash): Update hash.
* gnu: linux-libre@4.19: Update to 4.19.37.Mark H Weaver2019-04-28
| | | | | * gnu/packages/linux.scm (%linux-libre-4.19-version): Update to 4.19.37. (%linux-libre-4.19-hash): Update hash.
* gnu: linux-libre@4.14: Update to 4.14.114.Mark H Weaver2019-04-28
| | | | | * gnu/packages/linux.scm (%linux-libre-4.14-version): Update to 4.14.114. (%linux-libre-4.14-hash): Update hash.
* gnu: linux-libre@4.9: Update to 4.9.171.Mark H Weaver2019-04-28
| | | | * gnu/packages/linux.scm (linux-libre-4.9): Update to 4.9.171.
* gnu: linux-libre@4.4: Update to 4.4.179.Mark H Weaver2019-04-28
| | | | * gnu/packages/linux.scm (linux-libre-4.4): Update to 4.4.179.
* gnu: Add cloud-utils.Christopher Baines2019-04-28
| | | | * gnu/packages/admin.scm (cloud-utils): New variable.
* gnu: Remove unused module reference.Ricardo Wurmus2019-04-28
| | | | * gnu/services/web.scm: Remove reference to (gnu packages guile).
* gnu: hypre: Unconditionally return #T from build phases.Ricardo Wurmus2019-04-28
| | | | | * gnu/packages/maths.scm (hypre)[arguments]: Use INVOKE and unconditionally return #T from build phases.
* gnu: jacal: Unconditionally return #T from configure phase.Ricardo Wurmus2019-04-28
| | | | * gnu/packages/maths.scm (jacal)[arguments]: Use INVOKE in configure phase.
* gnu: z3: Unconditionally return #T from build phases.Ricardo Wurmus2019-04-28
| | | | * gnu/packages/maths.scm (z3)[arguments]: Use INVOKE in build phases.
* gnu: atlas: Always return #T from build phases.Ricardo Wurmus2019-04-28
| | | | | * gnu/packages/maths.scm (atlas)[arguments]: Always return #T from build phases; use INVOKE.
* gnu: make-blis: Always return #T from configure phase.Ricardo Wurmus2019-04-28
| | | | * gnu/packages/maths.scm (make-blis)[arguments]: Use INVOKE.
* gnu: kdevplatform: Use INVOKE.Ricardo Wurmus2019-04-28
| | | | | * gnu/packages/kde.scm (kdevplatform)[arguments]: Use INVOKE and return #T unconditionally.
* Merge branch 'staging'Ludovic Courtès2019-04-28
|\
| * gnu: gnome-shell: Add gdk-pixbuf+svg to inputs.Ricardo Wurmus2019-04-25
| | | | | | | | | | | | | | | | Fixes <https://bugs.gnu.org/34124>. * gnu/packages/gnome.scm (gnome-shell)[inputs]: Add gdk-pixbuf+svg. [arguments]: Add the lib directory of gdk-pixbuf+svg to the LD_LIBRARY_PATH wrapper of the gnome-shell executable.
| * Merge branch 'master' into stagingMarius Bakke2019-04-23
| |\