~ruther/guix-local

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.
gnu: crawl: Fix savegame upgrades.

* gnu/packages/patches/crawl-upgrade-saves.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add patch.
* gnu/packages/games.scm (crawl)[source]: Apply patch.

Signed-off-by: Arun Isaac <arunisaac@systemreboot.net>
af5faef9 — Efraim Flashner 8 years ago
gnu: aircrack-ng: Fix building on non-Intel machines.

* gnu/packages/networking.scm (aircrack-ng)[arguments]: Only use system
optimizations on x86_64 and i686 machines.
f37f949d — Danny Milosavljevic 8 years ago
gnu: Add minicom.

* gnu/packages/engineering.scm (minicom): New variable.
8cd7f430 — Danny Milosavljevic 8 years ago
gnu: stellarium: Update to 0.15.2.

* gnu/packages/astronomy.scm (stellarium): Update to 0.15.2.
2606fd6f — Danny Milosavljevic 8 years ago
gnu: stellarium: Fix build with Qt 5.9.

* gnu/packages/astronomy.scm (stellarium)[arguments]:
Add phase "patch-version-check".
34a0984e — Leo Famulari 8 years ago
gnu: libmwaw: Fix CVE-2017-9433.

* gnu/packages/patches/libmwaw-CVE-2017-9433.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/libreoffice.scm (libmwaw)[source]: Use it.
e3c9ab5f — Leo Famulari 8 years ago
gnu: libmwaw: Update to 0.3.11.

* gnu/packages/libreoffice.scm (libmwaw): Update to 0.3.11.
cdd85a85 — Tobias Geerinckx-Rice 8 years ago
gnu: youtube-dl: Update to 2017.06.12.

* gnu/packages/video.scm (youtube-dl): Update to 2017.06.12.
783467ae — Tobias Geerinckx-Rice 8 years ago
gnu: mcelog: Update to 153.

* gnu/packages/linux.scm (mcelog): Update to 153.
9cf8d93a — Kei Kebreau 8 years ago
gnu: libgweather: Update to 3.24.1.

* gnu/packages/gnome.scm (libgweather): Update to 3.24.1.
78a52051 — Kei Kebreau 8 years ago
gnu: mate-menus: Update to 1.18.0.

* gnu/packages/mate.scm (mate-menus): Update to 1.18.0.
d954e569 — Kei Kebreau 8 years ago
gnu: libmateweather: Update to 1.18.1.

* gnu/packages/mate.scm (libmateweather): Update to 1.18.1.
[arguments]: Remove obsolete "--with-gtk" flag.
3bbdf641 — Kei Kebreau 8 years ago
gnu: mate-desktop: Update to 1.18.0.

* gnu/packages/mate.scm (mate-desktop): Update to 1.18.0.
[arguments]: Remove obsolete configure flags.
[inputs]: Remove python-2.
b53510e0 — Adam Van Ymeren 8 years ago
file-systems: Handle EIO error in 'ENOENT-safe' as well.

Trying to boot GuixSD when an audio CD is in the drive will die with an
"input/output error" when trying to read the superblock from the cd
drive.

This patch catches and warns in this case rather than dying.

* gnu/build/file-systems.scm (ENOENT-safe): Handle EIO.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
c08ea55e — Ludovic Courtès 8 years ago
packages: Add 'specifications->manifest'.

* gnu/packages.scm (specifications->manifest): New procedure.
* doc/guix.texi (Invoking guix package): Change example from using
'(compose list specification->package+output)' to using
'specifications->manifest'.
Next