Ludovic Courtès
cd52703ace
packages: Re-export `%current-target-system'.
...
* guix/packages.scm: Re-export `%current-target-system'.
2013-05-25 16:14:37 +02:00
Ludovic Courtès
ee4d736881
build-system/gnu: Make sure build input variables contain pairs.
...
* guix/build-system/gnu.scm (gnu-cross-build)[builder]: Make sure
%build-host-inputs and %build-target-inputs always contain pairs, not
lists.
2013-05-25 15:35:36 +02:00
Ludovic Courtès
2ee5f56b4d
build: `hydra.scm' cross-builds simpler packages.
...
* hydra.scm (%packages-to-cross-build): Remove things from
make-bootstrap for now.
2013-05-25 00:03:28 +02:00
Ludovic Courtès
5dce82180b
build-system/trivial: Implement the cross-build protocol.
...
* guix/build-system/trivial.scm (guile-for-build): New procedure.
(trivial-build): Use it.
(trivial-cross-build): New procedure.
(trivial-build-system): Use it.
2013-05-24 23:53:06 +02:00
Ludovic Courtès
cba363bea8
package: Fix default profile ownership check when it's just been created.
...
* 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.
2013-05-24 23:14:19 +02:00
Ludovic Courtès
929c0f69de
build: `hydra.scm' adds cross-build jobs.
...
* 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.
2013-05-24 23:12:56 +02:00
Ludovic Courtès
e55ec43d8b
build: Add `--target' option.
...
* 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'.
2013-05-24 22:52:52 +02:00
Ludovic Courtès
264218a47e
build-system/gnu: Implement cross build.
...
* 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.
2013-05-24 22:44:15 +02:00
Ludovic Courtès
9c1edabd8b
packages: Implement `package-cross-derivation'.
...
* 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'.
2013-05-24 22:30:58 +02:00
Ludovic Courtès
17bb886ff4
gnu: cross-gcc: Set the right search paths.
...
* gnu/packages/cross-base.scm (cross-gcc): Override `search-paths' and
`native-search-paths'.
2013-05-24 21:55:52 +02:00
Ludovic Courtès
248d08ebf0
gnu: cross-gcc: Change patch so that `CROSS_LIBRARY_PATH' is honored.
...
* 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.
2013-05-24 21:54:44 +02:00
Ludovic Courtès
a63062b55a
packages: Factorize things common to `package-{,cross-}derivation'.
...
* guix/packages.scm (expand-input): New procedure, moved out of...
(package-derivation): ... here. Adjust accordingly.
(package-cross-derivation): Add `cross-system' and `system'
parameters.
2013-05-24 08:58:52 +02:00
Ludovic Courtès
7046c48d72
nls: Add Esperanto translation.
...
* po/eo.po, po/LINGUAS: New files.
2013-05-24 00:22:57 +02:00
Ludovic Courtès
3ec7ad8e0f
gnu: Add UnRTF.
...
* gnu/packages/unrtf.scm: New file.
* Makefile.am (MODULES): Add it.
2013-05-24 00:03:57 +02:00
Ludovic Courtès
a10f6f7bf7
gnu: libgc: Add 7.2d.
...
* gnu/packages/bdw-gc.scm (libgc-7.2): New variable.
2013-05-23 00:11:38 +02:00
Ludovic Courtès
bb3fe7fcfe
gnu: Add GNU Plotutils.
...
* gnu/packages/plotutils.scm: New file.
* Makefile.am (MODULES): Add it.
2013-05-22 00:33:14 +02:00
Ludovic Courtès
d149583162
Update `NEWS'.
2013-05-20 18:30:55 +02:00
Ludovic Courtès
1972fed4df
gnu: Add CVS.
...
* gnu/packages/version-control.scm (cvs): New variable.
2013-05-20 18:29:43 +02:00
Ludovic Courtès
969e678ed9
Add --max-silent-time' to
guix build' and `guix package'.
...
* 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'.
2013-05-20 18:29:26 +02:00
Ludovic Courtès
d8482ad0d6
gnu: Add strace.
...
* gnu/packages/linux.scm (strace): New variable.
2013-05-18 23:31:14 +02:00
Ludovic Courtès
35ec07c758
gnu: Improve synopses for Linux-related packages.
...
* gnu/packages/linux.scm (util-linux, procps, e2fsprogs): Clarify and
shrink synopses.
2013-05-18 23:02:25 +02:00
Ludovic Courtès
4bc3fcc771
build: Switch to 0.3.
...
* configure.ac: Bump to 0.3. Use the full URL.
2013-05-18 23:01:28 +02:00
Ludovic Courtès
499b8d1f84
Update `TODO'.
2013-05-17 23:15:49 +02:00
Ludovic Courtès
f11617d8a6
gnu: automake: Update to 1.13.2.
...
* 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.
2013-05-17 23:10:47 +02:00
Ludovic Courtès
70c4329172
package: Make sure the profile directory is owned by the user.
...
* 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.
2013-05-16 20:04:13 +02:00
Ludovic Courtès
101d9f3fd4
substitute-binary: Pass `filtered-port' an unbuffered port.
...
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.
2013-05-15 23:40:09 +02:00
Ludovic Courtès
3d6b71e87e
gnu: texinfo: Don't propagate Perl.
...
* gnu/packages/texinfo.scm (texinfo): Don't propagate Perl.
2013-05-15 00:15:25 +02:00
Ludovic Courtès
0332386251
substitute-binary: Work around thread-unsafe `regexp-exec'.
...
* guix/scripts/substitute-binary.scm (%regexp-exec-mutex): New variable.
(string->uri): New procedure.
(fields->alist): Wrap `regexp-exec' call in `with-mutex'.
2013-05-14 23:53:38 +02:00
Ludovic Courtès
90a1e4b303
package: Always clear the SIGINT handler.
...
* guix/scripts/package.scm (call-with-sigint-handler): Wrap THUNK in
`dynamic-wind' so that the SIGINT handler is always cleared.
2013-05-14 23:52:13 +02:00
Ludovic Courtès
91fe0e20c7
ftp-client: Let callers handle `ftp-open' exceptions.
...
* 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.
2013-05-14 23:51:36 +02:00
Ludovic Courtès
b30b13dc3d
Sort commands alphabetically in "guix --help".
...
* guix/ui.scm (show-guix-help): Sort commands.
2013-05-14 13:37:53 +02:00
Ludovic Courtès
2b8cf44fd9
Fix "guix --help" on Guile 2.0.5.
...
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.
2013-05-14 13:37:21 +02:00
Ludovic Courtès
e8b3afeb92
build: Use separate `AC_CONFIG_FILES' invocations for executable files.
...
* configure.ac: Use separate AC_CONFIG_FILES invocations for files that
need to be made executable.
* config-daemon.ac: Likewise.
2013-05-12 23:26:46 +02:00
Ludovic Courtès
f5ebf5c6ac
build: Add `gitlog-to-changelog'.
...
* build-aux/gitlog-to-changelog: New file, from Gnulib.
2013-05-12 22:41:11 +02:00
Ludovic Courtès
0f241da212
Update `NEWS'.
2013-05-12 16:35:27 +02:00
Ludovic Courtès
a463ffd9e8
build: Make sure the distribution doesn't embed store file names.
...
* Makefile.am (assert-no-store-file-names): New target.
(dist-hook): Depend on it.
2013-05-12 16:35:18 +02:00
Ludovic Courtès
e793178adb
build: Generate a ChangeLog file upon "make dist".
...
* Makefile.am (sync-synopses): New rule, formerly `dist-hook.
(gen-ChangeLog): New rule.
(dist-hook): Depend on these two targets.
2013-05-12 16:35:17 +02:00
Ludovic Courtès
c0cd1b3ea7
Move record utilities to (guix records).
...
* 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.
2013-05-12 15:46:16 +02:00
Ludovic Courtès
9b1ef2f323
release.nix: Revert back to before unchroot experiments.
...
* release.nix: Revert to commit 4050e5d6cf
.
2013-05-12 15:18:17 +02:00
Ludovic Courtès
46614bba7c
gnu: guile-reader: Install modules in the right place.
...
* gnu/packages/guile.scm (guile-reader): Add `arguments' field.
2013-05-12 12:37:21 +02:00
Ludovic Courtès
47d188109e
Update `NEWS'.
2013-05-11 22:50:01 +02:00
Ludovic Courtès
1b1c335f5e
gnu: Add GNU RCS.
...
* gnu/packages/bazaar.scm: Rename to...
* gnu/packages/version-control.scm: ... this.
(rcs): New variable.
* Makefile.am (MODULES): Adjust accordingly.
2013-05-11 22:49:39 +02:00
Ludovic Courtès
9bff16b3f2
build: Really clean .log files from SRFI-64.
...
* Makefile.am (CLEANFILES): Really catch .log files from SRFI-64.
2013-05-11 22:42:38 +02:00
Ludovic Courtès
3a33730a86
build: Run `tests/guix-gc.sh' last to avoid test failures.
...
* Makefile.am (tests/guix-gc.log): New target. This should fix failures
that occurred with "make check -j" the first time.
2013-05-11 22:37:33 +02:00
Ludovic Courtès
f7ce90e7b9
gnu: Add Scheme48.
...
* gnu/packages/scheme.scm (scheme48): New variable.
* gnu/packages/patches/scheme48-tests.patch: New file.
* Makefile.am (dist_patch_DATA): Add it.
2013-05-11 22:13:59 +02:00
Ludovic Courtès
35ff176877
gnu: gnupg: Update to 2.0.20.
...
* gnu/packages/gnupg.scm (gnupg): Update to 2.0.20.
2013-05-11 21:28:16 +02:00
Ludovic Courtès
2c4b49ed8d
gnu: chicken: Clear description.
...
* gnu/packages/scheme.scm (chicken): Remove unneeded part of the
description.
2013-05-11 20:00:48 +02:00
Ludovic Courtès
210cc92038
doc: Document "guix download".
...
* doc/guix.texi (Defining Packages): Linke to "Invoking guix download".
(Utilities): Add an overview paragraph.
(Invoking guix download): New node.
2013-05-11 16:18:15 +02:00
Ludovic Courtès
2c71cf66a5
gnu: Sync synopses with the Womb.
...
* gnu/packages/bazaar.scm (bazaar): Use synopsis from the Womb.
* gnu/packages/gv.scm (gv): Likewise.
2013-05-11 15:58:20 +02:00
Ludovic Courtès
410e38f814
tests: Fix out-of-source builds.
...
* tests/nar.scm (%test-dir): Compute relative to `pre-inst-env', which
is in $top_builddir.
2013-05-11 15:43:33 +02:00