Skip to content
Snippets Groups Projects
  1. Jun 03, 2019
  2. Jun 02, 2019
    • Ludovic Courtès's avatar
      gnu: guix: Update to 4a54ed77. · 3092f1b8
      Ludovic Courtès authored
      * gnu/packages/package-management.scm (guix): Update to 4a54ed77.
      3092f1b8
    • Leo Famulari's avatar
      gnu: WireGuard: Update to 0.0.20190601. · 78d1497d
      Leo Famulari authored
      * gnu/packages/vpn.scm (wireguard): Update to 0.0.20190601.
      78d1497d
    • Mathieu Lirzin's avatar
      gnu: emacs-google-translate: Update to 0.11.17. · 4a54ed77
      Mathieu Lirzin authored
      
      * gnu/packages/emacs-xyz.scm (emacs-google-translate): Update to 0.11.17.
      [source]: Use 'git-fetch' method instead of 'url-fetch'.
      
      Signed-off-by: default avatarLudovic Courtès <ludo@gnu.org>
      4a54ed77
    • Robert Vollmert's avatar
      import: hackage: Parse braced properties. · 959c9d15
      Robert Vollmert authored
      This adds partial support for Cabal properties that use curly
      braces instead of the layout rule.  See for example
      https://hackage.haskell.org/package/cassava/
      
      
      
      * guix/import/cabal.scm (read-braced-value): New procedure.
      (is-property): Remove.
      (is-layout-property, is-braced-property): New variables.
      (lex-property): Rename to...
      (lex-layout-property): ... this.
      (lex-braced-property, lex-property): New procedures.
      (lex-token): Add call to 'lex-property'.
      * guix/tests/hackage.scm: Test braced description import.
      * tests/hackage.scm (test-cabal-multiline-desc): Rename to...
      (test-cabal-multiline-layout): ... this.
      ("hackage->guix-package test multiline desc"): Rename to...
      ("hackage->guix-package test multiline desc (layout)"): ... this.
      (test-cabal-multiline-braced): New variable.
      ("hackage->guix-package test multiline desc (braced)"): New test.
      
      Signed-off-by: default avatarLudovic Courtès <ludo@gnu.org>
      959c9d15
    • Robert Vollmert's avatar
      tests: hackage: Test multiline cabal description. · 64d31813
      Robert Vollmert authored
      
      * tests/hackage.scm (test-cabal-multiline-desc): New variable.
      ("hackage->guix-package test multiline desc"): New test.
      
      Signed-off-by: default avatarLudovic Courtès <ludo@gnu.org>
      64d31813
    • Robert Vollmert's avatar
      tests: Fix hackage tests. · ea35f5c5
      Robert Vollmert authored
      
      This is a followup to 1cc12357.
      
      * tests/hackage.scm: ghc-mtl is no longer added as an input.
      
      Signed-off-by: default avatarLudovic Courtès <ludo@gnu.org>
      ea35f5c5
    • Ludovic Courtès's avatar
      substitute: Select the best compression methods. · b90ae065
      Ludovic Courtès authored
      When a server publishes several URLs with different compression methods,
      'guix substitute' can now choose the best one among the compression
      methods that it supports.
      
      * guix/scripts/substitute.scm (<narinfo>)[uri]: Replace with...
      [uris]: ... this.
      [compression]: Replace with...
      [compressions]: ... this.
      [file-size]: Replace with...
      [file-sizes]: ... this.
      [file-hash]: Replace with...
      [file-hashes]: ... this.
      (narinfo-maker): Adjust accordingly.  Ensure 'file-sizes' and
      'file-hashes' have the right length.
      (assert-valid-signature, valid-narinfo?): Use the first element of
      'narinfo-uris' in error messages.
      (read-narinfo): Expect "URL", "Compression", "FileSize", and "FileHash"
      to occur multiple times.
      (display-narinfo-data): Call 'select-uri' to determine the file size.
      (%compression-methods): New variable.
      (supported-compression?, compresses-better?, select-uri): New
      procedures.
      (process-substitution): Call 'select-uri' to select the URI and
      compression.
      * guix/scripts/weather.scm (report-server-coverage): Account for all the
      values returned by 'narinfo-file-sizes'.
      * tests/substitute.scm ("substitute, narinfo with several URLs"): New
      test.
      b90ae065
    • Ludovic Courtès's avatar
      publish: '--compression' can be repeated. · b8fa86ad
      Ludovic Courtès authored
      This allows 'guix publish' to compress and advertise multiple
      compression methods from which users can choose.
      
      * guix/scripts/publish.scm (actual-compression): Rename to...
      (actual-compressions): ... this.  Expect REQUESTED to be a list, and
      always return a list.
      (%default-options): Remove 'compression.
      (store-item->recutils): New procedure.
      (narinfo-string): Change #:compression to #:compressions (plural).
      Adjust accordingly.
      (render-narinfo, render-narinfo/cached): Likewise.
      (bake-narinfo+nar): Change #:compression to #:compressions.
      [compressed-nar-size]: New procedure.
      Call 'compress-nar' for each item returned by 'actual-compressions'.
      Create a narinfo for each compression.
      (effective-compression): New procedure.
      (make-request-handler): Change #:compression to #:compressions.
      Use 'effective-compression' to determine the applicable compression.
      (guix-publish): Adjust handling of '--compression'.
      Print a message for each compression that is enabled.
      * tests/publish.scm ("/*.narinfo"): Adjust to new narinfo field
      ordering.
      ("/*.narinfo with properly encoded '+' sign"): Likewise.
      ("/*.narinfo with lzip + gzip"): New test.
      ("with cache, lzip + gzip"): New test.
      * doc/guix.texi (Invoking guix publish): Document it.
      b8fa86ad
    • Ludovic Courtès's avatar
      gnu: Add guile-srfi-159. · dec4b3aa
      Ludovic Courtès authored
      * gnu/packages/guile-xyz.scm (guile-srfi-159): New variable.
      dec4b3aa
    • Ludovic Courtès's avatar
      build-system/guile: Display progress report as expected by (guix status). · e006f749
      Ludovic Courtès authored
      * guix/build/guile-build-system.scm (report-build-progress): Use a
      format string suitable for (guix status).
      e006f749
    • Ludovic Courtès's avatar
      build-system/guile: Add #:not-compiled-file-regexp. · 30eb7383
      Ludovic Courtès authored
      * guix/build/guile-build-system.scm (build): Add
       #:not-compiled-file-regexp and honor it.
      * guix/build-system/guile.scm (guile-build): Likewise.
      (guile-cross-build): Likewise.
      30eb7383
    • Ludovic Courtès's avatar
      build-system/guile: Improve reporting of 'guild compile' failures. · abeb54c0
      Ludovic Courtès authored
      * guix/build/guile-build-system.scm (invoke-each)[processes]: New
      variable.
      [wait-for-one-process]: Check PROCESSES and update it.
      [fork-and-run-command]: Update PROCESSES.
      abeb54c0
    • Jan Nieuwenhuizen's avatar
      gnu: Add guile-gi. · bdf2dd79
      Jan Nieuwenhuizen authored
      * gnu/packages/guile-xyz.scm (guile-gi): New variable.
      bdf2dd79
    • Rutger Helling's avatar
      gnu: faudio: Update to 19.06. · 08f48b78
      Rutger Helling authored
      * gnu/packages/audio.scm (faudio): Update to 19.06.
      08f48b78
    • Vagrant Cascadian's avatar
      gnu: debootstrap: Update to 114. · 54d14302
      Vagrant Cascadian authored
      * gnu/packages/debian (debootstrap): Update to 114.
      54d14302
    • Vagrant Cascadian's avatar
      gnu: debian-archive-keyring: Update to 2019.01. · 76513c94
      Vagrant Cascadian authored
      * gnu/packages/debian (debian-archive-keyring): Update to 2019.01.
      76513c94
    • Nicolas Goaziou's avatar
      gnu: giac: Update to 1.5.0-57. · fd4d3939
      Nicolas Goaziou authored
      * gnu/packages/algebra.scm (giac): Update to 1.5.0-57.
      fd4d3939
    • Nicolas Goaziou's avatar
      gnu: musescore: Update to 3.1. · 1a2fa342
      Nicolas Goaziou authored
      * gnu/packages/music.scm (musescore): Update to 3.1.
      1a2fa342
  3. Jun 01, 2019
Loading