Age | Commit message (Expand) | Author |
2018-07-05 | tests: Skip 'guix-pack.sh'....This works around a regression introduced in commit
66e9944e078cbb9e0d618377dd6df6e639640efa while waiting for a proper fix.
* tests/guix-pack.sh: Add "exit 77".
| Ludovic Courtès |
2018-07-05 | Update NEWS. | Ludovic Courtès |
2018-07-05 | pack: Use guile-for-build for the target system....Until now, running "guix pack -s i686-linux" on an x86_64-linux machine,
for instance, would use an x86_64 guile for module derivations. This
was OK until now, but would break when passing "--localstatedir" due to
the introduction of guile-sqlite3: we'd be using the i686 guile-sqlite3
along with the x86_64 guile.
* guix/scripts/pack.scm (guix-pack): Pass the 'system option from OPTS
to 'package-derivation'.
| Ludovic Courtès |
2018-07-05 | nls: Update 'fr' translation. | Julien Lepiller |
2018-07-05 | doc: Update package count....* doc/guix.texi (Limitations): Update number.
| Ludovic Courtès |
2018-07-05 | doc: Mention ARM and AArch64 bootloaders....* doc/guix.texi (Bootloader Configuration): Mention ARM and AArch64.
Add missing uses of @code.
| Ludovic Courtès |
2018-07-05 | doc: Improve UEFI/BIOS bootloader documentation....Partly fixes <https://bugs.gnu.org/30312>.
* doc/guix.texi (Preparing for Installation): Add note on how to choose
between UEFI and BIOS.
(Using the Configuration System)[Bootloader]: New subsubsection.
(Bootloader Configuration): Expound on the bootloader type and target.
* gnu/system/examples/desktop.tmpl: Switch to UEFI.
* gnu/system/examples/bare-bones.tmpl: Explicitly mention "legacy" and
"BIOS" in the comments.
| Ludovic Courtès |
2018-07-05 | services: mingetty: Use '--nohangup'....See the discussion at
<https://lists.gnu.org/archive/html/guix-devel/2018-07/msg00049.html>.
* gnu/services/base.scm (mingetty-shepherd-service): Pass "--nohangup"
to mingetty.
| Ludovic Courtès |
2018-07-04 | system: Default .bashrc uses '--color=auto' for grep and ls....Reported by Tobias Geerinckx-Rice <me@tobias.gr>
and Björn Höfling <bjoern.hoefling@bjoernhoefling.de>.
* gnu/system/shadow.scm (default-skeletons)["bashrc"]: Use
'--color=auto' instead of '--color'.
| Ludovic Courtès |
2018-07-04 | vm: Disable KVM on i386....* gnu/build/vm.scm (load-in-linux-vm): Disable KVM on i386.
| Ludovic Courtès |
2018-07-04 | doc: Mention the build environment....* doc/contributing.texi (Running Guix Before It Is Installed): Add a
note about having the dependencies available.
| Ludovic Courtès |
2018-07-04 | profiles: 'info-dir-file' hook now produces 'dir.LANG' files....Previously, entries for 'guix.fr.info' would end up in 'dir', above the
'guix.info' entries; consequently, running 'info guix' would actually
open 'guix.fr.info', which was confusing for non-French readers.
* guix/profiles.scm (info-dir-file)[glibc-utf8-locales]: New variable.
[build](info-file-language): New procedure.
(install-info): Use it, to create 'dir.LANG' files.
Set GUIX_LOCPATH.
| Ludovic Courtès |
2018-07-03 | gnu: Update stellarium to 0.18.0....[[PGP Signed Part:Good signature from BF286CB6593E5FFD Björn Höfling <bjoern.hoefling@bjoernhoefling.de> (trust undefined) created at 2018-06-29T20:39:51+0200 using DSA]]
* gnu/packages/astronomy.scm (stellarium): Update to 0.18.0.
[home-page]: Update URL.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
| Björn Höfling |
2018-07-03 | gnu: emacs-helm-system-packages: Update to 1.10.0....* gnu/packages/emacs.scm (emacs-helm-system-packages): Update to 1.10.0.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
| Pierre Neidhardt |
2018-07-03 | gnu: Add pocl....* gnu/packages/opencl.scm (pocl): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
| Fis Trivial |
2018-07-03 | tests: basic: Wait for /var/run/shepherd/socket to be ready....* gnu/tests/base.scm (run-basic-test)["shepherd socket ready"]: New test.
| Ludovic Courtès |
2018-07-03 | Revert "packages: Optimize 'package-transitive-supported-systems'."...This reverts commit 24420f5ffabfbdbe913a5765e5c00e17de18fb4c.
This broke 'package-transitive-supported-systems', which would return
the union of supported systems instead of the intersection.
| Ludovic Courtès |
2018-07-03 | guix system: Make 'init' idempotent again....This fixes a regression introduced in
df2f6400b1fbc282ef4d6dd7124ea1c17adc23c2: since the new
'register-path' (actually 'reset-timestamps') would make files
read-only, 'delete-file-recursively' would fail to delete them. Thus,
re-running 'guix system init' on an already-populated store would fail
with a 'delete-file' EPERM.
* guix/scripts/system.scm (copy-item): Use 'lstat' instead of
'file-exists?'. Call 'make-file-writable' on each directory below
DEST.
| Ludovic Courtès |
2018-07-03 | ui: Report file names in 'system-error' exceptions from 'delete-file'....* guix/ui.scm (delete-file): New error-reporting wrapper.
| Ludovic Courtès |
2018-07-03 | database: 'reset-timestamps' now correctly handles symlinks....* guix/store/database.scm (reset-timestamps): Use 'utime' with
AT_SYMLINK_NOFOLLOW for symlinks.
| Ludovic Courtès |
2018-07-03 | syscalls: Define AT_SYMLINK_NOFOLLOW et al....* guix/build/syscalls.scm (AT_FDCWD, AT_SYMLINK_NOFOLLOW, AT_REMOVEDIR)
(AT_SYMLINK_FOLLOW, AT_NO_AUTOMOUNT, AT_EMPTY_PATH): New variables.
* tests/syscalls.scm ("utime with AT_SYMLINK_NOFOLLOW"): New test.
| Ludovic Courtès |
2018-07-03 | deduplication: Remove 'false-if-system-error', now unused....* guix/store/deduplication.scm (false-if-system-error): Remove.
| Ludovic Courtès |
2018-07-03 | gnu: pigx-bsseq: Update to 0.0.10....* gnu/packages/bioinformatics.scm (pigx-bsseq): Update to 0.0.10.
[arguments]: Remove "wrap-executable" phase.
| Ricardo Wurmus |
2018-07-03 | gnu: pigx-rnaseq: Update to 0.0.4....* gnu/packages/bioinformatics.scm (pigx-rnaseq): Update to 0.0.4.
[arguments]: Remove "wrap-executable" phase.
| Ricardo Wurmus |
2018-07-03 | gnu: pigx-chipseq: Update to 0.0.20....* gnu/packages/bioinformatics.scm (pigx-chipseq): Update to 0.0.20.
| Ricardo Wurmus |
2018-07-03 | gnu: ikiwiki: Include auto setup files in output....* gnu/packages/web.scm(ikiwiki)[arguments]: Add patch-Makefile phase.
Signed-off-by: Marius Bakke <mbakke@fastmail.com>
| Paul Garlick |
2018-07-03 | gnu: emacs-use-package: Update to commit da8c9e2....This update is needed because the release tarball from github does not
contain all the files needed for us to build the package.
* gnu/packages/emacs.scm (emacs-use-package): Update to commit da8c9e2.
[source]: change to git.
[arguments]: Enable tests.
Signed-off-by: Marius Bakke <mbakke@fastmail.com>
| Peter Mikkelsen |
2018-07-03 | gnu: Add emacs-atom-one-dark-theme....* gnu/packages/emacs.scm (emacs-atom-one-dark-theme): New variable
Signed-off-by: Marius Bakke <mbakke@fastmail.com>
| Peter Mikkelsen |
2018-07-03 | gnu: libuninameslist: Update to 20180701....* gnu/packages/fontutils.scm (libuninameslist): Update to 20180701.
[source]: Change URI to use release tarball. Remove FILE-NAME.
[native-inputs]: Remove.
| Marius Bakke |
2018-07-03 | gnu: libuninameslist: Correct license....* gnu/packages/fontutils.scm (libuninameslist)[license]: Remove GPL2. Add
BSD-3 and X11-STYLE.
| Marius Bakke |
2018-07-03 | gnu: Add vsftpd....* gnu/packages/ftp.scm (vsftpd): New variable.
| Danny Milosavljevic |
2018-07-03 | gnu: vkd3d: Add vulkan-headers....* gnu/packages/vulkan.scm (vkd3d)[inputs]: Add vulkan-headers.
| Rutger Helling |
2018-07-03 | gnu: vkquake: Add vulkan-headers....* gnu/packages/games.scm (vkquake)[inputs]: Add vulkan-headers.
| Rutger Helling |
2018-07-03 | gnu: mpv: Add vulkan-headers....* gnu/packages/video.scm (mpv)[inputs]: Add vulkan-headers.
| Rutger Helling |
2018-07-03 | gnu: vulkan-loader: Update to 1.1.77.0....* gnu/packages/vulkan.scm (vulkan-loader): Update to 1.1.77.0.
[inputs]: Add 'vulkan-headers.
[home-page]: Correct URL.
| Rutger Helling |
2018-07-03 | gnu: Add vulkan-headers....* gnu/packages/vulkan.scm (vulkan-headers): New variable.
| Rutger Helling |
2018-07-03 | gnu: openrct2: Update to 0.2.0....* gnu/packages/games.scm (openrct2): Update to 0.2.0.
[configure-flags]: Add -DDOWNLOAD_OBJECTS=OFF configure flag.
[arguments]: Add 'fixgcc7, 'get-rid-of-errors phases.
[native-inputs]: Add gcc@7.
| Rutger Helling |
2018-07-03 | gnu: dolphin-emu: Update to commit 806c1ee....* gnu/packages/emulators.scm (dolphin-emu): Update to commit 806c1ee.
[source]: Don't delete removed externals.
[arguments]: Remove unused variables.
[inputs]: Add 'pugixml. Remove 'wxwidgets-gtk2-3.1.
| Rutger Helling |
2018-07-03 | gnu: Add keynav....* gnu/packages/xorg.scm (keynav): New variable.
| Oleg Pykhalov |
2018-07-03 | import: elpa: Check if 'fetch-elpa-package' rest argument is null....* guix/import/elpa.scm (fetch-elpa-package): Check if 'rest' is null.
| Oleg Pykhalov |
2018-07-03 | bash completion: Complete files names after 'guix weather -m'....* etc/completion/bash/guix (_guix_complete): Complete files names after 'guix
weather -m'.
| Oleg Pykhalov |
2018-07-03 | bash completion: Complete files names after 'guix build -L'....* etc/completion/bash/guix (_guix_complete): Complete files names after 'guix
build -L'.
| Oleg Pykhalov |
2018-07-02 | gnu: units: Update to 2.17....* gnu/packages/maths.scm (units): Update to 2.17.
| Kei Kebreau |
2018-07-03 | gnu: icedtea Work around gcc segfault....* gnu/packages/java.scm (icedtea-8)[native-inputs]: Add icedtea-7
patch to hotspot.
| Gábor Boskovits |
2018-07-02 | gnu: libgit2: Update to 0.26.4 [fixes CVE-2018-11235]....* gnu/packages/version-control.scm (libgit2): Update to 0.26.4.
(source): Adjust patch name.
* gnu/packages/patches/libgit2-0.25.1-mtime-0.patch: Rename to ...
* gnu/packages/patches/libgit2-mtime-0.patch: ... this.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
| Leo Famulari |
2018-07-03 | gnu: icedtea: Work around gcc segfault....* gnu/packages/java.scm (icedtea-7)[native-inputs]: Add patch to hotspot.
* gnu/packages/patches/icedtea-7-hotspot-gcc-segfault-workaround.patch:
New file.
* gnu/local.mk (dist_patch_DATA): Add it.
| Gábor Boskovits |
2018-07-03 | deduplication: Place link files under /gnu/store/.links....Previously they'd always be placed next to TO-REPLACE, which would lead
to EPERM in some cases.
* guix/store/deduplication.scm (replace-with-link): Add #:swap-directory
parameter and honor it. Add call to 'make-file-writable'. Catch
'system-error' around 'rename-file'.
(deduplicate): Pass #:swap-directory and remove uses of
'false-if-system-error'.
* tests/store-deduplication.scm ("deduplicate"): Add 'chmod' call.
| Ludovic Courtès |
2018-07-03 | deduplication: Fix incorrect use of 'throw'....* guix/store/deduplication.scm (get-temp-link): In handler, fix call to
'throw'.
| Ludovic Courtès |
2018-07-03 | guix system: init: Check the available space before copying....* guix/scripts/system.scm (copy-closure): Call 'query-path-info*' on
TO-COPY and REFS. Compute the total size. Call 'check-available-space'.
| Ludovic Courtès |
2018-07-03 | ui: Make 'check-available-space' public....* guix/ui.scm (check-available-space): Add optional 'directory'
parameter, defaulting to (%store-prefix). Honor it. Make public.
| Ludovic Courtès |