aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Build libvirt with netcfqemu-netcf-supportChristopher Baines2018-01-18
|
* Add netcfChristopher Baines2018-01-18
|
* gnu: guile-wiredtiger: Update to 0.6.3.amirouche2018-01-08
| | | | | | | | | * gnu/package/databases.scm (guile-wiredtiger): Update to 0.6.3. [arguments]: Enable tests; disable parallel tests; remove 'remove-bundled-dependencies' phase. [synopsis, description]: Improve them. Signed-off-by: Kei Kebreau <kkebreau@posteo.net>
* gnu: Add emacs-bongo.Mathieu Othacehe2018-01-08
| | | | * gnu/packages/emacs.scm (emacs-bongo): New variable.
* gnu: snakemake: Update to 4.4.0.Ricardo Wurmus2018-01-08
| | | | * gnu/packages/python.scm (snakemake): Update to 4.4.0.
* gnu: elixir: Update to 1.5.3.Tobias Geerinckx-Rice2018-01-08
| | | | * gnu/packages/elixir.scm (elixir): Update to 1.5.3.
* gnu: services: Add darkstat service.宋文武2018-01-08
| | | | | | * gnu/services/monitoring.scm: New file. * gnu/local.mk (GNU_SYSTEM_MODULES): Add it. * doc/guix.texi (Monitoring Services): Document it.
* gnu: Add darkstat.宋文武2018-01-08
| | | | * gnu/packages/monitoring.scm (darkstat): New variable.
* import: crate: Gracefully deal with missing license info.Ludovic Courtès2018-01-08
| | | | | | | | Reported by Fis Trivial <ybbs.daans@hotmail.com>. Fixes <https://bugs.gnu.org/28987>. * guix/import/crate.scm (crate-fetch): Check whether the "license" info is present.
* services: guix: Add 'log-compression' option.Ludovic Courtès2018-01-08
| | | | | | | | * gnu/services/base.scm (<guix-configuration>)[log-compression]: New field. (guix-shepherd-service): Use 'match-record' instead of 'match'. Honor 'log-compression'. * doc/guix.texi (Base Services): Document 'log-compression'.
* gnu: Add html-xml-utils.Stefan Reichör2018-01-08
| | | | | | * gnu/packages/xml.scm (html-xml-utils): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* gnu: Add rtags.Fis Trivial2018-01-08
| | | | | | * gnu/packages/code.scm (rtags): New public variable. Co-authored-by: Ludovic Courtès <ludo@gnu.org>
* gnu: guix: Update snapshot to c04ffad.Ludovic Courtès2018-01-08
| | | | * gnu/packages/package-management.scm (guix): Update to c04ffad.
* gnu: youtube-dl: Update to 2018.01.07.Tobias Geerinckx-Rice2018-01-08
| | | | * gnu/packages/video.scm (youtube-dl): Update to 2018.01.07.
* gnu: nano: Update to 2.9.2.Tobias Geerinckx-Rice2018-01-08
| | | | * gnu/packages/nano.scm (nano): Update to 2.9.2.
* gnu: borg: Unbundle libb2.Tobias Geerinckx-Rice2018-01-08
| | | | | | * gnu/packages/backup.scm (borg)[source]: Remove bundled libb2 in snippet. [inputs]: Add libb2. [arguments]: Use it.
* gnu: Add libb2.Tobias Geerinckx-Rice2018-01-08
| | | | * gnu/packages/crypto.scm (libb2): New public variable.
* gnu: Add missing copyright line.Kei Kebreau2018-01-07
| | | | * gnu/packages/check.scm: Add copyright line for 18a4d6d.
* gnu: Add python-pyhamcrest.Fis Trivial2018-01-07
| | | | | | | * gnu/packages/check.scm (python-pyhamcrest, python2-pyhamcrest): New variables. Signed-off-by: Kei Kebreau <kkebreau@posteo.net>
* publish: Publish build logs.Ludovic Courtès2018-01-07
| | | | | | | | * 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.
* publish: Use 'x-raw-file' internal response header.Ludovic Courtès2018-01-07
| | | | | | | | | | | | | 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.
* doc: Mark zlib as mandatory, libbz2 as optional.Ludovic Courtès2018-01-07
| | | | | | * doc/guix.texi (Requirements): Move zlib to mandatory and libbz2 to optional. * README: Ditto.
* daemon: Make libbz2 an optional dependency.Ludovic Courtès2018-01-07
| | | | | | | | | | | | | | * 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.
* daemon: Add gzip log compression.Ludovic Courtès2018-01-07
| | | | | | | | | | | | | | | | | | | | * 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.
* ssh: Improve error reporting when retrieving files.Ludovic Courtès2018-01-07
| | | | | | | | | | | | '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.
* ui: Display hints that come along with '&message' conditions.Ludovic Courtès2018-01-07
| | | | | * guix/ui.scm (call-with-error-handling): Add case for message and fix-hint?.
* gnu: rosegarden: Use jack-1.Ricardo Wurmus2018-01-07
| | | | * gnu/packages/music.scm (rosegarden)[inputs]: Replace jack-2 with jack-1.
* gnu: dssi: Use jack-1.Ricardo Wurmus2018-01-07
| | | | * gnu/packages/music.scm (dssi)[inputs]: Replace jack-2 with jack-1.
* gnu: Add muse-sequencer.Ricardo Wurmus2018-01-07
| | | | * gnu/packages/music.scm (muse-sequencer): New variable.
* vm: 'vm-image' images refer to the root file system by UUID.Ludovic Courtès2018-01-07
| | | | | | | | | | | 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'.
* gnu: mes: Generalize logic for native-inputs.Efraim Flashner2018-01-07
| | | | | * gnu/packages/mes.scm (mes)[native-inputs]: On all architectures except i686-linux use cross compiler packages.
* gnu: webkitgtk: Disable SharedArrayBuffers to mitigate Spectre.Mark H Weaver2018-01-07
| | | | | | * gnu/packages/patches/webkitgtk-mitigate-spectre.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it. * gnu/packages/webkit.scm (webkitgtk)[source]: Add patch.
* gnu: icecat: Add more fixes, including Spectre mitigation.Mark H Weaver2018-01-06
| | | | | | | | | * gnu/packages/gnuzilla.scm (icecat)[source]: Add more fixes from the upstream mozilla-esr52 repository, plus a backported mitigation for Spectre from Firefox 57.0.4. * gnu/packages/patches/icecat-bug-1427870-spectre-mitigation.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it.
* gnu: irssi: Update to 1.0.6 [fixes CVE-2017-{5205,5206,5207,5208}].Leo Famulari2018-01-06
| | | | * gnu/packages/irc.scm (irssi): Update to 1.0.6.
* doc: Describe Wayland status.Rutger Helling2018-01-06
| | | | | * doc/guix.texi (Desktop Services): Add a paragraph about the current status of Wayland in Guix.
* gnu: gdm: Update to 3.26.2.1.Rutger Helling2018-01-06
| | | | * gnu/packages/gnome.scm (gdm): Update to 3.26.2.1.
* gnu: gnome-online-accounts: Update to 3.26.2.Tobias Geerinckx-Rice2018-01-06
| | | | | | | | This removes telepathy support, which is actively discouraged upstream: <https://git.gnome.org/browse/gnome-online-accounts/commit/?id=a65ebfe1069>. * gnu/packages/gnome.scm (gnome-online-accounts): Update to 3.26.2. [inputs]: Remove telepathy-glib.
* gnu: crawl, craw-titles: Update to 0.21.0.nee2018-01-06
| | | | | | * gnu/packages/games.scm (crawl, crawl-tiles): Update to 0.21.0. Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
* build: Detect broken 'equal?' in Guile 2.2.1.Ludovic Courtès2018-01-06
| | | | | | | | Fixes <https://bugs.gnu.org/29903>. Reported by Mathieu Lirzin <mthl@gnu.org>. * m4/guix.m4 (GUIX_ASSERT_SYNTAX_OBJECT_EQUAL): New macro. * configure.ac: Use it.
* publish: Save bandwidth on narinfo 404s.Ludovic Courtès2018-01-06
| | | | | | | | This saves 18 bytes on each 404 narinfo response. * guix/scripts/publish.scm (render-narinfo): Pass #:phrase to 'not-found'. (render-narinfo/cached): Likewise.
* gnu: linux-libre: Update to 4.14.12.Mark H Weaver2018-01-06
| | | | | * gnu/packages/linux.scm (%linux-libre-version): Update to 4.14.12. (%linux-libre-hash): Update hash.
* gnu: linux-libre@4.9: Update to 4.9.75.Mark H Weaver2018-01-06
| | | | * gnu/packages/linux.scm (linux-libre-4.9): Update to 4.9.75.
* gnu: linux-libre@4.4: Update to 4.4.110.Mark H Weaver2018-01-06
| | | | * gnu/packages/linux.scm (linux-libre-4.4): Update to 4.4.110.
* gnu: stellarium: Update to 0.17.0.Kei Kebreau2018-01-05
| | | | | | | | * gnu/packages/astronomy.scm (stellarium): Update to 0.17.0. [source]: Use new upstream URL. [arguments]: Adjust #:test-target; add #:configure-flags to locate the qtserialport header files and enable the building of tests; remove 'patch-tests' phase.
* gnu: qjackctl: Add support for ALSA MIDI sequencer.Ricardo Wurmus2018-01-05
| | | | * gnu/packages/audio.scm (qjackctl)[inputs]: Add alsa-lib.
* gnu: qjackctl: Update to 0.5.0.Ricardo Wurmus2018-01-05
| | | | * gnu/packages/audio.scm (qjackctl): Update to 0.5.0.
* gnu: qsynth: Update to 0.5.0.Ricardo Wurmus2018-01-05
| | | | * gnu/packages/audio.scm (qsynth): Update to 0.5.0.
* gnu: Add padthv1.Ricardo Wurmus2018-01-05
| | | | * gnu/packages/music.scm (padthv1): New variable.
* gnu: fluidsynth: Update to 1.1.9.Ricardo Wurmus2018-01-05
| | | | * gnu/packages/audio.scm (fluidsynth): Update to 1.1.9.
* gnu: synthv1: Update to 0.8.6.Ricardo Wurmus2018-01-05
| | | | * gnu/packages/music.scm (synthv1): Update to 0.8.6.