summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2017-04-08screen: Fix info page build failure....* gnu/packages/patches/screen-fix-info-syntax-error.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it. * gnu/packages/screen.scm (screen)[source]: Use it. Leo Famulari
2017-04-08gnu: lz4: Update to 1.7.5....* gnu/packages/compression.scm (lz4): Update to 1.7.5. [source]: Update source URL. Use patch 'lz4-fix-test-failures.patch'. [home-page]: Update URL. * gnu/packages/patches/lz4-fix-test-failures.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it. Leo Famulari
2017-04-08gnu: Add alpine....* gnu/packages/mail.scm (alpine): New variable. Signed-off-by: Kei Kebreau <kei@openmailbox.org> ng0
2017-04-08gnu: certbot: Share python-acme's arguments....* gnu/packages/tls.scm (certbot)[arguments]: Use substitute-keyword-arguments to inherit from python-acme. Leo Famulari
2017-04-08gnu: certbot, python-acme: Update to 0.13.0....* gnu/packages/tls.scm (certbot, python-acme, python2-acme): Update to 0.13.0. [arguments]: Add 'patch-dependency' phase. Leo Famulari
2017-04-08gnu: python-django-mailman3: Balance parentheses for inputs....* gnu/packages/mail.scm (python-django-mailman3)[inputs]: Balance them. Kei Kebreau
2017-04-08gnu: Add postorius....* gnu/packages/mail.scm (postorius): New variable. Signed-off-by: Kei Kebreau <kei@openmailbox.org> ng0
2017-04-08gnu: Add python-django-mailman3....* gnu/packages/mail.scm (python-django-mailman3): New variable. Signed-off-by: Kei Kebreau <kei@openmailbox.org> ng0
2017-04-08gnu: Add python-django-gravatar2....* gnu/packages/django.scm (python-django-gravatar2): New variable. Signed-off-by: Kei Kebreau <kei@openmailbox.org> ng0
2017-04-08gnu: Add python-django-allauth....* gnu/packages/django.scm (python-django-allauth): New variable. Signed-off-by: Kei Kebreau <kei@openmailbox.org> ng0
2017-04-08gnu: Add python-openid....* gnu/packages/python.scm (python-openid): New variable. Signed-off-by: Kei Kebreau <kei@openmailbox.org> ng0
2017-04-08gnu: Add python-defusedxml....* gnu/packages/xml.scm (python-defusedxml): New variable. Signed-off-by: Kei Kebreau <kei@openmailbox.org> ng0
2017-04-08gnu: Add you-get....* gnu/packages/video.scm (you-get): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Feng Shu
2017-04-08gnu: octave: Build with gl2ps support....* gnu/packages/maths.scm (octave)[inputs]: Add gl2ps. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Arun Isaac
2017-04-08gnu: Add gl2ps....* gnu/packages/gl.scm (gl2ps): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Arun Isaac
2017-04-08monads: Improve mlet, mlet*, and mbegin documentation....* doc/guix.texi (The Store Monad) <mlet, mlet*, mbegin>: Clarify their intended usage. * guix/monads.scm (mbegin): Update docstring accordingly. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Chris Marusich
2017-04-08monads, doc: Improve mwhen and munless documentation....* doc/guix.texi (The Store Monad) <mwhen, munless>: Document them. * guix/monads.scm (mwhen, munless): Clarify their intended use. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Chris Marusich
2017-04-08monads: Use intent-revealing parameter names....* guix/monads.scm (mwhen, munless): Rename parameters from 'exp0' and 'exp' to 'mexp0' and 'mexp', respectively. This makes it more obvious that these expressions must be monadic expressions. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Chris Marusich
2017-04-08gnu: r-vegan: Update to 2.4-3....* gnu/packages/bioinformatics.scm (r-vegan): Update to 2.4-3. [arguments]: Remove build phase "revert-test-deletion". [native-inputs]: Remove "r-vegan-delete-tests-patch". Ricardo Wurmus
2017-04-08gnu: r-stringi: Update to 1.1.5....* gnu/packages/statistics.scm (r-stringi): Update to 1.1.5. Ricardo Wurmus
2017-04-07gnu: khal: Update to 0.9.5....* gnu/packages/calendar.scm (khal): Update to 0.9.5. Leo Famulari
2017-04-07vm: Add missing module....* gnu/build/vm.scm (define-module): Use module (guix build syscalls). It fixes the following warnings during guix build : gnu/build/vm.scm:233:3: warning: possibly unbound variable `mount' gnu/build/vm.scm:238:3: warning: possibly unbound variable `umount' gnu/build/vm.scm:268:8: warning: possibly unbound variable `mount' gnu/build/vm.scm:276:8: warning: possibly unbound variable `umount' gnu/build/vm.scm:315:4: warning: possibly unbound variable `mount' gnu/build/vm.scm:323:4: warning: possibly unbound variable `umount' This was not possible until the previous commit because we had to be sure that Guile core implementation of 'mount' and 'umount' was used in initrd context. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Mathieu Othacehe
2017-04-07syscalls: Allow mount and umount use from static Guile....* guix/build/syscalls.scm (mount): Use Guile core mount if called from static Guile, otherwise use FFI based mount implementation. (umount): Ditto. This allows to use (guix build syscalls) from a module independently of calling context. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Mathieu Othacehe
2017-04-07gnu: dovecot-trees: Update to 2.1.0....* gnu/packages/mail.scm (dovecot-trees): Update to 2.1.0. (source): Change to use 'url-fetch'. Signed-off-by: Ludovic Courtès <ludo@gnu.org> ng0
2017-04-07build: Include 'glibc-utf8-locales' in the binary tarball....* Makefile.am (guix-binary.%.tar.xz): Add 'glibc-utf8-locales' and 'glibc-final' to the 'guix pack' command line. * doc/guix.texi (Binary Installation): Mention 'etc/profile'. Ludovic Courtès
2017-04-07profiles: Slightly improve the instructions in 'etc/profile'....* guix/build/profiles.scm (build-etc/profile): Fix typo in comment. Add backslash in the generated shell comment. Ludovic Courtès
2017-04-07pack: Add '--expression'....* guix/scripts/pack.scm (%options, show-help): Add '--expression'. (guix-pack)[maybe-package-argument]: New procedure. Use it, and remove variable 'specs'. * doc/guix.texi (Invoking guix pack): Document '--expression'. Ludovic Courtès
2017-04-07gnu: Add intel-gpu-tools....* gnu/packages/admin.scm (intel-gpu-tools): New variable. Ricardo Wurmus
2017-04-07gnu: emacs-symon: Update to 20160630....* gnu/packagages/emacs.scm (emacs-symon): Update to 20160630 (this is the latest tag available from the upstream). [source]: Use github instead of melpa. [home-page]: Update. Signed-off-by: Alex Kost <alezost@gmail.com> Vasile Dumitrascu
2017-04-07gnu: Add emacs-adaptive-wrap....Suggested-by Ivan Vilata i Balaguer <ivan@selidor.net>. Fixes <https://bugs.gnu.org/26367>. * gnu/packages/emacs.scm (emacs-adaptive-wrap): New variable. Signed-off-by: Alex Kost <alezost@gmail.com> humanitiesNerd
2017-04-07gnu: emacs-debbugs: Update to 0.14....* gnu/packages/emacs.scm (emacs-debbugs): Update to 0.14. Alex Kost
2017-04-07gnu: perf: Add support for C++ symbol demangling....* gnu/packages/linux.scm (perf)[inputs]: Add libiberty. Ludovic Courtès
2017-04-07gnu: ratpoison: Update to 1.4.9....* gnu/packages/ratpoison.scm (ratpoison): Update to 1.4.9. [inputs]: Remove libxinerama. Add libxrandr. Signed-off-by: Leo Famulari <leo@famulari.name> Mathieu Othacehe
2017-04-07gnu: guitarix: Disable webkit features....The only version of webkit supported by guitarix is unmaintained and contains a large number of security vulnerabilities, and should be removed from Guix. * gnu/packages/audio.scm (guitarix)[inputs]: Remove webkitgtk/gtk+-2. Leo Famulari
2017-04-07gnu: myrepos: Use 'modify-phases' syntax....* gnu/packages/version-control.scm (myrepos)[arguments]: Use 'modify-phases' syntax. Efraim Flashner
2017-04-07gnu: myrepos: Update to 1.20170129....* gnu/packages/version-control.scm (myrepos): Update to 1.20170129. [source]: Source tarballs have been removed from Github, use git-download to download from upstream repository. [home-page]: Use https. Efraim Flashner
2017-04-07gnu: gnubik: Update to 2.4.3....* gnu/packages/games.scm (gnubik): Update to 2.4.3. Efraim Flashner
2017-04-07gnu: vsearch: Update to 2.4.3....* gnu/packages/bioinformatics.scm (vsearch): Update to 2.4.3. Ben Woodcroft
2017-04-07gnu: qemu: Update to 2.8.1 [security fixes]....Fixes CVE-2016-{9602,9603} and CVE-2017-{2615,2620,2630,5667,5931}. * gnu/packages/qemu.scm (qemu): Update to 2.8.1. * gnu/packages/patches/qemu-CVE-2017-2615.patch, gnu/packages/patches/qemu-CVE-2017-2620.patch, gnu/packages/patches/qemu-CVE-2017-2630.patch, gnu/packages/patches/qemu-CVE-2017-5667.patch, gnu/packages/patches/qemu-CVE-2017-5931.patch: Delete files. * gnu/local.mk (dist_patch_DATA): Remove them. Leo Famulari
2017-04-06gnu: surf: Update to 2.0....* gnu/packages/suckless.scm (surf): Update to 2.0. [inputs]: Replace webkitgtk/gtk+-2 with webkitgtk. Leo Famulari
2017-04-07size: Add test to multiple 'store-profile' arguments....* tests/size.scm ("store-profile with multiple items"): New test. Ludovic Courtès
2017-04-07size: Avoid '_' as a pattern variable in 'match'....* guix/scripts/size.scm (display-profile, profile->page-map): Don't use '_' as a 'match' pattern variable. Ludovic Courtès
2017-04-07gnu: flann: Move .mex file to a separate "octave" output....That way the closure of flann:out is down from 1 GiB to 290 MiB. * gnu/packages/maths.scm (flann)[outputs]: New field. [arguments]: Add 'set-octave-directory' phase. Ludovic Courtès
2017-04-06gnu: webkitgtk: Update to 2.16.1....* gnu/packages/webkit.scm (webkitgtk): Update to 2.16.1. Leo Famulari
2017-04-06gnu: armadillo: Change license to ASL 2.0....Armadillo versions 7.800 and onwards are licensed under the Apache License 2.0. * gnu/packages/maths.scm (armadillo)[license]: Change to ASL 2.0. Ricardo Wurmus
2017-04-06gnu: re2: Update to 2017-04-01....* gnu/packages/regex.scm (re2): Update to 2017-04-01. Marius Bakke
2017-04-06gnu: feh: Update to 2.18.3....* gnu/packages/image-viewers.scm (feh): Update to 2.18.3. Marius Bakke
2017-04-06gnu: libusb: Update to 1.0.21....* gnu/packages/libusb.scm (libusb): Update to 1.0.21. [home-page]: Update to new URL. Marius Bakke
2017-04-06gnu: libmtp: Update to 1.1.13 [security fixes]....* gnu/packages/libusb.scm (libmtp): Update to 1.1.13. Marius Bakke
2017-04-06gnu: r-sourcetools: Update to 0.1.6....* gnu/packages/statistics.scm (r-sourcetools): Update to 0.1.6. Ricardo Wurmus