~ruther/guix-local

4b3070f7 — Fis Trivial 8 years ago
gnu: Add rtags.

* gnu/packages/code.scm (rtags): New public variable.

Co-authored-by: Ludovic Courtès <ludo@gnu.org>
2b778b27 — Ludovic Courtès 8 years ago
gnu: guix: Update snapshot to c04ffad.

* gnu/packages/package-management.scm (guix): Update to c04ffad.
50b97d1a — Tobias Geerinckx-Rice 8 years ago
gnu: youtube-dl: Update to 2018.01.07.

* gnu/packages/video.scm (youtube-dl): Update to 2018.01.07.
aba7d8e7 — Tobias Geerinckx-Rice 8 years ago
gnu: nano: Update to 2.9.2.

* gnu/packages/nano.scm (nano): Update to 2.9.2.
19278d8d — Tobias Geerinckx-Rice 8 years ago
gnu: borg: Unbundle libb2.

* gnu/packages/backup.scm (borg)[source]: Remove bundled libb2 in snippet.
[inputs]: Add libb2.
[arguments]: Use it.
c6220b13 — Tobias Geerinckx-Rice 8 years ago
gnu: Add libb2.

* gnu/packages/crypto.scm (libb2): New public variable.
9268a3c4 — Kei Kebreau 8 years ago
gnu: Add missing copyright line.

* gnu/packages/check.scm: Add copyright line for 18a4d6d.
18a4d6df — Fis Trivial 8 years ago
gnu: Add python-pyhamcrest.

* gnu/packages/check.scm (python-pyhamcrest, python2-pyhamcrest): New
variables.

Signed-off-by: Kei Kebreau <kkebreau@posteo.net>
c04ffadb — Ludovic Courtès 8 years ago
publish: Publish build logs.

* guix/scripts/publish.scm (render-log-file): New procedure.
(make-request-handler): Add "log" case.
* tests/publish.scm ("/log/NAME")
("/log/NAME not found"): New tests.
* doc/guix.texi (Invoking guix publish): Document /log URLs.
152b7bee — Ludovic Courtès 8 years ago
publish: Use 'x-raw-file' internal response header.

This adjusts the workaround for <http://bugs.gnu.org/21093> so that it's
not limited to a single content-type.

* guix/scripts/publish.scm (render-nar/cached): Add the 'x-raw-file'
header on the response.
(render-content-addressed-file): Likewise.
(with-content-length): Remove the 'x-raw-file' header.
(http-write): Instead of dispatching on 'application/octet-stream',
check whether 'x-raw-file' is set to determine whether to spawn a
thread.
06e3a518 — Ludovic Courtès 8 years ago
doc: Mark zlib as mandatory, libbz2 as optional.

* doc/guix.texi (Requirements): Move zlib to mandatory and libbz2 to
optional.
* README: Ditto.
f997137d — Ludovic Courtès 8 years ago
daemon: Make libbz2 an optional dependency.

* config-daemon.ac: Don't bail out when libbz2 is missing.  Define
'HAVE_LIBBZ2' Automake conditional.
* nix/libstore/build.cc: Wrap relevant bits in '#if HAVE_BZLIB_H'.
* nix/libstore/globals.cc (Settings::Settings): 'logCompression'
defaults to COMPRESSION_GZIP when HAVE_BZLIB_H is false.
* nix/libstore/globals.hh (CompressionType): Make 'COMPRESSION_BZIP2'
conditional on HAVE_BZLIB_H.
* nix/local.mk (guix_register_LDADD, guix_daemon_LDADD): Add -lbz2 only
when HAVE_LIBBZ2.
* nix/nix-daemon/guix-daemon.cc (parse_opt): Ignore "bzip2" when not
HAVE_BZLIB_H.
29a68668 — Ludovic Courtès 8 years ago
daemon: Add gzip log compression.

* nix/nix-daemon/guix-daemon.cc (GUIX_OPT_LOG_COMPRESSION): New macro.
(options): Mark "disable-log-compression" as hidden and add
"log-compression".
(parse_opt): Handle GUIX_OPT_LOG_COMPRESSION.
* nix/libstore/build.cc (DerivationGoal): Add 'gzLogFile'.
(openLogFile): Initialize it when 'logCompression' is COMPRESSION_GZIP.
(closeLogFile, handleChildOutput): Honor 'gzLogFile'.
* nix/libstore/globals.hh (Settings)[compressLog]: Remove.
[logCompression]: New field.
(CompressionType): New enum.
* nix/libstore/globals.cc (Settings::Settings): Initialize it.
(update): Remove '_get' call for 'compressLog'.
* nix/local.mk (guix_daemon_LDADD, guix_register_LDADD): Add -lz.
* guix/store.scm (log-file): Handle '.gz' log files.
* tests/guix-daemon.sh: Add test with '--log-compression=gzip'.
* doc/guix.texi (Invoking guix-daemon): Adjust accordingly.
* config-daemon.ac: Check for libz and zlib.h.
896fec47 — Ludovic Courtès 8 years ago
ssh: Improve error reporting when retrieving files.

'guix copy --from' now reports messages much more useful than "failed to
retrieve files".

* guix/ssh.scm (store-export-channel)[export]: Wrap 'use-modules' in
'catch' and 'with-store' in 'guard'.  Check for invalid items.  Write a
status sexp on stdout.
(raise-error): New macro.
(retrieve-files): Read the initial status sexp and report errors
accordingly.
4a8d536f — Ludovic Courtès 8 years ago
ui: Display hints that come along with '&message' conditions.

* guix/ui.scm (call-with-error-handling): Add case for message and
fix-hint?.
b94f250e — Ricardo Wurmus 8 years ago
gnu: rosegarden: Use jack-1.

* gnu/packages/music.scm (rosegarden)[inputs]: Replace jack-2 with jack-1.
0e78801a — Ricardo Wurmus 8 years ago
gnu: dssi: Use jack-1.

* gnu/packages/music.scm (dssi)[inputs]: Replace jack-2 with jack-1.
43188faf — Ricardo Wurmus 8 years ago
gnu: Add muse-sequencer.

* gnu/packages/music.scm (muse-sequencer): New variable.
61b94b8c — Ludovic Courtès 8 years ago
vm: 'vm-image' images refer to the root file system by UUID.

This avoids the hard-coded "/dev/sda1", which only made sense when the
image is run with "qemu-system-x86_64 -hda", not when it's passed to
Xen, etc.

Reported by Andreas Enge <andreas@enge.fr>.

* gnu/system/vm.scm (system-qemu-image): Define 'root-uuid', use it as
the 'device' field for "/", and pass it to 'qemu-image'.
beb7e659 — Efraim Flashner 8 years ago
gnu: mes: Generalize logic for native-inputs.

* gnu/packages/mes.scm (mes)[native-inputs]: On all architectures except
i686-linux use cross compiler packages.
Next