summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* pull: Remove duplicate '--dry-run' description.Ludovic Courtès2019-04-10
| | | | | | | Reported by pkill9. * guix/scripts/pull.scm (show-help): Remove duplicate '--dry-run' description.
* ui: Highlight diagnostic format string arguments.Ludovic Courtès2019-04-10
| | | | | | * guix/ui.scm (highlight-argument): New macro. (%highlight-argument): New procedure. (define-diagnostic): Use 'highlight-argument'.
* ui: Colorize hints.Ludovic Courtès2019-04-10
| | | | | | * guix/ui.scm (%info-colors): Remove CYAN. (%hint-colors): New variable. (display-hint): Adjust so that the "hint:" prefix is colorized.
* gnu: Add public-inbox.宋文武2019-04-10
| | | | * gnu/packages/mail.scm (public-inbox): New variable.
* gnu: Add perl-plack-middleware-deflater.宋文武2019-04-10
| | | | * gnu/packages/web.scm (perl-plack-middleware-deflater): New variable.
* gnu: Add perl-search-xapian.宋文武2019-04-10
| | | | * gnu/packages/search.scm (perl-search-xapian): New variable.
* gnu: Add perl-danga-socket.宋文武2019-04-10
| | | | * gnu/packages/networking.scm (perl-danga-socket): New variable.
* gnu: Add perl-sys-syscall.宋文武2019-04-10
| | | | * gnu/packages/perl.scm (perl-sys-syscall): New variable.
* gnu: Add perl-filesys-notify-simple.宋文武2019-04-10
| | | | * gnu/packages/perl.scm (perl-filesys-notify-simple): New variable.
* gnu: Add perl-devel-leak.宋文武2019-04-10
| | | | * gnu/packages/perl.scm (perl-devel-leak): New variable.
* gnu: Add perl-email-address-xs.宋文武2019-04-10
| | | | * gnu/packages/mail.scm (perl-email-address-xs): New variable.
* ui: Colorize diagnostics.Ludovic Courtès2019-04-10
| | | | | | | | * guix/ui.scm (define-diagnostic): Add 'colors' parameter and pass it to 'print-diagnostic-prefix'. (warning, info, report-error): Add extra argument. (%warning-colors, %info-colors, %error-colors): New variables. (print-diagnostic-prefix): Add #:colors parameter and honor it.
* ui: Diagnostic procedures can display error location.Ludovic Courtès2019-04-10
| | | | | | | | | * guix/ui.scm (define-diagnostic): Add optional 'location' parameter. Pass it to 'print-diagnostic-prefix'. (print-diagnostic-prefix): Add optional 'location' parameter and honor it. (report-load-error): Use 'report-error' and 'warning' instead of (format (current-error-port) …).
* ui: Factorize 'print-diagnostic-prefix'.Ludovic Courtès2019-04-10
| | | | | * guix/ui.scm (define-diagnostic): Emit call to 'print-diagnostic-prefix'. (print-diagnostic-prefix): New procedure.
* ui: Make diagnostic message prefix translatable.Ludovic Courtès2019-04-10
| | | | | | * guix/ui.scm (define-diagnostic): Expect PREFIX to be enclosed in 'G_'. Emit call to 'gettext' on PREFIX. (warning, info, report-error): Wrap prefix in 'G_'.
* ui: Fix i18n for diagnostic messages.Ludovic Courtès2019-04-10
| | | | | | | | | | Until now, we'd pass 'gettext' the "augmented" format string, which 'gettext' would not find in message catalogs. Now we pass it FMT as is, which is what catalogs contain. * guix/ui.scm (define-diagnostic)[augmented-format-string]: Remove. Emit one 'format' call to print the prefix, and a second one to print the actual message.
* Add (guix colors).Ludovic Courtès2019-04-10
| | | | | | | * guix/colors.scm: New file. * Makefile.am (MODULES): Add it. * guix/ui.scm (color-table, color, colorize-string): Remove. * guix/status.scm (isatty?*, color-output? color-rules): Remove.
* store: 'with-store' expands to a single procedure call.Ludovic Courtès2019-04-10
| | | | | * guix/store.scm (call-with-store): New procedure. (with-store): Write in terms of 'call-with-store'.
* doc: Adjust desktop instructions for GDM.Ludovic Courtès2019-04-10
| | | | * gnu/system/examples/desktop.tmpl: Adjust comment that referred to SLiM.
* guix package: Use absolute file names in search path recommendations.Ludovic Courtès2019-04-10
| | | | | | | Suggested by Chris Marusich. * guix/scripts/package.scm (absolutize): New procedure. (display-search-paths): Use it.
* gnu: nginx: Update to 1.15.11.Marius Bakke2019-04-09
| | | | * gnu/packages/web.scm (nginx): Update to 1.15.11.
* gnu: miniupnpc: Update to 2.1.20190408.Marius Bakke2019-04-09
| | | | * gnu/packages/upnp.scm (miniupnpc): Update to 2.1.20190408.
* gnu: samba: Update to 4.10.2 [security fixes].Marius Bakke2019-04-09
| | | | | | This release fixes CVE-2019-3870 and CVE-2019-3880. * gnu/packages/samba.scm (samba): Update to 4.10.2.
* gnu: libsoup: Update to 2.66.1.Marius Bakke2019-04-09
| | | | * gnu/packages/gnome.scm (libsoup): Update to 2.66.1.
* gnu: WebKitGTK: Update to 2.24.1 [fixes CVE-2019-6251].Marius Bakke2019-04-09
| | | | * gnu/packages/webkit.scm (webkitgtk-2.24): Update to 2.24.1.
* build-system/cargo: refactor phases to successfully buildIvan Petkov2019-04-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | * guix/build-system/cargo.scm (%cargo-build-system-modules): Add (json parser). (cargo-build): [vendor-dir]: Define flag and pass it to builder code. [cargo-test-flags]: Likewise. [skip-build?]: Likewise. * guix/build/cargo-build/system.scm (#:use-module): use (json parser). (package-name->crate-name): Delete it. (manifest-targets): Add it. (has-executable-target?): Add it. (configure): Add #:vendor-dir name and use it. Don't touch Cargo.toml. Don't symlink to duplicate inputs. Remove useless registry line from cargo config. Define RUSTFLAGS to lift lint restrictions. (build): Add #:skip-build? flag and use it. (check): Likewise. Add #:cargo-test-flags and pass it to cargo. (install): Factor source logic to install-source. Define #:skip-build? flag and use it. Only install if executable targets are present. (install-source): Copy entire crate directory not just src. [generate-checksums] pass dummy file for unused second argument. (%standard-phases): Add install-source phase. Signed-off-by: Chris Marusich <cmmarusich@gmail.com>
* gnu: weston: Update to 6.0.0.Rutger Helling2019-04-09
| | | | | | | | * gnu/packages/freedesktop.scm (weston): Update to 6.0.0. [build-system]: Build with meson-build-system. [inputs]: Add colord, lcms, libevdev, libjpeg, libva, libwebp, libxml2 and pango. [arguments]: Adjust to Meson.
* gnu: electron-cash: Update to 4.0.1.Vagrant Cascadian2019-04-09
| | | | | | * gnu/packages/finance (electron-cash): Update to 4.0.1. Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
* gnu: python-trezor-agent: Update to 0.13.1.Vagrant Cascadian2019-04-09
| | | | | | * gnu/packages/finance (python-trezor-agent): Update to 0.13.1. Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
* gnu: python-keepkey: Update to 6.0.3.Vagrant Cascadian2019-04-09
| | | | | | * gnu/packages/finance (python-keepkey): Update to 6.0.3. Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
* gnu: python-trezor: Update to 0.11.2.Vagrant Cascadian2019-04-09
| | | | | | * gnu/packages/finance (python-trezor): Update to 0.11.2. Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
* gnu: guile-email: Update to 0.1.0.Arun Isaac2019-04-09
| | | | * gnu/packages/guile-xyz.scm (guile-email): Update to 0.1.0.
* gnu: Add gnucap.Arun Isaac2019-04-09
| | | | * gnu/packages/engineering.scm (gnucap): New variable.
* gnu: GIMP: Update to 2.10.10.Leo Famulari2019-04-08
| | | | * gnu/packages/gimp.scm (gimp): Update to 2.10.10.
* openshot: Unbundle font.Efraim Flashner2019-04-08
| | | | | | | | * gnu/packages/video.scm (openshot)[source]: Add snippet to remove bundled font. [inputs]: Add font-ubuntu. [arguments]: Add custom 'patch-font-location to patch the search path for the unbundled font.
* gnu: openshot: Use wrap-qt-program.Efraim Flashner2019-04-08
| | | | | * gnu/packages/video.scm (openshot)[arguments]: Add more modules. Adjust custom 'wrap-program phase to use wrap-qt-program.
* gnu: openshot: Update to 2.4.4.Efraim Flashner2019-04-08
| | | | * gnu/packages/video.scm (openshot): Update to 2.4.4.
* gnu: libopenshot: Update to 0.2.3.Efraim Flashner2019-04-08
| | | | * gnu/packages/video.scm (libopenshot): Update to 0.2.3.
* gnu: libopenshot-audio: Update to 0.1.8.Efraim Flashner2019-04-08
| | | | * gnu/packages/audio.scm (libopenshot-audio): Update to 0.1.8.
* gnu: zabbix-agentd: Update to 4.2.0.Oleg Pykhalov2019-04-08
| | | | | | * gnu/packages/monitoring.scm (zabbix-agentd): Update to 4.2.0. Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
* gnu: Add eigen-for-tensorflow.Ricardo Wurmus2019-04-08
| | | | * gnu/packages/algebra.scm (eigen-for-tensorflow): New variable.
* gnu: Add jsoncpp-for-tensorflow.Ricardo Wurmus2019-04-08
| | | | * gnu/packages/serialization.scm (jsoncpp-for-tensorflow): New variable.
* gnu: Add python-protobuf-next.Ricardo Wurmus2019-04-08
| | | | * gnu/packages/protobuf.scm (python-protobuf-next): New variable.
* gnu: Add gemmlowp-for-tensorflow.Ricardo Wurmus2019-04-08
| | | | * gnu/packages/machine-learning.scm (gemmlowp-for-tensorflow): New variable.
* gnu: mu: Update to 1.2.Pierre Langlois2019-04-08
| | | | | | | * gnu/packages/mail.scm (mu): Update to 1.2. [inputs]: Use gmime 3. Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr>
* installer: Use 'append' and 'list' instead of 'cons*'.Ludovic Courtès2019-04-08
| | | | | * gnu/installer/services.scm (system-services->configuration): Use 'append' and 'list' instead of 'cons*'.
* installer: Generate 'set-xorg-configuration' snippet.Ludovic Courtès2019-04-08
| | | | | | | * gnu/installer/services.scm (system-services->configuration): Add 'set-xorg-configuration' service. * gnu/installer/steps.scm (format-configuration): Add 'xorg' service module.
* installer: Xfce service uses the 'service' form.Ludovic Courtès2019-04-08
| | | | | * gnu/installer/services.scm (%system-services): Adjust Xfce snippet to use the 'service' form.
* gnu: mpv: Set absolute path to 'youtube-dl'.Timo Eisenmann2019-04-08
| | | | | | | * gnu/packages/video.scm (mpv)[arguments]: Add phase 'patch-paths' to substitute in the absolute path to 'youtube-dl'. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* licenses: Remove 'bsd-style'.Ludovic Courtès2019-04-08
| | | | | | This procedure had been deprecated since March 2015. * guix/licenses.scm (bsd-style): Remove.