summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-07-18publish: Write hashes in nix-base32 format.Ludovic Courtès
* guix/scripts/publish.scm (narinfo-string): Use 'bytevector->nix-base32-string', not 'bytevector->base32-string'.
2015-07-17syscalls: Struct deserializer can now return arbitrary objects.Ludovic Courtès
* guix/build/syscalls.scm (read-types): Add RETURN and VALUES parameters. (define-c-struct): Add WRAP-FIELDS parameter and pass it to 'read-types'. (sockaddr-in, sockaddr-in6): Add first argument that uses 'make-socket-address'. (read-socket-address): Remove 'match' on the result of 'read-sockaddr-in' and 'read-sockaddr-in6'.
2015-07-17download: Remove spurious warning about 'https_proxy'.Ludovic Courtès
* guix/build/download.scm (open-connection-for-uri)[with-https-proxy]: Warn about 'https_proxy' only when 'getenv' returns a non-empty string.
2015-07-17gnu: libpsl: Fix source URL.Ludovic Courtès
* gnu/packages/web.scm (libpsl)[source]: Fix 'uri'. Remove now unneeded 'file-name'.
2015-07-17file-systems: Subsystem cgroups now depend on /sys/fs/cgroup.Ludovic Courtès
* gnu/system/file-systems.scm (%control-groups): Define 'parent' variable. Initialize the 'dependencies' field for all the subsystems.
2015-07-17file-systems: Add a 'dependencies' field to <file-system>.Ludovic Courtès
* gnu/system/file-systems.scm (<file-system>)[dependencies]: New field. * gnu/system.scm (other-file-system-services)[requirements]: Honor 'file-system-dependencies'. * doc/guix.texi (File Systems): Document it.
2015-07-17gnu: Add Linux-Libre 4.0.8.Ludovic Courtès
* gnu/packages/linux.scm (linux-libre-4.0): New variable.
2015-07-17system: Use the CRDA udev rules.Ludovic Courtès
* gnu/services/base.scm (%base-services): Add CRDA to the #:rules of 'udev-service'. * gnu/system/install.scm (installation-services): Likewise.
2015-07-17gnu: Add CRDA.Ludovic Courtès
* gnu/packages/linux.scm (crda): New variable.
2015-07-17gnu: Add wireless-regdb.Ludovic Courtès
* gnu/packages/linux.scm (wireless-regdb): New variable.
2015-07-17licenses: Add Fontana's copyleft-next.Ludovic Courtès
* guix/licenses.scm (copyleft-next): New variable.
2015-07-17gnu: Add eog.David Hashe
* gnu/packages/gnome.scm (eog): New variable.
2015-07-17gnu: Add exempi.David Hashe
* gnu/packages/freedesktop.scm (exempi): New variable.
2015-07-17gnu: duplicity: Update to 0.6.26.Eric Bavier
* gnu/packages/backup.scm (duplicity): Update to 0.6.26.
2015-07-17gnu: openssl: Work around GCC code generation bug on ARM with NEON.Mark H Weaver
* gnu/packages/tls.scm (openssl)[arguments]: When compiling natively for armhf, pass -mfpu=vfpv3 to ./config.
2015-07-17gnu: Add emacs-pdf-tools.Ricardo Wurmus
* gnu/packages/emacs.scm (emacs-pdf-tools): New variable. Co-authored-by: Alex Kost <alezost@gmail.com>
2015-07-17gnu: icecat: Add patch to adapt to freetype 2.6.Mark H Weaver
* gnu/packages/patches/icecat-freetype-2.6.patch: New file. * gnu-system.am (dist_patch_DATA): Add it. * gnu/packages/gnuzilla.scm (icecat)[source]: Add patch.
2015-07-17system: Add 'kernel-arguments' field.Ludovic Courtès
* gnu/system.scm (<operating-system>)[kernel-arguments]: New field. (operating-system-grub.cfg): Honor it. (operating-system-parameters-file): Add 'kernel-arguments' to the parameters file. * guix/scripts/system.scm (previous-grub-entries)[system->grub-entry]: Read the 'kernel-arguments' field of the parameters file, when available. * gnu/system/vm.scm (system-qemu-image/shared-store-script): Use (operating-system-kernel-arguments os) in '-append'. * doc/guix.texi (operating-system Reference): Document it.
2015-07-17system: Fix typo in 'PS1' in skeleton '.bashrc'.Ludovic Courtès
* gnu/system/shadow.scm (default-skeletons): Move misplaced backslash.
2015-07-16gnu: git: Adjust to new handling of propagated inputs.Eric Bavier
This is a followup to 161094c, which gets rid of the "a/b" notation for propagated inputs. * gnu/packages/version-control.scm (package-transitive-propagated-labels*): Do not prepend the package name to its input label. (package-propagated-input-refs): Delete duplicate labels. (git)[arguments]: Adjust wrapping of git-send-email accordingly.
2015-07-17gnu: libpsl: Update to 0.7.1.Ludovic Courtès
Removing the 'snippet' allows us to avoid 'patch-and-repack', which resets all the mtimes, thereby breaking the expectation tested in 'test-is-public-builtin.c' that the mtime returned by 'psl_builtin_file_time' is non-zero. * gnu/packages/web.scm (libpsl): Update to 0.7.1. [source]: Remove 'modules' and 'snippet'. [native-inputs]: Add PKG-CONFIG.
2015-07-16gnu: subversion: Skip the faulty test.Ludovic Courtès
The added patch from upstream didn't help, nor did downgrading to SQLite 3.8.9. Thus, shamelessly skip the offending test. * gnu/packages/patches/subversion-sqlite-3.8.9-fix.patch: Add one hunk to skip the faulty test, and another one from upstream.
2015-07-16gnu: libgnome: Leave only one 'propagated-inputs' field.Ludovic Courtès
* gnu/packages/gnome.scm (libgnome): Merge the two 'propagated-inputs' fields (followup to 25338e9.)
2015-07-16gnu: Add gnome-common.Mathieu Lirzin
* gnu/packages/gnome.scm (gnome-common): New variable.
2015-07-16gnu: Add lxappearance.Mathieu Lirzin
* gnu/packages/lxde.scm: New file. * gnu-system.am (GNU_SYSTEM_MODULES): Add it.
2015-07-16install: Reset the mtimes of all the files in the binary tarball.Ludovic Courtès
* gnu/system/install.scm (self-contained-tarball): Pass "--mtime=@0". The only files whose mtime was not already were those in /var/guix and /gnu/store/.links.
2015-07-16file-systems: 'uuid' raises a syntax error for invalid UUIDs.Ludovic Courtès
* gnu/system/file-systems.scm (uuid): Call 'syntax-violation' when 'string->uuid' returns #f. * tests/file-systems.scm ("uuid, syntax error"): New test.
2015-07-16python-build-system: Add 'ensure-no-mtimes-pre-1980' phase.Mark H Weaver
* guix/build/python-build-system.scm (ensure-no-mtimes-pre-1980): New phase. (%standard-phases): Add it after 'unpack'.
2015-07-15gnu: perl-net-ssleay: Avoid patching source in 'origin'.Mark H Weaver
* gnu/packages/tls.scm (perl-net-ssleay)[source]: Move patch to ... [native-inputs]: ... here, and also add the 'patch' program. [arguments]: Use 'modify-phases'. Add 'apply-patch' phase. Return boolean result from 'set-ssl-prefix' phase.
2015-07-15gnu: ghc: Don't pass --build=<triplet> to configure.Mark H Weaver
* gnu/packages/haskell.scm (ghc)[arguments]: Add #:build #f.
2015-07-15gnu: unzip: Fix CVE-2014-9636 and some other bugs.Mark H Weaver
* gnu/packages/patches/unzip-CVE-2014-9636.patch, gnu/packages/patches/unzip-allow-greater-hostver-values.patch, gnu/packages/patches/unzip-increase-size-of-cfactorstr.patch, gnu/packages/patches/unzip-initialize-symlink-flag.patch, gnu/packages/patches/unzip-remove-build-date.patch: New files. * gnu-system.am (dist_patch_DATA): Add them. * gnu/packages/zip.scm (unzip)[source]: Add patches. [arguments]: Use 'modify-phases'. Remove custom 'configure' phase; pass additional make-flags instead. Add custom 'build' phase that builds "generic_gcc" target; remove "generic_gcc" from make-flags.
2015-07-15gnu: Update livestreamer to 1.12.2.Efraim Flashner
* gnu/packages/video (livestreamer): Update to 1.12.2. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2015-07-15size: Gracefully handle EPIPE.Ludovic Courtès
* guix/scripts/size.scm (guix-size): Wrap body in 'leave-on-EPIPE'.
2015-07-15ui: Add 'leave-on-EPIPE'.Ludovic Courtès
* guix/scripts/package.scm (leave-on-EPIPE): Move to... * guix/ui.scm (leave-on-EPIPE): ... here.
2015-07-15Add 'guix-daemon.service' file for systemd.Ludovic Courtès
* etc/guix-daemon.service.in: New file, provided by Ricardo Wurmus. * daemon.am (CLEANFILES): Add etc/guix-daemon.service. (systemdservicedir, nodist_systemdservice_DATA): New variables. (EXTRA_DIST): Add etc/guix-daemon.service.in. * doc/guix.texi (Binary Installation, Build Environment Setup): Mention 'guix-daemon.service'.
2015-07-15system: Make /dev/kvm 660.Ludovic Courtès
* gnu/services/base.scm (kvm-udev-rule): Change /dev/kvm mode to 0660 as a followup to the resolution of <http://bugs.gnu.org/18994>.
2015-07-15doc: Reinstate bit about creating build accounts.Ludovic Courtès
* doc/guix.texi (Binary Installation): Reinstate bit about creating group and user accounts, which was inadvertently removed in 01dbc7e0.
2015-07-15Merge branch 'master' into core-updatesMark H Weaver
2015-07-15gnu: icecat: Update to 31.8.0-gnu1.Mark H Weaver
* gnu/packages/patches/icecat-enable-acceleration-and-webgl.patch: New file. * gnu/packages/patches/icecat-CVE-2015-2722-pt1.patch, gnu/packages/patches/icecat-CVE-2015-2722-pt2.patch, gnu/packages/patches/icecat-CVE-2015-2724-pt1.patch, gnu/packages/patches/icecat-CVE-2015-2724-pt2.patch, gnu/packages/patches/icecat-CVE-2015-2724-pt3.patch, gnu/packages/patches/icecat-CVE-2015-2724-pt4.patch, gnu/packages/patches/icecat-CVE-2015-2728-pt1.patch, gnu/packages/patches/icecat-CVE-2015-2728-pt2.patch, gnu/packages/patches/icecat-CVE-2015-2733-pt1.patch, gnu/packages/patches/icecat-CVE-2015-2733-pt2.patch, gnu/packages/patches/icecat-CVE-2015-2735.patch, gnu/packages/patches/icecat-CVE-2015-2736.patch, gnu/packages/patches/icecat-CVE-2015-2738.patch, gnu/packages/patches/icecat-CVE-2015-2739.patch, gnu/packages/patches/icecat-CVE-2015-2740.patch, gnu/packages/patches/icecat-CVE-2015-2743.patch: Remove files. * gnu-system.am (dist_patch_DATA): Remove them, and add the new file. * gnu/packages/gnuzilla.scm (icecat): Update to 31.8.0-gnu1. Remove the outdated patches and add the new one.
2015-07-15Merge branch 'master' into core-updatesMark H Weaver
2015-07-15gnu: freetype: Update to 2.6.Mark H Weaver
* gnu/packages/fontutils.scm (freetype): Update to 2.6.
2015-07-15gnu: libgnome: Move popt to propagated-inputs.Mark H Weaver
* gnu/packages/gnome.scm (libgnome)[inputs]: Move popt to ... [propagated-inputs]: ... here.
2015-07-15gnu: qt: On armhf, enable use of NEON.Mark H Weaver
* gnu/packages/qt.scm (qt-4)[arguments]: Remove "-no-neon" from arguments passed to configure.
2015-07-15gnu: mplayer: Enable use of NEON on armhf.Mark H Weaver
* gnu/packages/video.scm (mplayer)[arguments]: Remove "--disable-neon" from arguments passed to configure.
2015-07-15gnu: python: Set source file times to 1980 to fix test.Mark H Weaver
* gnu/packages/python.scm (python-2)[arguments]: Use 'modify-phases'. Return true from phases where needed. Add 'set-source-file-times-to-1980' phase. Add (ice-9 ftw) to #:modules.
2015-07-15gnu: libpcap: Enable plain "linux" backend.Ricardo Wurmus
* gnu/packages/admin.scm (libpcap)[arguments]: Add "--with-pcap=linux" configure flag.
2015-07-15gnu: setbfree: Disable unsupported optimizations on non-x86.Ricardo Wurmus
* gnu/packages/music.scm (setbfree)[arguments]: Override default OPTIMIZATIONS variable on non-x86 systems.
2015-07-14gnu: eigen: Use parallel-job-count.Eric Bavier
* gnu/packages/algebra.scm (eigen)[arguments]: 'current-processor-count' -> 'parallel-job-count'.
2015-07-14gnu: Build tarballs deterministically.Mark H Weaver
* gnu/packages/make-bootstrap.scm (tarball-package)[arguments]: Build tarball deterministically. * gnu/packages/admin.scm (isc-dhcp)[arguments]: In 'post-configure' phase, create bind.tar.gz deterministically. * gnu/packages/video.scm (avidemux)[arguments]: In 'repack-ffmpeg' phase, create ffmpeg-1.2.1.tar.bz2 deterministically.
2015-07-14packages: patch-and-repack: Build tarballs deterministically.Mark H Weaver
* guix/packages.scm (patch-and-repack)[build]: When invoking 'tar' to repack the archive, pass "--mtime=@0", "--owner=root:0", and "--group=root:0".