aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-09-12gnu: feh: Update to 2.20.Marius Bakke
* gnu/packages/image-viewers.scm (feh): Update to 2.20.
2017-09-12gnu: notmuch: Update to 0.25.1.Marius Bakke
* gnu/packages/mail.scm (notmuch): Update to 0.25.1.
2017-09-12gnu: python-django: Update to 1.10.8 [fixes CVE-2017-12794].Marius Bakke
* gnu/packages/django.scm (python-django): Update to 1.10.8.
2017-09-12gnu: neomutt: Update to 20170912.ng0
* gnu/packages/mail.scm (neomutt): Update to 20170912.
2017-09-12gnu: openmpi: Configure without builtin atomics.Dave Love
See https://www.mail-archive.com/users@lists.open-mpi.org//msg31400.html * gnu/packages/mpi.scm (openmpi)[arguments]: Don't configure with --enable-builtin-atomics. Signed-off-by: Ludovic Courtès <ludovic.courtes@inria.fr>
2017-09-12guix system: Pretty-print device UUIDs.Ludovic Courtès
* guix/scripts/system.scm (display-system-generation): Check if ROOT-DEVICE is a UUID and pretty-print it if it is.
2017-09-12gnu: openmpi: Remove Valgrind from closure.Dave Love
* gnu/packages/mpi.scm (openmpi)[arguments]: Elide romio config info to avoid reference to valgrind. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2017-09-12gnu: Add mate.ng0
* gnu/packages/mate.scm (mate): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
2017-09-12gnu: Add mate-control-center.ng0
* gnu/packages/mate.scm (mate-control-center): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
2017-09-12gnu: Add mate-media.ng0
* gnu/packages/mate.scm (mate-media): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
2017-09-12gnu: Add mate-applets.ng0
* gnu/packages/mate.scm (mate-applets): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
2017-09-12gnu: Add mate-settings-daemon.ng0
* gnu/packages/mate.scm (mate-settings-daemon): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
2017-09-12gnu: Add libmatekbd.ng0
* gnu/packages/mate.scm (libmatekbd): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
2017-09-12gnu: Add libmatemixer.ng0
* gnu/packages/mate.scm (libmatemixer): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
2017-09-12gnu: Add mate-panel.ng0
* gnu/packages/mate.scm (mate-panel): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
2017-09-12gnu: Add mate-session-manager.ng0
* gnu/packages/mate.scm (mate-session-manager): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
2017-09-12gnu: Add marco.ng0
* gnu/packages/mate.scm (marco): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
2017-09-12gnu: Add mate-terminal.ng0
* gnu/packages/mate.scm (mate-terminal): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
2017-09-12gnu: Add caja.ng0
* gnu/packages/mate.scm (caja): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
2017-09-12gnu: monero: Fix building on aarch64-linux.Efraim Flashner
* gnu/packages/finance.scm (monero)[arguments]: Add a configure-flag to set architecture type on aarch64.
2017-09-11gnu: mes: Update to 0.10.Jan Nieuwenhuizen
* gnu/packages/mes.scm (mes): Update to 0.10.
2017-09-11system: Fix typo in 'read-boot-parameters'.Ludovic Courtès
Fixes a regression introduced in commit 075681d3501082c6e22df8abf29dfe89d85effc1. * gnu/system.scm (read-boot-parameters): For 'root-device', use 'device-sexp->device', not 'device->sexp'.
2017-09-11vm: Generate a UUID to identify the root file system.Ludovic Courtès
This makes collisions less likely than when using a label to look up the partition. See <https://bugs.gnu.org/27735>. * gnu/system/vm.scm (operating-system-uuid): New procedure. (system-disk-image): Define 'root-uuid' and use it for the root file system. Pass it to 'iso9660-image' and 'qemu-image'.
2017-09-11vm: Allow users to specify a UUID for the root partition.Ludovic Courtès
* gnu/system/vm.scm (qemu-image): Add #:file-system-uuid parameter; pass it as the 'uuid' field of the root partition.
2017-09-11uuid: 'uuid' macro supports more UUID types.Ludovic Courtès
* gnu/system/uuid.scm (string->uuid): Turn 'type' into an optional argument. (uuid): Add clauses to allow for an optional 'type' parameter.
2017-09-11system: Serialize the UUID type in the "parameters" file.Ludovic Courtès
* gnu/system.scm (read-boot-parameters)[device->sexp]: New procedure. Use it for 'root-device' and 'store-device'. (device->sexp): Serialize the UUID type in addition to its bytevector.
2017-09-11system: Introduce a disjoint UUID type.Ludovic Courtès
Conceptually a UUID is just a bytevector. However, there's software out there such as GRUB that relies on the string representation of different UUID types (e.g., the string representation of DCE UUIDs differs from that of ISO-9660 UUIDs, even if they are actually bytevectors of the same length). This new <uuid> record type allows us to preserve information about the type of UUID so we can eventually convert it to a string using the right representation. * gnu/system/uuid.scm (<uuid>): New record type. (bytevector->uuid): New procedure. (uuid): Return calls to 'make-uuid'. (uuid->string): Rewrite using 'match-lambda*' to accept a single 'uuid?' argument. * gnu/bootloader/grub.scm (grub-root-search): Check for 'uuid?' instead of 'bytevector?'. * gnu/system.scm (bootable-kernel-arguments): Check whether ROOT-DEVICE is 'uuid?'. (read-boot-parameters): Use 'bytevector->uuid' when the store device is a bytevector. (read-boot-parameters-file): Check for 'uuid?' instead of 'bytevector?'. (device->sexp): New procedure. (operating-system-boot-parameters-file): Use it for 'root-device' and 'store'. (operating-system-bootcfg): Remove conditional in definition of 'root-device'. * gnu/system/file-systems.scm (file-system->spec): Check for 'uuid?' on DEVICE and take its bytevector. * gnu/system/mapped-devices.scm (open-luks-device): Likewise. * gnu/system/vm.scm (iso9660-image): Call 'uuid-bytevector' for the #:volume-uuid argument.
2017-09-11services: file-system: Use 'file-system->spec'.Ludovic Courtès
* gnu/services/base.scm (file-system-shepherd-service): Use 'file-system->spec' instead of in-line code.
2017-09-11file-systems: Introduce (gnu system uuid).Ludovic Courtès
* gnu/build/file-systems.scm (sub-bytevector) (latin1->string, %fat32-endianness, fat32-uuid->string) (%iso9660-uuid-rx, string->iso9660-uuid) (iso9660-uuid->string, %network-byte-order) (dce-uuid->string, %uuid-rx, string->dce-uuid) (string->ext2-uuid, string->ext3-uuid, string->ext4-uuid) (vhashq, %uuid-parsers, %uuid-printers, string->uuid) (uuid->string): Move to... * gnu/system/uuid.scm: ... here. New file. * gnu/system/file-systems.scm (uuid): Move to the above file. * gnu/system/vm.scm: Adjust accordingly. * gnu/local.mk (GNU_SYSTEM_MODULES): Add uuid.scm.
2017-09-11services: base: Import the closure of (gnu build file-systems).Ludovic Courtès
* gnu/services/base.scm (file-system-shepherd-service): Use 'source-module-closure' in the 'with-imported-modules' form.
2017-09-11file-systems: Add UUID type dictionaries.Ludovic Courtès
* gnu/build/file-systems.scm (uuid->string): Rename to... (dce-uuid->string): ... this. (string->uuid): Rename to... (string->dce-uuid): ... this. (vhashq): New macro. (%uuid-parsers, %uuid-printers): New variables. (uuid->string, string->uuid): New procedures.
2017-09-11vm: Allow partitions to be initialized with a given UUID.Ludovic Courtès
* gnu/build/vm.scm (<partition>)[uuid]: New field. (create-ext-file-system): Add #:uuid and honor it. (create-fat-file-system): Add #:uuid. (format-partition): Add #:uuid and honor it. (initialize-partition): Honor the 'uuid' field of PARTITION.
2017-09-11gnu: mpg123: Update to 1.25.6 [fixes CVE-2017-12797].Leo Famulari
* gnu/packages/mp3.scm (mpg123): Update to 1.25.6.
2017-09-11gnu: libchamplain: Update to 0.12.16.Tobias Geerinckx-Rice
* gnu/packages/gnome.scm (libchamplain): Update to 0.12.16.
2017-09-11gnu: gnome-online-accounts: Update to 3.24.3.Tobias Geerinckx-Rice
* gnu/packages/gnome.scm (gnome-online-accounts): Update to 3.24.3.
2017-09-11gnu: emacs: Patch message-mode enriched text translation [security fix].Ludovic Courtès
* gnu/packages/patches/emacs-unsafe-enriched-mode-translations.patch: New file. * gnu/packages/emacs.scm (emacs)[source](patches): Add it. * gnu/local.mk (dist_patch_DATA): Add it.
2017-09-11gnu: nyacc: Update to 0.82.0.Jan Nieuwenhuizen
* gnu/packages/mes.scm (nyacc): Update to 0.82.0.
2017-09-11gnu: ruby-activesupport: Update to 5.1.4.Ben Woodcroft
* gnu/packages/ruby.scm (ruby-activesupport): Update to 5.1.4.
2017-09-11gnu: icedtea-8: Install the nss.cfg file to JRE.宋文武
Before this, accessing HTTPS will throw an exception about 'nss.cfg' could not be found. * gnu/packages/java.scm (icedtea-8)[arguments]: Copy 'nss.cfg' from JDK into JRE in the install phase.
2017-09-11gnu: gdb: Update to 8.0.1.Ludovic Courtès
* gnu/packages/gdb.scm (gdb): Update to 8.0.1.
2017-09-11download: Adjust main ftp.gnu.org mirror.Ludovic Courtès
* guix/download.scm (%mirrors): Add missing "/gnu" in first mirror, although that mirror would work even without it. Use https instead of http.
2017-09-11gnu-maintenance: Return all the latest tarballs, not just one.Ludovic Courtès
* guix/gnu-maintenance.scm (latest-gnu-release): Return a list of matching tarballs instead of just the first one. This gives us .tar.gz, .tar.xz, etc.
2017-09-11gnu-maintenance: Correctly compare versions.Ludovic Courtès
* guix/gnu-maintenance.scm (latest-gnu-release): Add calls to 'sans-extension'. This fixes version comparison, which could be fooled with the ".tar.gz" extension.
2017-09-11gnu: guix: Update snapshot.Ludovic Courtès
* gnu/packages/package-management.scm (guix): Update to a9468b4.
2017-09-11substitute: Download from unauthorized sources that provide the right content.Ludovic Courtès
This allows substitutes to be downloaded from unauthorized servers, as long as they advertise the same hash and references as one of the authorized servers. * guix/scripts/substitute.scm (assert-valid-narinfo): Remove. (valid-narinfo?): Add #:verbose?. Handle each case of 'signature-case'. (equivalent-narinfo?): New procedure. (lookup-narinfos/diverse): Add 'authorized?' parameter and honor it. [select-hit]: New procedure. (lookup-narinfo): Add 'authorized?' parameter and pass it. (process-query): Adjust callers accordingly. (process-substitution): Remove call to 'assert-valid-narinfo'. Check whether 'lookup-narinfo' returns true and call 'leave' if not. * tests/substitute.scm (%main-substitute-directory) (%alternate-substitute-directory): New variables. (call-with-narinfo): Make 'narinfo-directory' a parameter. Call 'mkdir-p' to create it. Change unwind handler to check whether CACHE-DIRECTORY exists before deleting it. (with-narinfo*): New macro. ("substitute, no signature") ("substitute, invalid hash") ("substitute, unauthorized key"): Change expected error message to "no valid substitute". ("substitute, unauthorized narinfo comes first") ("substitute, unsigned narinfo comes first") ("substitute, first narinfo is unsigned and has wrong hash") ("substitute, first narinfo is unsigned and has wrong refs") ("substitute, unsigned narinfo comes first") ("substitute, two invalid narinfos"): New tests. * doc/guix.texi (Substitutes): Explain the new behavior.
2017-09-11substitute: Make substitute URLs a SRFI-39 parameter.Ludovic Courtès
* guix/scripts/substitute.scm (%cache-urls): Rename to... (%default-substitute-urls): ... this. (substitute-urls): New variable. (guix-substitute): Use it instead of %CACHE-URLS. * tests/substitute.scm: Likewise.
2017-09-11gnu: Add monero-core.Theodoros Foradis
* gnu/packages/finance.scm (monero-core): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2017-09-11gnu: Add monero.Theodoros Foradis
* gnu/packages/finance.scm (monero): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2017-09-11gnu: libffcall: Update to 2.0.Efraim Flashner
* gnu/packages/libffcall.scm (libffcall): Update to 2.0.
2017-09-11gnu: linux-libre: Update to 4.13.1.Mark H Weaver
* gnu/packages/linux.scm (%linux-libre-version): Update to 4.13.1. (%linux-libre-hash): Update hash.