summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* gnu: gash: Install modules in the standard locations.Ludovic Courtès2019-06-06
| | | | * gnu/packages/shells.scm (gash)[source](modules, snippet): New fields.
* gnu: ocaml-cmdliner: Fix non determinism.Julien Lepiller2019-06-06
| | | | | * gnu/packages/ocaml.scm (ocaml-cmdliner)[arguments]: Patch build.ml to fix a file ordering issue.
* gnu: ocaml-num: Make stublibs a directory.Julien Lepiller2019-06-06
| | | | | * gnu/packages/ocaml.scm (ocaml-num)[arguments]: Fix 'fix-stublibs phase.
* gnu: Add gnurobots.Jesse Gibbons2019-06-06
| | | | | | | * gnu/packages/games.scm (gnurobots): New variable. Signed-off-by: Ricardo Wurmus <rekado@elephly.net> Co-authored-by: Ricardo Wurmus <rekado@elephly.net>
* gnu: emacs-dashboard: Update to 1.5.0.Oleg Pykhalov2019-06-06
| | | | * gnu/packages/emacs-xyz.scm (emacs-dashboard): Update to 1.5.0.
* gnu: shaderc: Update to 2019.0.Rutger Helling2019-06-06
| | | | * gnu/packages/vulkan.scm (shaderc): Update to 2019.0.
* gnu: mame: Update to 0.210.Nicolas Goaziou2019-06-06
| | | | | * gnu/packages/emulators.scm (mame): Update to 0.210. [inputs]: Add libxi.
* gnu: tiled: Use HTTPS home page.Tobias Geerinckx-Rice2019-06-06
| | | | * gnu/packages/game-development.scm (tiled)[home-page]: Use HTTPS.
* gnu: qjackctl: Update to 0.5.8.Tobias Geerinckx-Rice2019-06-06
| | | | * gnu/packages/audio.scm (qjackctl): Update to 0.5.8.
* gnu: pencil2d: Update to 0.6.4.Tobias Geerinckx-Rice2019-06-06
| | | | * gnu/packages/animation.scm (pencil2d): Update to 0.6.4.
* gnu: toybox: Update to 0.8.1.Tobias Geerinckx-Rice2019-06-06
| | | | * gnu/packages/busybox.scm (toybox): Update to 0.8.1.
* gnu: tiled: Update to 1.2.4.Tobias Geerinckx-Rice2019-06-06
| | | | * gnu/packages/game-development.scm (tiled): Update to 1.2.4.
* gnu: fio: Update to 3.14.Tobias Geerinckx-Rice2019-06-06
| | | | * gnu/packages/benchmark.scm (fio): Update to 3.14.
* gnu: ansible: Update to 2.8.0.Tobias Geerinckx-Rice2019-06-06
| | | | * gnu/packages/admin.scm (ansible): Update to 2.8.0.
* gnu: thefuck: Update to 3.29.Tobias Geerinckx-Rice2019-06-06
| | | | * gnu/packages/admin.scm (thefuck): Update to 3.29.
* gnu: inxi, inxi-minimal: Update to 3.0.34-1.Tobias Geerinckx-Rice2019-06-06
| | | | * gnu/packages/admin.scm (inxi-minimal): Update to 3.0.34-1.
* gnu: dstat: Update to 0.7.4.Tobias Geerinckx-Rice2019-06-06
| | | | * gnu/packages/admin.scm (dstat): Update to 0.7.4.
* gnu: aide: Update to 0.16.2.Tobias Geerinckx-Rice2019-06-06
| | | | * gnu/packages/admin.scm (aide): Update to 0.16.2.
* gnu: wireless-regdb: Update to 2019.06.03.Tobias Geerinckx-Rice2019-06-06
| | | | | | | * gnu/packages/linux.scm (wireless-regdb): Update to 2019.06.03. [arguments]: Add ‘omit-signature’ phase. Add FIRMWARE_PATH & REGDB_PUBCERT #:make-flags, removing unused LSB_ID, DISTRO_PUBKEY & DISTRO_PRIVKEY. Exdent.
* gnu: liburcu: Update to 0.11.1.Tobias Geerinckx-Rice2019-06-06
| | | | * gnu/packages/datastructures.scm (liburcu): Update to 0.11.1.
* gnu: Add qview.Nicolas Goaziou2019-06-05
| | | | * gnu/packages/image-viewers.scm (qview): New variable.
* accounts: Call 'fdatasync' when writing databases.Ludovic Courtès2019-06-05
| | | | | * gnu/build/accounts.scm (catch-ENOSYS): New macro. (database-writer): Call 'fdatasync'.
* accounts: Close database before renaming it.Ludovic Courtès2019-06-05
| | | | | | | | Fixes <https://bugs.gnu.org/35996>. Reported by Florian Pelz <pelzflorian@pelzflorian.de>. * gnu/build/accounts.scm (database-writer): Move 'close-port' call before 'rename-file'.
* nar: Really lock store files.Ludovic Courtès2019-06-05
| | | | | | | | | Previously, 'lock-store-file' would immediately close the file descriptor of the '.lock' file, and thus it would immediately release the lock. * guix/nar.scm (lock-store-file, unlock-store-file): Remove. (finalize-store-file): Use 'lock-file' and 'unlock-file' instead.
* activation: Lock /etc/.pwd.lock before accessing databases.Ludovic Courtès2019-06-05
| | | | | | | | | Suggested by Florian Pelz <pelzflorian@pelzflorian.de> in <http://bugs.gnu.org/35996>. * gnu/build/accounts.scm (%password-lock-file): New variable. * gnu/build/activation.scm (activate-users+groups): Wrap calls to 'user+group-databases', 'write-group', etc. into 'with-file-lock'.
* syscalls: 'with-lock-file' catches ENOSYS.Ludovic Courtès2019-06-05
| | | | | * guix/build/syscalls.scm (call-with-file-lock): Catch ENOSYS raised by 'lock-file'.
* syscalls: 'with-file-lock' expands to a call to 'call-with-file-lock'.Ludovic Courtès2019-06-05
| | | | | * guix/build/syscalls.scm (call-with-file-lock): New procedure. (with-file-lock): Expand to a call to 'call-with-file-lock'.
* syscalls: Add 'with-file-lock' macro.Ludovic Courtès2019-06-05
| | | | | | * guix/scripts/offload.scm (lock-file, unlock-file, with-file-lock): Move to... * guix/build/syscalls.scm: ... here.
* gnu: minizip: Do not install crypt.h.Ludovic Courtès2019-06-05
| | | | | * gnu/packages/compression.scm (minizip)[arguments]: Add 'remove-crypt-h' phase.
* guix package: Do not list environment variables that need to be set.Ludovic Courtès2019-06-05
| | | | | | | | | | Fixes <https://bugs.gnu.org/35942>. * guix/scripts/package.scm (display-search-paths): Rename to... (display-search-path-hint): ... this. Adjust callers. Remove #:kind parameter. Replace the list of environment variables with an invitation to source $GUIX_PROFILE/etc/profile or run 'guix package --search-paths'.
* gnu: soil: Update home page.Marius Bakke2019-06-05
| | | | * gnu/packages/gl.scm (soil)[home-page]: Use HTTPS.
* gnu: mesa-utils: Update home page.Marius Bakke2019-06-05
| | | | * gnu/packages/gl.scm (mesa-utils)[home-page]: Use HTTPS.
* gnu: debootstrap: Workaround for PATH issues.Vagrant Cascadian2019-06-05
| | | | | | * gnu/packages/debian (debootstrap): [arguments]: Substitute PATH to include $PATH. [description]: Remove obsolete workaround from description.
* services: cups: Create /var/cache on activation.Alex Griffin2019-06-05
| | | | | | | * gnu/services/cups.scm (%cups-activation): Create /var/cache if it doesn't exist yet. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* doc: Fix typo.Diego Nicola Barbato2019-06-05
| | | | | | * doc/guix.texi (Invoking guix archive): Remove spurious hyphen in example. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* gnu: Add Ukrainian Aspell dictionary.Jens Mølgaard2019-06-05
| | | | | | * gnu/packages/aspell.scm (aspell-dict-ul): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* gnu: Add Portuguese Portugal Aspell dictionary.Jens Mølgaard2019-06-05
| | | | | | * gnu/packages/aspell.scm (aspell-dict-pt-pt): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* gnu: Add Norwegian Nynorsk Aspell dictionary.Jens Mølgaard2019-06-05
| | | | | | * gnu/packages/aspell.scm (aspell-dict-nn): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* gnu: Add Maori Aspell dictionary.Jens Mølgaard2019-06-05
| | | | | | * gnu/packages/aspell.scm (aspell-dict-mi): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* gnu: Add Hindi Aspell dictionary.Jens Mølgaard2019-06-05
| | | | | | * gnu/packages/aspell.scm (aspell-dict-hi): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* gnu: Add Finnish Aspell dictionary.Jens Mølgaard2019-06-05
| | | | | | * gnu/packages/aspell.scm (aspell-dict-fi): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* gnu: Add Danish Aspell dictionary.Jens Mølgaard2019-06-05
| | | | | | * gnu/packages/aspell.scm (aspell-dict-da): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* gnu: Add Belarusian Aspell dictionary.Jens Mølgaard2019-06-05
| | | | | | * gnu/packages/aspell.scm (aspell-dict-be): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* gnu: Add Arabic Aspell dictionary.Jens Mølgaard2019-06-05
| | | | | | * gnu/packages/aspell.scm (aspell-dict-ar): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* installer: Always add '%base-initrd-modules' to 'initrd-modules'.Ludovic Courtès2019-06-05
| | | | | | | | Fixes <https://bugs.gnu.org/36099>. Reported by Jonathan Brielmaier <jonathan.brielmaier@web.de>. * gnu/installer/parted.scm (initrd-configuration): Add %BASE-INITRD-MODULES to the 'initrd-modules' field.
* etc: Fix GUIX_LOCPATH quoting in 'guix-publish.service' file.Jack Hill2019-06-05
| | | | | | | This is a followup to 579d17b70dac067f8194ede46513400b91ac136a. * etc/guix-publish.service.in (Environment): Move GUIX_LOCPATH inside the quotes.
* gnu: aubio: Enable avcodec support.Kei Kebreau2019-06-05
| | | | | | * gnu/packages/audio.scm (aubio)[arguments]: Remove "--disable-avcodec" from and add "--enable-avcodec" to #:configure-flags. [inputs]: Add ffmpeg.
* gnu: guile-sdl2: Update to 0.4.0.Ricardo Wurmus2019-06-05
| | | | * gnu/packages/sdl.scm (guile-sdl2): Update to 0.4.0.
* gnu: guile-chickadee: Update to 0.4.0.Ricardo Wurmus2019-06-05
| | | | | * gnu/packages/game-development.scm (guile-chickadee): Update to 0.4.0. [arguments]: Remove.
* gnu: guile-gi: Update to 0.0.1-1.26e8852.Jan Nieuwenhuizen2019-06-05
| | | | | * gnu/packages/guile-xyz.scm (guile-gi): Update to 0.0.1-1.26e8852; use upstream's (spk121's) git in source uri.