summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-07-12gnu: Syncthing: Fix a crash bug.Leo Famulari
* gnu/packages/patches/syncthing-fix-crash.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it. * gnu/packages/syncthing.scm (syncthing)[source]: Use it.
2018-07-12gnu: Add quaternion.Arun Isaac
* gnu/packages/messaging.scm (quaternion): New variable.
2018-07-12gnu: Add libqmatrixclient.Arun Isaac
* gnu/packages/messaging.scm (libqmatrixclient): New variable.
2018-07-12gnu: psmisc: Update to 23.1.Marius Bakke
* gnu/packages/linux.scm (psmisc): Update to 23.1. [source](uri): Use XZ-compressed tarball.
2018-07-12gnu: unbound: Update to 1.7.3.Marius Bakke
* gnu/packages/dns.scm (unbound): Update to 1.7.3.
2018-07-12gnu: php: Build with an older oniguruma.Marius Bakke
* gnu/packages/textutils.scm (oniguruma-5): New public variable. * gnu/packages/php.scm (php)[inputs]: Change ONIGURUMA to ONIGURUMA-5.
2018-07-12gnu: iso-codes: Update home page.Marius Bakke
* gnu/packages/iso-codes.scm (iso-codes)[home-page]: Change to salsa.debian.org.
2018-07-12gnu: oniguruma: Update to 6.8.2.Marius Bakke
* gnu/packages/textutils.scm (oniguruma): Update to 6.8.2.
2018-07-12gnu: lsof: Return #t from all phases.Marius Bakke
* gnu/packages/lsof.scm (lsof)[arguments]: Return #t from phases.
2018-07-12gnu: lsof: Update to 4.91.Marius Bakke
* gnu/packages/lsof.scm (lsof): Update to 4.91.
2018-07-12gnu: xf86-input-libinput: Update to 0.28.0.Marius Bakke
* gnu/packages/xorg.scm (xf86-input-libinput): Update to 0.28.0.
2018-07-12gnu: ldb: Downgrade to 1.3.3.Marius Bakke
LDB 1.4 and above does not support Samba < 4.9; see <https://bugzilla.samba.org/show_bug.cgi?id=13519>. * gnu/packages/samba.scm (ldb): Downgrade to 1.3.3. [inputs]: Remove LMDB. [arguments]: Remove #:tests.
2018-07-12gnu: tdb: Update to 1.3.16.Marius Bakke
* gnu/packages/databases.scm (tdb): Update to 1.3.16.
2018-07-12gnu: tevent: Update to 0.9.37.Marius Bakke
* gnu/packages/samba.scm (tevent): Update to 0.9.37.
2018-07-12gnu: talloc: Update to 2.1.14.Marius Bakke
* gnu/packages/samba.scm (talloc): Update to 2.1.14.
2018-07-12gnu: python-pyyaml: Update to 3.13.Marius Bakke
* gnu/packages/python.scm (python-pyyaml): Update to 3.13.
2018-07-12gnu: appstream-glib: Update to 0.7.10.Marius Bakke
* gnu/packages/glib.scm (appstream-glib): Update to 0.7.10.
2018-07-12gnu: libzip: Update to 1.5.1.Marius Bakke
* gnu/packages/compression.scm (libzip): Update to 1.5.1. [build-system]: Switch to CMAKE-BUILD-SYSTEM.
2018-07-12gnu: rng-tools: Update to 6.3.Marius Bakke
* gnu/packages/linux.scm (rng-tools): Update to 6.3.
2018-07-12gnu: openh264: Update to 1.8.0.Marius Bakke
* gnu/packages/video.scm (openh264): Update to 1.8.0. [source](uri): Use release tarball.
2018-07-12gnu: xapian: Update to 1.4.6 [fixes CVE-2018-0499].Marius Bakke
* gnu/packages/search.scm (xapian, python-xapian-bindings): Update to 1.4.6.
2018-07-12gnu: GnuPG: Update to 2.2.9.Leo Famulari
* gnu/packages/gnupg.scm (gnupg): Update to 2.2.9.
2018-07-12import: hackage: Support "-any" and "-none" version comparison operators.Danny Milosavljevic
* guix/import/cabal.scm (make-cabal-parser): Modify. (is-any): New variable. (is-none): New variable. (lex-any): New procedure. (lex-none): New procedure. (lex-word): Modify. (eval-cabal): Modify.
2018-07-12import: hackage: Support "custom-setup" field.Danny Milosavljevic
Fixes <https://bugs.gnu.org/23961>. * guix/import/cabal.scm (make-cabal-parser): Modify. (is-custom-setup): New variable. (lex-custom-setup): New procedure. (is-id): Modify. (lex-version): Modify. (<cabal-custom-setup>): New record type. (eval-cabal): Modify. (dependencies): Add parameter.
2018-07-12gexp: Allow bytevector as content of `plain-file'.Jan Nieuwenhuizen
This allows for using a package source directly from git, doing something like (define (command->bytevector command) (let ((port (apply open-pipe* OPEN_READ command))) (let ((output (get-bytevector-all port))) (close-port port) output))) (define-public hello-git (package (name "hello") (version "git") (source (let* ((commit "stable-2.0") (content (command->bytevector `("git" "archive" "--format" "tar" "--prefix" ,(string-append commit "/") ,commit))) (file-name (string-append "hello-" commit))) (plain-file file-name content))) ... )) * guix/gexp.scm (<plain-file>): Also allow bytevector content. (plain-file-compiler): Handle bytevector content. * doc/guix.texi (G-Expressions): Describe plain-file now also taking bytevectors.
2018-07-12store: Add `binary-file'.Jan Nieuwenhuizen
* guix/store.scm (binary-file): New function. * doc/guix.texi (The Store Monad): Describe binary-file.
2018-07-11gnu: Add ghc-xdg-basedir.Danny Milosavljevic
* gnu/packages/haskell.scm (ghc-xdg-basedir): New variable.
2018-07-11gnu: Add ghc-regex-tdfa-text.Danny Milosavljevic
* gnu/packages/haskell.scm (ghc-regex-tdfa-text): New variable.
2018-07-11gnu: u-boot-tools: Simplify build.Danny Milosavljevic
* gnu/packages/bootloaders.scm (u-boot-tools)[arguments]<#:phases>[build]: Modify.
2018-07-11gnu: u-boot-tools: Install "sunxi-spl-image-builder".Danny Milosavljevic
* gnu/packages/bootloaders.scm (u-boot-tools)[arguments]<#:phases>[build]: Build sunxi-spl-image-builder. (u-boot-tools)[arguments]<#:phases>[install]: Install sunxi-spl-image-builder.
2018-07-11gnu: make-u-boot-package: Return #t from "install" phase.Danny Milosavljevic
* gnu/packages/bootloaders.scm (make-u-boot-package)[arguments]<#:phases> [install]: Return #t.
2018-07-11gnu: msmtp: Update to 1.6.8.Efraim Flashner
* gnu/packages/mail.scm (msmtp): Update to 1.6.8. [source]: Update to new source location. [home-page]: Update to new home-page.
2018-07-11gnu: btrfs-progs: Update home-page.Efraim Flashner
* gnu/packages/linux.scm (btrfs-progs)[home-page]: Update to redirected home-page.
2018-07-11gnu: Add emacs-fold-dwim.Ludovic Courtès
* gnu/packages/emacs.scm (emacs-fold-dwim): New variable.
2018-07-11gnu: Add emacs-recent-addresses.Ludovic Courtès
* gnu/packages/emacs.scm (emacs-recent-addresses): New variable.
2018-07-11gnu-maintenance: Get GNU metadata from rec files.Ludovic Courtès
Suggested by Mike Gerwitz <mtg@gnu.org>. * guix/gnu-maintenance.scm (%package-list-url): Use the .rec file. (%package-description-url): Likewise. (official-gnu-packages)[read-records]: Skip record descriptors. Rename fields to use underscores instead of hyphens.
2018-07-11gnu: gzochi: Update to 0.12.Julian Graham
* gnu/packages/game-development.scm (gzochi): Update to 0.12.
2018-07-11gnu: qsintilla: Update to 2.10.7.Efraim Flashner
* gnu/packages/qt.scm (qscintilla): Update to 2.10.7.
2018-07-11gnu: python-pyqt: Update to 5.11.2.Efraim Flashner
* gnu/packages/qt.scm (python-pyqt): Update to 5.11.2. [arguments]: Substitute INVOKE for SYSTEM*. (python2-pyqt)[inputs]: Add python2-enum34.
2018-07-11gnu: python-sip: Update to 4.19.11.Efraim Flashner
* gnu/packages/qt.scm (python-sip): Update to 4.19.11. [arguments]: Substitute INVOKE for SYSTEM*. Add flag to build private sip module PyQt5.sip.
2018-07-11gnu: qt: Update to 5.11.1.Efraim Flashner
* gnu/packages/qt.scm (qt): Update to 5.11.1. [source]: Update snippet. [inputs]: Remove sqlite. [arguments]: Don't use system sqlite.
2018-07-11gnu: python-pyqt: Remove qt-5.11 compat phase.Efraim Flashner
* gnu/packages/qt.scm (python-pyqt)[arguments]: Remove custom phase to fix compatibility with qt-5.11.
2018-07-11gnu: qt: Update to 5.11.1.Efraim Flashner
* gnu/packages/qt.scm (qtbase, qtsvg, qtimageformats, qtx11extras, qtxmlpatterns, qtdeclarative, qtconnectivity, qtwebsockets, qtsensors, qtmultimedia, qtwayland, qtserialport, qtserialbus, qtwebchannel, qtwebglplugin, qtwebview, qtlocation, qttools, qtscript, qtquickcontrols, qtquickcontrols2, qtgrapgicaleffects, qtgamepad, qtscxml, qtpurchasing, qtcanvas3d, qtcharts, qtdatavis3d, qtnetworkauth, qtremoteobjects, qtspeech): Update to 5.11.1. (qtwebglplugin)[arguments]: Add custom phase to disable network tests. [inputs]: Add qtdeclarative. (qtremoteobjects)[arguments]: Add another test to the skip list. (qtspeech)[arguments]: Disable tests.
2018-07-11gnu: owncloud-client: Update to 2.4.1.Efraim Flashner
* gnu/packages/sync.scm (owncloud-client): Update to 2.4.1. [phases]: Remove custom 'change-rpath-dirs phase. [arguments]: Disable building with qtwebkit. [inputs]: Remove inotify-tools, openssl, qtwebkit.
2018-07-11import: gem: Add recursive import.Oleg Pykhalov
* doc/guix.texi (Invoking guix import): Document gem recursive import. * guix/import/gem.scm (gem->guix-package): Return package and dependencies values. (gem-recursive-import): New procedure. * guix/scripts/import/gem.scm (show-help, %options): Add recursive option. (guix-import-gem): Use 'gem-recursive-import'. * tests/gem.scm (test-json): Rename to 'test-foo-json'. ("gem->guix-package"): Use 'test-foo-json'. (test-bar-json, test-bundler-json): New variables. ("gem-recursive-import"): New test.
2018-07-11build-system/haskell: Make phases fail on error.Danny Milosavljevic
* guix/build/haskell-build-system.scm (configure): Make it fail on error. (run-setuphs): Make it fail on error.
2018-07-11build: Add missing patches to the distribution.Ludovic Courtès
Reported by jonsger. * gnu/local.mk (dist_patch_DATA): Add perl-text-markdown-discount-unbundle.patch and racket-fix-xform-issue.patch.
2018-07-11ui: Fix typo.Ludovic Courtès
* guix/ui.scm (display-profile-content-diff): Fix typo in docstring.
2018-07-11profiles: Introduce 'profile-search-paths' and use it.Ludovic Courtès
* guix/profiles.scm (profile-search-paths): New procedure. * guix/scripts/environment.scm (evaluate-search-paths): Remove. (create-environment): Replace 'paths' with 'manifest'. Use 'profile-search-paths' instead of 'evaluate-search-paths'. (show-search-paths): Likewise. (launch-environment): Replace 'paths' with 'manifest'. Make 'pure?' a keyword parameter. (launch-environment/fork, launch-environment/container): Likewise. (guix-environment): Remove 'paths' variable. Adjust callers of the above procedures accordingly.
2018-07-11environment: Simplify code by using manifests internally.Ludovic Courtès
* guix/scripts/environment.scm (strip-input-name) (package+propagated-inputs, package-or-package+output?) (compact): Remove. (inputs->profile-derivation): Rename to... (manifest->derivation): ... this. Replace 'inputs' parameter with 'manifest'. (input->manifest-entry): New procedure. (package-environment-inputs): Rewrite to return a list of manifest entries. (options/resolve-packages): Rewrite to return a manifest. (guix-environment): Remove 'inputs'. Define 'paths' in terms of 'manifest-search-paths'.