summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* build: Protect against misconfiguration of localstatedir.Ludovic Courtès2016-03-19
| | | | | | | | | | | Suggested by Jookia <166291@gmail.com>. * m4/guix.m4 (GUIX_CURRENT_LOCALSTATEDIR, GUIX_CHECK_LOCALSTATEDIR): New macros. * config-daemon.ac: Use 'GUIX_CHECK_LOCALSTATEDIR'. * Makefile.am (DISTCHECK_CONFIGURE_FLAGS): Add --localstatedir. * doc/guix.texi (Requirements): Mention --localstatedir. (The Store): Mention LOCALSTATEDIR as such.
* gnu: kodi: Remove @acronym from description.Ludovic Courtès2016-03-19
| | | | | | This works around <http://bugs.gnu.org/21772>. * gnu/packages/kodi.scm (crossguid): Remove @acronym.
* gnu: r-dnacopy: Fix home page URL.Ludovic Courtès2016-03-18
| | | | | * gnu/packages/bioinformatics.scm (r-dnacopy)[home-page]: Add missing URI scheme.
* gnu: gnome: Disable hardware acceleration check via 'gnome.desktop'.Ludovic Courtès2016-03-18
| | | | | * gnu/packages/gnome.scm (gnome-session)[arguments]: Add 'disable-hardware-acceleration-check' phase.
* services: xorg: Accept session commands with arguments.Ludovic Courtès2016-03-18
| | | | | | | | | Before that, a session command with several items, such as 'gnome-session --disable-acceleration-check', would trigger the fallback session. * gnu/services/xorg.scm (xinitrc)[builder]: Accept command lines with more than one arguments.
* gnu: gnome-session: Make sure 'gsettings' is found.Ludovic Courtès2016-03-18
| | | | | * gnu/packages/gnome.scm (gnome-session)[arguments]: Add 'wrap-gnome-session' phase.
* gnu: Add beets.Leo Famulari2016-03-18
| | | | * gnu/packages/music.scm (beets): New variable.
* gnu: Add python-rarfile.Leo Famulari2016-03-18
| | | | | | | * gnu/packages/python.scm (python-rarfile, python2-rarfile): New variables. * gnu/packages/patches/python-rarfile-fix-tests.patch: New file. * gnu-system.am (dist_patch_DATA): Add it.
* gnu: Add python2-unicodecsv.Leo Famulari2016-03-18
| | | | * gnu/packages/python.scm (python2-unicodecsv): New variable.
* gnu: Add python-jellyfish.Leo Famulari2016-03-18
| | | | * gnu/packages/python.scm (python-jellyfish, python2-jellyfish): New variables.
* gnu: Add python-mpd2.Leo Famulari2016-03-18
| | | | * gnu/packages/mpd.scm (python-mpd2, python2-mpd2): New variables.
* gnu: Add python2-pathlib.Leo Famulari2016-03-18
| | | | * gnu/packages/python.scm (python-pathlib, python2-pathlib): New variables.
* gnu: Add python-responses.Leo Famulari2016-03-18
| | | | * gnu/packages/python.scm (python-responses, python2-responses): New variables.
* gnu: Add python-cookies.Leo Famulari2016-03-18
| | | | * gnu/packages/python.scm (python-cookies, python2-cookies): New variable.
* gnu: Add python-pylast.Leo Famulari2016-03-18
| | | | * gnu/packages/music.scm (python-pylast, python2-pylast): New variables.
* gnu: Add python-pyechonest.Leo Famulari2016-03-18
| | | | * gnu/packages/music.scm (python-pyechonest, python2-pyechonest): New variables.
* gnu: Add python-flask.Leo Famulari2016-03-18
| | | | * gnu/packages/python.scm (python-flask, python2-flask): New variables.
* gnu: Add python-musicbrainzngs.Leo Famulari2016-03-18
| | | | | * gnu/packages/music.scm (python-musicbrainzngs, python2-musicbrainzngs): New variables.
* gnu: Add python-munkres.Leo Famulari2016-03-18
| | | | * gnu/packages/python.scm (python-munkres, python2-munkres): New variables.
* gnu: Add python-mutagen.Leo Famulari2016-03-18
| | | | * gnu/packages/music.scm (python-mutagen, python2-mutagen): New variables.
* gnu: linux-libre-4.4: Update to 4.4.6.Mark H Weaver2016-03-18
| | | | * gnu/packages/linux.scm (linux-libre-4.4): Update to 4.4.6.
* gnu: bundler: Update to 1.11.2.David Thompson2016-03-18
| | | | * gnu/packages/ruby.scm (bundler): Update to 1.11.2.
* gnu: vigra: Update to 1.11.0.Andreas Enge2016-03-18
| | | | | * gnu/packages/image.scm (vigra)[source]: Update to 1.11.0. [arguments]: Disable parallel builds.
* gnu: aria2: Update to 1.21.0.Efraim Flashner2016-03-18
| | | | * gnu/packages/bittorrent.scm (aria2): Update to 1.21.0.
* gnu: libotr: Fix tests on mips64el.Mark H Weaver2016-03-17
| | | | | | * gnu/packages/patches/libotr-test-auth-fix.patch: New file. * gnu-system.am (dist_patch_DATA): Add it. * gnu/packages/messaging.scm (libotr)[source]: Add patch.
* substitute: Do not leak file descriptors for TLS connections.Ludovic Courtès2016-03-17
| | | | | | | | Partially fixes <http://bugs.gnu.org/20145>. * guix/scripts/substitute.scm (fetch, download-cache-info): (http-multiple-get, fetch-narinfos, progress-report-port): Use 'close-connection' instead of 'close-port'.
* substitute: Cache transient HTTP errors for 10mn.Ludovic Courtès2016-03-17
| | | | | | * guix/scripts/substitute.scm (fetch-narinfos)[handle-narinfo-response]: Cache transient errors for 10mn. (%narinfo-transient-error-ttl): New variable.
* lint: Do not leak file descriptors for TLS connections.Ludovic Courtès2016-03-17
| | | | | | | Partially fixes <http://bugs.gnu.org/20145>. * guix/scripts/lint.scm (probe-uri): Use 'close-connection' instead of 'close-port'.
* download: Add 'close-connection'.Ludovic Courtès2016-03-17
| | | | | | | | | | Partially fixes <http://bugs.gnu.org/20145>. * guix/build/download.scm (add-weak-reference): Remove. (%tls-ports): New variable. (register-tls-record-port): New procedure. (tls-wrap): Use it instead of 'add-weak-reference'. (close-connection): New procedure.
* substitute: Update progress for responses different from 200/404.Ludovic Courtès2016-03-17
| | | | | * guix/scripts/substitute.scm (fetch-narinfos)[handle-narinfo-response]: Add missing call to 'update-progress!'.
* gnu: postgresql: Update to 9.5.1.Efraim Flashner2016-03-17
| | | | * gnu/packages/databases.scm (postgresql): Update to 9.5.1.
* gnu: mysql: Update to 5.7.11.Efraim Flashner2016-03-17
| | | | | | | * gnu/packages/databases.scm (mysql): Update to 5.7.11. [source]: Add archives as alternate download location. [arguments]: Remove custom phase 'strip-extra-references. Add substitution to target boost-1.60.
* gnu: gnome-session: Add elogind input.Andy Wingo2016-03-17
| | | | | * gnu/packages/gnome.scm (gnome-session): Add elogind input, while disabling the use of systemd's journal.
* gnu: bless: Remove bundled sources for sparsehash.Ricardo Wurmus2016-03-17
| | | | | | * gnu/packages/bioinformatics.scm (bless)[source]: Delete "google-sparsehash" sources. [inputs]: Add "sparsehash".
* gnu: Add CD-HIT.Ricardo Wurmus2016-03-17
| | | | * gnu/packages/bioinformatics.scm (cd-hit): New variable.
* doc: Add missing comma after @xref.Ludovic Courtès2016-03-17
| | | | | | Reported by Alex Kost <alezost@gmail.com>. * doc/guix.texi (Service Reference): Add comma after @xref.
* doc: GNOME is now available.Ludovic Courtès2016-03-17
| | | | * doc/guix.texi (Limitations): Rephrase item about GNOME and KDE.
* gnu: elogind: Update to 219.14.Andy Wingo2016-03-17
| | | | * gnu/packages/freedesktop.scm (elogind): Update to 219.14.
* gnu: emacs-pdf-tools: Add missing input.Alex Kost2016-03-17
| | | | | | | This is a followup to commit eccd0b57a1f05b3caca28604f4d2c06556e2fe05. * gnu/packages/emacs.scm (emacs-pdf-tools)[propagated-inputs]: Add 'let-alist'.
* gnu: emacs-pdf-tools: Use emacs-build-system for elisp side.Alex Kost2016-03-17
| | | | | | | * gnu/packages/emacs.scm (emacs-pdf-tools)[arguments]: Add phases from emacs-build-system to build elisp side. Co-authored-by: Ludovic Courtès <ludo@gnu.org>
* gnu: Add WAH plugins.Ricardo Wurmus2016-03-17
| | | | * gnu/packages/audio.scm (wah-plugins): New variable.
* gnu: Add STE plugins.Ricardo Wurmus2016-03-17
| | | | * gnu/packages/audio.scm (ste-plugins): New variable.
* gnu: Add FIL plugins.Ricardo Wurmus2016-03-17
| | | | * gnu/packages/audio.scm (fil-plugins): New variable.
* gnu: Add REV plugins.Ricardo Wurmus2016-03-17
| | | | * gnu/packages/audio.scm (rev-plugins): New variable.
* gnu: Add AMB plugins.Ricardo Wurmus2016-03-17
| | | | * gnu/packages/audio.scm (amb-plugins): New variable.
* gnu: Add g2reverb.Ricardo Wurmus2016-03-17
| | | | * gnu/packages/audio.scm (g2reverb): New variable.
* gnu: Add vco-plugins.Ricardo Wurmus2016-03-17
| | | | * gnu/packages/audio.scm (vco-plugins): New variable.
* gnu: Add mcp-plugins.Ricardo Wurmus2016-03-17
| | | | * gnu/packages/audio.scm (mcp-plugins): New variable.
* licenses: Add Apache Software License 1.1.Roel Janssen2016-03-17
| | | | | | * guix/licenses.scm (asl1.1): New variables. Signed-off-by: Leo Famulari <leo@famulari.name>
* gnu: Add perl-text-neattemplate.Jochem Raat2016-03-17
| | | | | | * gnu/packages/perl.scm (perl-text-neattemplate): New variable. Signed-off-by: Leo Famulari <leo@famulari.name>