summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Merge branch 'master' into core-updatesMark H Weaver2015-04-17
|\ | | | | | | | | | | Conflicts: gnu-system.am gnu/packages/gstreamer.scm
| * services: Explicitly refer to Shadow when requiring the 'nologin' shell.Ludovic Courtès2015-04-17
| | | | | | | | | | | | | | * gnu/services/avahi.scm (avahi-service): Change 'shell' to a gexp referring to "nologin" in the SHADOW package. * gnu/services/dbus.scm (dbus-service): Likewise. * gnu/services/networking.scm (ntp-service, tor-service): Likewise.
| * system: Populate /etc/shells with the list of all the shells in use.Ludovic Courtès2015-04-17
| | | | | | | | | | | | | | | | | | | | Reported by Andy Wingo <wingo@pobox.com>. * gnu/system.scm (user-shells, shells-file): New procedures. (etc-directory): Add #:shell parameter. Use 'shells-file' instead of 'text-file'. (operating-system-etc-directory): Call 'user-shells' and pass #:shells to 'etc-directory'.
| * gnu: Add libsrtp.David Hashe2015-04-17
| | | | | | | | | | | | * gnu/packages/telephony.scm (libsrtp): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
| * gnu: linux-libre: Set CONFIG_DEVMEM=yJason Self2015-04-17
| | | | | | | | | | | | * gnu/packages/linux.scm (linux-libre): Set CONFIG_DEVMEM=y. Signed-off-by: Jason Self <j@jxself.org>
| * gnu: mig: Update to 1.5Manolis Ragkousis2015-04-16
| | | | | | | | * gnu/packages/hurd.scm (mig): Update to version 1.5.
| * gnu: hurd-headers: Update to 0.6Manolis Ragkousis2015-04-16
| | | | | | | | * gnu/packages/hurd.scm (hurd-headers): Update to version 0.6.
| * gnu: gnumach-headers: Update to 1.5Manolis Ragkousis2015-04-16
| | | | | | | | * gnu/packages/hurd.scm (gnumach-headers): Update to version 1.5.
| * gnu: Add FASTX Toolkit.Ricardo Wurmus2015-04-16
| | | | | | | | * gnu/packages/bioinformatics.scm (fastx-toolkit): New variable.
| * gnu: Add libgtextutils.Ricardo Wurmus2015-04-16
| | | | | | | | * gnu/packages/textutils.scm (libgtextutils): New variable.
| * gnu: tbb: Set library rpath.Ricardo Wurmus2015-04-16
| | | | | | | | | | * gnu/packages/tbb.scm (tbb)[arguments]: Add the rpath for lib directory of output to LDFLAGS.
| * gnu: mu: Update to 0.9.12.Paul van der Walt2015-04-16
| | | | | | | | * gnu/packages/mail.scm (mu): Update to version 0.9.12.
| * doc: Add section on installation from a binary tarball.Ludovic Courtès2015-04-15
| | | | | | | | * doc/guix.texi (Binary Installation): New section.
| * profiles: Generalize "hooks" for 'profile-derivation'.Ludovic Courtès2015-04-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * guix/profiles.scm (info-dir-file): Remove (null? (manifest-entries manifest)) test. (ca-certificate-bundle): Likewise. (ghc-package-cache-file): Turn 'if' into 'and', and remove second arm. (%default-profile-hooks): New variable. (profile-derivation): Remove #:info-dir?, #:ghc-package-cache?, and #:ca-certificate-bundle?. Add #:hooks. Iterate over HOOKS. Adjust 'inputs' accordingly. * guix/scripts/package.scm (guix-package): Adjust 'profile-derivation' call accordingly. * tests/packages.scm ("--search-paths with pattern"): Likewise. * tests/profiles.scm ("profile-derivation", "profile-derivation, inputs"): Likewise.
| * gnu: icedtea6: Update to 1.13.7.Ricardo Wurmus2015-04-15
| | | | | | | | * gnu/packages/java.scm (icedtea6): Update to version 1.13.7.
| * gnu: calibre: Update to 2.24.0.Andreas Enge2015-04-15
| | | | | | | | * gnu/packages/ebook.scm (calibre): Update to 2.24.0.
| * build: Add missing 'make-binary-tarball.scm' script.Ludovic Courtès2015-04-14
| | | | | | | | | | | | | | This script is used by the target added in 9d3fb6c. * build-aux/make-binary-tarball.scm: New file. * Makefile.am (EXTRA_DIST): Add it.
| * hydra: Add jobs for the self-contained tarball.Ludovic Courtès2015-04-14
| | | | | | | | | | * build-aux/hydra/gnu-system.scm (tarball-jobs): New procedure. (hydra-jobs): Use it.
| * gnu: Don't use #:prefix in (gnu packages sdl).Ludovic Courtès2015-04-14
| | | | | | | | | | | | * gnu/packages/sdl.scm: Remove #:prefix for (gnu packages fontutils) import, and adjust accordingly. Add #:hide for (guix licenses) import.
| * Thank Pjotr.Ludovic Courtès2015-04-14
| |
| * install: Add a procedure to build a self-contained binary tarball.Ludovic Courtès2015-04-14
| | | | | | | | | | | | | | | | | | Suggested by Pjotr Prins <pjotr.public12@thebird.nl> at <http://lists.gnu.org/archive/html/guix-devel/2015-04/msg00229.html>. * gnu/build/install.scm (populate-single-profile-directory): New procedure. * gnu/system/install.scm (self-contained-tarball): New procedure. * Makefile.am (guix-binary.%.tar.xz): New target.
| * build: Silence warnings about 'make' portability.Ludovic Courtès2015-04-14
| | | | | | | | * configure.ac: Pass -Wno-portability to AM_INIT_AUTOMAKE.
| * gnu: calibre: Update to 2.23.0.Andreas Enge2015-04-14
| | | | | | | | * gnu/packages/ebook.scm (calibre): Update to 2.23.0.
| * gnu: gst-libav: Use system ffmpeg instead of bundled libav.宋文武2015-04-14
| | | | | | | | | | | | | | * gnu/packages/gstreamer.scm (gst-libav)[arguments]: Remove #:phases. Add #:configure-flags. [native-inputs]: Remove yasm. [inputs]: Add ffmpeg.
| * guix package: Add '--do-not-upgrade' option.Mark H Weaver2015-04-14
| | | | | | | | | | | | | | | | | | * guix/scripts/package.scm (%options): Add the '--do-not-upgrade' option. (show-help): Document it. (options->installable): Add 'do-not-upgrade-regexps' variable. Use it in 'packages-to-upgrade'. * doc/guix.texi (Invoking guix package): Document the '--do-not-upgrade' option.
| * gnu: Add mdadm.Mark H Weaver2015-04-14
| | | | | | | | * gnu/packages/linux.scm (mdadm): New variable.
| * gnu: linux-libre: Remove linux-libre-vblank-fix.patch.Mark H Weaver2015-04-14
| | | | | | | | | | | | * gnu/packages/patches/linux-libre-vblank-fix.patch: Remove file. * gnu-system.am (dist_patch_DATA): Remove it. * gnu/packages/linux.scm (linux-libre): Remove patch.
| * gnu: ruby: Update to 2.2.2.David Thompson2015-04-13
| | | | | | | | * gnu/packages/ruby.scm (ruby): Update to 2.2.2.
| * gnu: emacs: Do not keep references to the entries of the build-time $PATH.Ludovic Courtès2015-04-13
| | | | | | | | | | | | | | | | | | | | | | | | This reduces the number of references of the output from 54 to 31, removing references notably to gcc, expat, glib:bin, ld-wrapper-0, texinfo, pkg-config, make, gawk, binutils, etc. Reported by David Thompson. * gnu/packages/patches/emacs-exec-path.patch: New file. * gnu-system.am (dist_patch_DATA): Add it. * gnu/packages/emacs.scm (emacs)[source]: Use it.
| * gnu: rseqc: Update hash.Ricardo Wurmus2015-04-13
| | | | | | | | * gnu/packages/bioinformatics.scm (rseqc): Update hash.
| * gnu: linux-libre: Update to 4.0Jason Self2015-04-13
| | | | | | | | * gnu/packages/linux.scm (linux-libre): Update to version 4.0.
* | gnu: icecat: Use system sqlite.Mark H Weaver2015-04-17
| | | | | | | | | | * gnu/packages/gnuzilla.scm (icecat)[inputs]: Add sqlite. [arguments]: Pass "--enable-system-sqlite" to configure.
* | gnu: gnome-vfs: Expect 'test-async-cancel' failure, and clean up.Mark H Weaver2015-04-17
| | | | | | | | | | | | | | | | * gnu/packages/gnome.scm (gnome-vfs)[arguments]: Add "XFAIL_TESTS=test-async-cancel" to make flags. Remove ignored and undocumented 'DISABLE_DEPRECATED_CFLAGS' configure flag. Simplify 'ignore-deprecations' phase and return #t. Reformat to fit within 80 columns.
* | refresh: Allow users to refer to specific package versions.Ludovic Courtès2015-04-16
| | | | | | | | | | | | | | * guix/scripts/refresh.scm (guix-refresh): Use 'specification->package' instead of 'find-packages-by-name'. This allows users to specify things like "qt-4.8.6". * doc/guix.texi (Invoking guix refresh): Add an example.
* | gnu: Add second ld-wrapper to work around readlink dereferencing bug.Ludovic Courtès2015-04-16
| | | | | | | | | | | | | | | | Suggested by Mark H Weaver. * gnu/packages/ld-wrapper2.in: New file. * gnu-system.am (MISC_DISTRO_FILES): Add it. * gnu/packages/commencement.scm (fixed-ld-wrapper): New procedure.
* | gnu: bigloo: Add RUNPATH to the libraries.Ludovic Courtès2015-04-16
| | | | | | | | | | * gnu/packages/scheme.scm (bigloo)[arguments]: Pass --ldflags 'configure' flag.
* | gnu: vlc: Update to 2.2.0.Andreas Enge2015-04-16
| | | | | | | | | | * gnu/packages/video.scm (vlc): Update to 2.2.0. [inputs]: Switch from ffmpeg-2.2 to latest one.
* | gnu: ffmpeg: Allow tests to run from the build tree.Ludovic Courtès2015-04-16
| | | | | | | | | | * gnu/packages/video.scm (ffmpeg)[arguments]: Add 'set-ld-library-path' phase.
* | gnu: ffmpeg: Use 'modify-phases'.Ludovic Courtès2015-04-16
| | | | | | | | | | * gnu/packages/video.scm (ffmpeg)[arguments]: Use 'modify-phases' instead of 'alist-cons-after' et al.
* | hydra: Increase size of USB image.Ludovic Courtès2015-04-16
| | | | | | | | | | * build-aux/hydra/gnu-system.scm (qemu-jobs) <usb-image>: Increase from 800 MiB to 850 MiB.
* | gnu: icecat: Disable RUNPATH validation.Ludovic Courtès2015-04-16
| | | | | | | | | | * gnu/packages/gnuzilla.scm (icecat)[arguments]: Pass #:validate-runpath? #f.
* | build-system/haskell: Adjust to new 'modify-phases' syntax.Ludovic Courtès2015-04-16
| | | | | | | | | | * guix/build/haskell-build-system.scm (%standard-phases): Add missing quotes, as needed since commit f8503e2.
* | build: Build and install (guix build haskell-build-system).Ludovic Courtès2015-04-16
| | | | | | | | * Makefile.am (MODULES): Add guix/build/haskell-build-system.scm.
* | gnu: qt-4: Add "doc" output; use more standard directory names.Ludovic Courtès2015-04-15
| | | | | | | | | | * gnu/packages/qt.scm (qt-4)[outputs]: New field. (qt-4)[arguments]: Pass '-docdir', '-demosdir', and '-examplesdir'.
* | gnu: qt-4: Do not set $LDFLAGS since that triggerred a build failure.Ludovic Courtès2015-04-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes the build failure at <http://hydra.gnu.org/build/379884/log/raw>: g++ -licui18n -Wl,-O1 [...] -o ../../../../bin/assistant [...] ld: warning: libQtCLucene.so.4, needed by /tmp/nix-build-qt-4.8.6.drv-0/qt-everywhere-opensource-src-4.8.6/lib/libQtHelp.so, not found (try using -rpath or -rpath-link) /tmp/nix-build-qt-4.8.6.drv-0/qt-everywhere-opensource-src-4.8.6/lib/libQtHelp.so: undefined reference to `QCLucenePhraseQuery::getTerms() const' [...] * gnu/packages/patches/qt4-ldflags.patch: New file. * gnu-system.am (dist_patch_DATA): Add it. * gnu/packages/qt.scm (qt-4)[source]: Use it. [arguments]: Remove 'setenv' call in 'configure' phase.
* | gnu: wine: Add $libdir to the RUNPATH of binaries.宋文武2015-04-15
| | | | | | | | * gnu/packages/wine.scm (wine)[arguments]: Add #:configure-flags.
* | gnu: wine: Update to 1.7.40.宋文武2015-04-15
| | | | | | | | * gnu/packages/wine.scm (wine): Update to 1.7.40.
* | build-system/haskell: Refer to %GNU-BUILD-SYSTEM-MODULES.Ludovic Courtès2015-04-15
| | | | | | | | | | | | | | | | | | Fixes a regression whereby haskell-build-system was using an incomplete module list. * guix/build-system/haskell.scm (%haskell-build-system-modules): New variable. (haskell-build): Use it as the default value of #:imported-modules.
* | packages: Refer to the native tools when handling sources and downloads.Ludovic Courtès2015-04-15
| | | | | | | | | | | | | | | | * guix/packages.scm (patch-and-repack)[build]: Change most #$ to #+. * guix/cvs-download.scm (cvs-fetch)[build]: Likewise. * guix/download.scm (url-fetch)[builder]: Likewise. * guix/git-download.scm (git-fetch)[build]: Likewise. * guix/svn-download.scm (svn-fetch)[build]: Likewise.
* | gnu: fltk: Add $libdir to the RUNPATH of binaries.宋文武2015-04-15
| | | | | | | | | | * gnu/packages/fltk.scm (fltk)[arguments]: Add DSOFLAGS=-Wl,-rpath=$libdir to #:configure-flags.