summaryrefslogtreecommitdiff
path: root/guix/build
Commit message (Collapse)AuthorAge
* download: Fix premature socket close on TLS connections.Ludovic Courtès2013-05-10
| | | | | | | | This would manifest when downloading a large file such as the Bazaar tarball, leading to an "Error in the pull function" GnuTLS exception. * guix/build/download.scm (add-weak-reference): New procedure. (tls-wrap): Add (add-weak-reference record port).
* Add 'python-build-system'.Nikita Karetnikov2013-05-08
| | | | | * guix/build-system/python.scm, guix/build/python-build-system.scm: New files. * Makefile.am (MODULES): Add them.
* Add (guix build rpath).Ludovic Courtès2013-05-08
| | | | | | | | * guix/build/rpath.scm: New file. * Makefile.am (MODULES): Add it. * gnu/packages/python.scm (python): Use it; remove local copy of the *rpath* procedures. * gnu/packages/samba.scm (samba): Likewise.
* utils: Adjust 'wrap-program'.Nikita Karetnikov2013-04-30
| | | | | | | | * guix/build/utils.scm (wrap-program): Fix computation of PROG-REAL and PROG-TMP when PROG is an absolute file name. Add "$@" in the generated script, and quote PROG-REAL. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* build-system/gnu: Fix default name for the "doc" output directory.Ludovic Courtès2013-04-28
| | | | | * guix/build/gnu-build-system.scm (configure)[package-name]: Drop the prefix corresponding to the hash part of OUT.
* packages: Add `native-search-paths' field and honor it.Ludovic Courtès2013-03-30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | * guix/packages.scm (<search-path-specification>): New record type. (search-path-specification->sexp): New procedure. (<package>)[native-search-paths]: New field. (package-derivation): Accumulate the search paths, and pass them as #:search-paths toe BUILDER. * guix/build-system/gnu.scm (gnu-build): Add #:search-paths. Compute `implicit-search-paths'. Pass #:search-paths in BUILDER. * guix/build-system/perl.scm (perl-build): Add #:search-paths, pass it to BUILDER with the search paths of PERL. * guix/build-system/cmake.scm (cmake-build): Add #:search-paths, pass it to BUILDER. * guix/build-system/trivial.scm (trivial-build): Add #:search-paths, ignore it. * guix/build/gnu-build-system.scm (set-paths): Add #:search-paths. Remove explicit settings of CPATH, LIBRARY_PATH, and PKG_CONFIG_PATH. Instead, walk SEARCH-PATHS and call `set-path-environment-variable' for them. * guix/build/perl-build-system.scm (perl-build): Remove PERL5LIB setting. * tests/packages.scm ("search paths"): New test. * gnu/packages/bootstrap.scm (%bootstrap-guile)[raw]: Add #:search-paths. (%bootstrap-gcc): Add `native-search-paths' field. * gnu/packages/perl.scm (perl): Likewise. * gnu/packages/pkg-config.scm (pkg-config): Likewise. * gnu/packages/glib.scm (intltool): Remove `arguments'. * gnu/packages/avahi.scm (avahi): Remove #:phases.
* build-system/gnu: Remove #:path-exclusions parameter.Ludovic Courtès2013-03-30
| | | | | | | | | * guix/build/gnu-build-system.scm (set-paths): Remove `path-exclusions' parameter. Replace `relevant-input-directories' by `input-directories'. * guix/build-system/gnu.scm (gnu-build): Remove `path-exclusions' parameter; don't pass it in BUILDER. * guix/build-system/cmake.scm (cmake-build): Likewise.
* Merge branch 'master' into core-updatesLudovic Courtès2013-03-29
|\ | | | | | | | | | | Conflicts: Makefile.am gnu/packages/base.scm
| * Add (guix build-system cmake).Cyril Roelandt2013-03-28
| | | | | | | | | | * guix/build/cmake-build-system.scm, guix/build-system/cmake.scm: New files. * Makefile.am (MODULES): Add them.
| * Revert "utils: Add 'wrap-program'."Ludovic Courtès2013-03-07
| | | | | | | | This reverts commit 02065130de33e990969fe9b7cc19b9b1c24f3ff7.
| * utils: Add 'wrap-program'.Nikita Karetnikov2013-03-06
| | | | | | | | * guix/build/utils.scm (wrap-program): New procedure.
* | utils: Add 'wrap-program'.Nikita Karetnikov2013-03-07
| | | | | | | | * guix/build/utils.scm (wrap-program): New procedure.
* | utils: Add a #:follow-symlinks? parameter to `copy-recursively'.Ludovic Courtès2013-03-05
| | | | | | | | | | * guix/build/utils.scm (copy-recursively): Turn `log' into a keyword parameter. Add the `follow-symlinks?' parameter and honor it.
* | utils: Add `delete-file-recursively'.Ludovic Courtès2013-03-05
| | | | | | | | * guix/build/utils.scm (delete-file-recursively): New procedure.
* | Merge branch 'master' into core-updatesLudovic Courtès2013-03-04
|\| | | | | | | | | | | | | | | | | Conflicts: Makefile.am guix/scripts/gc.scm guix/scripts/package.scm guix/ui.scm tests/guix-package.sh
| * Add (guix build-system perl).Ludovic Courtès2013-03-04
| | | | | | | | | | | | * guix/build-system/perl.scm, guix/build/perl-build-system.scm: New files. * Makefile.am (MODULES): Add them. * guix/build-system/gnu.scm (standard-inputs): Make public.
| * download: Adjust to `http-get*' deprecation.Ludovic Courtès2013-02-20
| | | | | | | | | | * guix/build/download.scm (http-fetch): Adjust to use #:streaming? when using Guile 2.0.8+.
* | guix: build: Add "share/pkgconfig" to PKG_CONFIG_PATH, as used by xorg.Andreas Enge2013-03-04
| | | | | | | | | | * guix/build/gnu-build-system.scm (set-paths): Add "share/pkgconfig" to PKG_CONFIG_PATH.
* | download: Adjust to `http-get*' deprecation.Ludovic Courtès2013-02-27
| | | | | | | | | | * guix/build/download.scm (http-fetch): Adjust to use #:streaming? when using Guile 2.0.8+.
* | Patch-shebang: Do not add space after interpreter without argument.Andreas Enge2013-02-23
| | | | | | | | | | | | * guix/build/utils.scm (patch-shebang): Do not add a space after a command interpreter not followed by an argument; this made two tests of coreutils fail.
* | Patch-shebang: Handle "#!/usr/bin/env command"Andreas Enge2013-02-23
|/ | | | | * guix/build/utils.scm (patch-shebang): Handle replacement of "#!.*/env CMD ARGS" by "#!/nix/store/path/.../to/CMD ARGS".
* union: Don't warn when colliding leaves point to the same file.Ludovic Courtès2013-02-06
| | | | | | * guix/build/union.scm (union-build)[resolve-collision]: Pass LEAVES through `delete-duplicates'; warn iff the result contains more than one item.
* union: Delete duplicates when passed the same input several times.Ludovic Courtès2013-02-06
| | | | | | | * guix/build/union.scm (union-build): Prepend "." to the result of `union-tree', to match the expectations of `delete-duplicate-leaves'. Don't do mkdir when SUBDIR is ".". * tests/union.scm ("union-build"): Keep duplicates in %BOOTSTRAP-INPUTS.
* download: Follow HTTP redirection upon 301 "moved permanently".Ludovic Courtès2013-01-25
| | | | | * guix/build/download.scm (http-fetch): Follow redirections upon 301. This is what `downloads.sourceforge.net' returns, for instance.
* download: Add HTTPS support.Ludovic Courtès2013-01-20
| | | | | | | | | | | | * guix/build/download.scm: Autoload (gnutls). (tls-wrap): New procedure. (open-connection-for-uri): Add support for `https'. Wrap the socket with `tls-wrap' in that case. (url-fetch): Add `https'. * guix/download.scm (gnutls-derivation): New procedure. (url-fetch)[need-gnutls?]: New variable. Call `gnutls-derivation' when NEED-GNUTLS? is true, and add its output to the `GUILE_LOAD_PATH' env. var. in that case.
* Merge branch 'core-updates'Ludovic Courtès2013-01-11
|\ | | | | | | | | Conflicts: guix/build/union.scm
| * download: Abbreviate URLs when displaying the progress report.Ludovic Courtès2013-01-11
| | | | | | | | | | | | * 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.
| * build-system/gnu: Improve support for "lib" outputs; support "doc" outputs.Ludovic Courtès2013-01-10
| | | | | | | | | | | | | | | | * 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.
| * download: Report the progress of HTTP downloads.Ludovic Courtès2013-01-06
| | | | | | | | | | | | * 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'.
| * download: Report the progress of FTP downloads.Ludovic Courtès2013-01-06
| | | | | | | | | | | | * 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.
| * Merge branch 'master' into core-updatesLudovic Courtès2013-01-06
| |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
| * | Update license headers of builder-side code.Ludovic Courtès2013-01-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
| * | utils: Add `which'.Ludovic Courtès2013-01-05
| | | | | | | | | | | | | | | | | | | | | | | | * 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.
| * | utils: Use binary I/O primitives for `remove-store-references'.Ludovic Courtès2013-01-01
| | | | | | | | | | | | | | | * guix/build/utils.scm (fold-port-matches)[get-char]: New procedure. (remove-store-references): Use `put-u8' and `put-bytevector'.
| * | build-system/gnu: Add support for the "bin" output.Ludovic Courtès2013-01-01
| | | | | | | | | | | | | | | * guix/build/gnu-build-system.scm (configure): Add support for "bin" output.
| * | utils: Restore the mtime/atime of patched files.Ludovic Courtès2012-12-31
| | | | | | | | | | | | | | | | | | | | | * 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.
| * | build-system/gnu: Patch shebangs in all the source; patch SHELL in makefiles.Ludovic Courtès2012-12-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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'.
| * | build-system/gnu: Patch shebangs after `configure'.Ludovic Courtès2012-12-20
| | | | | | | | | | | | | | | | | | * guix/build/gnu-build-system.scm (patch-generated-files): New procedure. (%standard-phases): Add it after `configure'.
| * | build-system/gnu: Report the execution time of each phase.Ludovic Courtès2012-12-20
| | | | | | | | | | | | | | | * guix/build/gnu-build-system.scm (gnu-build): Report the success or failure of each phase and its execution time.
| * | utils: Add a `progress' parameter to `dump-port'.Ludovic Courtès2012-12-20
| | | | | | | | | | | | | | | * guix/build/utils.scm (dump-port): Add a `progress' keyword parameter. Call it after each transfer.
| * | build-system/gnu: Change the order of `patch-source-shebangs' and `patch'.Ludovic Courtès2012-12-19
| | | | | | | | | | | | | | | | | | * 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'.
| * | build-system/gnu: Patch shebangs in executable source files.Ludovic Courtès2012-12-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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'.
| * | build-system/gnu: Make the error port line-buffered.Ludovic Courtès2012-12-15
| | | | | | | | | | | | | | | * guix/build/gnu-build-system.scm (gnu-build): Make the error port line-buffered.
| * | utils: Make the buffer size of `dump-port' a parameter.Ludovic Courtès2012-12-15
| | | | | | | | | | | | | | | * guix/build/utils.scm (dump-port): Make `buffer-size' a keyword parameter.
| * | Merge branch 'master' into core-updatesLudovic Courtès2012-12-15
| |\ \ | | | | | | | | | | | | | | | | Conflicts: distro/packages/multiprecision.scm
| * | | build-system/gnu: Avoid using /bin/sh.Ludovic Courtès2012-12-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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.
* | | | union: Detect collisions, and delete duplicate leaves.Ludovic Courtès2013-01-09
| |_|/ |/| | | | | | | | | | | | | | | | | | | | * 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.
* | | download: Correctly detect "No route to host" conditions.Ludovic Courtès2012-12-17
| |/ |/| | | | | | | | | | | | | * 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>.
* | download: Work around (web client) bug <http://bugs.gnu.org/13095>.Ludovic Courtès2012-12-14
|/ | | | * guix/build/download.scm: Annihilate `shutdown' in (web client).
* download: Keep only one slash when concatenating URIs.Ludovic Courtès2012-11-27
| | | | | * guix/build/download.scm (url-fetch)[uri-vicinity]: New procedure. [maybe-expand-mirrors]: Use it.