summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-12-01guix package: Formalize the list of actions.Ludovic Courtès
* guix/scripts/package.scm (roll-back-action, switch-generation-action) (delete-generations-action, manifest-action): New procedures. (%actions): New variable. * guix/scripts/package.scm (guix-package)[process-action]: Rewrite to traverse %ACTIONS.
2015-12-01nls: Update 'de' translation.Ludovic Courtès
2015-12-01guix package: Move 'build-and-use-profile' out of sight.Ludovic Courtès
* guix/scripts/package.scm (build-and-use-profile): New procedure. Adapted and moved from... (guix-package)[process-actions]: ... here. Adjust call sites.
2015-12-01guix package: Move a couple of procedures out of sight.Ludovic Courtès
* guix/scripts/package.scm (ensure-default-profile, process-query): New procedures, moved from... (guix-package): ... here.
2015-12-01guix package: Remove unnecessary use of (%store).Ludovic Courtès
* guix/scripts/package.scm (delete-matching-generations): Use STORE instead of (%store).
2015-11-30gnu: python-pbr: Update to 1.8.1.Efraim Flashner
* gnu/packages/openstack.scm (python-pbr): Update to 1.8.1.
2015-11-30gnu: parallel: Update to 20151122.Efraim Flashner
* gnu/packages/parallel.scm (parallel): Update to 20151122.
2015-11-30gnu: python2-keyring: Use python2-pycrypto.Efraim Flashner
* gnu/packages/python.scm (python2-keyring)[inputs]: Force building with python2-pycrypto.
2015-11-30gnu: python2-pycrypto: Use python2.Efraim Flashner
* gnu/packages/python.scm (python2-pycrypto)[inputs]: Force building with python2.
2015-11-30gnu: openssh: Install ssh-copy-id.Ricardo Wurmus
* gnu/packages/ssh.scm (openssh)[arguments]: Install "ssh-copy-id" and documentation. Fixes <http://bugs.gnu.org/22024>. Reported by Florian Paul Schmidt <mista.tapas@gmx.net>.
2015-11-30gnu: openssh: Use modify-phases syntax.Ricardo Wurmus
* gnu/packages/ssh.scm (openssh)[arguments]: Use modify-phases syntax.
2015-11-30gnu: Add ruby-tins.Ricardo Wurmus
* gnu/packages/ruby.scm (ruby-tins): New variable.
2015-11-30gnu: Add ruby-sdoc.Ricardo Wurmus
* gnu/packages/ruby.scm (ruby-sdoc): New variable.
2015-11-30gnu: Add ruby-pry-editline.Ricardo Wurmus
* gnu/packages/ruby.scm (ruby-pry-editline): New variable.
2015-11-30gnu: Add ruby-ci-reporter.Ricardo Wurmus
* gnu/packages/ruby.scm (ruby-ci-reporter): New variable.
2015-11-30gnu: Add ruby-atoulme-saikuro.Ricardo Wurmus
* gnu/packages/ruby.scm (ruby-atoulme-saikuro): New variable.
2015-11-30gnu: Add ruby-simplecov.Ricardo Wurmus
* gnu/packages/ruby.scm (ruby-simplecov): New variable.
2015-11-30gnu: Add sparsehash.Ricardo Wurmus
* gnu/packages/crypto.scm (sparsehash): New variable.
2015-11-30gnu: Add cereal.Ricardo Wurmus
* gnu/packages/serialization.scm: New file. * gnu-system.am (GNU_SYSTEM_MODULES): Add it.
2015-11-30gnu: xorriso: Update to 1.4.2.Efraim Flashner
* gnu/packages/cdrom.scm (xorriso): Update to 1.4.2.
2015-11-29gnu: python: Move tkinter to "tk" output.Ludovic Courtès
* gnu/packages/python.scm (python-2)[outputs]: New field. [arguments]: Add 'move-tk-inter' phase. (python2-minimal, python-minimal, wrap-python3)[outputs]: New field.
2015-11-29gnu: python: Clarify and shorten the list of built-time modules.Ludovic Courtès
* gnu/packages/python.scm (python-2)[arguments]: Make the #:modules list shorter.
2015-11-29gnu: python: Do not record configure flags.Ludovic Courtès
This reduces the number of run-time dependencies of python-2 from 25 to 15, corresponding only to ~4 MiB. * gnu/packages/python.scm (python-2)[arguments]: Add 'do-not-record-configure-flags' phase.
2015-11-29gnu: python: Factorize configure flags with minimal variants.Ludovic Courtès
* gnu/packages/python.scm (python2-minimal, python-minimal)[arguments]: Reuse the inherited configure flags, and just add --without-system-ffi.
2015-11-29gnu: python: Make 'sys.version' deterministic.Ludovic Courtès
* gnu/packages/patches/python-2-deterministic-build-info.patch, gnu/packages/patches/python-3-deterministic-build-info.patch: New files. * gnu/packages/python.scm (python-2, python): Use them. * gnu-system.am (dist_patch_DATA): Add them.
2015-11-29gnu: python: Set SOURCE_DATE_EPOCH to 1 instead of 0.Ludovic Courtès
* gnu/packages/python.scm (python-2)[arguments]: Set SOURCE_DATE_EPOCH to 1 to match what the daemon does. * guix/build/python-build-system.scm (set-SOURCE-DATE-EPOCH): Likewise.
2015-11-29gnu: python-2: Honor 'SOURCE_DATE_EPOCH'.Ludovic Courtès
* gnu/packages/patches/python-2.7-source-date-epoch.patch: New file. * gnu/packages/python.scm (python-2)[source]: Use it. [arguments]: Set SOURCE_DATE_EPOCH in 'patch-lib-shells' phase. * guix/build/python-build-system.scm (set-SOURCE-DATE-EPOCH): New procedure. (%standard-phases): Add it. * gnu-system.am (dist_patch_DATA): Add patch.
2015-11-29gnu: tcl: Produce 'tclIndex' files deterministically.Ludovic Courtès
* gnu/packages/patches/tcl-mkindex-deterministic.patch: New patch. * gnu/packages/tcl.scm (tcl)[source]: Use it. * gnu-system.am (dist_patch_DATA): Add it.
2015-11-29tk: Hardcode path to TK_LIBRARY.宋文武
Fixes <http://bugs.gnu.org/20889>. * gnu/packages/patches/tk-find-library.patch: New patch. * gnu-system.am (dist_patch_DATA): Add it. * gnu/packages/tcl.scm (tk)[source]: Add patch.
2015-11-29refresh: Check updater availability at run time.Ludovic Courtès
This is a followup to b68d2db, which added a check for updaters at macro-expansion time. The problem is that, when running 'guix pull', Guile-JSON is found, so the PyPi updater (say) is added to %UPDATERS, but then at run time Guile-JSON might be missing. Reported by orbea on #guix. * guix/scripts/refresh.scm (maybe-updater): Rewrite as 'syntax-rules'. Produce code that checks conditions at run time. (list-updaters): Update docstring.
2015-11-29gnu: Add perl-dbd-mysql.Ricardo Wurmus
* gnu/packages/databases.scm (perl-dbd-mysql): New variable.
2015-11-29gnu: Add Rakarrack.Ricardo Wurmus
* gnu/packages/audio.scm (rakarrack): New variable.
2015-11-29services: Add pkexec to setuid programs.Ricardo Wurmus
* gnu/services/desktop.scm (polkit-setuid-programs): Add pkexec to list of setuid programs.
2015-11-29gnu: xfce-session: Enable shutdown/reboot menu entries.Ricardo Wurmus
* gnu/packages/xfce.scm (xfce-session)[inputs]: Add upower and polkit. [source]: Replace paths to "shutdown" with "halt" and "restart".
2015-11-29gnu: weechat: Dynamically link against libpython2.7.so.Ludovic Courtès
* gnu/packages/patches/weechat-python.patch: New file. * gnu-system.am (dist_patch_DATA): Add it. * gnu/packages/weechat.scm (weechat)[source]: Use it.
2015-11-29http-client: 'http-fetch' converts strings to URIs.Ludovic Courtès
* guix/http-client.scm (http-fetch): Use 'string->uri' if URI is a string. Fixes a regression introduced in 8a5063f.
2015-11-29guix build: Factorize build log query.Ludovic Courtès
* guix/scripts/build.scm (show-build-log): New procedure. (guix-build): New variable 'items'. Use it and 'show-build-log'.
2015-11-29gnu: guile-next: Update to 2.1.1.Ludovic Courtès
* gnu/packages/guile.scm (guile-next)[source]: Update to 2.1.1. [arguments, native-inputs]: Move to... (guile-for-guile-emacs): ... here. New fields.
2015-11-28environment: Set build options early on.Ludovic Courtès
This fixes a bug whereby some options, such as #:substitute-urls, would be passed to the daemon too late to have an effect. * guix/scripts/environment.scm (build-inputs): Remove call to 'set-build-options-from-command-line*'. (guix-environment): Add call to 'set-build-options-from-command-line' as early as possible.
2015-11-28gnu: jasper: Patch CVE-2008-3522.Ludovic Courtès
* gnu/packages/patches/jasper-CVE-2008-3522.patch: New file. * gnu/packages/image.scm (jasper)[source]: Use it. * gnu-system.am (dist_patch_DATA): Add it.
2015-11-28lint: Do not report already-patched vulnerabilities.Ludovic Courtès
* guix/scripts/lint.scm (patch-file-name): New procedure. (check-vulnerabilities): Use it to filter out patched vulnerabilities. * tests/lint.scm ("cve: one patched vulnerability"): New test.
2015-11-28doc: Mention 'specification->package'.Ludovic Courtès
Suggested by Florian Paul Schmidt <mista.tapas@gmx.net>. * doc/guix.texi (Using the Configuration System): Mention 'specification->package'.
2015-11-28substitute: Warn upon store prefix mismatches.Ludovic Courtès
Suggested by Hynek Urban <hynek.urban@gmail.com>. * guix/scripts/substitute.scm (fetch-narinfos): Move body to... [do-fetch]: ... here. New procedure. Emit a warning when CACHE-INFO's prefix does not match.
2015-11-27services: tor: Store private data under /var/lib/tor.Ludovic Courtès
* gnu/services/networking.scm (tor-configuration->torrc): Add 'DataDirectory' clause. Change 'HiddenServiceDir' to /var/lib/tor/hidden-services/NAME. (tor-hidden-service-activation): Create /var/lib/tor. (tor-hidden-service): Adjust docstring. * doc/guix.texi (Networking Services): Adjust accordingly.
2015-11-27services: tor: Write to syslog.Ludovic Courtès
* gnu/services/networking.scm (tor-configuration->torrc): Add "Log notice syslog". (tor-dmd-service): Add 'syslogd' to 'requirement'.
2015-11-27services: Add 'tor-hidden-service'.Ludovic Courtès
* gnu/services/networking.scm (<tor-configuration>, <hidden-service>): New record types. (tor-configuration->torrc): New procedure. (tor-dmd-service): Use it. (tor-hidden-service-activation): New procedure. (tor-service-type)[extensions]: Extend ACTIVATION-SERVICE-TYPE. [compose, extend]: New fields. (tor-service): Use 'tor-configuration'. (tor-hidden-service-type): New variable. (tor-hidden-service): New procedure.
2015-11-27services: lsh: Correctly handle #:interfaces option.Ludovic Courtès
* gnu/services/ssh.scm (lsh-dmd-service)[lsh-command]: Pass a series of --interface flags instead of the nonexistent --interfaces option.
2015-11-27gnu: tor: Update to 0.2.7.5.Ludovic Courtès
* gnu/packages/tor.scm (tor): Update to 0.2.7.5.
2015-11-27gnu: eigen: Really run tests in verbose mode.Ludovic Courtès
Suggested by Gaël Guennebaud <gael.guennebaud@inria.fr>. * gnu/packages/algebra.scm (eigen)[arguments]: Remove #:test-target. Rename 'build-tests' phase to 'check', and have it run 'ctest -V'.
2015-11-27gnu: gp2c: Update to 0.0.9pl4.Andreas Enge
* gnu/packages/algebra.scm (gp2c): Update to 0.0.9pl4.