Age | Commit message (Expand) | Author |
2018-07-12 | import: hackage: Evaluate "-any" and "-none" version comparison operators....* guix/import/cabal.scm (eval-cabal): Modify.
* tests/hackage.scm (test-cabal-4): New variable and test.
(test-cabal-5): New variable and test.
(test-cabal-6): New variable and test.
| Danny Milosavljevic |
2018-07-12 | gnu: Syncthing: Fix a crash bug....* gnu/packages/patches/syncthing-fix-crash.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/syncthing.scm (syncthing)[source]: Use it.
| Leo Famulari |
2018-07-12 | gnu: Add quaternion....* gnu/packages/messaging.scm (quaternion): New variable.
| Arun Isaac |
2018-07-12 | gnu: Add libqmatrixclient....* gnu/packages/messaging.scm (libqmatrixclient): New variable.
| Arun Isaac |
2018-07-12 | gnu: psmisc: Update to 23.1....* gnu/packages/linux.scm (psmisc): Update to 23.1.
[source](uri): Use XZ-compressed tarball.
| Marius Bakke |
2018-07-12 | gnu: unbound: Update to 1.7.3....* gnu/packages/dns.scm (unbound): Update to 1.7.3.
| Marius Bakke |
2018-07-12 | gnu: php: Build with an older oniguruma....* gnu/packages/textutils.scm (oniguruma-5): New public variable.
* gnu/packages/php.scm (php)[inputs]: Change ONIGURUMA to ONIGURUMA-5.
| Marius Bakke |
2018-07-12 | gnu: iso-codes: Update home page....* gnu/packages/iso-codes.scm (iso-codes)[home-page]: Change to salsa.debian.org.
| Marius Bakke |
2018-07-12 | gnu: oniguruma: Update to 6.8.2....* gnu/packages/textutils.scm (oniguruma): Update to 6.8.2.
| Marius Bakke |
2018-07-12 | gnu: lsof: Return #t from all phases....* gnu/packages/lsof.scm (lsof)[arguments]: Return #t from phases.
| Marius Bakke |
2018-07-12 | gnu: lsof: Update to 4.91....* gnu/packages/lsof.scm (lsof): Update to 4.91.
| Marius Bakke |
2018-07-12 | gnu: xf86-input-libinput: Update to 0.28.0....* gnu/packages/xorg.scm (xf86-input-libinput): Update to 0.28.0.
| Marius Bakke |
2018-07-12 | gnu: ldb: Downgrade to 1.3.3....LDB 1.4 and above does not support Samba < 4.9; see
<https://bugzilla.samba.org/show_bug.cgi?id=13519>.
* gnu/packages/samba.scm (ldb): Downgrade to 1.3.3.
[inputs]: Remove LMDB.
[arguments]: Remove #:tests.
| Marius Bakke |
2018-07-12 | gnu: tdb: Update to 1.3.16....* gnu/packages/databases.scm (tdb): Update to 1.3.16.
| Marius Bakke |
2018-07-12 | gnu: tevent: Update to 0.9.37....* gnu/packages/samba.scm (tevent): Update to 0.9.37.
| Marius Bakke |
2018-07-12 | gnu: talloc: Update to 2.1.14....* gnu/packages/samba.scm (talloc): Update to 2.1.14.
| Marius Bakke |
2018-07-12 | gnu: python-pyyaml: Update to 3.13....* gnu/packages/python.scm (python-pyyaml): Update to 3.13.
| Marius Bakke |
2018-07-12 | gnu: appstream-glib: Update to 0.7.10....* gnu/packages/glib.scm (appstream-glib): Update to 0.7.10.
| Marius Bakke |
2018-07-12 | gnu: libzip: Update to 1.5.1....* gnu/packages/compression.scm (libzip): Update to 1.5.1.
[build-system]: Switch to CMAKE-BUILD-SYSTEM.
| Marius Bakke |
2018-07-12 | gnu: rng-tools: Update to 6.3....* gnu/packages/linux.scm (rng-tools): Update to 6.3.
| Marius Bakke |
2018-07-12 | gnu: openh264: Update to 1.8.0....* gnu/packages/video.scm (openh264): Update to 1.8.0.
[source](uri): Use release tarball.
| Marius Bakke |
2018-07-12 | gnu: xapian: Update to 1.4.6 [fixes CVE-2018-0499]....* gnu/packages/search.scm (xapian, python-xapian-bindings): Update to 1.4.6.
| Marius Bakke |
2018-07-12 | gnu: GnuPG: Update to 2.2.9....* gnu/packages/gnupg.scm (gnupg): Update to 2.2.9.
| Leo Famulari |
2018-07-12 | import: hackage: Support "-any" and "-none" version comparison operators....* guix/import/cabal.scm (make-cabal-parser): Modify.
(is-any): New variable.
(is-none): New variable.
(lex-any): New procedure.
(lex-none): New procedure.
(lex-word): Modify.
(eval-cabal): Modify.
| Danny Milosavljevic |
2018-07-12 | import: hackage: Support "custom-setup" field....Fixes <https://bugs.gnu.org/23961>.
* guix/import/cabal.scm (make-cabal-parser): Modify.
(is-custom-setup): New variable.
(lex-custom-setup): New procedure.
(is-id): Modify.
(lex-version): Modify.
(<cabal-custom-setup>): New record type.
(eval-cabal): Modify.
(dependencies): Add parameter.
| Danny Milosavljevic |
2018-07-12 | gexp: Allow bytevector as content of `plain-file'....This allows for using a package source directly from git, doing something like
(define (command->bytevector command)
(let ((port (apply open-pipe* OPEN_READ command)))
(let ((output (get-bytevector-all port)))
(close-port port)
output)))
(define-public hello-git
(package
(name "hello")
(version "git")
(source (let* ((commit "stable-2.0")
(content (command->bytevector
`("git" "archive" "--format" "tar" "--prefix"
,(string-append commit "/") ,commit)))
(file-name (string-append "hello-" commit)))
(plain-file file-name content)))
...
))
* guix/gexp.scm (<plain-file>): Also allow bytevector content.
(plain-file-compiler): Handle bytevector content.
* doc/guix.texi (G-Expressions): Describe plain-file now also taking
bytevectors.
| Jan Nieuwenhuizen |
2018-07-12 | store: Add `binary-file'....* guix/store.scm (binary-file): New function.
* doc/guix.texi (The Store Monad): Describe binary-file.
| Jan Nieuwenhuizen |
2018-07-11 | gnu: Add ghc-xdg-basedir....* gnu/packages/haskell.scm (ghc-xdg-basedir): New variable.
| Danny Milosavljevic |
2018-07-11 | gnu: Add ghc-regex-tdfa-text....* gnu/packages/haskell.scm (ghc-regex-tdfa-text): New variable.
| Danny Milosavljevic |
2018-07-11 | gnu: u-boot-tools: Simplify build....* gnu/packages/bootloaders.scm (u-boot-tools)[arguments]<#:phases>[build]:
Modify.
| Danny Milosavljevic |
2018-07-11 | gnu: u-boot-tools: Install "sunxi-spl-image-builder"....* gnu/packages/bootloaders.scm (u-boot-tools)[arguments]<#:phases>[build]:
Build sunxi-spl-image-builder.
(u-boot-tools)[arguments]<#:phases>[install]: Install sunxi-spl-image-builder.
| Danny Milosavljevic |
2018-07-11 | gnu: make-u-boot-package: Return #t from "install" phase....* gnu/packages/bootloaders.scm (make-u-boot-package)[arguments]<#:phases>
[install]: Return #t.
| Danny Milosavljevic |
2018-07-11 | gnu: msmtp: Update to 1.6.8....* gnu/packages/mail.scm (msmtp): Update to 1.6.8.
[source]: Update to new source location.
[home-page]: Update to new home-page.
| Efraim Flashner |
2018-07-11 | gnu: btrfs-progs: Update home-page....* gnu/packages/linux.scm (btrfs-progs)[home-page]: Update to redirected
home-page.
| Efraim Flashner |
2018-07-11 | gnu: Add emacs-fold-dwim....* gnu/packages/emacs.scm (emacs-fold-dwim): New variable.
| Ludovic Courtès |
2018-07-11 | gnu: Add emacs-recent-addresses....* gnu/packages/emacs.scm (emacs-recent-addresses): New variable.
| Ludovic Courtès |
2018-07-11 | gnu-maintenance: Get GNU metadata from rec files....Suggested by Mike Gerwitz <mtg@gnu.org>.
* guix/gnu-maintenance.scm (%package-list-url): Use the .rec file.
(%package-description-url): Likewise.
(official-gnu-packages)[read-records]: Skip record descriptors.
Rename fields to use underscores instead of hyphens.
| Ludovic Courtès |
2018-07-11 | gnu: gzochi: Update to 0.12....* gnu/packages/game-development.scm (gzochi): Update to 0.12.
| Julian Graham |
2018-07-11 | import: gem: Add recursive import....* doc/guix.texi (Invoking guix import): Document gem recursive import.
* guix/import/gem.scm (gem->guix-package): Return package and dependencies
values.
(gem-recursive-import): New procedure.
* guix/scripts/import/gem.scm (show-help, %options): Add recursive option.
(guix-import-gem): Use 'gem-recursive-import'.
* tests/gem.scm (test-json): Rename to 'test-foo-json'.
("gem->guix-package"): Use 'test-foo-json'.
(test-bar-json, test-bundler-json): New variables.
("gem-recursive-import"): New test.
| Oleg Pykhalov |
2018-07-11 | build-system/haskell: Make phases fail on error....* guix/build/haskell-build-system.scm (configure): Make it fail on error.
(run-setuphs): Make it fail on error.
| Danny Milosavljevic |
2018-07-11 | build: Add missing patches to the distribution....Reported by jonsger.
* gnu/local.mk (dist_patch_DATA): Add
perl-text-markdown-discount-unbundle.patch and
racket-fix-xform-issue.patch.
| Ludovic Courtès |
2018-07-11 | ui: Fix typo....* guix/ui.scm (display-profile-content-diff): Fix typo in docstring.
| Ludovic Courtès |
2018-07-11 | profiles: Introduce 'profile-search-paths' and use it....* guix/profiles.scm (profile-search-paths): New procedure.
* guix/scripts/environment.scm (evaluate-search-paths): Remove.
(create-environment): Replace 'paths' with 'manifest'. Use
'profile-search-paths' instead of 'evaluate-search-paths'.
(show-search-paths): Likewise.
(launch-environment): Replace 'paths' with 'manifest'. Make 'pure?' a
keyword parameter.
(launch-environment/fork, launch-environment/container): Likewise.
(guix-environment): Remove 'paths' variable. Adjust callers of the
above procedures accordingly.
| Ludovic Courtès |
2018-07-11 | environment: Simplify code by using manifests internally....* guix/scripts/environment.scm (strip-input-name)
(package+propagated-inputs, package-or-package+output?)
(compact): Remove.
(inputs->profile-derivation): Rename to...
(manifest->derivation): ... this. Replace 'inputs' parameter with
'manifest'.
(input->manifest-entry): New procedure.
(package-environment-inputs): Rewrite to return a list of manifest
entries.
(options/resolve-packages): Rewrite to return a manifest.
(guix-environment): Remove 'inputs'. Define 'paths' in terms of
'manifest-search-paths'.
| Ludovic Courtès |
2018-07-11 | profiles: Factorize 'manifest-search-paths'....* guix/profiles.scm (manifest-search-paths): New procedure.
(profile-derivation)[builder]: Use it.
* guix/build/profiles.scm (build-etc/profile): Remove $PATH.
| Ludovic Courtès |
2018-07-10 | gnu: fc-host-tools: Fix internal invocations....* gnu/packages/embedded.scm (fc-host-tools)[arguments]<#:phases>
[patch-installation-paths]: Modify.
| Danny Milosavljevic |
2018-07-10 | gnu: fc-host-tools: Update description....* gnu/packages/embedded.scm (fc-host-tools)[description]: Modify.
| Danny Milosavljevic |
2018-07-10 | gnu: Add patches....* gnu/local.mk (dist_patch_DATA): Add 'rust-bootstrap-stage0-test.patch',
'rust-coresimd-doctest.patch'.
| Danny Milosavljevic |
2018-07-10 | gnu: libyajl: Actually run test suite....* gnu/packages/web.scm (libyajl)[arguments]: Patch shebang in test suite.
| Efraim Flashner |
2018-07-10 | gnu: u-boot: Update to 2018.07....--=-=-=
Content-Type: text/plain
The attached patch updates u-boot to 2018.07, which required adding
native-inputs of "bison" and "flex".
live well,
vagrant
From 74a9561ac07592a5ae15b723d0f2ac7fc05c463c Mon Sep 17 00:00:00 2001
From: Vagrant Cascadian <vagrant@debian.org>
Date: Tue, 10 Jul 2018 00:12:05 +0000
Subject: [PATCH] gnu: u-boot: Update to 2018.07.
* gnu/packages/bootloaders.scm (u-boot): Update to 2018.07.
(u-boot)[native-inputs]: Add "bison" and "flex".
| Vagrant Cascadian |