summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-11-16syscalls: Add bindings for SIOCGIFNETMASK and SIOCSIFNETMASK.Ludovic Courtès
* guix/build/syscalls.scm (SIOCGIFNETMASK, SIOCSIFNETMASK): New variables. (set-network-interface-netmask, network-interface-netmask): New procedures. * tests/syscalls.scm ("network-interface-netmask lo") ("set-network-interface-netmask"): New tests.
2016-11-16syscalls: Use 'define-c-struct' for 'struct ifconf'.Ludovic Courtès
* guix/build/syscalls.scm (ifconf-struct): Remove. (%ifconf-struct): New C struct. (network-interface-names): Use 'make-bytevector' and 'write-ifconf!' instead of 'make-c-struct', and 'read-ifconf' instead of 'parse-c-struct'.
2016-11-16syscalls: C struct writer correctly handles pointer fields.Ludovic Courtès
* guix/build/syscalls.scm (write-type): Add case for '*.
2016-11-16gnu: jasper: Update to 1.900.29.Efraim Flashner
* gnu/packages/image.scm (jasper): Update to 1.900.29. [inputs]: Add libjpeg.
2016-11-16gnu: icecat: Remove unneeded patch.Mark H Weaver
This is a followup to commit 1a87aa75671ad6567cd57fce0936220862107478. * gnu/packages/gnuzilla.scm (icecat)[sources][patches]: Remove patch for CVE-2016-5296, which is for a bundled copy of pixman that is subsequently deleted by a snippet.
2016-11-16gnu: perl-dbd-mysql: Update to 4.039 [Fixes CVE-2016-1249].Marius Bakke
* gnu/packages/databases.scm (perl-dbd-mysql): Update to 4.039. [source]: Update CPAN URI.
2016-11-16gnu: ncmpcpp: Update to 0.7.7.Leo Famulari
* gnu/packages/mpd.scm (ncmpcpp): Update to 0.7.7.
2016-11-16gnu: shotwell: Update to 0.25.0.1.Leo Famulari
* gnu/packages/gnome.scm (shotwell): Update to 0.25.0.1.
2016-11-16gnu: icecat: Add fixes from Firefox ESR 45.5.0.Mark H Weaver
Includes fixes for CVE-2016-5290, CVE-2016-5291, CVE-2016-5297, CVE-2016-9064, and CVE-2016-9066. * gnu/packages/gnuzilla.scm (icecat)[source][patches]: Add fixes for aforementioned CVEs and other selected fixes from Firefox ESR 45.5.0. Note that the first six patches of CVE-2016-5290 and the patch for CVE-2016-9066 were already present, but were labeled by mozilla bug number instead of CVE. * gnu/packages/patches/icecat-CVE-2016-9064.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it.
2016-11-16gnu: pixman: Add fix for CVE-2016-5296.Mark H Weaver
* gnu/packages/patches/pixman-CVE-2016-5296.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it. * gnu/packages/xdisorg.scm (pixman)[replacement]: New field. (pixman/fixed): New variable.
2016-11-16download: Use the built-in 'download' builder when available.Ludovic Courtès
Fixes <http://bugs.gnu.org/22774>. Reported by Christopher W Carpenter. * guix/download.scm (built-in-builders*, raw-derivation) (built-in-download): New procedures. (in-band-download): New procedure, with code formerly in 'url-fetch'. (url-fetch): Call 'built-in-builders*' and dispatch between 'built-in-download' and 'in-band-download'.
2016-11-16daemon: Add 'built-in-builders' RPC.Ludovic Courtès
* nix/libstore/builtins.cc (builtinBuilderNames): New function. * nix/libstore/builtins.hh (builtinBuilderNames): New declaration. * nix/libstore/worker-protocol.hh (PROTOCOL_VERSION): Bump to 0x160. (WorkerOp)[wopBuiltinBuilders]: New value. * nix/nix-daemon/nix-daemon.cc (performOp): Handle it. * guix/store.scm (operation-id)[built-in-builders]: New value. * guix/store.scm (read-arg): Add 'string-list'. (built-in-builders): New procedure. * tests/derivations.scm ("built-in-builders"): New test.
2016-11-16daemon: Add "builtin:download" derivation builder.Ludovic Courtès
This ensures that 1) the derivation doesn't change when Guix changes; 2) the derivation closure doesn't contain Guix and its dependencies; 3) we don't have to rely on ugly chroot hacks. Adapted from Nix commit 0a2bee307b20411f5b0dda0c662b1f9bb9e0e131. * nix/libstore/build.cc (DerivationGoal::runChild): Add special case for 'isBuiltin(drv)'. Disable chroot when 'isBuiltin(drv)'. * nix/libstore/builtins.cc, nix/libstore/builtins.hh, nix/scripts/download.in, guix/scripts/perform-download.scm: New files. * guix/ui.scm (show-guix-help)[internal?]: Add 'perform-download'. * nix/local.mk (libstore_a_SOURCES): Add builtins.cc. (libstore_headers): Add builtins.hh. (nodist_pkglibexec_SCRIPTS): Add 'scripts/download'. * config-daemon.ac: Emit 'scripts/download'. * Makefile.am (MODULES): Add 'guix/scripts/perform-download.scm'. * tests/derivations.scm ("unknown built-in builder") ("'download' built-in builder") ("'download' built-in builder, invalid hash") ("'download' built-in builder, not found") ("'download' built-in builder, not fixed-output"): New tests. Co-authored-by: Eelco Dolstra <eelco.dolstra@logicblox.com>
2016-11-16tests: Move HTTP server to (guix tests http).Ludovic Courtès
* tests/lint.scm (%http-server-port, %local-url) (%http-server-socket, http-write, %http-server-lock) (%http-server-ready, http-open, stub-http-server) (call-with-http-server, with-http-server): Move to (guix tests http). Adjust tests for %HTTP-SERVER-SOCKET as a promise and %LOCAL-URL as a parameter. * guix/tests/http.scm: New file. * Makefile.am (dist_noinst_DATA): Add it. (GOBJECTS): Add .go files for all of $(dist_noinst_DATA). (make-go): Depend on $(dist_noinst_DATA).
2016-11-16guix download: Add '-o' option.Ludovic Courtès
* guix/scripts/download.scm (download-to-file, download-to-store*): New procedures. (%default-options): Add 'download-proc'. (show-help): Adjust description and document '-o'. (%options): Add '-o'. (guix-download): Remove 'store' variable. Add 'fetch' and define 'path' to as its result. * tests/guix-download.sh: Add test.
2016-11-16gnu: opensmtpd: Update to 6.0.2p1.宋文武
* gnu/packages/mail.scm (opensmtpd): Update to 6.0.2p1. [arguments]: Pass '--with-path-sock=/var/run' to #:configure-flags.
2016-11-16gnu: linux-libre: Update to 4.8.8.Mark H Weaver
* gnu/packages/linux.scm (%linux-libre-version, %linux-libre-hash) (linux-libre): Update to 4.8.8.
2016-11-16gnu: linux-libre@4.4: Update to 4.4.32.Mark H Weaver
* gnu/packages/linux.scm (linux-libre-4.4): Update to 4.4.32.
2016-11-15gnu: Fix name for ng0.ng0
* gnu/packages/gnupg.scm: Change name in copyright header.
2016-11-15gnu: Add httptunnel.Tobias Geerinckx-Rice
* gnu/packages/web.scm (httptunnel): New variable.
2016-11-15gnu: hisat: Fix typo.Ricardo Wurmus
* gnu/packages/bioinformatics.scm (hisat)[arguments]: Fix directory name in install phase.
2016-11-15gnu: Add pcb-rnd.Ricardo Wurmus
* gnu/packages/engineering.scm (pcb-rnd): New variable.
2016-11-15gnu: libmicrohttpd: Update to 0.9.52.Efraim Flashner
* gnu/packages/gnunet.scm (libmicrohttpd): Update to 0.9.52. [home-page]: Use https.
2016-11-15gnu: octave: Update to 4.2.0.Efraim Flashner
* gnu/packages/maths.scm (octave): Update to 4.2.0. [native-inputs]: Add lzip. [home-page]: Use https.
2016-11-15gnu: parallel: Update to 20161022.Efraim Flashner
* gnu/packages/parallel.scm (parallel): Update to 20161022. [home-page]: Use https.
2016-11-15gnu: libcdio: Update to 0.94.Efraim Flashner
* gnu/packages/cdrom.scm (libcdio): Update to 0.94. [home-page]: Use https.
2016-11-15gnu: gvpe: Update to 3.0.Efraim Flashner
* gnu/packages/vpn.scm (gvpe): Update to 3.0.
2016-11-15gnu: cryptsetup: Update to 1.7.3.Efraim Flashner
* gnu/packages/cryptsetup.scm (cryptsetup): Update to 1.7.3.
2016-11-15gnu: python-vcversioner: Update to 2.16.0.0.Efraim Flashner
* gnu/packages/python.scm (python-vcversioner): Update to 2.16.0.0. [inputs]: Remove python-setuptools. [properties]: New field. (python2-vcversioner): Use 'strip-python2-variant'. [native-inputs]: Add python2-setuptools.
2016-11-15gnu: fish: Update to 2.4.0.Tobias Geerinckx-Rice
* gnu/packages/shells.scm (fish): Update to 2.4.0.
2016-11-15services: Require wpa-supplicant-service for connman-service.Tomáš Čech
* gnu/services/networking.scm (connman-shepherd-service): Add wpa-supplicant among list of requirements.
2016-11-15services: Add wpa-supplicant-service.Tomáš Čech
* gnu/services/networking.scm (wpa-supplicant-service): New procedure. (wpa-supplicant-service-type): New variable. * doc/guix.texi (Networking Services): Document it.
2016-11-15gnu: connman: Use localstatedir outside of store.Tomáš Čech
* gnu/packages/connman.scm (connman): Use localstatedir outside of store.
2016-11-14gnu: python-jsonschema: Use 'nosetests'.Efraim Flashner
* gnu/packages/python.scm (python-jsonschema)[arguments]: Replace 'check phase with python nosetests. [native-inputs]: Add python-nose. [home-page]: Use https. (python2-jsonschema)[native-inputs]: Add python2-mock.
2016-11-14gnu: accountsservice: Update to 0.6.43.Efraim Flashner
* gnu/packages/freedesktop.scm (accountsservice): Update to 0.6.43.
2016-11-14gnu: guix-devel: Update development snapshot.Ludovic Courtès
* gnu/packages/package-management.scm (guix-devel): Update to commit 7ca37da855fd921fa3925bb62f8015f770b7e784.
2016-11-14gnu: guix: Really skip all the container tests.Ludovic Courtès
* gnu/packages/package-management.scm (guix-0.11.0)[arguments]: Update pattern in 'disable-container-tests' to match 'test-equal'.
2016-11-14gnu: libpsl: Update to 0.15.0.Tobias Geerinckx-Rice
* gnu/packages/web.scm (libpsl): Update to 0.15.0.
2016-11-14gnu: libinput: Enable GUI event tool.Efraim Flashner
* gnu/packages/freedesktop.scm (libinput)[inputs]: Add glib. [native-inputs]: Add cairo, gtk+-3. (libinput-minimal)[native-inputs]: Only pkg-config.
2016-11-14gnu: freedesktop.scm: Reorder modules alphabetically.Efraim Flashner
* gnu/packages/freedesktop.scm: Reorder modules alphabetically.
2016-11-14gnu: libinput: Update to 1.5.1.Efraim Flashner
* gnu/packages/freedesktop.scm (libinput): Update to 1.5.1.
2016-11-14gnu: wayland-protocols: Update to 1.7.Efraim Flashner
* gnu/packages/freedesktop.scm (wayland-protocols): Update to 1.7.
2016-11-14gnu: mpv: Use lua@5.2.Andy Patterson
* gnu/packages/video.scm (mpv)[inputs]: Change 'lua' to 'lua-5.2'.
2016-11-14import/cpan: Maybe coerce version to string.Alex Sassmannshausen
* guix/import/cpan.scm (cpan-module->sexp) <version>: Test if version in meta is string or number. If it is number, coerce to string.
2016-11-13gnu: readline-6.2: Fix CVE-2014-2524.Leo Famulari
* gnu/packages/patches/readline-6.2-CVE-2014-2524.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it. * gnu/packages/readline.scm (readline-6.2): Use it.
2016-11-13gnu: signify: Update to 20.Leo Famulari
* gnu/packages/crypto.scm (signify): Update to 20.
2016-11-13gnu: mailutils: Update to 3.0.Ludovic Courtès
* gnu/packages/mail.scm (mailutils): Update to 3.0. [arguments]: Adjust 'pre-build' phase. * gnu/packages/patches/m4-gets-undeclared.patch: Remove. * gnu/local.mk (dist_patch_DATA): Adjust accordingly.
2016-11-13gnu: guile-ncurses: Update to 2.1.Efraim Flashner
* gnu/packages/guile.scm (guile-ncurses): Update to 2.1. [home-page]: Use https.
2016-11-13gnu: btrfs-progs: Update to 4.8.3.Tobias Geerinckx-Rice
* gnu/packages/linux.scm (btrfs-progs): Update to 4.8.3.
2016-11-13gnu: tidy: Use ‘modify-phases’.Tobias Geerinckx-Rice
* gnu/packages/web.scm (tidy)[arguments]: Use the ‘modify-phases’ syntax.