~ruther/guix-local

4ee79f22 — Ludovic Courtès 8 years ago
ui: 'package->recutils' takes #:extra-fields.

* guix/ui.scm (package->recutils): Add #:extra-fields and honor it.
gnu: enlightenment: Fix the inability to switch keyboard layout.

* gnu/packages/enlightenment.scm (enlightenment): Add new 'fix-keyboard' phase.
(inputs): Add 'xkeyboard-config'.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
70c90903 — Kei Kebreau 8 years ago
gnu: abiword: Correct the download and home page URL.

The old URL redirects to https://abisource.com.

* gnu/packages/abiword.scm (abiword)[source]: Change URL.
[home-page]: Change URL.
5144c044 — Danny Milosavljevic 8 years ago
gnu: ldc-bootstrap: Update ldc to 0.17.4.

* gnu/packages/ldc.scm (ldc-bootstrap): Update ldc to 0.17.4.
5fa7cc53 — Ludovic Courtès 8 years ago
marionette: Factorize 'wait-for-file'.

* gnu/build/marionette.scm (wait-for-file): New procedure.
* gnu/tests/base.scm (run-mcron-test)[test](wait-for-file): Remove.
Pass second argument in 'wait-for-file' calls.
* gnu/tests/ssh.scm (run-ssh-test)[test](wait-for-file): Remove.
Pass second argument in 'wait-for-file' calls.
* gnu/tests/messaging.scm (run-xmpp-test)[test](guest-wait-for-file):
Remove.
Use 'wait-for-file' instead, with second argument.
d782de17 — Ludovic Courtès 8 years ago
services: cuirass: Extend rottlog with log rotations.

* gnu/services/cuirass.scm (cuirass-log-rotations): New procedure.
(cuirass-service-type): Use it to extend ROTTLOG-SERVICE-TYPE.
254ea3f9 — Ludovic Courtès 8 years ago
services: rottlog: Make extensible.

* gnu/services/admin.scm (rottlog-service-type)[compose, extend]: New
fields.
* doc/guix.texi (Log Rotation): Mention extension.
81fa2229 — Ludovic Courtès 8 years ago
services: rottlog: Define <log-rotation> objects.

* gnu/services/admin.scm (<log-rotation>): New record type.
(syslog-rotation-config, simple-rotation-config): Remove.
(%default-rotations): Define as a list of <log-rotation> objects.
(log-rotation->config, log-rotations->/etc-entries): New procedures.
(<rottlog-configuration>)[periodic-rotations]: Remove.
[rotations]: New field.
(rottlog-etc): Use 'log-rotations->/etc-entries'.
* doc/guix.texi (Log Rotation): Update accordingly.
d30c4841 — Kyle Meyer 8 years ago
gnu: emacs-markdown-mode: Update to 2.2.

* gnu/packages/emacs.scm (emacs-markdown-mode): Update to 2.2.

Signed-off-by: Arun Isaac <arunisaac@systemreboot.net>
f9f77a9e — Kyle Meyer 8 years ago
gnu: emacs-iedit: Update to 0.9.9.9.

* gnu/packages/emacs.scm (emacs-iedit): Update to 0.9.9.9.

Signed-off-by: Arun Isaac <arunisaac@systemreboot.net>
9dfc5bb5 — Kyle Meyer 8 years ago
gnu: emacs-helm: Update to 2.7.1.

* gnu/packages/emacs.scm (emacs-helm): Update to 2.7.1.

Signed-off-by: Arun Isaac <arunisaac@systemreboot.net>
847284e1 — Kyle Meyer 8 years ago
gnu: emacs-yaml-mode: Update to 0.0.13.

* gnu/packages/emacs.scm (emacs-yaml-mode): Update to 0.0.13.

Signed-off-by: Arun Isaac <arunisaac@systemreboot.net>
e831283d — Kyle Meyer 8 years ago
gnu: emacs-elfeed: Update to 2.1.1.

* gnu/packages/emacs.scm (emacs-elfeed): Update to 2.1.1.

Signed-off-by: Arun Isaac <arunisaac@systemreboot.net>
ef74a425 — Muriithi Frederick Muriuki 8 years ago
gnu: python-rednose: Add the python2 variant.

* gnu/packages/python.scm (python2-rednose): New variable.

Signed-off-by: Marius Bakke <mbakke@fastmail.com>
af842d45 — Muriithi Frederick Muriuki 8 years ago
gnu: python-sphinx-rtd-theme: Update to 0.2.4.

* gnu/packages/python.scm (python-sphinx-rtd-theme): Update to 0.2.4.
[source]: Use 'pypi-uri'.

Signed-off-by: Marius Bakke <mbakke@fastmail.com>
a10040e0 — Marius Bakke 8 years ago
gnu: nss, nss-certs: Update to 3.31.

Release notes:
<https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/NSS_3.31_release_notes>

* gnu/packages/certs.scm (nss-certs): Update to 3.31.
* gnu/packages/gnuzilla.scm (nss): Likewise.
[source]<patches>: Remove upstream 'nss-disable-long-b64-tests' patch.
[arguments]<#:phases>: Move armhf timeout substitution ...
* gnu/packages/patches/nss-increase-test-timeout.patch: ... here.
* gnu/packages/patches/nss-disable-long-b64-tests.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Remove it.
c4395e78 — Marius Bakke 8 years ago
gnu: nspr: Update to 4.15.

* gnu/packages/gnuzilla.scm (nspr): Update to 4.15.
c476f029 — Marius Bakke 8 years ago
gnu: libinput: Update to 1.7.3.

* gnu/packages/freedesktop.scm (libinput, libinput-minimal): Update to 1.7.3.
015f17e8 — Ludovic Courtès 8 years ago
derivations: Introduce 'read-derivation-from-file'.

This avoids the open/fstat/close syscalls upon a cache hit that we had
with the previous idiom:

  (call-with-input-file file read-derivation)

where caching happened in 'read-derivation' itself.

* guix/derivations.scm (%read-derivation): Rename to...
(read-derivation): ... this.
(read-derivation-from-file): New procedure.
(derivation-prerequisites, substitution-oracle)
(derivation-prerequisites-to-build):
(derivation-path->output-path, derivation-path->output-paths):
(derivation-path->base16-hash, map-derivation): Use
'read-derivation-from-file' instead of (call-with-input-file …
read-derivation).
* guix/grafts.scm (item->deriver): Likewise.
* guix/scripts/build.scm (log-url, options->things-to-build): Likewise.
* guix/scripts/graph.scm (file->derivation): Remove.
(derivation-dependencies, %derivation-node-type): Use
'read-derivation-from-file' instead.
* guix/scripts/offload.scm (guix-offload): Likewise.
* guix/scripts/perform-download.scm (guix-perform-download): Likewise.
* guix/scripts/publish.scm (load-derivation): Remove.
(narinfo-string): Use 'read-derivation-from-file'.
b4671215 — Ludovic Courtès 8 years ago
store: Speed up 'add-to-store'.

* guix/store.scm (add-to-store): Remove 'lstat' call.
Next