summaryrefslogtreecommitdiff
path: root/gnu/packages
AgeCommit message (Collapse)Author
2016-05-04utils: Move combinators to (guix combinators).Ludovic Courtès
* guix/utils.scm (compile-time-value, memoize, fold2) (fold-tree, fold-tree-leaves): Move to... * guix/combinators: ... here. New file. * tests/utils.scm ("fold2, 1 list", "fold2, 2 lists") (fold-tree tests): Move to... * tests/combinators.scm: ... here. New file. * Makefile.am (MODULES, SCM_TESTS): Add them. * gnu/packages.scm, gnu/packages/bootstrap.scm, gnu/services/herd.scm, guix/build-system/gnu.scm, guix/build-system/python.scm, guix/derivations.scm, guix/gnu-maintenance.scm, guix/import/elpa.scm, guix/scripts/archive.scm, guix/scripts/build.scm, guix/scripts/graph.scm, guix/scripts/lint.scm, guix/scripts/size.scm, guix/scripts/substitute.scm, guix/serialization.scm, guix/store.scm, guix/ui.scm: Adjust imports accordingly.
2016-05-04gnu: tvtime: Update to 1.0.10.Alex Kost
* gnu/packages/tv.scm (tvtime): Update to 1.0.10. [source]: Remove patches. [inputs]: Add 'alsa-lib'. * gnu/packages/patches/tvtime-gcc41.patch, gnu/packages/patches/tvtime-pngoutput.patch, gnu/packages/patches/tvtime-videodev2.patch, gnu/packages/patches/tvtime-xmltv.patch: Remove files. * gnu/local.mk (dist_patch_DATA): Remove them.
2016-05-04gnu: libcue: Update to 2.1.0.Alex Kost
* gnu/packages/cdrom.scm (libcue): Update to 2.1.0. [build-system]: Use 'cmake-build-system' (the upstream moved to it). [native-inputs]: Add 'bison' and 'flex'.
2016-05-04gnu: gnupg: Update to 2.1.12.Efraim Flashner
* gnu/packages/gnupg.scm (gnupg): Update to 2.1.12. [source]: Remove patch. * gnu/packages/patches/gnupg-simple-query-ignore-status-messages.patch: Remove file. * gnu/local.mk (dist_patch_DATA): Remove reference.
2016-05-04gnu: jemalloc: Update to 4.1.0.Jelle Licht
* gnu/packages/jemalloc.scm (jemalloc): Upodate to 4.1.0. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
2016-05-04gnu: imlib2: Update to 1.4.9 [fixes CVE-2011-5326, CVE-2016-{3993,3994}].Mark H Weaver
* gnu/packages/image.scm (imlib2): Update to 1.4.9. [source]: Remove patch. * gnu/packages/patches/imlib2-CVE-2016-4024.patch: Delete file. * gnu/local.mk (dist_patch_DATA): Remove it.
2016-05-04gnu: imagemagick: Update to 6.9.3-10.David Thompson
Fixes CVE-2016–3714. * gnu/packages/imagemagick.scm (imagemagick): Update to 6.9.3-10. [source]: Remove patch. * gnu/packages/patches/imagemagick-test-segv.patch: Delete. * gnu/local.mk (dist_patch_DATA): Remove patch file from distribution.
2016-05-04gnu: bitlbee: Incorporate upstream pre-release patches.Andy Wingo
* gnu/packages/messaging.scm (%bitlbee-buddy-nick-change-patch): (%bitlbee-always-use-nicks-patch): New variables. (bitlbee): Add new patches.
2016-05-04gnu: bitlbee: Update to 3.4.2.Andy Wingo
* gnu/packages/messaging.scm (bitlbee): Update to 3.4.2.
2016-05-04gnu: edirect: Update to 4.10.Ricardo Wurmus
* gnu/packages/bioinformatics.scm (edirect): Update to 4.10.
2016-05-04gnu: Add pinentry-qt.Efraim Flashner
* gnu/packages/gnupg.scm (pinentry-qt): New variable.
2016-05-04gnu: Add pinentry-tty.Efraim Flashner
* gnu/packages/gnupg.scm (pinentry-tty): New variable. [arguments]: Add pinentry-tty flag. (pinentry-gtk2): Inherit from pinentry-tty. [inputs]: Use gtk+-2, glib for pinentry-gtk2 only. [description]: Modify description based on inputs.
2016-05-04gnu: pinentry: Rename to pinentry-gtk2.Efraim Flashner
* gnu/packages/gnupg.scm (pinentry): Rename to pinentry-gtk2. Define pinentry as pinentry-gtk2.
2016-05-03gnu: cross: Fix typo.Ludovic Courtès
* gnu/packages/cross-base.scm (cross-gcc-arguments): Remove erroneous 'else' introduced in efc4eb147512fa7a2c6d74d9b296cfc22b1ef198.
2016-05-03gnu: Add nlopt.Roel Janssen
* gnu/packages/maths.scm (nlopt): New variable. Co-authored-by: Ludovic Courtès <ludo@gnu.org>
2016-05-03gnu: redeclipse: Rename to red-eclipse.Andreas Enge
* gnu/packages/games.scm (redeclipse): Rename to... (red-eclipse): ...this. This is a follow-up to commit 5b8a85431dd746eb975d70fe31aeb05609946d80, which changed only the name field of the package.
2016-05-03gnu: Rename redeclipse package to red-eclipse.Kei Yamashita
* gnu/packages/games.scm (redeclipse): Rename to... (red-eclipse): ...this. Signed-off-by: Andreas Enge <andreas@enge.fr>
2016-05-03gnu: openssl: Replace with 1.0.2h [security fixes].Mark H Weaver
Fixes CVE-2016-{2105,2106,2107,2109,2176}. * gnu/packages/tls.scm (openssl)[replacement]: New field. (openssl/fixed): New variable.
2016-05-03gnu: gcc: Add 6.1.0.Ludovic Courtès
* gnu/packages/gcc.scm (gcc-6): New variable. * gnu/packages/commencement.scm (gcc-toolchain-6): New variable.
2016-05-03gnu: cross: Use CROSS_*_INCLUDE_PATH for system headers.Jan Nieuwenhuizen
* gnu/packages/patches/gcc-cross-environment-variables.patch: Also use CROSS_ variants: CROSS_C_INCLUDE_PATH, CROSS_CPLUS_INCLUDE_PATH, CROSS_OBJC_INCLUDE_PATH, CROSS_OBJCPLUS_INCLUDE_PATH to be used for system libraries, see https://lists.gnu.org/archive/html/guix-devel/2016-04/msg00620.html. * gnu/packages/cross-base.scm (cross-gcc, cross-gcc-arguments, cross-libc): Use CROSS_*_INCLUDE_PATH (WAS: CPATH). Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2016-05-03gnu: wpa-supplicant: Add fixes for CVE-2016-{4476,4477}.Mark H Weaver
* gnu/packages/patches/wpa-supplicant-CVE-2016-4476.patch, gnu/packages/patches/wpa-supplicant-CVE-2016-4477-pt1.patch, gnu/packages/patches/wpa-supplicant-CVE-2016-4477-pt2.patch, gnu/packages/patches/wpa-supplicant-CVE-2016-4477-pt3.patch, gnu/packages/patches/wpa-supplicant-CVE-2016-4477-pt4.patch: New files. * gnu/local.mk (dist_patch_DATA): Add it. * gnu/packages/admin.scm (wpa-supplicant-minimal)[source]: Add patches.
2016-05-02gnu: Add 4store.Roel Janssen
* gnu/packages/databases.scm (4store): New variable. * gnu/packages/patches/4store-fix-buildsystem.patch: New file. * gnu/local.mk (dist_patch_DATA): Add patch file entry. Signed-off-by: Leo Famulari <leo@famulari.name>
2016-05-02gnu: ocaml: Fix CVE-2015-8869.Leo Famulari
* gnu/packages/patches/ocaml-CVE-2015-8869.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it. * gnu/packages/ocaml.scm (ocaml): Use it.
2016-05-02gnu: bristol: Do not check for JACK with ldd.Ricardo Wurmus
* gnu/packages/music.scm (bristol)[arguments]: Add build phase to disable runtime check for JACK.
2016-05-02gnu: frescobaldi: Add MIDI support.Ricardo Wurmus
* gnu/packages/music.scm (frescobaldi)[inputs]: Add portmidi and python-pyportmidi.
2016-05-02gnu: Add python-pyportmidi.Ricardo Wurmus
* gnu/packages/music.scm (python-pyportmidi): New variable.
2016-05-02gnu: Add portmidi.Ricardo Wurmus
* gnu/packages/music.scm (portmidi): New variable. * gnu/packages/patches/portmidi-modular-build.patch: New file. * gnu/local.mk (dist_patch_DATA): Register it.
2016-05-02gnu: Add reposurgeon.Mathieu Lirzin
* gnu/packages/version-control.scm (reposurgeon): New variable.
2016-05-02gnu: powertop: Patch absolute file names.Mathieu Lirzin
* gnu/packages/linux.scm (powertop)[inputs]: Add kmod. [arguments]: Patch absolute file names.
2016-05-02gnu: Add java-junit.Ricardo Wurmus
* gnu/packages/java.scm (java-junit): New variable.
2016-05-02gnu: Add java-hamcrest-core.Ricardo Wurmus
* gnu/packages/java.scm (java-hamcrest-core): New variable.
2016-05-02gnu: Add java-jarjar.Ricardo Wurmus
* gnu/packages/java.scm (java-jarjar): New variable.
2016-05-02gnu: Add java-qdox-1.12.Ricardo Wurmus
* gnu/packages/java.scm (java-qdox-1.12): New variable.
2016-05-02gnu: Add r-xnomial.Ricardo Wurmus
* gnu/packages/statistics.scm (r-xnomial): New variable.
2016-05-02gnu: ruby-hashery: Update to 2.1.2.Ben Woodcroft
* gnu/packages/ruby.scm (ruby-hashery): Update to 2.1.2. [arguments]: Remove test workaround.
2016-05-01gnu: asymptote: Update to 2.37.Nicolas Goaziou
* gnu/packages/plotutils.scm (asymptote): Update to 2.37. * gnu/packages/patches/asymptote-gsl2.patch: Remove file. * gnu/local.mk (dist_patch_DATA): Remove reference.
2016-05-01gnu: Add python2-shedskin.Danny Milosavljevic
* gnu/packages/python.scm (python2-shedskin): New variable. Signed-off-by: Leo Famulari <leo@famulari.name>
2016-05-01gnu: guitarix: Update to 0.35.0.Ricardo Wurmus
* gnu/packages/audio.scm (guitarix): Update to 0.35.0.
2016-05-01gnu: qtractor: Update to 0.7.7.Ricardo Wurmus
* gnu/packages/music.scm (qtractor): Update to 0.7.7.
2016-05-01gnu: Add antiword.Ricardo Wurmus
* gnu/packages/textutils.scm (antiword): New variable.
2016-05-01gnu: Add synthv1.Ricardo Wurmus
* gnu/packages/music.scm (synthv1): New variable.
2016-05-01gnu: ao: Replace "itemize" with "enumerate" in description string.John Darrington
* gnu/packages/xiph.scm (ao): Replace "itemize" with "enumerate" in description string. Apparently Guile cannot yet handle "itemize" when creating HTML.
2016-05-01gnu: ao: Format the description string.John Darrington
* gnu/packages/xiph.scm (ao): Add markup to description string.
2016-05-01gnu: bootstrap: Add case for i686-mingw.Jan Nieuwenhuizen
* gnu/packages/bootstrap.scm (glibc-dynamic-linker): Add case for i686-mingw. Signed-off-by: Manolis Ragkousis <manolis837@gmail.com>
2016-04-30gnu: poppler: Fix CVE-2015-8868.Leo Famulari
* gnu/packages/pdf.scm (poppler)[replacement]: New field. (poppler/fixed): New variable. * gnu/packages/patches/poppler-CVE-2015-8868.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it.
2016-04-30gnu: ncmpcpp: Remove bootstrapping phase.Leo Famulari
* gnu/packages/mpd.scm (ncmpcpp)[arguments]: Remove 'autogen' phase. [native-inputs]: Remove autoconf, automake, and libtool.
2016-04-30gnu: Add muscle.Ben Woodcroft
* gnu/packages/bioinformatics.scm (muscle): New variable.
2016-04-30gnu: subversion: Update to 1.8.16 [fixes CVE-2016-{2167,2168}].Mark H Weaver
* gnu/packages/version-control.scm (subversion): Update to 1.8.16.
2016-04-29gnu: Add uhttpmock.Rene Saavedra
* gnu/packages/web.scm (uhttpmock): New variable. Signed-off-by: Leo Famulari <leo@famulari.name>
2016-04-30gnu: ruby-hashery: Disable failing test.Ben Woodcroft
* gnu/packages/ruby.scm (ruby-hashery)[arguments]: Remove failing test.