summaryrefslogtreecommitdiff
path: root/gnu/packages
AgeCommit message (Collapse)Author
2019-05-14gnu: Add ocaml-markup.gabrielhdt
* gnu/packages/ocaml.scm (ocaml-markup): New variable. Signed-off-by: Julien Lepiller <julien@lepiller.eu>
2019-05-14gnu: python-requests-oauthlib: Fix building.Julien Lepiller
* gnu/packages/python-web.scm (python-requests-oauthlib)[native-inputs]: Add python-pyjwt for tests.
2019-05-14gnu: certbot, python-acme: Update to 0.34.2.Leo Famulari
* gnu/packages/tls.scm (certbot, python-acme): Update to 0.34.2.
2019-05-14gnu: ocaml-base64: Update to 3.2.0.Julien Lepiller
* gnu/packages/ocaml.scm (ocaml-base64): Update to 3.2.0. [origin]: Use git-fetch. (ocaml-piqilib)[origin]: Add a patch to fix building with new versions of ocaml-base64. * gnu/packages/patches/ocaml-piqilib-Update-base64.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it.
2019-05-14gnu: ocaml-tsdl: Update to 0.9.6.Julien Lepiller
* gnu/packages/ocaml.scm (ocaml-tsdl): Update to 0.9.6.
2019-05-14gnu: ocaml-ocb-stubblr: Fix build failures using it.Julien Lepiller
* gnu/packages/ocaml.scm (ocaml-ocb-stubblr)[arguments]: Add a phase to fix guix-specific issues.
2019-05-14gnu: ocaml-sqlite3: Update to 4.4.1.Julien Lepiller
* gnu/packages/ocaml.scm (ocaml-sqlite3): Update to 4.4.1. [origin]: Use git-fetch.
2019-05-14gnu: dune: Update to 1.9.3.Julien Lepiller
* gnu/packages/ocaml.scm (dune): Update to 1.9.3.
2019-05-14gnu: Add ataqv.Ricardo Wurmus
* gnu/packages/bioinformatics.scm (ataqv): New variable.
2019-05-14gnu: burp: Update to 2.3.6.Björn Höfling
* gnu/packages/backup.scm (burp): Update to 2.3.6.
2019-05-14gnu: anthy: Update source URI.Björn Höfling
* gnu/packages/anthy (anthy)[source]: Update URI.
2019-05-14gnu: jnettop: Use archived source and homepage.Björn Höfling
* gnu/packages/admin.scm (jnettop)[source,home-page]: Use archive.org mirror.
2019-05-14gnu: xdot: Update to 1.1.Björn Höfling
* gnu/packages/graphviz.scm (xdot): Update to 1.1.
2019-05-14gnu: font-hermit: Download as 'url-fetch/tarbomb'.Efraim Flashner
* gnu/packages/fonts.scm (font-hermit)[source]: Use 'url-fetch/tarbomb' method. [arguments]: Remove custom phases.
2019-05-14gnu: Add emacs-evil-cleverparensLaFreniere, Joseph
* gnu/packages/emacs-xyz.scm (emacs-evil-cleverparens): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2019-05-14gnu: Add font-hermitZzull
* gnu/packages/fonts.scm (font-hermit): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2019-05-14gnu: munge: Pass '--localstatedir=/var'.Ludovic Courtès
Previously, Munge users such as Slurm would fail with: squeue: error: Munge encode failed: Failed to access "/gnu/store/…-munge-0.5.13/var/run/munge/munge.socket.2": No such file or directory squeue: error: authentication: Socket communication error * gnu/packages/admin.scm (munge)[source](modules, snippet): New fields. [arguments]: New field.
2019-05-14gnu: hdf5: Add dependency on Perl.Ludovic Courtès
* gnu/packages/maths.scm (hdf5)[native-inputs]: Add PERL.
2019-05-14gnu: hdf5: Build a thread-safe library.Ludovic Courtès
* gnu/packages/maths.scm (hdf5)[arguments]: Pass "--enable-threadsafe --with-pthread --enable-unsupported".
2019-05-14gnu: uncrustify: Update to 0.69.0.Pierre Neidhardt
* gnu/packages/code.scm (uncrustify): Update to 0.69.0.
2019-05-13gnu: cqfd: Update to 5.1.0.Maxim Cournoyer
* gnu/packages/docker.scm (cqfd): Update to 5.1.0. [description]: Fix typo.
2019-05-13gnu: Add harmonist.Julien Lepiller
gnu/packages/games.scm (harmonist): New variable.
2019-05-13gnu: go-github.com-nsf-termbox-go: Update to 0.0.0-1.288510b.Julien Lepiller
* gnu/packages/terminals.scm (go-github.com-nsf-termbox-go): Update to 0.0.0-1.288510b.
2019-05-13gnu: exiv2: Use HTTPS URLs.Marius Bakke
* gnu/packages/image.scm (exiv2)[source, home-page]: Use HTTPS.
2019-05-13gnu: gpscorrelate: Update home page.Marius Bakke
* gnu/packages/gps.scm (gpscorrelate)[source, home-page]: Update for new maintainer, as noted on <https://github.com/freefoote/gpscorrelate>.
2019-05-13gnu: hugin: Update to 2019.0.0.Marius Bakke
* gnu/packages/photo.scm (hugin): Update to 2019.0.0.
2019-05-13gnu: Remove 'gcc-glibc-2.27' and 'gcc-glibc-2.26'.Ludovic Courtès
These top-level references to GCC could cause problems, such as: $ guix build -e '(@ (gnu packages gcc) gcc)' -n guix build: error: failed to evaluate expression '(@ (gnu packages gcc) gcc)': In procedure module-lookup: Unbound variable: gcc Regression introduced in 3ed497d42a5af8756bd95c64f9f9bed4de5f6d3c. * gnu/packages/base.scm (gcc-glibc-2.27, gcc-glibc-2.26): Remove.
2019-05-13gnu: gdb: Add version 8.3.Ludovic Courtès
* gnu/packages/gdb.scm (gdb): Rename to... (gdb-8.2): ... this. (gdb-8.3): New variable. (gdb): Define as an alias for GDB-8.2.
2019-05-13gnu: Allow building gcc with non-default libc.Carl Dong
* gnu/packages/base.scm (make-gcc-libc): New procedure, returns a gcc that targets a specified libc. (gcc-glibc-2.26, gcc-glibc-2.27): New public variables. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2019-05-13gnu: cross-base: Allow using non-default glibc.Carl Dong
* gnu/packages/cross-base.scm (cross-libc, native-libc, cross-newlib?): Add 'libc' optional argument to specify using a non-default glibc package. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2019-05-13gnu: emacs-slack: Update to 0.0.2-6.10fbb81.Ricardo Wurmus
* gnu/packages/emacs-xyz.scm (emacs-slack): Update to 0.0.2-6.10fbb81. [arguments]: Set HOME before compiling source files.
2019-05-13gnu: gajim: Fix error when GAJIM_PLUGIN_PATH is not set.Ricardo Wurmus
Fixes <https://bug.gnu.org/35606> * gnu/packages/messaging.scm (gajim)[arguments]: Handle case when GAJIM_PLUGIN_PATH is unset in add-plugins-dir phase.
2019-05-13gnu: openjdk11: Suppress internal in version.Gábor Boskovits
* gnu/packages/java.scm (openjdk11)[configure-flags]: Add --with-version-pre= .
2019-05-12gnu: gdm: Fix configuration file discovery.Timothy Sample
The configuration file loading code moved to a new file in version 2.28. * gnu/package/gnome.scm (gdm)[arguments]: Change the pre-configure phase to patch configuration file discovery into the 'gdm-settings.c' file.
2019-05-13gnu: python-requests-oauthlib: Update to 1.2.0.Marius Bakke
* gnu/packages/python-web.scm (python-requests-oauthlib): Update to 1.2.0.
2019-05-13gnu: python-oauthlib: Update to 3.0.1.Marius Bakke
* gnu/packages/python-web.scm (python-oauthlib): Update to 3.0.1. [arguments]: Replace check phase with pytest invokation. [native-inputs]: Remove PYTHON-NOSE. Add PYTHON-PYTEST and PYTHON-PYTEST-COV. [properties]: Remove. (python2-oauthlib)[native-inputs]: Remove PYTHON2-UNITTEST2.
2019-05-13gnu: python-oauthlib: Propagate required inputs.Marius Bakke
* gnu/packages/python-web.scm (python-oauthlib)[native-inputs]: Move PYTHON-CRYPTOGRAPHY, PYTHON-PYJWT, and PYTHON-BLINKER ... [propagated-inputs]: ... here.
2019-05-13gnu: python-oauthlib: Update home page.Marius Bakke
* gnu/packages/python-web.scm (python-oauthlib)[home-page]: Follow redirect to <https://github.com/oauthlib/oauthlib>.
2019-05-13gnu: python-mysqlclient: Don't depend on MySQL.Marius Bakke
* gnu/packages/databases.scm (python-mysqlclient)[native-inputs]: Move MARIADB from here to ... [inputs]: ... here. Remove MYSQL.
2019-05-13gnu: perl-dbd-mysql: Depend on MariaDB rather than MySQL.Marius Bakke
* gnu/packages/databases.scm (perl-dbd-mysql)[propagated-inputs]: Change from MYSQL to MARIADB.
2019-05-13gnu: python-future: Update to 0.17.1.Marius Bakke
* gnu/packages/python-xyz.scm (python-future): Update to 0.17.1.
2019-05-13gnu: postgresql@9: Update to 9.6.13 [fixes CVE-2019-10129, CVE-2019-10130].Marius Bakke
* gnu/packages/databases.scm (postgresql-9.6): Update to 9.6.13.
2019-05-13gnu: speech-dispatcher: Update to 0.9.1.Marius Bakke
* gnu/packages/speech.scm (speech-dispatcher): Update to 0.9.1. [arguments]: Add "--with-ibmtts=no" to #:configure-flags. [license]: Remove GPL2.
2019-05-12gnu: Add emacs-ediprolog.gabrielhdt
* gnu/packages/emacs-xyz.scm (emacs-ediprolog): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2019-05-12gnu: icedtea-7: Disable os version check.Gábor Boskovits
* gnu/packages/java.scm (icedtea-7)[arguments]: Add phase 'disable-os-version-check.
2019-05-12gnu: icedtea-6: Disable os version check.Gábor Boskovits
* gnu/packages/java.scm (icedtea-6)[arguments]: Add phase 'disable-os-version-check.
2019-05-11gnu: linux-libre: Update to 5.1.1.Mark H Weaver
* gnu/packages/linux.scm (%linux-libre-version): Update to 5.1.1. (%linux-libre-hash): Update hash.
2019-05-11gnu: linux-libre@4.19: Update to 4.19.42.Mark H Weaver
* gnu/packages/linux.scm (%linux-libre-4.19-version): Update to 4.19.42. (%linux-libre-4.19-hash): Update hash.
2019-05-11gnu: linux-libre@4.14: Update to 4.14.118.Mark H Weaver
* gnu/packages/linux.scm (%linux-libre-4.14-version): Update to 4.14.118. (%linux-libre-4.14-hash): Update hash.
2019-05-11gnu: linux-libre@4.9: Update to 4.9.175.Mark H Weaver
* gnu/packages/linux.scm (linux-libre-4.9): Update to 4.9.175.