summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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".
2015-07-14gnu: ccache: Update to 3.2.2.Eric Bavier
* gnu/packages/ccache.scm (ccache): Update to 3.2.2. [arguments]: Rename 'patch-test-shebangs phase to 'setup-tests. Set the SHELL environment variable.
2015-07-14emacs: Fill package heading in Info buffers.Ludovic Courtès
* emacs/guix-info.el (guix-package-info-fill-heading): New variable. (guix-package-info-insert-heading): Fill heading if needed. Co-authored-by: Alex Kost <alezost@gmail.com>
2015-07-14gnu: Add dunst.Alex Kost
* gnu/packages/dunst.scm: New file. * gnu-system.am (GNU_SYSTEM_MODULES): Add it.
2015-07-14gnu: Add libxdg-basedir.Alex Kost
* gnu/packages/freedesktop.scm (libxdg-basedir): New variable.
2015-07-14gnu: Adjust packages to new handling of propagated inputs.Ludovic Courtès
This is a followup to 161094c, which gets rid of the "a/b" notation for propagated inputs. * gnu/packages/cross-base.scm (cross-gcc-arguments): Change reference from "libc/linux-headers" to "linux-headers". * gnu/packages/emacs.scm (magit-svn): Change "magit/git-modes" to "git-modes".
2015-07-14file-systems: Allow users to specify file system UUIDs as strings.Ludovic Courtès
Fixes <http://bugs.gnu.org/19778>. Reported by Mark H Weaver <mhw@netris.org>. * gnu/system/file-systems.scm (%uuid-rx): New variable. (string->uuid): New procedure. (uuid): New macro. * tests/file-systems.scm: New file. * Makefile.am (SCM_TESTS): Add it. * doc/guix.texi (File Systems): Give an example of UUID.
2015-07-14file-systems: Implement partition lookup by UUID.Ludovic Courtès
* gnu/build/file-systems.scm (read-ext2-superblock*, partition-predicate): New procedures. (partition-label-predicate): Rewrite in terms of 'partition-predicate'. (partition-uuid-predicate, find-partition-by-uuid, uuid->string): New procedures. (%network-byte-order): New macro. (canonicalize-device-spec)[canonical-title]: Check whether SPEC is a string. [resolve]: New procedure. Add 'uuid' case and use it.
2015-07-14gnu: nss: Upgrade to 3.19.2.Ludovic Courtès
* gnu/packages/gnuzilla.scm (nss): Upgrade to 3.19.2.
2015-07-14file-systems: Use (guix build syscalls) at build time if needed.Ludovic Courtès
* gnu/build/file-systems.scm: Wrap 'module-use!' statement in 'eval-when'.
2015-07-14gnu: util-linux: Fix file name of 'umount' in 'eject'.Ludovic Courtès
Fixes <http://bugs.gnu.org/21010>. Reported by Alex Sassmannshausen <alex.sassmannshausen@gmail.com>. * gnu/packages/linux.scm (util-linux)[arguments]: Add 'set-umount-file-name'.
2015-07-14gnu: util-linux: Use 'modify-phases'.Ludovic Courtès
* gnu/packages/linux.scm (util-linux)[arguments]: Use 'modify-phases' instead of 'alist-cons-before'.
2015-07-13gnu: Add rc.Jeff Mickey
* gnu/packages/rc.scm: New file. * gnu-system.am (GNU_SYSTEM_MODULES): Add it.