aboutsummaryrefslogtreecommitdiff
path: root/guix
Commit message (Expand)AuthorAge
* store: Default to a non-empty list of substituters.•••Fixes <http://bugs.gnu.org/20163>. Reported by Mark H Weaver <mhw@netris.org>. * guix/store.scm (%default-substitute-urls): New variable. (set-build-options): Change default value of #:substitute-urls to %DEFAULT-SUBSTITUTE-URLS. Ludovic Courtès2015-03-22
* gexp: Fix handling of nativeness in nested gexps.•••* guix/gexp.scm (gexp-inputs): Remove 'references' parameter; add #:native? and honor it. [add-reference-inputs]: Distinguish between native gexp inputs, and non-native gexp inputs. Honor 'native?' field of list inputs. * tests/gexp.scm ("ungexp + ungexp-native, nested"): New test. Ludovic Courtès2015-03-22
* gexp: Ignore nested gexps in macro expansion.•••Before that, the 'references' and 'natives' or the outer gexp in an expression like #~#+#~#$coreutils would include those of the inner gexp. * guix/gexp.scm (gexp)[collect-escapes]: Ignore everything below 'ungexp-native' or 'ungexp-native-splicing'. [collect-native-escapes]: Ignore everything below 'ungexp' or 'ungexp-splicing'. Ludovic Courtès2015-03-22
* gexp: Allow <gexp-input> objects in #:allowed-references.•••* guix/gexp.scm (lower-references): Add <gexp-input> case. * tests/gexp.scm ("gexp->derivation #:allowed-references, specific output"): New test. Ludovic Courtès2015-03-22
* gexp: Add identity compiler for derivations.•••* guix/gexp.scm (derivation-compiler): New procedure. (lower-inputs): Remove 'derivation?' case. (gexp-inputs)[add-reference-inputs]: Likewise. (gexp->sexp)[reference->sexp]: Likewise. Ludovic Courtès2015-03-22
* guix package: '-s' sorts packages by name, then by version.•••Before that it would sort them by name only, so the order in which two packages with the same name but a different version would appear was non-deterministic. Reported by Tomáš Čech <sleep_walker@gnu.org>. * guix/scripts/package.scm (find-packages-by-description)[version<?]: New variable. Change the 2nd argument to 'sort' to use 'string-compare' and resort to 'version<?' when P1 and P2 have the same name. Ludovic Courtès2015-03-20
* guix package: '-s' displays different packages that have the same location.•••Before that, 'guix package -s foobarbaz' would display only one package when several match but they have the same location (which is common when using 'inherit'.) The original rationale was given at <http://lists.gnu.org/archive/html/bug-guix/2013-01/msg00280.html> but it was arguably misguided because it led to "real" packages being hidden. Reported by Tomáš Čech <sleep_walker@gnu.org>. * guix/scripts/package.scm (find-packages-by-description)[same-location?]: Remove. Remove call to 'delete-duplicates'. Ludovic Courtès2015-03-20
* ftp-client: Switch to binary mode before using the "SIZE" command.•••* guix/ftp-client.scm (ftp-size): Add '%ftp-command' call. Ludovic Courtès2015-03-19
* lint: Report details about FTP errors.•••* guix/scripts/lint.scm (probe-uri) <'ftp>: Pass more information about failures alongside 'ftp-response. (validate-uri) <ftp-response>: Handle it, and adjust "not reachable" message accordingly. Ludovic Courtès2015-03-19
* lint: Change misleading variable name.•••* guix/scripts/lint.scm (probe-uri) <'ftp>: Rename 'port' to 'conn'. Ludovic Courtès2015-03-19
* substitute-binary: Fix recently-introduced regression.•••* guix/scripts/substitute-binary.scm (%cache-url): Fix regression introduced in 41c45e7. Ludovic Courtès2015-03-18
* store: Remove debugging leftover.•••* guix/store.scm (set-build-options): Remove leftover 'pk' call from 41c45e7. Ludovic Courtès2015-03-18
* store: Add preliminary support for client-supplied substitute URLs.•••* guix/store.scm (set-build-options): Rename #:binary-caches to #:substitute-urls. Actually pass it in 'pairs' under the "substitute-urls" key. * guix/scripts/substitute-binary.scm (%cache-url): Add comment for "untrusted-substitute-urls". Ludovic Courtès2015-03-18
* pk-crypto: Improve documentation of 'key-type'.•••* guix/pk-crypto.scm (key-type): Improve docstring. Ludovic Courtès2015-03-18
* build: ruby: Set $GEM_HOME that matches Ruby's $GEM_PATH.•••* guix/build/ruby-build-system.scm (install): Ignore the Ruby patch version when creating $GEM_HOME. David Thompson2015-03-17
* gexp: Move the package and origin compilers to (guix packages).•••From now own, (guix packages) depends on (guix gexps); it was the other way around now. This means that (guix packages) code can use gexps. * guix/gexp.scm (origin-compiler, package-compiler): Remove. (default-guile-derivation): New procedure. (gexp->derivation): Use it instead of 'default-guile' + 'package->derivation'. * guix/packages.scm (default-guile-derivation): New procedure. (package-compiler, origin-compiler): New variables. * doc/guix.texi (G-Expressions): Mention extensibility. Ludovic Courtès2015-03-17
* packages: Move grafting parameter to (guix derivations).•••* guix/packages.scm (%graft?, set-grafting): Move to... * guix/derivations.scm: ... here. Ludovic Courtès2015-03-17
* gexp: Separate "compilers" for origins and packages from the core.•••* guix/gexp.scm (<gexp-compiler>): New record type. (%gexp-compilers): New variable. (register-compiler!, lookup-compiler): New procedures. (define-gexp-compiler): New macro. (origin-compiler, package-compiler): New compilers. (lower-inputs): Remove clauses for 'origin?' and 'package?'. Add clause with 'lookup-compiler' instead. (lower-references): Likewise. (gexp-inputs)[add-reference-inputs]: Likewise. (gexp->sexp)[reference->sexp]: Likewise. Ludovic Courtès2015-03-17
* gexp: Remove special meaning of forms (PACKAGE OUTPUT) in ungexp.•••* guix/gexp.scm (gexp-inputs)[add-reference-inputs]: Remove clause for inputs of the form (PACKAGE OUTPUT). (gexp->sexp)[reference->sexp]: Likewise. * tests/gexp.scm ("input list splicing"): Change 'list' to 'gexp-input' for glibc:debug. ("text-file*"): Likewise for %bootstrap-guile:out. ("input list splicing + gexp-input + ungexp-native-splicing"): Remove, now redundant. Ludovic Courtès2015-03-17
* profiles: Use 'gexp-input' instead of two-element lists.•••* guix/profiles.scm (package->manifest-entry): Use 'gexp-input' instead of two-element lists to denote specific package outputs. (manifest-inputs): Likewise. (profile-derivation)[info-dir]: Likewise. Ludovic Courtès2015-03-17
* gexp: Export 'gexp-input' constructor.•••* guix/gexp.scm (<gexp-input>)[gexp-input]: Rename to... [%gexp-input]: ... this. Adjust callers accordingly. (gexp-input): New procedure. (gexp-inputs)[add-reference-inputs]: When the input is a list, check whether each item is already 'gexp-input?' and to not rewrap those. (gexp-outputs)[add-reference-output]: Likewise. (gexp->sexp): Likewise. * tests/gexp.scm ("input list splicing + gexp-input + ungexp-native-splicing"): New test. Ludovic Courtès2015-03-17
* gexp: Add <gexp-input>.•••* guix/gexp.scm (<gexp-input>): New record type. (gexp-inputs)[add-reference-inputs]: Adjust clauses to expect <gexp-input> objects. (gexp-outputs)[add-reference-output]: Likewise. (gexp->sexp)[reference->sexp]: Likewise. (canonicalize-reference): Remove. (gexp)[escape->ref]: Use 'gexp-input' for all the references. Remove use of 'canonicalize-reference'. Ludovic Courtès2015-03-17
* gexp: Rename <output-ref> to <gexp-output>.•••* guix/gexp.scm (<output-ref>): Rename to... (<gexp-output>): ... this. Adjust constructor/accessor names and users accordingly. Ludovic Courtès2015-03-17
* licenses: Add the Ms-PL.•••* guix/licenses.scm (ms-pl): New variable. Ludovic Courtès2015-03-17
* scripts: environment: Improve error messages.•••* guix/scripts/environment.scm (guix-environment): Wrap procedure body with error handling form. David Thompson2015-03-16
* licenses: Rename 'bsd-style' to 'non-copyleft'.•••* guix/licenses.scm (bsd-style): Rename to... (non-copyleft): ... this. Clarify docstring. (bsd-style): Introduce as an alias for 'non-copyleft'. Ludovic Courtès2015-03-14
* gnu: cmake: Add CMAKE_PREFIX_PATH as a native search path, and drop•••CMAKE_LIBRARY_PATH and CMAKE_INCLUDE_PATH from the cmake build system. * gnu/packages/cmake.scm (cmake)[native-search-paths]: New field. * guix/build/cmake-build-system.scm (configure): Drop environment variables CMAKE_LIBRARY_PATH and CMAKE_INCLUDE_PATH. Andreas Enge2015-03-14
* build-system/python: Delay evaluation of the 'python2' package.•••This fixes a bug whereby uses of 'package-with-python2' at the top-level in modules other than (gnu packages python) could lead to an "Unbound variable: python2" error due to the circular references. Reported by Tomáš Čech. * guix/build-system/python.scm (package-with-explicit-python)[arguments]: Check whether PYTHON is a promise, and force it if it is. (package-with-python2): Wrap 'default-python2' call in 'delay'. Ludovic Courtès2015-03-12
* lint: Add tests for the 'source' checker.•••* guix/scripts/lint.scm (check-source): Export. * tests/lint.scm (%null-sha256): New procedure. ("source: 200", "source: 404"): New tests. Ludovic Courtès2015-03-05
* store: Attempt to decode build logs as UTF-8.•••* guix/serialization.scm (read-maybe-utf8-string): New procedure. * guix/store.scm (process-stderr): Use it for the build log and errors. * tests/store.scm ("current-build-output-port, UTF-8", "current-build-output-port, UTF-8 + garbage"): New tests. Ludovic Courtès2015-03-05
* serialization: Factorize 'read-byte-string'.•••* guix/serialization.scm (read-byte-string): New procedure. (read-string, read-latin1-string): Use it. Ludovic Courtès2015-03-05
* tests: Remove dependency on 'glibc-utf8-locales' for profile tests.•••This fixes a regression introduced in commit 536c3ee. * guix/profiles.scm (ca-certificate-bundle): When MANIFEST is empty, make a trivial derivation. * guix/scripts/package.scm (guix-package)[process-actions]: Pass #:ca-certificate-bundle? to 'profile-generation'. * tests/packages.scm ("--search-paths with pattern"): Likewise. * tests/profiles.scm ("profile-derivation"): Likewise. Ludovic Courtès2015-03-04
* Merge branch 'core-updates'.Ludovic Courtès2015-03-04
|\
| * gexp: Make sure 'gexp-outputs' removes duplicate outputs.•••Fixes a regression introduced in f9efe56. * guix/gexp.scm (gexp-outputs): Add call to 'delete-duplicates'. * tests/gexp.scm ("output list, combined gexps, duplicate output"): New test. Ludovic Courtès2015-03-02
| * Revert "build-system/gnu: Keep the sloppy conversion strategy during bootstrap."•••This reverts commit b479c3ddaf85c831e34888229849bc1ce34419de. This commit was the result of an incorrect characterization of the problem; see the log of commit 87c8b92 for details. Ludovic Courtès2015-03-01
| * build-system/gnu: Keep the sloppy conversion strategy during bootstrap.•••* guix/build/gnu-build-system.scm (gnu-build): Leave %DEFAULT-PORT-CONVERSION-STRATEGY unchanged when 'string->bytevector' fails to convert to ISO-8859-1. This is an attempt to work around the build failures at <http://hydra.gnu.org/build/263002>. Ludovic Courtès2015-03-01
| * utils: Treat 'configure' and Makefiles with an 8-bit encoding.•••* guix/build/utils.scm (patch-makefile-SHELL, patch-/usr/bin/file): Wrap 'substitute*' in 'with-fluids'. Fixes <http://hydra.gnu.org/build/262895>. Ludovic Courtès2015-02-28
| * packages: Set the port conversion strategy to 'error'.•••Suggested by Mark H Weaver. * guix/build/gnu-build-system.scm (gnu-build): Set %DEFAULT-PORT-CONVERSION-STRATEGY to 'error. * guix/packages.scm (patch-and-repack)[builder]: Likewise. Ludovic Courtès2015-02-28
| * utils: Change 'patch-shebangs' to use binary input.•••* guix/build/utils.scm (get-char*): New procedure. (patch-shebang): Use it instead of 'read-char'. (fold-port-matches): Remove local 'get-char' and use 'get-char*' instead. Ludovic Courtès2015-02-28
| * gexp: Aggregate outputs of compound gexps.•••* guix/gexp.scm (gexp-outputs)[add-reference-output]: Recurse into lists. * tests/gexp.scm ("output list + ungexp-splicing list, combined gexps"): New test. Ludovic Courtès2015-02-27
| * download: Comment on lack of progress report with chunked encoding.•••* guix/build/download.scm (progress-proc): Add comment. Ludovic Courtès2015-02-27
| * download: Measure and display the throughput.•••* guix/build/download.scm (duration->seconds, throughput->string): New procedures. (progress-proc): Measure and display the throughput. Ludovic Courtès2015-02-27
| * download: Abstract the receive buffer size.•••* guix/build/download.scm (%http-receive-buffer-size): New variable. (progress-proc, tls-wrap, http-fetch): Use it. Ludovic Courtès2015-02-27
| * utils: Call the progress-report proc when 'dump-port' starts.•••* guix/build/utils.scm (dump-port): Add call to PROGRESS at the beginning. Ludovic Courtès2015-02-27
| * build-system/gnu: Set $LC_ALL (or similar) to the chosen locale.•••Suggested by Mark H Weaver. * guix/build/utils.scm (locale-category->string): New procedure. * guix/build/gnu-build-system.scm (install-locale): Add 'setenv' call. Ludovic Courtès2015-02-27
| * build-system/cmake: Enable verbose output from Makefile builds.•••* guix/build/cmake-build-system.scm (configure): Pass -DCMAKE_VERBOSE_MAKEFILE=ON to cmake. 宋文武2015-02-27
| * packages: When possible, use a UTF-8 locale in patch-and-repack.•••* guix/packages.scm (%standard-patch-inputs): Add "locales". (patch-and-repack)[builder]: Add 'locales' variable. When it is true, call 'setenv' and 'setlocale'. Ludovic Courtès2015-02-27
| * build-system/gnu: Add 'install-locale' phase.•••* guix/build/gnu-build-system.scm (install-locale): New procedure. (%standard-phases): Add it. * guix/build-system/gnu.scm (gnu-build): Add #:locale and pass it to the build script. (gnu-cross-build): Likewise. Ludovic Courtès2015-02-26
| * build-system: Use 'modify-phases'.•••* guix/build/cmake-build-system.scm (%standard-phases): Use 'modify-phases' instead of alist-*. * guix/build/glib-or-gtk-build-system.scm (%standard-phases): Likewise. * guix/build/gnu-dist.scm (%dist-phases): Likewise. * guix/build/perl-build-system.scm (%standard-phases): Likewise. * guix/build/python-build-system.scm (%standard-phases): Likewise. * guix/build/ruby-build-system.scm (%standard-phases): Likewise. * guix/build/waf-build-system.scm (%standard-phases): Likewise. Ludovic Courtès2015-02-26
| * utils: Add 'modify-phases'.•••* guix/build/utils.scm (modify-phases): New macro. Ludovic Courtès2015-02-26