summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-05-03Add (guix discovery).Ludovic Courtès
* guix/discovery.scm, tests/discovery.scm: New files. * gnu/packages.scm (scheme-files, file-name->module-name) (scheme-modules, all-package-modules): Remove. (fold-packages): Rewrite in terms of 'fold-module-public-variables'. * gnu/tests.scm: Use (guix discovery). * Makefile.am (MODULES): Add guix/discovery.scm. (SCM_TESTS): Add tests/discovery.scm.
2017-05-03gnu: Add fish-guix.ng0
* gnu/packages/shells.scm (fish-guix): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2017-05-03gnu: Add missing copyright line.Clément Lassieur
* gnu/packages/version-control.scm: Add missing copyright line for commit db88b5a.
2017-05-03gnu: gitolite: Avoid references to the store in authorized_keys.Clément Lassieur
* gnu/packages/version-control.scm (gitolite)[arguments]: Substitute '$glshell' with 'gitolite-shell' in ssh-authkeys.
2017-05-04gnu: Add emacs-gnuplot.Arun Isaac
* gnu/packages/emacs.scm (emacs-gnuplot): New variable.
2017-05-03gnu: Add gfortran@7.Efraim Flashner
* gnu/packages/gcc.scm (gfortran@7): New variable.
2017-05-03gnu: libressl: Update to 2.5.4.Efraim Flashner
* gnu/packages/tls.scm (libressl): Update to 2.5.4. [home-page]: Use https.
2017-05-03gnu: tlp: Install all files.Tobias Geerinckx-Rice
* gnu/packages/linux.scm (tlp)[arguments]: Add ‘fix-installation’ phase so the installation no longer aborts half-way, and use ‘zero?’ in the install phase so this cannot go undetected again.
2017-05-03ui: Rename '_' to 'G_'.Ludovic Courtès
This avoids collisions with '_' when the latter is used as a 'match' pattern for instance. See <https://lists.gnu.org/archive/html/guix-devel/2017-04/msg00464.html>. * guix/ui.scm: Rename '_' to 'G_'. * po/guix/Makevars (XGETTEXT_OPTIONS): Adjust accordingly. * build-aux/compile-all.scm (warnings): Remove 'format'. * gnu/packages.scm, gnu/services.scm, gnu/services/shepherd.scm, gnu/system.scm, gnu/system/shadow.scm, guix/gnupg.scm, guix/http-client.scm, guix/import/cpan.scm, guix/import/elpa.scm, guix/import/pypi.scm, guix/nar.scm, guix/scripts.scm, guix/scripts/archive.scm, guix/scripts/authenticate.scm, guix/scripts/build.scm, guix/scripts/challenge.scm, guix/scripts/container.scm, guix/scripts/container/exec.scm, guix/scripts/copy.scm, guix/scripts/download.scm, guix/scripts/edit.scm, guix/scripts/environment.scm, guix/scripts/gc.scm, guix/scripts/graph.scm, guix/scripts/hash.scm, guix/scripts/import.scm, guix/scripts/import/cpan.scm, guix/scripts/import/cran.scm, guix/scripts/import/crate.scm, guix/scripts/import/elpa.scm, guix/scripts/import/gem.scm, guix/scripts/import/gnu.scm, guix/scripts/import/hackage.scm, guix/scripts/import/nix.scm, guix/scripts/import/pypi.scm, guix/scripts/import/stackage.scm, guix/scripts/lint.scm, guix/scripts/offload.scm, guix/scripts/pack.scm, guix/scripts/package.scm, guix/scripts/perform-download.scm, guix/scripts/publish.scm, guix/scripts/pull.scm, guix/scripts/refresh.scm, guix/scripts/size.scm, guix/scripts/substitute.scm, guix/scripts/system.scm, guix/ssh.scm, guix/upstream.scm: Use 'G_' instead of '_'. Most of this change was obtained by running: "sed -i -e's/(_ "/(G_ "/g' `find -name \*.scm`".
2017-05-03gnu: Add mes.Jan Nieuwenhuizen
* gnu/packages/mes.scm: New file. * gnu/local.mk (GNU_SYSTEM_MODULES): Add it. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2017-05-03gnu: Add gcc@7.Efraim Flashner
* gnu/packages/gcc.scm (gcc@7): New variable.
2017-05-03gnu: connman: Update to 1.34.Mathieu Othacehe
* gnu/packages/connman.scm (connman): Update to 1.34.
2017-05-03services: herd: Make %shepherd-socket-file a parameter and export it.Mathieu Othacehe
* gnu/services/herd.scm (%shepherd-socket-file): Make it an exported parameter. (open-connection): Adapt.
2017-05-03gnu: Add gfortran@6.Efraim Flashner
* gnu/packages/gcc.scm (gfortran@6): New variable.
2017-05-03gnu: imagemagick: Update to 6.9.8-4.Leo Famulari
* gnu/packages/imagemagick.scm (imagemagick): Update to 6.9.8-4.
2017-05-03gnu: build: file-systems: Add ISO-9660.Danny Milosavljevic
Fixes <https://bugs.gnu.org/26751>. * gnu/build/file-systems.scm (iso9660-superblock?, read-iso9660-primary-volume-descriptor, read-iso9660-superblock, iso9660-superblock-uuid, iso9660-uuid->string, iso9660-superblock-volume-name): New variables. (%partition-label-readers): Add iso9660. (%partition-uuid-readers): Add iso9660.
2017-05-02gnu: Avoid circular dependencies by Perl license.Petter
* guix/licenses.scm (perl-license): New variable. * gnu/packages/bioinformatics.scm: Change (package-license perl) to perl-license. * gnu/packages/compression.scm: Same. * gnu/packages/databases.scm: Same. * gnu/packages/gd.scm: Same. * gnu/packages/language.scm: Same. * gnu/packages/libevent.scm: Same. * gnu/packages/mail.scm: Same. * gnu/packages/messaging.scm: Same. * gnu/packages/ncurses.scm: Same. * gnu/packages/networking.scm: Same. * gnu/packages/photo.scm: Same. * gnu/packages/tcl.scm: Same. * gnu/packages/tex.scm: Same. * gnu/packages/tls.scm: Same. * gnu/packages/web.scm: Same. * gnu/packages/wm.scm: Same. * gnu/packages/xml.scm: Same. * gnu/packages/xorg.scm: Same. * gnu/packages/zip.scm: Same. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2017-05-02monads: Add a template and specialization mechanism for monadic procedures.Ludovic Courtès
* guix/monads.scm (%templates, %template-instances): New variables. (register-template!, register-template-instance!): New procedures. (template-directory, define-template): New macro. (foldm, sequence, anym): Define using 'define-template'. Avoid replace ellipses with dots. (mapm): Likewise, but do not use 'foldm'. * guix/store.scm: Add 'template-directory' invocation.
2017-05-02download: Continue handshake upon TLS warning alerts.Ludovic Courtès
This allows us to download from site such as <https://fusionforge.int-evry.fr> where the server does not recognize the server name passed via the 'server_name' extension. * guix/build/download.scm (tls-wrap): Catch 'gnutls-error' around 'handshake'. Upon ERROR/WARNING-ALERT-RECEIVED, print a message and call 'handshake'.
2017-05-02licenses: Add CeCILL and CeCILL-B.Ludovic Courtès
* guix/licenses.scm (cecill, cecill-b): New variables.
2017-05-02gnu: youtube-dl: Update to 2017.05.01.Tobias Geerinckx-Rice
* gnu/packages/video.scm (youtube-dl): Update to 2017.05.01.
2017-05-02gnu: hdparm: Update to 9.52.Tobias Geerinckx-Rice
* gnu/packages/linux.scm (hdparm): Update to 9.52.
2017-05-02gnu: Add python-mwclient.Danny Milosavljevic
Fixes <https://bugs.gnu.org/26744>. * gnu/packages/python.scm (python-mwclient, python2-mwclient): New variables.
2017-05-02gnu: python-pytest-cov: Update to 2.4.0.Danny Milosavljevic
Fixes <https://bugs.gnu.org/26743>. * gnu/packages/python.scm (python-pytest-cov): Update to 2.4.0.
2017-05-02gnu: obs: Update to 18.0.2.Efraim Flashner
* gnu/packages/video.scm (obs): Update to 18.0.2.
2017-05-02build: Install gnu/build/svg.scm.Ludovic Courtès
Fixes a regression introduced in commit 960887b2974ff5c3e63f58a1d89cd8d0dcb5e045. * Makefile.am (MODULES_NOT_COMPILED): New variable. (nobase_dist_guilemodule_DATA): Add $(MODULES_NOT_COMPILED). (EXTRA_DIST): Remove gnu/build/svg.scm. * gnu/local.mk (MODULES_NOT_COMPILED): New variable.
2017-05-02build: 'check-system' now depends on the bootstrap Guile tarballs.Ludovic Courtès
Reported by Chris Marusich <cmmarusich@gmail.com>. * gnu/local.mk (BOOTSTRAP_GUILE_TARBALLS): New variable. (DISTCLEANFILES): Define as an alias for 'BOOTSTRAP_GUILE_TARBALLS'. * Makefile.am (check-system): Depend on $(BOOTSTRAP_GUILE_TARBALLS).
2017-05-02substitute: Validate substitute URLs.Ludovic Courtès
Reported by Maxim Cournoyer <maxim.cournoyer@gmail.com> at <https://lists.gnu.org/archive/html/guix-devel/2017-04/msg00548.html>. * guix/scripts/substitute.scm (validate-uri): New procedure. (guix-substitute): Use it.
2017-05-02services: nscd: Create /etc/resolv.conf if it does not exist.Ludovic Courtès
* gnu/services/base.scm (nscd-activation): Create /etc/resolv.conf if it does not exist yet.
2017-05-02gnu: parallel: Update to 20170422.Ludovic Courtès
* gnu/packages/parallel.scm (parallel): Update to 20170422.
2017-05-02gnu: ocrad: Update to 0.26.Ludovic Courtès
* gnu/packages/ocr.scm (ocrad): Update to 0.26.
2017-05-02gnu: libiconv: Update to 1.15.Ludovic Courtès
* gnu/packages/base.scm (libiconv): Update to 1.15.
2017-05-02gnu: less: Update to 487.Ludovic Courtès
* gnu/packages/less.scm (less): Update to 487.
2017-05-02gnu: acct: Update to 6.6.3.Ludovic Courtès
* gnu/packages/acct.scm (acct): Update to 6.6.3.
2017-05-02gnu: emacs-emms: Update to 4.3.Ludovic Courtès
* gnu/packages/emacs.scm (emms): Update to 4.3.
2017-05-02publish: Use a larger zlib buffer for compression with '--cache'.Ludovic Courtès
* guix/scripts/publish.scm (bake-narinfo+nar): Pass #:buffer-size to 'call-with-gzip-output-port'.
2017-05-02gnu: ghostscript: Fix grafting of ghostscript/x and ghostscript/cups.Mark H Weaver
* gnu/packages/cups.scm (ghostscript/cups): Use package/inherit. * gnu/packages/ghostscript.scm (ghostscript/x): Use package/inherit. (ghostscript/fixed)[replacement]: Override to #f.
2017-05-02Add package/inherit.Mark H Weaver
* guix/packages.scm (package/inherit): New public macro.
2017-05-02gnu: icecat: Add more fixes from upstream mozilla-esr52.Mark H Weaver
* gnu/packages/gnuzilla.scm (icecat)[source]: Add selected fixes from the upstream mozilla-esr52 repository.
2017-05-02gnu: Add python-flask-oidc.Danny Milosavljevic
Fixes <https://bugs.gnu.org/26731>. * gnu/packages/python.scm (python-flask-oidc): New variable.
2017-05-02gnu: Add python-oauth2client.Danny Milosavljevic
* gnu/packages/python.scm (python-oauth2client): New variable.
2017-05-01gnu: linux-libre: Update to 4.11.Mark H Weaver
* gnu/packages/linux.scm (%linux-libre-version): Update to 4.11. (%linux-libre-hash): Update hash. * gnu/packages/aux-files/linux-libre/4.10-i686.conf, gnu/packages/aux-files/linux-libre/4.10-x86_64.conf: Delete files. * gnu/packages/aux-files/linux-libre/4.11-i686.conf, gnu/packages/aux-files/linux-libre/4.11-x86_64.conf: New files. * Makefile.am (AUX_FILES): Adjust accordingly.
2017-05-02gnu: Add font-cns11643-swjz.Brendan Tildesley
* gnu/packages/fonts.scm (font-cns11643-swjz): New variable. Signed-off-by: Marius Bakke <mbakke@fastmail.com>
2017-05-02gnu: Add font-cns11643.Brendan Tildesley
* gnu/packages/fonts.scm (font-cns11643): New variable. Signed-off-by: Marius Bakke <mbakke@fastmail.com>
2017-05-01gnu: Add tailon.Christopher Baines
* gnu/packages/logging.scm (tailon): New variable. Signed-off-by: Marius Bakke <mbakke@fastmail.com>
2017-05-01gnu: python-tornado: Update to 4.5.1.Christopher Baines
* gnu/packages/python.scm (python-tornado): Update to 4.5.1. Signed-off-by: Marius Bakke <mbakke@fastmail.com>
2017-05-01gnu: Add python-sockjs-tornado.Christopher Baines
* gnu/packages/python.scm (python-sockjs-tornado): New variable. Signed-off-by: Marius Bakke <mbakke@fastmail.com>
2017-05-01Revert "gnu: linux-libre: Update to 4.11."Mark H Weaver
This reverts commit cfd2ca8244bc7a5c130677718ad2ad75f7316c68.
2017-05-01gnu: libsndfile: Fix CVE-2017-{8361,8362,8363,8365}.Leo Famulari
* gnu/packages/patches/libsndfile-CVE-2017-8361-8363-8365.patch, gnu/packages/patches/libsndfile-CVE-2017-8362.patch: New files. * gnu/local.mk (dist_patch_DATA): Add them. * gnu/packages/pulseaudio.scm (libsndfile)[replacement]: New field. (libsndfile/fixed): New variable.
2017-05-01gnu: font-bitstream-vera: Change license to fsdg-compatible.Clément Lassieur
This license is not X11-style because of its clause that makes it non-free. * gnu/packages/fonts.scm (font-bitstream-vera)[license]: Change to fsdg-compatible Bitstream Vera.