summaryrefslogtreecommitdiff
path: root/guix
AgeCommit message (Collapse)Author
2013-01-18distro: Change the module name space to (gnu ...).Ludovic Courtès
* distro: Rename to... * gnu: ... this. Update module names accordingly. * Makefile.am: Adjust accordingly. * po/POTFILES.in: Likewise. * distro.scm: Search for files under /gnu/packages instead of /distro/packages. * gnu/packages/base.scm (ld-wrapper-boot3): Likewise.
2013-01-17packages: Change `base32' to allow non-literal strings.Ludovic Courtès
* guix/packages.scm (base32): Allow arguments that are not literal strings.
2013-01-16doc: Start documenting derivations.Ludovic Courtès
* doc/guix.texi (Defining Packages): Add cross-reference to "Derivations". (The Store): Add `build-derivations'. (Derivations): Populate.
2013-01-15doc: Start documenting (guix store).Ludovic Courtès
* doc/guix.texi (The Store): Populate. (Introduction): Add cross-reference. Change "package store" to "the store".
2013-01-15licenses: Add 'psfl'.Nikita Karetnikov
* guix/licenses.scm (psfl): New variable.
2013-01-15build-system/gnu: Allow the `source' argument to be #f.Ludovic Courtès
* guix/build-system/gnu.scm (gnu-build): Allow SOURCE to be #f.
2013-01-14snix: When unable to determine the version number, leave the URI unchanged.Ludovic Courtès
* guix/snix.scm (snix-derivation->guix-package)[pretty-uri]: When VERSION is #f, return URI.
2013-01-13licenses: Add 'openldap2.8'.Andreas Enge
* guix/licenses.scm (openldap2.8): New variable.
2013-01-13store: In `open-connection', process all the server's stderr.Ludovic Courtès
* guix/store.scm (open-connection): Loop until `process-stderr' returns #t.
2013-01-11Merge branch 'core-updates'Ludovic Courtès
Conflicts: guix/build/union.scm
2013-01-11download: Abbreviate URLs when displaying the progress report.Ludovic Courtès
* guix/build/download.scm (uri-abbreviation): New procedure. (ftp-fetch, http-fetch): Use it instead of `uri->string' when calling `progress-proc'. Reported by Andreas Enge.
2013-01-10build-system/gnu: Improve support for "lib" outputs; support "doc" outputs.Ludovic Courtès
* guix/build/gnu-build-system.scm (configure)[package-name]: New procedure. When LIBDIR is true and INCLUDEDIR is false, add --includedir=LIBDIR/include. Add support for --docdir when a "doc" output exists.
2013-01-09union: Detect collisions, and delete duplicate leaves.Ludovic Courtès
* guix/build/union.scm (delete-duplicate-leaves): New procedure. (union-build)[leaf=?, resolve-collision]: New procedures. Use `delete-duplicate-leaves' on the result of `tree-union'. * tests/union.scm ("delete-duplicate-leaves, default", "delete-duplicate-leaves, file names"): New tests.
2013-01-09derivations: Fix `derivation-prerequisites-to-build' when outputs are there.Ludovic Courtès
Before it would list inputs not built, even if the outputs of the given derivation were already available. * guix/derivations.scm (derivation-prerequisites-to-build): Add `outputs' keyword parameter. [built?, derivation-built?]: New procedures. [loop]: Add `sub-drvs' parameter. Use `derivation-built?' to check if the SUB-DRVS of DRV are built before checking its inputs.
2013-01-08gnu-maintenance: Add `latest-release' and related tools.Ludovic Courtès
* guix/gnu-maintenance.scm (ftp-server/directory, releases, version-string>?, latest-release, gnu-package-name->name+version): New procedures. (%package-name-rx): New variable.
2013-01-07snix: Use (guix licenses) variables.Ludovic Courtès
* guix/snix.scm (snix-derivation->guix-package)[license-variable]: New procedure. Use it to determine the variable name for the license.
2013-01-07snix: Gracefully handle `null' in Nix build inputs.Ludovic Courtès
* guix/snix.scm (snix-derivation->guix-package)[convert-inputs]: Gracefully handle `null' as an input.
2013-01-06download: Report the progress of HTTP downloads.Ludovic Courtès
* guix/build/download.scm (http-fetch): Rename `bv' to `bv-or-port'. Use `http-get*' followed by `dump-port' when the former is available, and pass a progress procedure to `dump-port'.
2013-01-06download: Report the progress of FTP downloads.Ludovic Courtès
* guix/build/download.scm (progress-proc): New procedure. (ftp-fetch): Call `ftp-size' on URI. Use `progress-proc', and pass the result to `dump-port', along with #:buffer-size.
2013-01-06ftp-client: Add `ftp-size'.Ludovic Courtès
* guix/ftp-client.scm (ftp-size): New procedure.
2013-01-06Merge branch 'master' into core-updatesLudovic Courtès
Conflicts: build-aux/download.scm distro/packages/autotools.scm distro/packages/base.scm distro/packages/bootstrap.scm distro/packages/lsh.scm distro/packages/make-bootstrap.scm distro/packages/ncurses.scm distro/packages/perl.scm tests/derivations.scm tests/union.scm
2013-01-06Update license headers.Ludovic Courtès
Change all license headers, except guix/build/* and ld-wrapper.scm, with this code: (use-modules (guix build utils) (srfi srfi-1)) (fluid-set! %default-port-encoding "UTF-8") (substitute* (remove (lambda (f) (or (string-contains f ".tar.") (string-contains f ".git/") (string-contains f ".so") (string-suffix? ".o" f) (string-suffix? ".a" f) (string-suffix? ".go" f) (string-suffix? ".pdf" f) (string-suffix? ".png" f) (string-suffix? ".info" f) (equal? (basename f) "guix-daemon") (equal? (basename f) "nix-setuid-helper") (string-contains f "nix-upstream/") (string-contains f "distro/packages/bootstrap/"))) (find-files "." "\\.[a-z]+$")) (("^([[:graph:]]+) This file is part of Guix." _ comment-start) (string-append comment-start " This file is part of GNU Guix.")) (("^([[:graph:]]+) Guix --- Nix package management.*" _ comment-start) (string-append comment-start " GNU Guix --- Functional package management for GNU\n")) (("^([[:graph:]]+) Guix is " _ comment-start) (string-append comment-start " GNU Guix is ")) (("^([[:graph:]]+) along with Guix." _ comment-start) (string-append comment-start " along with GNU Guix.")) (("^([[:graph:]]+) Copyright \\(C\\)" _ comment-start) (string-append comment-start " Copyright ©"))) Change headers using C-style comments manually.
2013-01-05derivations: Add `derivation-path->output-paths'.Ludovic Courtès
* guix/derivations.scm (derivation-path->output-paths): New procedure. * tests/derivations.scm ("multiple-output derivation"): Test it.
2013-01-05Update license headers of builder-side code.Ludovic Courtès
Change license headers with this script: (use-modules (guix build utils)) (fluid-set! %default-port-encoding "UTF-8") (substitute* (cons "distro/packages/ld-wrapper.scm" (find-files "guix/build" "\\.scm$")) (("^([[:graph:]]+) This file is part of Guix." _ comment-start) (string-append comment-start " This file is part of GNU Guix.")) (("^([[:graph:]]+) Guix --- Nix package management.*" _ comment-start) (string-append comment-start " GNU Guix --- Functional package management for GNU\n")) (("^([[:graph:]]+) Guix is " _ comment-start) (string-append comment-start " GNU Guix is ")) (("^([[:graph:]]+) along with Guix." _ comment-start) (string-append comment-start " along with GNU Guix.")) (("^([[:graph:]]+) Copyright \\(C\\)" _ comment-start) (string-append comment-start " Copyright ©"))) * distro/packages/ld-wrapper.scm, guix/build/download.scm, guix/build/gnu-build-system.scm, guix/build/union.scm, guix/build/utils.scm: Update license headers.
2013-01-05utils: Add `which'.Ludovic Courtès
* guix/build/utils.scm (which): New procedure. * distro/packages/lsh.scm (lsh): Use `which' instead of `search-path'. * distro/packages/perl.scm (perl): Likewise. * distro/packages/attr.scm (attr): Likewise.
2013-01-05ui: Factorize bug-report information in `--help'.Ludovic Courtès
* guix/config.scm.in (%guix-home-page-url): New variable. * guix/ui.scm (show-bug-report-information): New procedure. * guix-build.in (show-help): Use it. * guix-download.in (show-help): Likewise. * guix-import.in (show-help): Likewise. * guix-package.in (show-help): Likewise.
2013-01-01utils: Use binary I/O primitives for `remove-store-references'.Ludovic Courtès
* guix/build/utils.scm (fold-port-matches)[get-char]: New procedure. (remove-store-references): Use `put-u8' and `put-bytevector'.
2013-01-01build-system/gnu: Add `static-package'.Ludovic Courtès
* distro/packages/make-bootstrap.scm (static-package): Move to... * guix/build-system/gnu.scm (static-package): ... here. New procedure.
2013-01-01build-system/gnu: Add support for the "bin" output.Ludovic Courtès
* guix/build/gnu-build-system.scm (configure): Add support for "bin" output.
2012-12-31utils: Restore the mtime/atime of patched files.Ludovic Courtès
* guix/build/utils.scm (set-file-time): New procedure. (patch-shebang): New `keep-mtime?' parameter; call `set-file-time' when it's true. (patch-makefile-SHELL): Likewise.
2012-12-30build-system/gnu: enable test-target during the check phaseAndreas Enge
* guix/build-system/gnu.scm: add variable test-target
2012-12-21build-system/gnu: Patch shebangs in all the source; patch SHELL in makefiles.Ludovic Courtès
* guix/build/utils.scm (call-with-ascii-input-file): New procedure. (patch-shebang): Use it. (patch-makefile-SHELL): New procedure. * guix/build/gnu-build-system.scm (patch-source-shebangs): Patch all the files, not just executables; remove `po/Makefile.in.in' patching. (patch-generated-files): Rename to... (patch-generated-file-shebangs): ... this. Patch executables and makefiles. (%standard-phases): Adjust accordingly. * distro/packages/autotools.scm (libtool): Remove call to `patch-shebang'. * distro/packages/base.scm (gcc-4.7): Likewise. (guile-final): Remove hack to skip `test-command-line-encoding2'. * distro/packages/bash.scm (bash): Remove `pre-configure-phase'. * distro/packages/readline.scm (readline): Likewise. * distro/packages/ncurses.scm (ncurses): Remove `pre-install-phase'.
2012-12-20build-system/gnu: Patch shebangs after `configure'.Ludovic Courtès
* guix/build/gnu-build-system.scm (patch-generated-files): New procedure. (%standard-phases): Add it after `configure'.
2012-12-20build-system/gnu: Report the execution time of each phase.Ludovic Courtès
* guix/build/gnu-build-system.scm (gnu-build): Report the success or failure of each phase and its execution time.
2012-12-20utils: Add a `progress' parameter to `dump-port'.Ludovic Courtès
* guix/build/utils.scm (dump-port): Add a `progress' keyword parameter. Call it after each transfer.
2012-12-19build-system/gnu: Change the order of `patch-source-shebangs' and `patch'.Ludovic Courtès
* guix/build/gnu-build-system.scm (patch-source-shebangs): Add a newline after the "SHELL =" line in po/Makefile.in.in. (%standard-phases): Move `patch-source-shebangs' after `patch'.
2012-12-17download: Remove unreachable SourceForge mirror.Ludovic Courtès
* guix/download.scm (%mirrors)[sourceforge]: Remove kent.dl.*, which is unreachable.
2012-12-17download: Correctly detect "No route to host" conditions.Ludovic Courtès
* guix/build/download.scm (open-connection-for-uri): Delete addrinfos with the same address. Always open SOCK_STREAM/IPPROTO_IP sockets. Fix the error handler's condition to determine what to do. Reported by Nikita Karetnikov <nikita.karetnikov@gmail.com> at <http://lists.gnu.org/archive/html/bug-guix/2012-12/msg00150.html>.
2012-12-15build-system/gnu: Patch shebangs in executable source files.Ludovic Courtès
This allows many packages to build in a chroot that lacks /bin and thus /bin/sh. * guix/build/gnu-build-system.scm (patch-source-shebangs): New procedure. (%standard-phases): Add it. * guix/build/utils.scm (executable-file?): New procedure. * distro/packages/perl.scm (perl): Don't use /bin/sh to run `Configure'.
2012-12-15build-system/gnu: Make the error port line-buffered.Ludovic Courtès
* guix/build/gnu-build-system.scm (gnu-build): Make the error port line-buffered.
2012-12-15utils: Make the buffer size of `dump-port' a parameter.Ludovic Courtès
* guix/build/utils.scm (dump-port): Make `buffer-size' a keyword parameter.
2012-12-15Merge branch 'master' into core-updatesLudovic Courtès
Conflicts: distro/packages/multiprecision.scm
2012-12-14download: Work around (web client) bug <http://bugs.gnu.org/13095>.Ludovic Courtès
* guix/build/download.scm: Annihilate `shutdown' in (web client).
2012-12-13build: Fix default value of `%state-directory'.Ludovic Courtès
* guix/config.scm.in (%state-directory): Append `/nix'. Reported by Andreas Enge <andreas@enge.fr>.
2012-12-13build-system/gnu: Avoid using /bin/sh.Ludovic Courtès
* guix/build/gnu-build-system.scm (configure): Add `inputs' keyword parameter. Take Bash from there, falling back to /bin/sh. Set `CONFIG_SHELL' and `SHELL' to that Bash. Run "bash ./configure" instead of just "./configure". * distro/packages/bootstrap.scm (%bootstrap-inputs): Add "bash". * distro/packages/base.scm (gcc-boot0-wrapped): Use "bash" from %BOOT1-INPUTS instead of /bin/sh.
2012-12-13Merge branch 'nix-integration'Ludovic Courtès
Conflicts: tests/guix-package.sh
2012-12-12licenses: Add 'bsd-style', 'expat', 'gpl1', 'gpl1+', 'lgpl2.0', and 'lgpl2.0+'.Nikita Karetnikov
* guix/licenses.scm (bsd-style, expat, gpl1, gpl1+) (lgpl2.0, lgpl2.0+): New variables.
2012-12-10Have `%nixpkgs-directory' default to #f when $NIXPKGS is the empty string.Ludovic Courtès
* guix/utils.scm (%nixpkgs-directory): Set to #f when the `NIXPKGS' environment variable is set but empty. Reported by Andreas Enge <andreas@enge.fr>.
2012-12-10derivations: Distinguish direct store paths from files within a store path.Ludovic Courtès
* guix/derivations.scm (derivation)[direct-store-path?]: New procedure. Use it to determine which inputs must be added to the store.
2012-12-09Merge branch 'master' into nix-integrationLudovic Courtès
Conflicts: guix/store.scm