summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-10-27news: Add entry for /etc/guix/channels.scm.Ludovic Courtès
* etc/news.scm: Add entry to /etc/guix/channels.scm.
2019-10-27pull: Honor '/etc/guix/channels.scm'.Ludovic Courtès
* guix/scripts/pull.scm (channel-list)[global-file]: New variable. [channels]: Honor it. * doc/guix.texi (Invoking guix pull): Document it.
2019-10-27channels: Refer to 'guile-json-3'.Ludovic Courtès
Fixes a regression introduced in 84af1e74029fd4c43636f7d8d3e6f82ddab9ce82. * guix/channels.scm (whole-package-for-legacy): Refer to GUILE-JSON-3, not GUILE-JSON.
2019-10-27gnu: bootstrap: Cache the 'bootstrap-executable' origins.Ludovic Courtès
This reduces the number of lookups in the 'add-data-to-store' cache from 2705 to 2685 (hit rate: 10% to 9%) when running: GUIX_PROFILING=add-data-to-store-cache guix build libreoffice -nd * gnu/packages/bootstrap.scm (raw-build)[->store]: Use 'lower-object' instead of 'origin->derivation'. This allows the origin-to-derivation mapping to be cached.
2019-10-27gnu: bootstrap: 'bootstrap-origin' preserves eq?-ness when no changes are made.Ludovic Courtès
This reduces the number of lookups in the 'add-data-to-store' cache from 2743 to 2705 (hit rate: 11% to 10%) when running GUIX_PROFILING=add-data-to-store-cache guix build libreoffice -nd The execution time of "guix build libreoffice -nd" goes from 1.80s to 1.78s. * gnu/packages/bootstrap.scm (bootstrap-origin): Return SOURCE unchanged when its has no patches and no snippet.
2019-10-27derivations: Don't memoize 'derivation->bytevector'.Ludovic Courtès
Its hit rate was only 8%. Removing it reduces heap size of "guix build libreoffice -nd" from 69MiB to 61MiB and the wall-clock time is unchanged. * guix/derivations.scm (derivation->bytevector): Change from 'mlambda' to 'lambda'.
2019-10-27gexp: Cache the module to derivation mappings.Ludovic Courtès
This reduces the number of 'add-data-to-store' cache lookups from 3329 to 2743 (hit rate: 27% to 11%) when running: GUIX_PROFILING=add-data-to-store-cache guix build libreoffice -nd Execution time of "guix build libreoffice -nd" goes from 1.86s to 1.80s. * guix/gexp.scm (imported+compiled-modules): Wrap body in 'mcached'.
2019-10-27store: Allow objects in the cache to be inserted and search for with 'equal?'.Ludovic Courtès
* guix/store.scm (cache-object-mapping): Add #:vhash-cons parameter and honor it. (lookup-cached-object): Add #:vhash-fold* parameter and honor it. (%mcached): Add #:vhash-fold* and #:vhash-cons and honor them. (mcached): Add clauses with 'eq?' and 'equal?' as the first argument.
2019-10-27gexp: Add 'imported+compiled-modules'.Ludovic Courtès
* guix/gexp.scm (imported+compiled-modules): New procedure. (lower-gexp): Use it instead of separate calls to 'imported-modules' and 'compiled-modules'.
2019-10-27derivations: 'build-expression->derivation' caches its module derivations.Ludovic Courtès
This reduces the number of lookups in the 'add-data-to-store' cache from 7505 to 3329 (hit rate from 68% to 27%) when running: GUIX_PROFILING=add-data-to-store-cache guix build libreoffice -nd The execution time of "guix build libreoffice -nd" goes from 2.12s to 1.87s. * guix/derivations.scm (%module-cache): New variable. (imported+compiled-modules)[key]: New variable. Lookup KEY in %MODULE-CACHE and populate %MODULE-CACHE upon cache miss.
2019-10-27derivations: Introduce 'imported+compiled-modules'.Ludovic Courtès
* guix/derivations.scm (imported+compiled-modules): New procedure. (build-expression->derivation): Use it instead of separate calls to '%imported-modules' and '%compiled-modules'.
2019-10-27gnu: postgis: Update to 2.4.8.Tobias Geerinckx-Rice
* gnu/packages/geo.scm (postgis): Update to 2.4.8.
2019-10-27gnu: python-cftime: Update to 1.0.4.2.Tobias Geerinckx-Rice
* gnu/packages/python-xyz.scm (python-cftime): Update to 1.0.4.2.
2019-10-27gnu: libmicrohttpd: Update to 0.9.68.Tobias Geerinckx-Rice
* gnu/packages/gnunet.scm (libmicrohttpd): Update to 0.9.68.
2019-10-27gnu: retroarch: Update to 1.8.0.Tobias Geerinckx-Rice
* gnu/packages/emulators.scm (retroarch): Update to 1.8.0.
2019-10-27gnu: unbound: Update to 1.9.4.Tobias Geerinckx-Rice
* gnu/packages/dns.scm (unbound): Update to 1.9.4.
2019-10-27gnu: libasr: Don't use NAME in source URI.Tobias Geerinckx-Rice
* gnu/packages/dns.scm (libasr)[source]: Hard-code NAME.
2019-10-27gnu: python-pathpy: Update to 11.5.1.Tobias Geerinckx-Rice
* gnu/packages/python-xyz.scm (python-pathpy): Update to 11.5.1.
2019-10-27gnu: perl-io-captureoutput: Update to 1.1105.Tobias Geerinckx-Rice
* gnu/packages/perl.scm (perl-io-captureoutput): Update to 1.1105.
2019-10-27gnu: Merge all crates into (gnu packages crates-io).Efraim Flashner
* gnu/packages/rust-cbindgen.scm: Move all crates ... * gnu/packages/crates-io.scm: ... to here.
2019-10-27gnu: Convert all rust crates to new format.Efraim Flashner
* gnu/packages/crates-io.scm: Rename all packages to contain version string. [source]: Rename all downloaded files to use '.crate'. [arguments]: Remove all cargo-inputs and cargo-development-inputs. Comment out all custom phases to link to external libraries. [native-inputs, inputs]: Comment out all inputs. [properties]: Mark all packages hidden.
2019-10-27gnu: meld: Wrap with Glib or Gtk path variables.Tobias Geerinckx-Rice
Fixes the example given at <https://issues.guix.gnu.org/issue/37942>. * gnu/packages/gnome.scm (meld)[inputs]: Add gsettings-desktop-schemas. [arguments]: Add (guix build glib-or-gtk-build-system) to #:modules and #:imported-modules. Use its ‘glib-or-gtk-wrap’ phase.
2019-10-27gnu: Add pam-u2f.Ricardo Wurmus
* gnu/packages/security-token.scm (pam-u2f): New variable.
2019-10-27gnu: keepassxc: Don't use NAME in source URI.Tobias Geerinckx-Rice
* gnu/packages/password-utils.scm (keepassxc)[source]: Hard-code NAME.
2019-10-27gnu: mpg123: Update to 1.25.13.Tobias Geerinckx-Rice
* gnu/packages/mp3.scm (mpg123): Update to 1.25.13.
2019-10-27gnu: mpv: Update to 0.30.0.Tobias Geerinckx-Rice
* gnu/packages/video.scm (mpv): Update to 0.30.0. [arguments]: Remove obsolete #:configure-flags.
2019-10-27gnu: git-annex: Build with S3 support.Efraim Flashner
* gnu/packages/haskell-apps.scm (git-annex)[arguments]: Enable S3 in configure-flags. [inputs]: Add ghc-aws.
2019-10-27gnu: gramps: Update to 5.1.1.Guillaume Le Vaillant
* gnu/packages/genealogy.scm (gramps): Update to 5.1.1. [inputs]: Add cairo. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
2019-10-27gnu: meld: Fix startup.Leo Prikler
* /gnu/packages/patchutils.scm: (meld)[inputs]: Replace gtksourceview with gtksourceview-3. [arguments]<#:phases>[wrap-typelib]: New phase. Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
2019-10-27gnu: nginx: Update to 1.17.5.Marius Bakke
* gnu/packages/web.scm (nginx): Update to 1.17.5.
2019-10-27gnu: dav1d: Update to 0.5.1.Marius Bakke
* gnu/packages/patches/dav1d-aarch64-symbol-alignment.patch: Delete file. * gnu/local.mk (dist_patch_DATA): Adjust accordingly. * gnu/packages/video.scm (dav1d): Update to 0.5.1. [source](patches): Remove.
2019-10-27gnu: keepassxc: Update to 2.5.0.Efraim Flashner
* gnu/packages/password-utils.scm (keepassxc): Update to 2.5.0. [arguments]: Enable all extra features, except for update checking. [inputs]: Add libyubikey, quazip, readline, yubikey-personalization. Remove curl. [license]: Update comment.
2019-10-27gnu: r-car: Update to 3.0-4.Ricardo Wurmus
* gnu/packages/statistics.scm (r-car): Update to 3.0-4.
2019-10-27gnu: r-rlang: Update to 0.4.1.Ricardo Wurmus
* gnu/packages/statistics.scm (r-rlang): Update to 0.4.1.
2019-10-27gnu: r-digest: Update to 0.6.22.Ricardo Wurmus
* gnu/packages/statistics.scm (r-digest): Update to 0.6.22.
2019-10-27gnu: r-mgcv: Update to 1.8-30.Ricardo Wurmus
* gnu/packages/statistics.scm (r-mgcv): Update to 1.8-30.
2019-10-27gnu: r-jpeg: Update to 0.1-8.1.Ricardo Wurmus
* gnu/packages/image.scm (r-jpeg): Update to 0.1-8.1.
2019-10-27gnu: r-dalex: Update to 0.4.9.Ricardo Wurmus
* gnu/packages/cran.scm (r-dalex): Update to 0.4.9.
2019-10-27gnu: r-ggvis: Update to 0.4.5.Ricardo Wurmus
* gnu/packages/cran.scm (r-ggvis): Update to 0.4.5.
2019-10-27gnu: r-partitions: Update to 1.9-22.Ricardo Wurmus
* gnu/packages/cran.scm (r-partitions): Update to 1.9-22. [propagated-inputs]: Add r-sets.
2019-10-27gnu: r-compositions: Update to 1.40-3.Ricardo Wurmus
* gnu/packages/cran.scm (r-compositions): Update to 1.40-3. [propagated-inputs]: Remove r-energy.
2019-10-27gnu: r-spam: Update to 2.3-0.1.Ricardo Wurmus
* gnu/packages/cran.scm (r-spam): Update to 2.3-0.1.
2019-10-27gnu: r-biocmanager: Update to 1.30.9.Ricardo Wurmus
* gnu/packages/cran.scm (r-biocmanager): Update to 1.30.9.
2019-10-27gnu: r-ncdf4: Update to 1.17.Ricardo Wurmus
* gnu/packages/cran.scm (r-ncdf4): Update to 1.17.
2019-10-27gnu: r-performance: Update to 0.4.0.Ricardo Wurmus
* gnu/packages/cran.scm (r-performance): Update to 0.4.0.
2019-10-27gnu: r-bayestestr: Update to 0.4.0.Ricardo Wurmus
* gnu/packages/cran.scm (r-bayestestr): Update to 0.4.0.
2019-10-27gnu: r-emmeans: Update to 1.4.2.Ricardo Wurmus
* gnu/packages/cran.scm (r-emmeans): Update to 1.4.2.
2019-10-27gnu: r-slam: Update to 0.1-46.Ricardo Wurmus
* gnu/packages/cran.scm (r-slam): Update to 0.1-46.
2019-10-27gnu: r-doby: Update to 4.6-3.Ricardo Wurmus
* gnu/packages/cran.scm (r-doby): Update to 4.6-3. [propagated-inputs]: Add r-broom, r-deriv, r-pbkrtest, and r-tibble.
2019-10-27gnu: r-jomo: Update to 2.6-10.Ricardo Wurmus
* gnu/packages/cran.scm (r-jomo): Update to 2.6-10.