summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2016-03-07gnu: network-manager: Update to 1.0.10....* gnu/packages/gnome.scm (network-manager): Update to 1.0.10. (network-manager-applet): Likewise. (%network-manager-glib-duplicate-test-patch): Remove. Andy Wingo
2016-03-07gnu: network-manager: Disable failing tests....* gnu/packages/gnome.scm (network-manager): Add pre-configure phase. Andy Wingo
2016-03-07gnu: elogind: Update to 219.13....* gnu/packages/freedesktop.scm (elogind): Update to 219.13. Remove build fix that is no longer needed. Update home page. Andy Wingo
2016-03-07gnu: system: Add elogind cgroup mount....* gnu/system/file-systems.scm (%elogind-file-systems): Add elogind cgroup mount. Andy Wingo
2016-03-07gnu: Add Blender....* gnu/packages/graphics.scm (blender): New variable. Ricardo Wurmus
2016-03-07gnu: Add gst-python....* gnu/packages/gstreamer.scm (python-gst, python2-gst): New variables. 宋文武
2016-03-07gnu: python-pygobject: Propagate glib and libffi....* gnu/packages/glib.scm (python-pygobject): Move glib and libffi to propagated-inputs. (python2-pygobject)[inputs]: Remove glib and libffi. 宋文武
2016-03-07gnu: python-pygobject: Add search path for GI_TYPELIB_PATH....* gnu/packages/glib.scm (python-pygobject)[native-search-paths]: Use the same search paths as gobject-introspection. 宋文武
2016-03-07gnu: orc: Update to 0.4.25....* gnu/packages/gstreamer.scm (orc): Update to 0.4.25. 宋文武
2016-03-07services: Use 'packages->manifest' in 'packages->profile-entry'....This allows using (PACKAGE OUTPUT) in the packages field. Reported by Jan Nieuwenhuizen <janneke@gnu.org>. * gnu/services.scm (packages->profile-entry): Use 'packages->manifest'. 宋文武
2016-03-07services: elogind: Rely on D-Bus activation....Previously elogind was explicitly spawned by the Shepherd. Now it is activated by dbus-daemon on demand. * gnu/packages/freedesktop.scm (elogind)[arguments]: Add 'fix-service-file' phase. * gnu/services/desktop.scm (elogind-shepherd-service): Remove. (elogind-dbus-service): New procedure. (elogind-service-type): Do not extend SHEPHERD-ROOT-SERVICE-TYPE. Use 'elogind-dbus-service' for DBUS-ROOT-SERVICE-TYPE. Ludovic Courtès
2016-03-06tests: Disable grafting by default for most tests....This allows tests to run as expected even in the presence of replacements among the bootstrap packages, such as Perl (commit d8173f21f7b4e3cb83541b8fa70621d2b6d4ce1c). * tests/cpan.scm: Add (%graft? #f). * tests/derivations.scm: Likewise. * tests/graph.scm: Likewise. * tests/monads.scm: Likewise. * tests/profiles.scm: Likewise. * tests/gexp.scm: Likewise. ("gexp->derivation vs. grafts"): Explicitly reenable grafting before, and disable it after, using 'set-grafting'. Ludovic Courtès
2016-03-06import: snix: Use the right 'package-name->name+version'....Fixes a regression introduced in 1b846da8c372bee78851439fd9e72b2499115e5a. * guix/import/snix.scm: Use 'package-name->name+version' from (guix build utils). Ludovic Courtès
2016-03-06gnu: alsa-modular-synth: Insert space to separate linker flags....* gnu/packages/audio.scm (alsa-modular-synth)[arguments]: Add build phase to separate linker flags. Ricardo Wurmus
2016-03-06gnu: alsa-modular-synth: Drop Qt 4....* gnu/packages/audio.scm (alsa-modular-synth)[inputs]: Replace "qt-4" with "qt". [arguments]: Add configure flag to build with Qt 5. Ricardo Wurmus
2016-03-05doc: Explain how to check whether security updates are used....Based on <https://lists.gnu.org/archive/html/guix-devel/2016-03/msg00009.html>. * doc/guix.texi (Security Updates): Explain how to check whether we're using a grafted version. Ludovic Courtès
2016-03-05store: 'references/substitutes' correctly handles the order of substitutes....Before that, 'references/substitutes' would assume that 'substitutable-path-info' would return things in the same order as its arguments, which is not the case. Thus, it would sometimes provide incorrect reference information, occasionally leading to infinite loop (because dependency information would denote cycles.) Fixes <http://bugs.gnu.org/22914>. Reported by Eric Bavier <ericbavier@openmailbox.org>. * guix/store.scm (references/substitutes): Make ITEMS the first argument of the loop; match on it. Use 'any' to find a matching substitute. (substitutable-path-info): Clarify docstring about ordering. Ludovic Courtès
2016-03-05gnu: vigra: Update to a development snapshot....* gnu/packages/image.scm (vigra): Update to a git snapshot to fix build problems with the current python-numpy. Andreas Enge
2016-03-05gnu: Add einstein....* gnu/packages/games.scm (einstein): New variable. * gnu/packages/patches/einstein-build.patch: New file. * gnu-system.am (dist_patch_DATA): Register patch. Andreas Enge
2016-03-05doc: Typos and small stylistic changes....* guix.texi: Correct typos and make minor changes. Andreas Enge
2016-03-05gnu: jalv: Drop Qt-4 support....* gnu/packages/audio.scm (jalv)[inputs]: Drop qt-4. It does not receive any upstream security updates, and Qt-4 support is marked as experimental in the jalv documentation. Andreas Enge
2016-03-05tests: Disable tests that would rebuild the world due to grafting....The Perl replacement added in d8173f2 leads some tests to involve grafting, which in turn triggers derivation builds that rebuild the world. Work around that. * tests/packages.scm: Add call to '%graft?'. ("package-derivation, direct graft") ("package-cross-derivation, direct graft"): Comment out. Ludovic Courtès
2016-03-05grafts: Memoize intermediate results in 'cumulative-grafts'....The time for: guix build inkscape -n --no-substitutes goes down by 30% (in the presence of 3 replacements among all the packages.) * guix/grafts.scm (cumulative-grafts): Turn into a monadic procedure in %STATE-MONAD. Use the current state as a derivation-to-graft cache. (graft-derivation): Call 'cumulative-grafts' within 'run-with-state'. Ludovic Courtès
2016-03-05packages: The result of 'bag-grafts' does not contain duplicates....* guix/packages.scm (bag-grafts): Add call to 'delete-duplicates'. Ludovic Courtès
2016-03-05grafts: Use dependency information from substitutes when possible....This avoids starting derivation builds just for the sake of knowing the references of their outputs, thereby restoring the expected behavior of --dry-run when substitutes are available. * guix/grafts.scm (non-self-references): Remove 'store' parameter, and add 'references'. Use it. Update caller. (references-oracle): New variable. (cumulative-grafts): Add 'references' parameter and use it. Update callers. (graft-derivation): Remove 'build-derivations' call. Add call to 'references-oracle'. Ludovic Courtès
2016-03-05store: Add 'references/substitutes'....* guix/store.scm (references/substitutes): New procedure. * tests/store.scm ("references/substitutes missing reference info") ("references/substitutes with substitute info"): New tests. Ludovic Courtès
2016-03-05tests: Narinfos can specify an non-empty reference list....* guix/tests.scm (derivation-narinfo): Add #:references and honor it. (call-with-derivation-narinfo, call-with-derivation-substitute): Likewise. (with-derivation-narinfo, with-derivation-substitute): Add 'references' keyword. Ludovic Courtès
2016-03-05guix build: Set the build options early....This fixes a bug whereby, with grafts leading to builds very early, build options such as --substitute-urls would not be taken into account yet. Reported by Andreas Enge <andreas@enge.fr>. * guix/scripts/build.scm (guix-build): Move 'opts' to the beginning. Use 'with-store' instead of 'open-connection'. Call 'set-build-options-from-command-line' right after 'with-store'. Ludovic Courtès
2016-03-04gnu: letsencrypt, python-acme: Update to 0.4.2....These packages should be updated together. * gnu/packages/tls.scm (letsencrypt): Update to 0.4.2. (python-acme, python2-acme): Update to 0.4.2. Leo Famulari
2016-03-04gnu: python-cryptography, python-cryptography-vectors: Update to 1.2.3....These packages should be updated together. * gnu/packages/python.scm (python-cryptography): Update to 1.2.3. (python-cryptography-vectors): Update to 1.2.3. Leo Famulari
2016-03-04doc: Mention syslogd configuration....* gnu/services/base.scm (syslog-service): Add xref to Inetutils in the docstring. (%default-syslog.conf): Export. * doc/guix.texi (Base Services): Update accordingly. Ludovic Courtès
2016-03-04lint: cve: Gracefully handle HTTP errors....* guix/scripts/lint.scm (current-vulnerabilities*): New procedure. (package-vulnerabilities): Use it. Ludovic Courtès
2016-03-04gnu: gnome: Sync description and synopsis....* gnu/packages/gnome.scm (gnome)[synopsis, description]: Use official GNU blurb. Ludovic Courtès
2016-03-04gnu: nano: Update to 2.5.3....* gnu/packages/nano.scm (nano): Update to 2.5.3. Ludovic Courtès
2016-03-04gnu: libgit2: Update to 0.23.4....* gnu/packages/version-control.scm (libgit2): Update to 0.23.4. Ludovic Courtès
2016-03-04gnu: findnewest: Update to 0.3....* gnu/packages/version-control.scm (findnewest): Update to 0.3. Ludovic Courtès
2016-03-04emacs: Use '@' to separate package names and version numbers....This is a followup to commit 1b846da8c372bee78851439fd9e72b2499115e5a. * emacs/guix-base.el (guix-package-name-specification): Use "@" instead of "-". * emacs/guix-main.scm (name+version->full-name): Likewise. (package-inputs-names): Use 'make-package-specification' instead of 'package-full-name'. (full-name->name+version): Update the docstring. * emacs/guix-ui-package.el (guix-packages-by-name): Likewise. Alex Kost
2016-03-04emacs: hydra: Use '-' to separate job names and version numbers....* emacs/guix-hydra.el (guix-hydra-job-name-specification): New procedure. * emacs/guix-ui-package.el (guix-package-info-insert-systems) (guix-package-list-latest-builds): Use it. Alex Kost
2016-03-03gnu: exim: Update to 4.86.2 [fixes CVE-2016-1531]....* gnu/packages/mail.scm (exim): Update to 4.86.2. Leo Famulari
2016-03-03gnu: Add byzanz....* gnu/packages/gnome.scm (byzanz): New variable. David Thompson
2016-03-03doc: Improve Info categories....* doc/guix.texi: Change main category to "System administration". Fix syntax of subnodes. Add entries for 'guix pull' and 'guix gc'. Add "Emacs" category. Ludovic Courtès
2016-03-03build: Use (guix grafts) as needed....This is a followup to 7adf9b8. * build-aux/check-final-inputs-self-contained.scm: Use (guix grafts). * build-aux/check-available-binaries.scm: Likewise. Ludovic Courtès
2016-03-03gnu: youtube-dl: Update to 2016.03.01....* gnu/packages/video.scm (youtube-dl): Update to 2016.03.01. Efraim Flashner
2016-03-03gnu: mpv: Update to 0.16.0....* gnu/packages/video.scm (mpv): Update to 0.16.0. Efraim Flashner
2016-03-03gnu: perl: Replace with patched version [fixes CVE-2016-2381]....* gnu/packages/patches/perl-CVE-2016-2381.patch: New file. * gnu-system.am (dist_patch_DATA): Add it. * gnu/packages/perl.scm (perl)[replacement]: New field. (perl-fixed): New variable. * gnu/packages/commencement.scm (perl-boot0)[replacement]: New field. Leo Famulari
2016-03-03gnu: irssi: Support proxy, socks, bot....* gnu/packages/irc.scm (irssi)[arguments]: Add configure flags to support proxy, socks and bot. Efraim Flashner
2016-03-03gnu: irssi: Update to 0.8.18....* gnu/packages/irc.scm (irssi): Update to 0.8.18. [source]: Update uri. Efraim Flashner
2016-03-03build: Build (guix import github) only when Guile-JSON is available....Reported by Justus Winter <justus@gnupg.org>. * Makefile.am (MODULES): Add guix/import/github.scm only when HAVE_GUILE_JSON. Ludovic Courtès
2016-03-03po: Drop removed file 'weechat.scm'....Fixes <http://bugs.gnu.org/22888>. weechat has been merged into 'irc.scm' in e288f007. * po/packages/POTFILES.in: Drop removed file 'weechat.scm'. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Justus Winter
2016-03-03system: GRUB menu entry says "beta" instead of "alpha"...* gnu/system.scm (kernel->grub-label): Change "alpha" to "beta'. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Petter