summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-10-26guix: lint: Check for empty synopses and descriptions.Eric Bavier
* guix/scripts/lint.scm (check-description-style, check-synopsis-style): New emptiness checks. * tests/lint.scm: Test them.
2014-10-26guix: lint: Check for proper end-of-sentence space.Eric Bavier
* guix/scripts/lint.scm (start-with-capital-letter?): Handle empty strings. (check-description-style): New check for end-of-sentence space. * tests/lint.scm: Test it.
2014-10-26guix: lint: Use if/when consistently.Eric Bavier
* guix/scripts/lint.scm (check-synopsis-style): Replace single-branch uses of if with when. (check-patches): Same
2014-10-26guix: lint: Use string-suffix? and string-prefix? where appropriate.Eric Bavier
* guix/scripts/lint.scm (check-synopsis): Use string-suffix? and string-prefix? in place of string-take and string=?.
2014-10-26gnu: Add ATLAS.Federico Beffa
* gnu/packages/maths.scm (atlas): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2014-10-26Update name and email address for Joshua Grant.Joshua Grant
2014-10-26gnu: Add cppunitJohn Darrington
* gnu/packages/check.scm (cppunit): New variable.
2014-10-26gnu: pulseaudio: Fix CVE-2014-3970 and intermittent test failures.Mark H Weaver
* gnu/packages/patches/pulseaudio-CVE-2014-397.patch: New file. * gnu/packages/patches/pulseaudio-fix-mult-test.patch: New file. * gnu-system.am (dist_patch_DATA): Add them. * gnu/packages/pulseaudio.scm (pulseaudio): Add patches.
2014-10-26gnu: acl: Install library and disable failing test suite.Mark H Weaver
Previously, this package was completely broken. It installed only binaries that failed to run for lack of the shared library. * gnu/packages/acl.scm (acl): Disable tests. Remove customized 'check' phase that ran tests and ignored errors. Remove 'perl' as input, needed only for tests. Replace 'install' phase with one that includes 'install-lib' target.
2014-10-26gnu: openssl: Update to 1.0.1j.Mark H Weaver
* gnu/packages/openssl.scm (openssl): Update to 1.0.1j.
2014-10-26gnu: gettext: Update to 0.19.3.Mark H Weaver
* gnu/packages/gettext.scm (gettext): Update to 0.19.3.
2014-10-26gnu: bash: Update to 4.3.30.Mark H Weaver
* gnu/packages/bash.scm (%patch-series-4.3): Add patches 28-30. (bash)[source]: Remove parser-oob patch. It is superceded by upstream patch bash43-028.
2014-10-26gnu: make: Update to 4.1.Mark H Weaver
* gnu/packages/base.scm (make): Update to 4.1. Adapt 'default_shell' substitution to new code. * gnu/packages/commencement.scm (gnu-make-boot0): Remove code that manually removed guile.c from list of things to build.
2014-10-25gnu: ffmpeg: Add version 2.2.9 and use it for vlc.Mark H Weaver
* gnu/packages/video.scm (ffmpeg-2.2): New variable. (vlc): Use ffmpeg-2.2.
2014-10-24gnu: python2-pyicu: Update to 1.8.Andreas Enge
* gnu/packages/python.scm (python2-pyicu): Update to 1.8.
2014-10-23gnu: vlc: Update to 2.1.5.Mark H Weaver
* gnu/packages/video.scm (vlc): Update to 2.1.5.
2014-10-23gnu: icecat: Update to 31.2.0.Mark H Weaver
* gnu/packages/gnuzilla.scm (icecat): Update to 31.2.0. Download source from GNU mirrors.
2014-10-22guix import pypi: Fix a typo in a docstring.Cyril Roelandt
* guix/import/pypi.scm (snake-case): Fix documentation.
2014-10-22guix import pypi: do not add "python-" to a package name if it's already there.Cyril Roelandt
* guix/import/pypi.scm (make-pypi-sexp): test whether the package name starts with "python-" before modifying it.
2014-10-22guix import pypi: add the Apache License 2.0Cyril Roelandt
* guix/import/pypi.scm (string->license): add ASL2.0.
2014-10-21gnu: emacs: Update to 24.4.Mark H Weaver
* gnu/packages/patches/emacs-configure-sh.patch: Remove. * gnu-system.am (dist_patch_DATA): Remove it. * gnu/packages/emacs.scm (emacs): Update to 24.4. Add 'acl' as input. Remove --with-crt-dir configure option. (emacs-no-x-toolkit): Add 'inotify-tools' as input. Adjust to cope with the lack of configure-flags in the main 'emacs' package.
2014-10-20refresh: Add end-of-line to error message.Eric Bavier
* guix/scripts/refresh.scm (%options)[select]: Add end-of-line to error message.
2014-10-20gnu: ccache: Upgrade to 3.1.10.Eric Bavier
* gnu/packages/ccache.scm (ccache): Upgrade to 3.1.10. [source]: Remove patches. * gnu/packages/patches/ccache-stdc-predef-test.patch: Delete patch. * gnu-system.am (dist_patch_DATA): Remove it.
2014-10-20gnu: ffmpeg: Update to 2.4.2.Jason Self
* gnu/packages/video.scm (ffmpeg): Update to version 2.4.2.
2014-10-20gnu: Add sane-backendsJohn Darrington
* gnu/packages/scanner.scm: New file. * gnu-system.am (GNU_SYSTEM_MODULES): Add it.
2014-10-20gnu: sqlite: Add readline as input.Andreas Enge
* gnu/packages/databases.scm (sqlite): Add input readline.
2014-10-20gnu: Add 'version-prefix' and 'version-major+minor'; use them.Ian Denhardt
The procedure version-prefix truncates a version string to a certain number of components. version-major+minor is a special case of this, which extracts the "major.minor" part of the string. Previously this was handled by an expression common to several packages. * guix/utils.scm (version-prefix, version-major+minor): New procedures * gnu/packages/backup.scm (duplicity): Use version-major+minor. * gnu/packages/cmake.scm (cmake): Likewise. * gnu/packages/gnome.scm (libbonobo, libbonoboui): Likewise. * gnu/packages/gnutls.scm (gnutls): Likewise. * gnu/packages/mail.scm (gmime): Likewise. * gnu/packages/mpd.scm (mpd): Likewise. * gnu/packages/mpi.scm (openmpi): Likewise. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2014-10-19download: Add "Accept: */*" to the headers.Ludovic Courtès
Fixes downloads from https://alioth.debian.org. Reported by John Darrington <jmd@gnu.org>. * guix/build/download.scm (http-fetch)[headers]: Add 'Accept'.
2014-10-19gnu: Add ntpJohn Darrington
* gnu/packages/ntp.scm: New file. * gnu-system.am (gnu/packages/ntp.scm): Add it.
2014-10-18emacs: Improve interface for working with multiple profiles.Alex Kost
Suggested by David Thompson, Ludovic Courtès and Mathieu Lirzin. * emacs/guix-base.el (guix-profile-prompt): New procedure. (guix-set-current-profile): Use it. (guix-buffer-name-simple, guix-buffer-name-default, guix-buffer-name): New procedures. (guix-buffer-name-function, guix-profile): New variables. (guix-set-vars, guix-get-entries, guix-get-show-entries, guix-set-buffer, guix-history-call, guix-process-package-actions, guix-continue-package-operation-p, guix-delete-generations, guix-switch-to-generation): Add 'profile' argument. * emacs/guix.el (guix-get-show-packages, guix-get-show-generations, guix-search-by-name, guix-search-by-regexp, guix-installed-packages, guix-obsolete-packages, guix-all-available-packages, guix-newest-available-packages, guix-generations, guix-generations-by-time): Likewise. (guix-last-generations): New command. * emacs/guix-info.el: Adjust for using 'profile' argument where needed. * emacs/guix-list.el: Likewise. * doc/emacs.texi (Emacs Commands): Document 'guix-last-generations' and using "C-u" for commands. (Emacs Buffer Names): Document 'guix-buffer-name-function'.
2014-10-17packages: Add 'package-transitive-supported-systems'.Ludovic Courtès
* guix/packages.scm (package-transitive-supported-systems): New procedure. * tests/packages.scm ("package-transitive-supported-systems"): New test. * build-aux/hydra/gnu-system.scm (package->job): Use it.
2014-10-17gnu: valgrind: Don't build on mipsel64-linux.Ludovic Courtès
* gnu/packages/valgrind.scm (valgrind): Add 'supported-systems'.
2014-10-17gnu: sdl-gfx: Build only on Intel machines.Ludovic Courtès
* gnu/packages/sdl.scm (sdl-gfx): Add 'supported-systems' field.
2014-10-17derivations: 'graft-derivation' correctly handles multiple-output sources.Ludovic Courtès
* guix/derivations.scm (graft-derivation): Add DRV as input for each one of OUTPUT-NAMES.
2014-10-17packages: Improve the package-to-derivation cache.Ludovic Courtès
* guix/packages.scm (cache): Preserve the former values associated with PACKAGE. (cached): Bind SYSTEM in 'let', to prevent double evaluation.
2014-10-17derivations: Add #:system parameter to 'graft-derivation'.Ludovic Courtès
* guix/derivations.scm (graft-derivation): Add #:system parameter.
2014-10-17derivations: Introduce 'graft' record type.Ludovic Courtès
* guix/derivations.scm (<graft>): New record type. (graft-derivation): Rename 'replacements' to 'grafts', and expect it to be a list of <graft> records. Adjust accordingly. * tests/derivations.scm ("graft-derivation"): Use 'graft' instead of pairs in argument to 'graft-derivation'.
2014-10-17records: Improve the docstring of 'define-record-type*'.Ludovic Courtès
* guix/records.scm (define-record-type*): Agument the docstring, give examples.
2014-10-17doc: Replace "emacs" with "Emacs" in node names.Alex Kost
Suggested by Ludovic Courtès. * doc/emacs.texi: Use "Emacs" in node names.
2014-10-17emacs: Add 'guix-generations-by-time' command.Alex Kost
* emacs/guix-main.scm (find-generations): Add finding generations by time. * emacs/guix-utils.el (guix-read-date): New procedure. * emacs/guix-base.el (guix-messages): Add new messages. * emacs/guix.el (guix-generations-by-time): New command. * doc/emacs.texi (emacs Commands): Document it.
2014-10-16download: Allow use of substitutes.Ludovic Courtès
See <https://bugs.gnu.org/18747> for the original report. * guix/download.scm (url-fetch): Comment out #:local-build? argument. * guix/git-download.scm (git-fetch): Likewise. * guix/svn-download.scm (svn-fetch): Likewise.
2014-10-16gnu: linux-libre: Update to 3.17.1.Jason Self
* gnu/packages/linux.scm (linux-libre): Update to version 3.17.1.
2014-10-16emacs: Support auto-updating after performing REPL operation.Alex Kost
* emacs/guix-backend.el (guix-operation-buffer): New variable. (guix-eval-in-repl): Use it. Add optional 'operation-buffer' argument. * emacs/guix-base.el (guix-update-after-operation): New variable. (guix-switch-to-buffer, guix-list-or-info-buffer-p, guix-buffers, guix-update-buffers-maybe): New procedures. (guix-set-buffer): Use 'guix-switch-to-buffer'. Add optional 'no-display' argument. (guix-process-package-actions, guix-delete-generations, guix-switch-to-generation): Add optional 'operation-buffer' argument. * emacs/guix-info.el (guix-package-info-insert-action-button, guix-generation-info-insert-number, guix-generation-info-insert-current): Adjust for using operation buffer. * emacs/guix-list.el (guix-list-execute-package-actions, guix-generation-list-switch, guix-generation-list-execute): Likewise.
2014-10-16emacs: Add hooks for REPL operations.Alex Kost
* emacs/guix-backend.el (guix-before-repl-operation-hook, guix-after-repl-operation-hook, guix-repl-operation-p): New variables. (guix-repl-operation-success-message, guix-repl-output-filter): New procedures. (guix-start-repl): Adjust for using 'guix-repl-output-filter'. (guix-eval-in-repl): Honor 'guix-before-repl-operation-hook'.
2014-10-16guix lint: add the --checkers option.Cyril Roelandt
* guix/scripts/lint.scm: add the "--checkers" option. * doc/guix.texi (Invoking guix lint): Document it. * tests/guix-lint.sh: New file * Makefile.am (SCM_TESTS): Add it.
2014-10-14gnu: gnutls: Patch bug in 'set-session-server-name!'.Ludovic Courtès
* gnu/packages/patches/gnutls-server-name-fix.patch: New file. * gnu/packages/gnutls.scm (gnutls)[source]: Use it. * gnu-system.am (dist_patch_DATA): Add it.
2014-10-13gnu: Add xboingJohn Darrington
* gnu/packages/games.scm (xboing): New variable.
2014-10-13utils: Micro-optimize 'bytevector->base16-string'.Ludovic Courtès
This reduces run time of (package-derivation s emacs) by ~1.5%. * guix/utils.scm (bytevector->base16-string): Traverse BV from the end so as to use 'string-concatenate' instead of 'string-concatenate-reverse'.
2014-10-13derivations: Micro-optimize 'imported-modules'.Ludovic Courtès
This reduces run time of (package-derivation s emacs) by ~5%. * guix/derivations.scm (search-path*): New procedure. (imported-modules): Use it instead of 'search-path'.
2014-10-13derivations: Memoize 'derivation-path->base16-hash'.Ludovic Courtès
This reduces run time of (package-derivation s emacs) by ~10%. * guix/derivations.scm (derivation-path->base16-hash): New procedure. (derivation-hash): Use it.