summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* build: `hydra.scm' cross-builds a few more packages.Ludovic Courtès2013-05-25
| | | | * hydra.scm (%packages-to-cross-build): Add a few packages.
* gnu: ncurses, readline: Allow cross-compilation.Ludovic Courtès2013-05-25
| | | | | | | * gnu/packages/ncurses.scm (ncurses): Add `cross-pre-install-phase'. Use different phases when (%current-target-system) is true. * gnu/packages/readline.scm (readline): Use %standard-cross-phases as the base when (%current-target-system) is true.
* gnu: libffi: Allow cross-compilation.Ludovic Courtès2013-05-25
| | | | | | * gnu/packages/libffi.scm (libffi): Use %standard-cross-phases as the base when cross-compiling. Add (guix build gnu-cross-build) to the #:modules when cross-compiling. Improve synopsis.
* gnu: libtool: Allow cross-compilation.Ludovic Courtès2013-05-25
| | | | | * gnu/packages/autotools.scm (libtool)[arguments]: Use #:phases argument only when building natively.
* gnu: gawk: Allow cross-compilation.Ludovic Courtès2013-05-25
| | | | | | * gnu/packages/gawk.scm (gawk)[arguments]: Use `set-shell-file-name' phase that works when cross-compiling; use `%standard-cross-phases' as the base when (%current-target-system) is true.
* gnu: libsigsegv: Fix mips64el-linux-gnu (cross-)builds.Ludovic Courtès2013-05-25
| | | | * gnu/packages/libsigsegv.scm (libsigsegv): New `arguments' field.
* gnu: findutils: Fix cross-compilation.Ludovic Courtès2013-05-25
| | | | | * gnu/packages/base.scm (findutils): Reinstate cross-compilation #:configure-flags.
* gnu: sed: Allow cross-compilation.Ludovic Courtès2013-05-25
| | | | | * gnu/packages/base.scm (sed): Keep the default phases when (%current-target-system) is true.
* gnu: coreutils: Allow cross-compilation.Ludovic Courtès2013-05-25
| | | | | | * gnu/packages/base.scm (coreutils): Remove Perl input when (%current-target-system) is true. Use %standard-cross-phases as the base when (%current-target-system) is true.
* gnu: gettext, attr, acl: Disable `check' phase twiddling when cross building.Ludovic Courtès2013-05-25
| | | | | | | * gnu/packages/gettext.scm (gettext)[arguments]: Disable `check' phase manipulations when (%current-target-system) is true. * gnu/packages/attr.scm (attr)[arguments]: Likewise. * gnu/packages/acl.scm (acl)[arguments]: Likewise.
* packages: Make `native-inputs' thunked.Ludovic Courtès2013-05-25
| | | | * guix/packages.scm (<package>): Make `native-inputs' thunked.
* packages: Re-export `%current-target-system'.Ludovic Courtès2013-05-25
| | | | * guix/packages.scm: Re-export `%current-target-system'.
* build-system/gnu: Make sure build input variables contain pairs.Ludovic Courtès2013-05-25
| | | | | | * guix/build-system/gnu.scm (gnu-cross-build)[builder]: Make sure %build-host-inputs and %build-target-inputs always contain pairs, not lists.
* build: `hydra.scm' cross-builds simpler packages.Ludovic Courtès2013-05-25
| | | | | * hydra.scm (%packages-to-cross-build): Remove things from make-bootstrap for now.
* build-system/trivial: Implement the cross-build protocol.Ludovic Courtès2013-05-24
| | | | | | | * guix/build-system/trivial.scm (guile-for-build): New procedure. (trivial-build): Use it. (trivial-cross-build): New procedure. (trivial-build-system): Use it.
* package: Fix default profile ownership check when it's just been created.Ludovic Courtès2013-05-24
| | | | | | * guix/scripts/package.scm (guix-package)[ensure-default-profile]: Check whether S is true before checking its owner. Fixes the case where we built %PROFILE-DIRECTORY just above.
* build: `hydra.scm' adds cross-build jobs.Ludovic Courtès2013-05-24
| | | | | | | * hydra.scm (package->alist): Add `package-derivation' argument. (package-cross-job): New procedure. (%packages-to-cross-build, %cross-targets): New variables. (hydra-jobs): Add cross jobs.
* build: Add `--target' option.Ludovic Courtès2013-05-24
| | | | | | | | | | * guix/scripts/build.scm (derivations-from-package-expressions): Add `package-derivation' parameter. (show-help, %options): Add `--target'. (guix-build): Use `package-cross-derivation' when `--target' is passed. * tests/guix-build.sh: Add dry-run test with `--target'. * doc/guix.texi (Invoking guix build): Document `--target'.
* build-system/gnu: Implement cross build.Ludovic Courtès2013-05-24
| | | | | | | | | | | | | | * guix/build-system/gnu.scm (inputs-search-paths): New procedure. (standard-search-paths): Use it. (expand-inputs): New procedure. (standard-inputs): Use it. (standard-cross-packages, standard-cross-inputs, standard-cross-search-paths, gnu-cross-build): New procedures. (gnu-build-system): Set `cross-build' field to `gnu-cross-build'. * gnu/packages/cross-base.scm: Export `cross-gcc', `cross-binutils', and `cross-libc'. * guix/build/gnu-cross-build.scm: New file. * Makefile.am (MODULES): Add it.
* packages: Implement `package-cross-derivation'.Ludovic Courtès2013-05-24
| | | | | | | | | | | * guix/packages.scm (package-transitive-target-inputs, package-transitive-native-inputs): New procedures. (package-derivation): Parametrize `%current-target-system'. (package-cross-derivation): Implement. * guix/utils.scm (%current-target-system): New variable. * tests/packages.scm ("package-cross-derivation"): New test. * doc/guix.texi (Defining Packages): Document `package-cross-derivation'.
* gnu: cross-gcc: Set the right search paths.Ludovic Courtès2013-05-24
| | | | | * gnu/packages/cross-base.scm (cross-gcc): Override `search-paths' and `native-search-paths'.
* gnu: cross-gcc: Change patch so that `CROSS_LIBRARY_PATH' is honored.Ludovic Courtès2013-05-24
| | | | | | * gnu/packages/patches/gcc-cross-environment-variables.patch: Add two hunks, most notably one that changes GCC to honor LIBRARY_PATH_ENV when cross-compiling.
* packages: Factorize things common to `package-{,cross-}derivation'.Ludovic Courtès2013-05-24
| | | | | | | * guix/packages.scm (expand-input): New procedure, moved out of... (package-derivation): ... here. Adjust accordingly. (package-cross-derivation): Add `cross-system' and `system' parameters.
* nls: Add Esperanto translation.Ludovic Courtès2013-05-24
| | | | * po/eo.po, po/LINGUAS: New files.
* gnu: Add UnRTF.Ludovic Courtès2013-05-24
| | | | | * gnu/packages/unrtf.scm: New file. * Makefile.am (MODULES): Add it.
* gnu: libgc: Add 7.2d.Ludovic Courtès2013-05-23
| | | | * gnu/packages/bdw-gc.scm (libgc-7.2): New variable.
* gnu: Add GNU Plotutils.Ludovic Courtès2013-05-22
| | | | | * gnu/packages/plotutils.scm: New file. * Makefile.am (MODULES): Add it.
* Update `NEWS'.Ludovic Courtès2013-05-20
|
* gnu: Add CVS.Ludovic Courtès2013-05-20
| | | | * gnu/packages/version-control.scm (cvs): New variable.
* Add `--max-silent-time' to `guix build' and `guix package'.Ludovic Courtès2013-05-20
| | | | | | | | | | | | | | | | * guix/scripts/build.scm (%default-options): Add default `max-silent-time' value. (show-help, %options): Add `--max-silent-time'. (guix-build): Pass `max-silent-time' to `set-build-options'. * guix/scripts/package.scm (%default-options): Add default `max-silent-time' value. (show-help, %options): Add `--max-silent-time'. (guix-package): Pass `max-silent-time' to `set-build-options'. * guix/ui.scm (string->number*): New procedure. * tests/derivations.scm ("build-expression->derivation and max-silent-time"): New test. * doc/guix.texi (Invoking guix package, Invoking guix build): Document `--max-silent-time'.
* gnu: Add strace.Ludovic Courtès2013-05-18
| | | | * gnu/packages/linux.scm (strace): New variable.
* gnu: Improve synopses for Linux-related packages.Ludovic Courtès2013-05-18
| | | | | * gnu/packages/linux.scm (util-linux, procps, e2fsprogs): Clarify and shrink synopses.
* build: Switch to 0.3.Ludovic Courtès2013-05-18
| | | | * configure.ac: Bump to 0.3. Use the full URL.
* Update `TODO'.Ludovic Courtès2013-05-17
|
* gnu: automake: Update to 1.13.2.Ludovic Courtès2013-05-17
| | | | | | | * gnu/packages/autotools.scm (autoconf-wrapper): Wrap `configure' files regardless of the exit code of `autoconf'. Triggered by Automake's `t/am-prog-cc-stdc.sh'. (automake): Update to 1.13.2.
* package: Make sure the profile directory is owned by the user.Ludovic Courtès2013-05-16
| | | | | | | * guix/scripts/package.scm (guix-package)[ensure-default-profile]: Check the owner of %PROFILE-DIRECTORY. Report an error when the owner is not the current user. Add `rtfm' procedure. * doc/guix.texi (Invoking guix package): Mention the ownership test.
* substitute-binary: Pass `filtered-port' an unbuffered port.Ludovic Courtès2013-05-15
| | | | | | | | | | | | | | | | | | This fixes a bug whereby `read-response' would read more than just the response, with the extra data going into the port's buffer; the "bzip2 -dc" process spawned by `filtered-port' would not see the those buffered data, which are definitely lost, and would bail out with "bzip2: (stdin) is not a bzip2 file." * guix/utils.scm (filtered-port): Document that INPUT must be unbuffered. * guix/web.scm (http-fetch): Add `buffered?' parameter. Call `open-socket-for-uri' explicitly, and call `setvbuf' when BUFFERED? is false. Pass the port to `http-get'. Close it upon 301/302. * guix/scripts/substitute-binary.scm (fetch): Add `buffered?' parameter. Pass it to `http-fetch'; honor it for `file' URIs. (guix-substitute-binary): Call `fetch' with #:buffered? #f for port RAW. * tests/utils.scm ("filtered-port, file"): Open FILE as unbuffered.
* gnu: texinfo: Don't propagate Perl.Ludovic Courtès2013-05-15
| | | | * gnu/packages/texinfo.scm (texinfo): Don't propagate Perl.
* substitute-binary: Work around thread-unsafe `regexp-exec'.Ludovic Courtès2013-05-14
| | | | | | * guix/scripts/substitute-binary.scm (%regexp-exec-mutex): New variable. (string->uri): New procedure. (fields->alist): Wrap `regexp-exec' call in `with-mutex'.
* package: Always clear the SIGINT handler.Ludovic Courtès2013-05-14
| | | | | * guix/scripts/package.scm (call-with-sigint-handler): Wrap THUNK in `dynamic-wind' so that the SIGINT handler is always cleared.
* ftp-client: Let callers handle `ftp-open' exceptions.Ludovic Courtès2013-05-14
| | | | | | * guix/ftp-client.scm (ftp-open): Let exceptions through. * guix/scripts/package.scm (waiting): Wrap EXP in a `dynamic-wind', so the line is always cleared.
* Sort commands alphabetically in "guix --help".Ludovic Courtès2013-05-14
| | | | * guix/ui.scm (show-guix-help): Sort commands.
* Fix "guix --help" on Guile 2.0.5.Ludovic Courtès2013-05-14
| | | | | | | Reported at <http://linuxfr.org/news/sortie-de-gnu-guix-0-2>. * guix/ui.scm (command-files): Filter the result of `scandir' to make sure only `.scm' files are present.
* build: Use separate `AC_CONFIG_FILES' invocations for executable files.v0.2Ludovic Courtès2013-05-12
| | | | | | * configure.ac: Use separate AC_CONFIG_FILES invocations for files that need to be made executable. * config-daemon.ac: Likewise.
* build: Add `gitlog-to-changelog'.Ludovic Courtès2013-05-12
| | | | * build-aux/gitlog-to-changelog: New file, from Gnulib.
* Update `NEWS'.Ludovic Courtès2013-05-12
|
* build: Make sure the distribution doesn't embed store file names.Ludovic Courtès2013-05-12
| | | | | * Makefile.am (assert-no-store-file-names): New target. (dist-hook): Depend on it.
* build: Generate a ChangeLog file upon "make dist".Ludovic Courtès2013-05-12
| | | | | | * Makefile.am (sync-synopses): New rule, formerly `dist-hook. (gen-ChangeLog): New rule. (dist-hook): Depend on these two targets.
* Move record utilities to (guix records).Ludovic Courtès2013-05-12
| | | | | | | | | | | | | | | | * guix/utils.scm (define-record-type*): Move to... * guix/records.scm: ... here. New file. * guix/build-system.scm, guix/packages.scm: Use it. * guix/gnu-maintenance.scm: Likewise. (official-gnu-packages)[alist->record]: Remove. * guix/scripts/substitute-binary.scm: Likewise. (alist->record, object->fields): Remove. * tests/utils.scm ("define-record-type*", "define-record-type* with letrec* behavior", "define-record-type* & inherit", "define-record-type* & inherit & letrec* behavior", "define-record-type* & thunked", "define-record-type* & thunked & default", "define-record-type* & thunked & inherited"): Move to... * tests/records.scm: ... here. New file.
* release.nix: Revert back to before unchroot experiments.Ludovic Courtès2013-05-12
| | | | * release.nix: Revert to commit 4050e5d6cfe8f7af29f10b2f1b3c7febdc10946a.