aboutsummaryrefslogtreecommitdiff
path: root/guix
Commit message (Expand)AuthorAge
...
| * | | | | utils: Export 'search-path-as-list'.•••* guix/build/utils.scm (search-path-as-list): Make public. * guix/scripts/environment.scm (for-each-search-path): Use it. Ludovic Courtès2014-12-27
| * | | | | packages: Add 'file-pattern' field to 'search-path-specification'.•••* guix/packages.scm (<search-path-specification>)[file-pattern]: New field. (search-path-specification->sexp): Honor it. Ludovic Courtès2014-12-27
| * | | | | build-support/gnu: Add support for file patterns in search paths.•••* guix/build/utils.scm (search-path-as-list): Add #:pattern parameter and honor it. (set-path-environment-variable): Likewise, and pass it to 'search-path-as-list'. * guix/packages.scm (search-path-specification->sexp): Add PATTERN slot. * guix/build/gnu-build-system.scm (set-paths): Adjust accordingly. Ludovic Courtès2014-12-27
| * | | | | packages: Add 'file-type' field to 'search-path-specification'.•••Fixes <http://bugs.gnu.org/18033>. * guix/packages.scm (<search-path-specification>): Rename 'directories' field to 'files'. Add 'file-type'. (search-path-specification->sexp): Honor 'file-type'. * gnu/packages/autotools.scm, gnu/packages/bootstrap.scm, gnu/packages/cross-base.scm, gnu/packages/games.scm, gnu/packages/gcc.scm, gnu/packages/glib.scm, gnu/packages/guile.scm, gnu/packages/man.scm, gnu/packages/perl.scm, gnu/packages/pkg-config.scm, gnu/packages/python.scm, gnu/packages/ruby.scm, gnu/packages/xfce.scm: Change 'directories' to 'files'. * tests/packages.scm ("search paths"): Change 'directories' field to 'files'. * guix/scripts/environment.scm (for-each-search-path): Likewise. Ludovic Courtès2014-12-27
| * | | | | build-system/gnu: Strip with '--strip-all' instead of '--strip-debug'.•••This saves 19% on the 'bin' directory of Coreutils, and certainly helpful for things like Git's 'libexec' directory. * guix/build-system/gnu.scm (gnu-build): Change default value for #:strip-flags to '("--strip-all"). * guix/build/gnu-build-system.scm (strip): Ditto. * gnu/packages/linux.scm (linux-libre)[arguments]: Add #:strip-flags. Ludovic Courtès2014-12-27
| * | | | | build-system/gnu: Add support for non-directory search paths.•••Partly fixes <http://bugs.gnu.org/18033>. * guix/build/utils.scm (search-path-as-list): Rename 'sub-directories' parameter to 'files'. Add #:type parameter and honor it. (set-path-environment-variable): Likewise. Pass #:type to 'search-path-as-list'. * guix/packages.scm (search-path-specification->sexp): Add 'directory as the last item of the tuple. * guix/build/gnu-build-system.scm (set-paths): Add 'type' to search-path pattern. Pass #:type to 'set-path-environment-variable'. Ludovic Courtès2014-12-27
| * | | | | Merge branch 'master' into core-updatesLudovic Courtès2014-12-26
| |\ \ \ \ \
| * | | | | | packages: Apply patches with "patch --force".•••Fixes <http://bugs.gnu.org/19402>. Reported by Mark H Weaver <mhw@netris.org>. * guix/packages.scm (patch-and-repack): Change "--batch" to "--force". Ludovic Courtès2014-12-26
| * | | | | | Merge branch 'master' into 'core-updates'.Ludovic Courtès2014-12-14
| |\ \ \ \ \ \
| * | | | | | | utils: Change 'wrap-program' to preserve the original argv[0].•••Suggested by Mark H Weaver <mhw@netris.org> in <http://bugs.gnu.org/19138>. * guix/build/utils.scm (wrap-program): Change wrapper to use "exec -a PROG" instead of just "exec". Ludovic Courtès2014-12-14
| * | | | | | | utils: Change 'patch-makefile-SHELL' to support ":=" assignments.•••Reported by Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de>. * guix/build/utils.scm (patch-makefile-SHELL): Update regexp to match ":=" assignments. Ludovic Courtès2014-12-13
| * | | | | | | utils: Use 'which' to find the shell in 'patch-makefile-SHELL'.•••* guix/build/utils.scm (patch-makefile-SHELL)[find-shell]: Use 'which'. Ludovic Courtès2014-12-13
| * | | | | | | build-system/gnu: Add 'compress-documentation' phase.•••* guix/build/gnu-build-system.scm (compress-documentation): New procedure. (%standard-phases): Add it. Ludovic Courtès2014-12-01
| * | | | | | | utils: Add 'symbolic-link?'.•••* guix/build/utils.scm (symbolic-link?): New procedure. Ludovic Courtès2014-12-01
| * | | | | | | build-system/gnu: Add 'validate-documentation-location' phase.•••* guix/build/gnu-build-system.scm (validate-documentation-location): New procedure. (%standard-phases): Add it. Ludovic Courtès2014-12-01
| * | | | | | | utils: Improve docstring of 'substitute*' & co.•••* guix/build/utils.scm (substitute): Clarify first sentence of docstring and add warning to the docstring about using '$' to match an end of line. (substitute*): Add warning to the docstring about using '$' to match an end of line. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Taylan Ulrich Bayırlı/Kammer2014-11-26
| * | | | | | | build-system/gnu: Gracefully handle dangling symlinks in the 'strip' phase.•••* guix/build/gnu-build-system.scm (strip): Check whether 'file-exists?' before calling 'elf-file?' and 'ar-file?'. This should fix build failures in the presence of dangling symlinks, as in <http://hydra.gnu.org/build/167521/nixlog/1/raw>. Ludovic Courtès2014-11-24
| * | | | | | | utils: 'elf-file?' and 'ar-file?' return #f for directories.•••This avoids uncaught exceptions when the 'strip' phase would call these procedures on symlinks to directories, such as 'lib/terminfo' in ncurses (see <http://hydra.gnu.org/build/167310/nixlog/1/tail-reload>.) * guix/build/utils.scm (file-header-match): Catch 'system-error', and return #f upon EISDIR. Ludovic Courtès2014-11-23
| * | | | | | | utils: Turn 'parallel-job-count' into a parameter.•••* guix/build/utils.scm (parallel-job-count): Turn into a SRFI-39 parameter. Ludovic Courtès2014-11-22
| * | | | | | | build-system/gnu: Strip 'ar' archives as well.•••* guix/build/gnu-build-system.scm (strip): Also strip when (ar-file? PATH) is true. Ludovic Courtès2014-11-22
| * | | | | | | utils: Factorize magic bytes detection.•••* guix/build/utils.scm (file-header-match): New procedure. (%elf-magic-bytes): New variable. (elf-file?, ar-file?): Define using 'file-header-match'. Ludovic Courtès2014-11-22
| * | | | | | | utils: Add 'ar-file?'.•••* guix/build/utils.scm (%ar-magic-bytes): New variable. (ar-file?): New procedure. Ludovic Courtès2014-11-22
| * | | | | | | build-system/gnu: Strip only ELF files.•••Suggested by Mark H Weaver <mhw@netris.org> at <http://lists.gnu.org/archive/html/guix-devel/2014-10/msg00395.html>. * guix/build/gnu-build-system.scm (strip)[strip-dir]: Strip only when (elf-file? PATH) is true. Ludovic Courtès2014-11-22
| * | | | | | | utils: Add 'elf-file?'.•••* guix/build/utils.scm (elf-file?): New procedure. Ludovic Courtès2014-11-22
| * | | | | | | utils: Export 'parallel-job-count'.•••* guix/build/utils.scm (parallel-job-count): New procedure. * guix/build/gnu-build-system.scm (%parallel-job-count): Remove. (build, check): Use 'parallel-job-count' instead. Ludovic Courtès2014-11-22
* | | | | | | | packages: Convert source derivations to monadic style.•••* guix/packages.scm (origin->derivation): Take body from 'package-source-derivation', and change it to monadic style. Expect METHOD to a monadic procedure. (package-source-derivation): Define in terms of 'origin->derivation'. * guix/download.scm (url-fetch): Remove 'store' argument. Remove 'guile-for-build' variable. Turn into a monadic procedure. * guix/git-download.scm (git-fetch): Likewise. * guix/svn-download.scm (svn-fetch): Likewise. * tests/builders.scm (url-fetch*): New procedure. Change tests to call 'url-fetch*' instead of 'url-fetch'. * tests/packages.scm ("package-source-derivation, snippet"): Remove 'store' parameter of 'fetch' and change it to use 'interned-file' instead of 'add-to-store'. * gnu/packages/bootstrap.scm (bootstrap-origin)[boot]: Remove 'store' parameter. Ludovic Courtès2015-01-14
* | | | | | | | store: Add 'store-lower'.•••* guix/store.scm (store-lower): New procedure. * tests/store.scm ("store-lower"): New test. Ludovic Courtès2015-01-14
* | | | | | | | monads: Move '%store-monad' and related procedures where they belong.•••This turns (guix monads) into a generic module for monads, and moves the store monad and related monadic procedures in their corresponding module. * guix/monads.scm (store-return, store-bind, %store-monad, store-lift, text-file, interned-file, package-file, package->derivation, package->cross-derivation, origin->derivation, imported-modules, compiled, modules, built-derivations, run-with-store): Move to... * guix/store.scm (store-return, store-bind, %store-monad, store-lift, text-file, interned-file): ... here. (%guile-for-build): New variable. (run-with-store): Moved from monads.scm. Remove default value for #:guile-for-build. * guix/packages.scm (default-guile): Export. (set-guile-for-build): New procedure. (package-file, package->derivation, package->cross-derivation, origin->derivation): Moved from monads.scm. * guix/derivations.scm (%guile-for-build): Remove. (imported-modules): Rename to... (%imported-modules): ... this. (compiled-modules): Rename to... (%compiled-modules): ... this. (built-derivations, imported-modules, compiled-modules): New procedures. * gnu/services/avahi.scm, gnu/services/base.scm, gnu/services/dbus.scm, gnu/services/dmd.scm, gnu/services/networking.scm, gnu/services/ssh.scm, gnu/services/xorg.scm, gnu/system/install.scm, gnu/system/linux-initrd.scm, gnu/system/shadow.scm, guix/download.scm, guix/gexp.scm, guix/git-download.scm, guix/profiles.scm, guix/svn-download.scm, tests/monads.scm: Adjust imports accordingly. * guix/monad-repl.scm (default-guile-derivation): New procedure. (store-monad-language, run-in-store): Use it. * build-aux/hydra/gnu-system.scm (qemu-jobs): Add explicit 'set-guile-for-build' call. * guix/scripts/archive.scm (derivation-from-expression): Likewise. * guix/scripts/build.scm (options/resolve-packages): Likewise. * guix/scripts/environment.scm (guix-environment): Likewise. * guix/scripts/system.scm (guix-system): Likewise. * doc/guix.texi (The Store Monad): Adjust module names accordingly. Ludovic Courtès2015-01-14
| |_|_|_|_|_|/ |/| | | | | |
* | | | | | | build/glib-or-gtk-build-system: Fix 'generate-icon-cache'.•••Reported by Mark H Weaver <mhw@netris.org> * guix/build/glib-or-gtk-build-system.scm (generate-icon-cache): Add check for existence of icons directory. Federico Beffa2015-01-13
* | | | | | | monads: Remove 'derivation-expression'.•••* guix/monads.scm (lower-inputs, derivation-expression): Remove. * tests/monads.scm (derivation-expression, "mlet* + derivation-expression"): Remove. Ludovic Courtès2015-01-12
* | | | | | | monads: Rewrite 'text-file*' using gexps.•••* guix/monads.scm (text-file*): Move to... * guix/gexp.scm (text-file*): ... here. Rewrite using gexps. * tests/monads.scm ("text-file*"): Move to... * tests/gexp.scm ("text-file*"): ... here. Ludovic Courtès2015-01-12
* | | | | | | guix: build/glib-or-gtk-build-system: Add support for GIO and XDG theming.•••* guix/build/glib-or-gtk-build-system.scm (data-directories): Rename 'schemas-directories' to 'data-directories' and add support for XDG theming data. * guix/build/glib-or-gtk-build-system.scm (gio-module-directories): New function. * guix/build/glib-or-gtk-build-system.scm (wrap-all-programs): Update names to reflect that we are dealing with more types of data and not only with schemas. Add handling of GIO modules. * guix/build-system/glib-or-gtk.scm (lower): Import the 'bin' output of GLib instead of 'out'. This was an error since we need the program 'glib-compile-schemas'. Update the description. Federico Beffa2015-01-12
* | | | | | | derivations: Use a set for 'substitution-oracle'.•••* guix/derivations.scm (substitution-oracle): Use sets instead of lists. Ludovic Courtès2015-01-11
* | | | | | | derivations: Use sets for 'derivations-prerequisites'.•••This yields a 46% improvement in 'derivation-prerequisites' invocations on the Emacs derivation. * guix/derivations.scm (derivation-prerequisites): Add 'input-set' variable, and use it in iterations. Ludovic Courtès2015-01-11
* | | | | | | Add (guix sets).•••* guix/sets.scm, tests/sets.scm: New files.sets * Makefile.am (MODULES, SCM_TESTS): Add them. Ludovic Courtès2015-01-11
| |_|_|_|_|/ |/| | | | |
* | | | | | derivations: Add 'substitution-oracle' and use it.•••This makes 'guix environment PACKAGE' significantly faster when substitutes are enabled. Before that, it would lead to many invocations of 'guix substitute-binary', one per 'derivation-prerequisites-to-build' call. Now, all these are replaced by a single invocation. * guix/derivations.scm (derivation-output-paths, substitution-oracle): New procedures. (derivation-prerequisites-to-build): Replace #:use-substitutes? with #:substitutable?. Remove the local 'derivation-output-paths' and 'substitutable?'. * guix/ui.scm (show-what-to-build): Add 'substitutable?'. Pass it to 'derivation-prerequisites-to-build'. [built-or-substitutable?]: Use it instead of 'has-substitutes?'. * tests/derivations.scm ("derivation-prerequisites-to-build and substitutes"): Use #:substitutable? instead of #:use-substitutes?. Ludovic Courtès2015-01-10
* | | | | | derivations: Add 'derivation-output-names'.•••* guix/derivations.scm (derivation-output-names): New procedure. (derivation-prerequisites-to-build): Use it for #:outputs. (map-derivation): Likewise. * tests/derivations.scm ("derivation-output-names"): New test. Ludovic Courtès2015-01-09
* | | | | | import: Add CPAN importer.•••* guix/import/cpan.scm, guix/scripts/import/cpan.scm, tests/cpan.scm: New files. * Makefile.am (MODULE)[HAVE_GUILE_JSON]: Add them. * guix/scripts/import.scm (importers): Add cpan. * doc/guix.texi (Requirements): Mention `guix import cpan` as a user of guile-json. (Invoking guix import): Document new `guix import cpan` command. Eric Bavier2015-01-09
* | | | | | tests: import: Factorize utility function.•••* tests/pypi.scm (mock): Move this... * guix/tests.scm: to here. Eric Bavier2015-01-09
* | | | | | import: Factorize utility functions.•••* guix/import/pypi.scm (hash-table->alist, flatten, assoc-ref*, url-fetch, json-fetch): Pull procedures from here into... * guix/import/utils.scm: Here and... * guix/import/json.scm: Here. New file. * Makefile.am (MODULE)[HAVE_GUILE_JSON]: Add it. * guix/import/gnu.scm (file-sha256): Move from here to... * guix/hash.scm: Here. * tests/pypi.scm (pypi->guix-package): Update mock module reference. Eric Bavier2015-01-09
* | | | | | import: gnu: Propagate the key-download argument.•••* guix/import/gnu.scm (gnu->guix-package): Pass the key-download argument on to gnu-package->sexp. Eric Bavier2015-01-09
* | | | | | substitute-binary: Micro-optimize 'narinfo-sha256'.•••* guix/scripts/substitute-binary.scm (narinfo-signature->canonical-sexp): Change "~a" to "~s" in error message. (%signature-line-rx): Remove. (narinfo-sha256): Use 'string-contains' instead of 'regexp-exec', and 'string-take' instead of 'match:substring'. Ludovic Courtès2015-01-09
* | | | | | records: Optimize 'recutils->alist' by avoiding regexps.•••* guix/records.scm (%recutils-field-rx, %recutils-comment-rx, %recutils-plus-rx): Remove. (%recutils-field-charset): New variable. (recutils->alist): Adjust to use tests (string-ref line 0) instead of regexps. Ludovic Courtès2015-01-09
* | | | | | base64: Inline arithmetic operations.•••* guix/base64.scm (define-alias): New macro. (fxbit-field, fxarithmetic-shift, fxarithmetic-shift-left, fxand, fxior, fxxor): New aliases. Ludovic Courtès2015-01-09
| |_|_|_|/ |/| | | |
* | | | | linux-boot: Make /etc/mtab a symlink to /proc/self/mounts.•••Fixes <http://bugs.gnu.org/19491>. * gnu/build/linux-boot.scm (mount-root-file-system): Make /root/etc/mtab a symlink to /proc/self/mounts. * gnu/build/file-systems.scm (mount-file-system): Don't update /etc/mtab. * guix/build/syscalls.scm (mount, umount): Have #:update-mtab? default to #f. 宋文武2015-01-05
* | | | | pk-crypto: Improve docstring of signature-related procedures.•••* guix/pk-crypto.scm (bytevector->hash-data, sign): Augment docstring. Ludovic Courtès2015-01-04
| |_|_|/ |/| | |
* | | | download: Export 'maybe-expand-mirrors'.•••* guix/build/download.scm (uri-vicinity, maybe-expand-mirrors): New procedures. (url-fetch): Remove them from here. Ludovic Courtès2014-12-29
* | | | tests: Factorize the 'dummy-package' macro.•••* guix/tests.scm (dummy-package): New macro. * tests/lint.scm (dummy-package): Remove. * tests/packages.scm (dummy-package): Remove. Ludovic Courtès2014-12-29
* | | | lint: Add tests for the 'home-page' checker.•••Suggested by Cyril Roelandt <tipecaml@gmail.com>. * tests/lint.scm (%http-server-port, %http-server-socket, %local-url, stub-http-server): New variables. (http-write, call-with-http-server): New procedures. (with-http-server): New macro. ("home-page: wrong home-page", "home-page: invalid URI", "home-page: host not found", "home-page: Connection refused", "home-page: 200", "home-page: 404"): New tests. * guix/scripts/lint.scm (check-home-page): Export. Ludovic Courtès2014-12-29
* | | | lint: Report on the package being checked.•••* guix/scripts/lint.scm (run-checkers): Check whether (current-error-port) is a tty, and print the package being checked and the checker currently running when it is. Ludovic Courtès2014-12-28