~ruther/guix-local

7cc7dec1 — Ludovic Courtès 11 years ago
build-system/gnu: Add 'compress-documentation' phase.

* guix/build/gnu-build-system.scm (compress-documentation): New
  procedure.
  (%standard-phases): Add it.
9741aca9 — Ludovic Courtès 11 years ago
utils: Add 'symbolic-link?'.

* guix/build/utils.scm (symbolic-link?): New procedure.
d68fe741 — Ludovic Courtès 11 years ago
build-system/gnu: Add 'validate-documentation-location' phase.

* guix/build/gnu-build-system.scm (validate-documentation-location): New
  procedure.
  (%standard-phases): Add it.
e9bab1df — Ludovic Courtès 11 years ago
gnu: gawk: Build a UTF-8 locale for the tests.

* gnu/packages/gawk.scm (gawk)[arguments]: Add 'install-locales' phase.
094b2efc — Taylan Ulrich Bayırlı/Kammer 11 years ago
utils: Improve docstring of 'substitute*' & co.

* guix/build/utils.scm (substitute): Clarify first sentence of
  docstring and add warning to the docstring about using '$' to match
  an end of line.
  (substitute*): Add warning to the docstring about using '$' to match
  an end of line.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
97e11209 — Ludovic Courtès 11 years ago
gnu: glibc: Do not install all the locales.

* gnu/packages/base.scm (glibc)[outputs]: Remove "locales".
  [arguments]: Remove --localedir argument.  Change libc_cv_localedir
  value to "/run/current-system/locale".  Remove 'install-locales'
  phase.
c4a298c5 — Ludovic Courtès 11 years ago
gnu: grep: Update to 2.21.

* gnu/packages/base.scm (grep): Update to 2.21.
f8bcf193 — Ludovic Courtès 11 years ago
build-system/gnu: Gracefully handle dangling symlinks in the 'strip' phase.

* guix/build/gnu-build-system.scm (strip): Check whether 'file-exists?'
  before calling 'elf-file?' and 'ar-file?'.  This should fix build
  failures in the presence of dangling symlinks, as in
  <http://hydra.gnu.org/build/167521/nixlog/1/raw>.
c23d1709 — Ludovic Courtès 11 years ago
utils: 'elf-file?' and 'ar-file?' return #f for directories.

This avoids uncaught exceptions when the 'strip' phase would call these
procedures on symlinks to directories, such as 'lib/terminfo' in
ncurses (see <http://hydra.gnu.org/build/167310/nixlog/1/tail-reload>.)

* guix/build/utils.scm (file-header-match): Catch 'system-error', and
  return #f upon EISDIR.
1d1fa932 — Ludovic Courtès 11 years ago
utils: Turn 'parallel-job-count' into a parameter.

* guix/build/utils.scm (parallel-job-count): Turn into a SRFI-39 parameter.
e8c7fdda — Ludovic Courtès 11 years ago
build-system/gnu: Strip 'ar' archives as well.

* guix/build/gnu-build-system.scm (strip): Also strip when (ar-file?
  PATH) is true.
2bbc6db5 — Ludovic Courtès 11 years ago
utils: Factorize magic bytes detection.

* guix/build/utils.scm (file-header-match): New procedure.
  (%elf-magic-bytes): New variable.
  (elf-file?, ar-file?): Define using 'file-header-match'.
91ee959b — Ludovic Courtès 11 years ago
utils: Add 'ar-file?'.

* guix/build/utils.scm (%ar-magic-bytes): New variable.
  (ar-file?): New procedure.
50b87bd5 — Ludovic Courtès 11 years ago
build-system/gnu: Strip only ELF files.

Suggested by Mark H Weaver <mhw@netris.org>
at <http://lists.gnu.org/archive/html/guix-devel/2014-10/msg00395.html>.

* guix/build/gnu-build-system.scm (strip)[strip-dir]: Strip only
  when (elf-file? PATH) is true.
99533da5 — Ludovic Courtès 11 years ago
utils: Add 'elf-file?'.

* guix/build/utils.scm (elf-file?): New procedure.
e6039b9c — Ludovic Courtès 11 years ago
utils: Export 'parallel-job-count'.

* guix/build/utils.scm (parallel-job-count): New procedure.
* guix/build/gnu-build-system.scm (%parallel-job-count): Remove.
  (build, check): Use 'parallel-job-count' instead.
e5651212 — Ludovic Courtès 11 years ago
gnu: pkg-config: Update to 0.28.

* gnu/packages/pkg-config.scm (%pkg-config): Update to 0.28.
0253ab39 — Ludovic Courtès 11 years ago
gnu: file: Update to 5.20.

* gnu/packages/file.scm (file): Update to 5.20.
  (file-5.20): Remove.
* gnu/packages/patches/file-CVE-2014-3587.patch: Remove.
* gnu-system.am (dist_patch_DATA): Adjust accordingly.
* gnu/packages/patchutils.scm (quilt): Use FILE instead of FILE-5.20.
* gnu/packages/version-control.scm (aegis): Ditto.
a5b60e3c — Manolis Ragkousis 11 years ago
gnu: Add AVR-Libc.

* gnu/packages/avr.scm: New file.
* gnu-system.am (GNU_SYSTEM_MODULES): Add avr.scm.
* gnu/packages/cross-base.scm (xgcc-avr): New variable.
* gnu/packages/bootstrap.scm (glibc-dynamic-linker): Add case for
  "avr".

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
f4391bec — Ludovic Courtès 11 years ago
doc: Fix typos regarding 'lsh-service'.

Reported by Adam Pribyl <pribyl@lowlevel.cz>.

* doc/guix.texi (Using the Configuration System): Use #:root-login?, not
  #:allow-root-login?, in example.
  (Networking Services): Fix module name for ssh.
Next