~ruther/guix-local

1ca0f20a — Sergei Trofimovich 9 years ago
config-daemon.ac: detect host AR

The problem is seen when we try to use explicit host:

    ./configure --prefix=/usr --localstatedir=/var/lib --host=x86_64-pc-linux-gnu
    make V=1

Before the change:
    ar cru libstore.a nix/libstore/libstore_a-gc.o
After the change:
    x86_64-pc-linux-gnu-ar cru libstore.a

* config-daemon.ac: use AM_PROG_AR to detect host AR

Signed-off-by: Sergei Trofimovich <slyfox@inbox.ru>
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
36c4917c — Ludovic Courtès 9 years ago
linux-container: Add comment on exception handling.

* gnu/build/linux-container.scm (run-container): Add note about writing
the exceptions.
168aba29 — Ludovic Courtès 9 years ago
linux-container: Do not rely on 'isatty?'.

This avoids problems where 'isatty?' return #t but 'ttyname' fails with
ENOTTY or such.

* gnu/build/linux-container.scm (mount-file-systems): Remove call of
'isatty?'.  Directly call 'ttyname' and catch 'system-error'.
e69dc545 — Danny Milosavljevic 9 years ago
gnu: xonsh: Update to 0.5.3.

* gnu/packages/shell.scm (xonsh): Update to 0.5.3.
15308f6d — Danny Milosavljevic 9 years ago
gnu: u-boot: Update to 2017.01.

* gnu/packages/u-boot.scm (u-boot): Update to 2017.01.
40c4e3bb — Danny Milosavljevic 9 years ago
gnu: u-boot: Use scandir.

* gnu/packages/u-boot.scm (make-u-boot-package): Modify.
2d92eca1 — Leo Famulari 9 years ago
gnu: imagemagick: Update to 6.9.7-7.

* gnu/packages/imagemagick.scm (imagemagick): Update to 6.9.7-7.
dd2c73f6 — Leo Famulari 9 years ago
gnu: wget: Use libidn2.

Suggested by Efraim Flashner <efraim@flashner.co.il>.

Fixes support for internationalized domain names.

* gnu/packages/wget.scm (wget)[inputs]: Replace libidn with libidn2.
0418ff7a — Leo Famulari 9 years ago
gnu: libidn2: Update to 0.16.

* gnu/packages/libidn.scm (libidn2): Update to 0.16.
[inputs]: Add libunistring.
2b742c2b — Mark H Weaver 9 years ago
gnu: linux-libre: Update to 4.9.8.

* gnu/packages/linux.scm (%linux-libre-version, %linux-libre-hash)
(linux-libre): Update to 4.9.8.
f719fe52 — Mark H Weaver 9 years ago
gnu: linux-libre@4.4: Update to 4.4.47.

* gnu/packages/linux.scm (linux-libre-4.4): Update to 4.4.47.
d1606983 — José Miguel Sánchez García 9 years ago
gnu: youtube-dl: Update to 2017.02.01

* gnu/packages/video.scm (youtube-dl): Update to 2017.02.01.
1a0a5509 — nikita 9 years ago
gnu: Add python-lzo.

* gnu/packages/compression.scm (python-lzo): New variable.

Co-authored-by: Danny Milosavljevic <dannym@scratchpost.org>
1ae60db8 — nikita 9 years ago
gnu: Add python-lz4.

* gnu/packages/compression.scm (python-lz4): New variable.
706998e7 — Marius Bakke 9 years ago
gnu: xscreensaver: Update license URI.

* gnu/packages/xdisorg.scm (xscreensaver)[license]: Point to current URL.
744dcb49 — Marius Bakke 9 years ago
gnu: redshift: Remove uneeded input.

This is a followup to b4c400a75c9f432820146dfe24fcebdfbc276e4b.

* gnu/packages/xdisorg.scm (redshift): Remove LIBJPEG.
38eefbb1 — Marius Bakke 9 years ago
gnu: wget: Update to 1.19.

* gnu/packages/wget.scm (wget): Update to 1.19.
[home-page]: Use HTTPS.
182dde82 — Ben Woodcroft 9 years ago
gnu: cddlib: Fix source URI.

* gnu/packages/maths.scm (cddlib)[source]: Update source URI.
ad167d02 — Ludovic Courtès 9 years ago
file-systems: Remove dependency on (guix store).

(gnu system file-systems) is used on the "build" side since commit
5970e8e248f6327c41c83b86bb2c89be7c3b1b4e.

* gnu/system/file-systems.scm: Remove dependency on (guix store).
(%store-prefix): New procedure.
* tests/file-systems.scm ("does not pull (guix config)"): New test.
cf98d342 — Ludovic Courtès 9 years ago
activation: Set the right owner for home directories.

This fixes a regression introduced in
ae763b5b0b7d5e7316a3d0efe991fe8ab2261031 whereby home directories and
skeletons would be root-owned.

* gnu/build/activation.scm (copy-account-skeletons): Make 'directory' a
keyword parameter.  Add #:uid and #:gid and honor them.
[set-owner]: New procedure.
(activate-user-home): Add call to 'getpw' and 'chown'.  Pass UID and GID
to 'copy-account-skeletons'.
* gnu/tests/base.scm (run-basic-test)["skeletons in home directories"]:
Test file ownership under HOME.
Next