aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* vm: Make the list of partitions to build a parameter.Ludovic Courtès2015-07-26
| | | | | | | | | | | | | | | | | * gnu/build/vm.scm (<partition>): New record type. (fold2): New procedure. (initialize-partition-table): Remove #:bootable? and 'partition-size' parameters. Add 'partitions' parameter. Invoke 'parted' with '--script'. (initialize-root-partition): Remove. (initialize-partition, root-partition-initializer): New procedures. (initialize-hard-disk): Remove #:system-directory, #:disk-image-size, #:file-system-type, #:file-system-label, #:closures, #:copy-closures?, #:bootable?, and #:register-closures? parameters. Add #:partitions. Rewrite to use 'initialize-partition' for each item of PARTITIONS. * gnu/system/vm.scm (expression->derivation-in-linux-vm): Add (guix records) to #:modules default value. (qemu-image): Adjust accordingly.
* system: Add 'ping6' to %SETUID-PROGRAMS.Ludovic Courtès2015-07-26
| | | | * gnu/system.scm (%setuid-programs): Add 'ping6'.
* gnu: bedtools: Add patch to fix compilation on 32 bit systems.Ben Woodcroft2015-07-25
| | | | | | | | * gnu/packages/patches/bedtools-32bit-compilation.patch: New file. * gnu/packages/bioinformatics.scm (bedtools)[source]: Add patch. * gnu-system.am (dist_patch_DATA): Register patch. Signed-off-by: Andreas Enge <andreas@enge.fr>
* gnu: vlc: Update input Qt to version 5.Andreas Enge2015-07-25
| | | | * gnu/packages/video.scm (vlc)[inputs]: Switch from Qt version 4 to 5.
* gnu: vlc: Update to 2.2.1.Andreas Enge2015-07-25
| | | | * gnu/packages/video.scm (vlc): Update to 2.2.1.
* syscalls: Add 'network-interfaces', which wraps libc's 'getifaddrs'.Ludovic Courtès2015-07-25
| | | | | | | | | | | | Based on discussions with Rohan Prinja <rohan.prinja@gmail.com>. * guix/build/syscalls.scm (<interface>): New record type. (write-interface, values->interface, unfold-interface-list, network-interfaces, free-ifaddrs): New procedures. (ifaddrs): New C struct. (%struct-ifaddrs-type, %sizeof-ifaddrs): New macros. * tests/syscalls.scm ("network-interfaces returns one or more interfaces", "network-interfaces returns \"lo\""): New tests.
* syscalls: 'define-c-struct' properly align reads.Ludovic Courtès2015-07-25
| | | | | | * guix/build/syscalls.scm (alignof*, align): New macros. (write-types, read-types): Use 'align' to compute the actual offset to read/write a value of TYPE0.
* syscalls: 'read-socket-address' gracefully handles unsupported families.Ludovic Courtès2015-07-25
| | | | | | * guix/build/syscalls.scm (PF_PACKET, AF_PACKET): New variables. (read-socket-address): Make 'index' optional. Return (vector FAMILY) when FAMILY is neither AF_INET nor AF_INET6.
* syscalls: 'define-c-struct' distinguishes pointers from integers.Ludovic Courtès2015-07-25
| | | | * guix/build/syscalls.scm (read-type): Add special-case for when TYPE is '*.
* syscalls: Rename 'network-interfaces' and 'all-network-interfaces'.Ludovic Courtès2015-07-25
| | | | | | | | | | | | * guix/build/syscalls.scm (network-interfaces): Rename to... (network-interface-names): ... this. (all-network-interfaces): Rename to... (all-network-interface-names): ... this. * gnu/services/networking.scm (dhcp-client-service): Adjust accordingly. * tests/syscalls.scm ("all-network-interfaces"): Rename to... ("all-network-interface-names"): ... this, and adjust accordingly. ("network-interfaces"): Rename to... ("network-interface-names"): ... this, and adjust accordingly.
* doc: Make "Application Setup" more prominent.Ludovic Courtès2015-07-25
| | | | * doc/guix.texi (Binary Installation): Add reference to "Application Setup".
* gnu: bedtools: Update to 2.24.0.Ben Woodcroft2015-07-25
| | | | * gnu/packages/bioinformatics.scm (bedtools): Update to 2.24.0.
* gnu: e2fsprogs: Update to 1.42.13.Mark H Weaver2015-07-24
| | | | | * gnu/packages/linux.scm (e2fsprogs): Update to 1.42.13. Change the source URI to use the .tar.xz file from kernel.org.
* gnu: Add liblxqt.Andreas Enge2015-07-24
| | | | * gnu/packages/lxqt.scm (liblxqt): New variable.
* gnu: Add kwindowsystem.Andreas Enge2015-07-24
| | | | * gnu/packages/kde-frameworks.scm (kwindowsystem): New variable.
* gnu: Add extra-cmake-modules.Andreas Enge2015-07-24
| | | | | * gnu/packages/kde-frameworks.scm: New file. * gnu-system.am (GNU_SYSTEM_MODULES): Register it.
* gnu: ripperX: Update to 2.8.0.Andreas Enge2015-07-24
| | | | | | | | | * gnu/packages/mp3.scm (ripperx): Update to 2.8.0. Drop one patch and add another one. * gnu/packages/patches/ripperx-libm.patch: Remove file. * gnu/packages/patches/ripperx-missing-file.patch: New file. * gnu-system.am (dist_patch_DATA): Register one patch and unregister the other.
* gnu: Add cm.Andreas Enge2015-07-24
| | | | * gnu/packages/algebra.scm (cm): New variable.
* gnu: algebra: Prefix imported licenses.Andreas Enge2015-07-24
| | | | | * gnu/packages/algebra.scm (mpfrcx, fplll, pari-gp, gp2c, flint, arb, bc, fftw, eigen)[license]: Prefix imported licenses.
* gnu: mpfrcx: Propagate inputs.Andreas Enge2015-07-24
| | | | * gnu/packages/algebra.scm (mpfrcx): Propagate inputs gmp, mpfr and mpc.
* gnu: clang: Disable distro detection and remove FHS assumptions.Ludovic Courtès2015-07-24
| | | | | | * gnu/packages/patches/clang-libc-search-path.patch: Disable distro detection and remove hard-coded FHS file names, both of which would lead to breakage on non-GuixSD systems.
* doc: Fix name of GNU FreeFont package.Ludovic Courtès2015-07-24
| | | | | | | Fixes <http://bugs.gnu.org/21121>. Reported by Malcolm Cook <MEC@stowers.org>. * doc/guix.texi (Application Setup): Fix name of GNU FreeFont package.
* vm: Use the 'umount' procedure instead of util-linux's 'umount' command.Ludovic Courtès2015-07-24
| | | | | | * gnu/build/vm.scm (initialize-root-partition, initialize-hard-disk): Use the 'umount' procedure instead of invoking the 'umount' command. * gnu/system/vm.scm (qemu-image): Remove UTIL-LINUX from INPUTS.
* doc: Clarify that tar timestamp warnings affect tar <= 1.26.Ludovic Courtès2015-07-24
| | | | | * doc/guix.texi (Binary Installation): Explain that warnings were triggered by tar <= 1.26.
* gnu: guile-static: Add 'umount' procedure.Ludovic Courtès2015-07-24
| | | | * gnu/packages/patches/guile-linux-syscalls.patch: Add 'umount' subr.
* gnu: Add extundelete.Ludovic Courtès2015-07-24
| | | | * gnu/packages/linux.scm (extundelete): New variable.
* gnu: gp2c: Update to 0.0.9pl3.Andreas Enge2015-07-23
| | | | * gnu/packages/algebra.scm (gp2c): Update to 0.0.9pl3.
* gnu: arb: Update to 2.7.0.Andreas Enge2015-07-23
| | | | * gnu/packages/algebra.scm (arb): Update to 2.7.0.
* gnu: parallel: Update to 20150722.Andreas Enge2015-07-23
| | | | * gnu/packages/parallel.scm (parallel): Update to 20150722.
* gnu: ucommon: Update to 6.3.6.Andreas Enge2015-07-23
| | | | * gnu/packages/telephony.scm (ucommon): Update to 6.3.6.
* gnu: ffmpeg: Update to 2.7.2.Andreas Enge2015-07-23
| | | | * gnu/packages/video.scm (ffmpeg): Update to 2.7.2.
* gnu: retroarch: Update to 1.2.2.宋文武2015-07-23
| | | | * gnu/packages/games.scm (retroarch): Update to 1.2.2.
* Thank Anders.Ludovic Courtès2015-07-23
|
* Fix typos in translatable strings.Ludovic Courtès2015-07-23
| | | | | | | | | Reported by Anders Jonsson <anders.jonsson@norsjovallen.se>. * gnu/packages/backup.scm, gnu/packages/databases.scm, gnu/packages/linux.scm, gnu/packages/perl.scm, gnu/packages/web.scm, guix/scripts/lint.scm, guix/scripts/publish.scm: Fix typos in translatable strings.
* doc: Fix typos in "Setuid Programs".Ludovic Courtès2015-07-23
| | | | * doc/guix.texi (Setuid Programs): Fix typos.
* gnu: tor: Update to 0.2.6.10.Mark H Weaver2015-07-22
| | | | * gnu/packages/tor.scm (tor): Update to 0.2.6.10.
* Thank Malcolm.Ludovic Courtès2015-07-22
|
* doc: Suggest unpacking with --warning=no-timestamp.Ludovic Courtès2015-07-22
| | | | | | Suggested by Malcolm Cook <MEC@stowers.org>. * doc/guix.texi (Binary Installation): Suggest --warning=no-timestamp.
* gnu: linux-libre: Update to 4.1.3 and 4.0.9.Mark H Weaver2015-07-22
| | | | | * gnu/packages/linux.scm (linux-libre): Update to 4.1.3. (linux-libre-4.0): Update to 4.0.9.
* Thank Dave.Ludovic Courtès2015-07-22
|
* doc: Mention zeroed mtimes in the binary tarball.Ludovic Courtès2015-07-22
| | | | | | | | Fixes <http://bugs.gnu.org/21111>. Reported by Dave Love <fx@gnu.org>. * doc/guix.texi (Binary Installation): Add paragraph about "implausibly old time stamps" warning from tar.
* size: Add '--substitute-urls' option.Ludovic Courtès2015-07-22
| | | | | | | * guix/scripts/size.scm (show-help, %options): Add --substitute-urls. (%default-options): Add 'substitute-urls'. (guix-size): Honor it. * doc/guix.texi (Invoking guix size): Document it.
* derivations: Improve docstring of 'substitution-oracle'.Ludovic Courtès2015-07-22
| | | | * guix/derivations.scm (substitution-oracle): Improve docstring.
* derivations: Improve complexity of 'substitution-oracle'.Ludovic Courtès2015-07-22
| | | | | * guix/derivations.scm (substitution-oracle): Use a final 'concatenate' instead of repeated 'append's.
* doc: Mention initial passwords in "System Installation".Ludovic Courtès2015-07-22
| | | | | | | | Suggested by remo_ on IRC. * doc/guix.texi (System Installation): Explicitly mention user account passwords. (User Accounts): Add 'user-account-password' anchor.
* import: hackage: Remove reference to unbound variable.Ludovic Courtès2015-07-22
| | | | | * guix/scripts/import/hackage.scm (guix-import-hackage): Fix error message for imports from stdin, which referred to unbound variable 'package-name'.
* size: Remove leftover 'pk'.Ludovic Courtès2015-07-22
| | | | * guix/scripts/size.scm (profile->page-map): Remove leftover 'pk'.
* gnu: guile-minikanren: Fix README location.Christopher Allan Webber2015-07-22
| | | | | | * gnu/packages/guile.scm (minikanren): Fix output location for README.org Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* gnu: teckit: Update to 2.5.4.Andreas Enge2015-07-22
| | | | | | | | | * gnu/packages/fontutils.scm (teckit): Update to 2.5.4. Drop patch. Use svn-fetch for download. [arguments]: Add phase to call autogen. [native-inputs]: New field. * gnu/packages/patches/teckit-cstdio.patch: Delete file. * gnu-system.am (dist_patch_DATA): Unregister patch.
* gnu: git-modes: Add file-name field to source origin.Mark H Weaver2015-07-22
| | | | * gnu/packages/emacs.scm (git-modes)[source]: Add 'file-name' field.