~ruther/guix-local

bb3fe7fc — Ludovic Courtès 12 years ago
gnu: Add GNU Plotutils.

* gnu/packages/plotutils.scm: New file.
* Makefile.am (MODULES): Add it.
d1495831 — Ludovic Courtès 13 years ago
Update `NEWS'.
1972fed4 — Ludovic Courtès 13 years ago
gnu: Add CVS.

* gnu/packages/version-control.scm (cvs): New variable.
969e678e — Ludovic Courtès 13 years ago
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'.
d8482ad0 — Ludovic Courtès 13 years ago
gnu: Add strace.

* gnu/packages/linux.scm (strace): New variable.
35ec07c7 — Ludovic Courtès 13 years ago
gnu: Improve synopses for Linux-related packages.

* gnu/packages/linux.scm (util-linux, procps, e2fsprogs): Clarify and
  shrink synopses.
4bc3fcc7 — Ludovic Courtès 13 years ago
build: Switch to 0.3.

* configure.ac: Bump to 0.3.  Use the full URL.
499b8d1f — Ludovic Courtès 13 years ago
Update `TODO'.
f11617d8 — Ludovic Courtès 13 years ago
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.
70c43291 — Ludovic Courtès 13 years ago
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.
101d9f3f — Ludovic Courtès 13 years ago
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.
3d6b71e8 — Ludovic Courtès 13 years ago
gnu: texinfo: Don't propagate Perl.

* gnu/packages/texinfo.scm (texinfo): Don't propagate Perl.
03323862 — Ludovic Courtès 13 years ago
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'.
90a1e4b3 — Ludovic Courtès 13 years ago
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.
91fe0e20 — Ludovic Courtès 13 years ago
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.
b30b13dc — Ludovic Courtès 13 years ago
Sort commands alphabetically in "guix --help".

* guix/ui.scm (show-guix-help): Sort commands.
2b8cf44f — Ludovic Courtès 13 years ago
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.
e8b3afeb — Ludovic Courtès 13 years ago
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.
f5ebf5c6 — Ludovic Courtès 13 years ago
build: Add `gitlog-to-changelog'.

* build-aux/gitlog-to-changelog: New file, from Gnulib.
0f241da2 — Ludovic Courtès 13 years ago
Update `NEWS'.
Next