jackhill/guix/guix.git
6 years agoRevert "derivations: 'derivation-hash' assumes inputs are coalesced."
Ludovic Courtès [Wed, 13 Dec 2017 14:13:07 +0000 (15:13 +0100)]
Revert "derivations: 'derivation-hash' assumes inputs are coalesced."

This reverts commit 1d008d9f8c44dfdb808235d451b72f255e72f103.
Reported by Rutger Helling <rhelling@mykolab.com>.
Fixes <https://bugs.gnu.org/29689>.

6 years agognu: polyml: Update to 5.7.1.
Tobias Geerinckx-Rice [Wed, 13 Dec 2017 13:18:51 +0000 (14:18 +0100)]
gnu: polyml: Update to 5.7.1.

* gnu/packages/sml.scm (polyml): Update to 5.7.1.

6 years agognu: guile-gdbm-ffi: Install documentation.
Tobias Geerinckx-Rice [Wed, 13 Dec 2017 05:23:51 +0000 (06:23 +0100)]
gnu: guile-gdbm-ffi: Install documentation.

* gnu/packages/guile.scm (guile-gdbm-ffi)[arguments]: Install README.md and
some examples.  Tidy up MKDIR-P calls.

6 years agognu: gtksourceview: Update to 3.24.6.
Tobias Geerinckx-Rice [Tue, 12 Dec 2017 23:23:29 +0000 (00:23 +0100)]
gnu: gtksourceview: Update to 3.24.6.

* gnu/packages/gtk.scm (gtksourceview): Update to 3.24.6

6 years agovm: Use qemu drive device parameter.
Mathieu Othacehe [Mon, 4 Dec 2017 17:04:13 +0000 (18:04 +0100)]
vm: Use qemu drive device parameter.

* gnu/build/vm.scm (load-in-linux-vm): Use device parameter to define drive
  device.

6 years agognu: cgit: Patch absolute file names.
Oleg Pykhalov [Tue, 12 Dec 2017 15:29:23 +0000 (18:29 +0300)]
gnu: cgit: Patch absolute file names.

* gnu/packages/version-control.scm (cgit): Patch absolute file names.

6 years agognu: Add krita.
Mark Meyer [Mon, 4 Dec 2017 23:52:42 +0000 (00:52 +0100)]
gnu: Add krita.

* gnu/packages/kde.scm (krita): New variable.

Signed-off-by: Kei Kebreau <kkebreau@posteo.net>
6 years agodoc: Fix typo.
Tobias Geerinckx-Rice [Tue, 12 Dec 2017 21:35:37 +0000 (22:35 +0100)]
doc: Fix typo.

* doc/guix.texi: Add missing ‘@*’ to copyright headers.

6 years agognu: xfig: Update to 3.2.6a.
Tobias Geerinckx-Rice [Tue, 12 Dec 2017 01:55:30 +0000 (02:55 +0100)]
gnu: xfig: Update to 3.2.6a.

* gnu/packages/xfig.scm (xfig): Update to 3.2.6a.
[native-inputs]: Remove groff, imake, makedepend.  Add desktop-file-utils.
[inputs]: Remove libxmu and zlib.
[arguments]: Remove custom phases.  Add a ‘strip-bogus-exec-prefix’ phase.
Run the rudimentary test suite.

6 years agognu: services: Add php-fpm.
nee [Mon, 9 Oct 2017 21:06:05 +0000 (23:06 +0200)]
gnu: services: Add php-fpm.

* gnu/services/web.scm (<php-fpm-configuration>,
  <php-fpm-process-manager-configuration>): New record types.
  (php-fpm-configuration?,
   php-fpm-process-manager-configuration?,
   php-fpm-service-type,
   nginx-php-location): New procedures.
* doc/guix.texi (Web-Services): Document php-fpm service.
* gnu/tests/web.scm: Add php-fpm system test.

Signed-off-by: Christopher Baines <mail@cbaines.net>
6 years agognu: meson: Update to 0.44.0.
Tobias Geerinckx-Rice [Sun, 10 Dec 2017 21:30:41 +0000 (22:30 +0100)]
gnu: meson: Update to 0.44.0.

* gnu/packages/build-tools.scm (meson): Update to 0.44.0

6 years agognu: miniupnpc: Update to 2.0.20171212.
Tobias Geerinckx-Rice [Tue, 12 Dec 2017 16:47:34 +0000 (17:47 +0100)]
gnu: miniupnpc: Update to 2.0.20171212.

* gnu/packages/upnp.scm (miniupnpc): Update to 2.0.20171212.

6 years agognu: global: Update to 6.6.
Efraim Flashner [Tue, 12 Dec 2017 18:47:01 +0000 (20:47 +0200)]
gnu: global: Update to 6.6.

* gnu/packages/code.scm (global): Update to 6.6.

6 years agoderivations: 'derivation-hash' assumes inputs are coalesced.
Ludovic Courtès [Tue, 12 Dec 2017 17:09:53 +0000 (18:09 +0100)]
derivations: 'derivation-hash' assumes inputs are coalesced.

* guix/derivations.scm (derivation-hash): Remove
redundant 'coalesce-duplicate-inputs' call.

6 years agoderivations: Use 'define-immutable-record-type' as appropriate.
Ludovic Courtès [Tue, 12 Dec 2017 14:20:47 +0000 (15:20 +0100)]
derivations: Use 'define-immutable-record-type' as appropriate.

This is a followup to dc673fa1131fb5d1e5ca29acb4a693cfb906986f.

* guix/derivations.scm (<derivation-output>, <derivation-input>): Use
'define-immutable-record-type'.

6 years agomemoization: Profiling support keeps track of lookups and hits.
Ludovic Courtès [Tue, 12 Dec 2017 13:52:17 +0000 (14:52 +0100)]
memoization: Profiling support keeps track of lookups and hits.

* guix/memoization.scm (<cache>): New record type.
(define-lookup-procedure, define-update-procedure): New macros.
(cache-ref, cacheq-ref, cache-set!, cacheq-set!): New procedures.
(cached/mv, cachedq/mv, cached, cachedq): Use them instead of 'hash-ref'
and 'hash-set!'.
(%make-hash-table*): When 'profiled?' returns true, return a <cache>
object.
(define-cache-procedure): Adjust to show cache lookups and hits.

6 years agomemoization: Add profiling support.
Ludovic Courtès [Mon, 11 Dec 2017 20:43:54 +0000 (21:43 +0100)]
memoization: Add profiling support.

* guix/memoization.scm (%memoization-tables): New variable.
(%make-hash-table*, show-memoization-tables): New procedures.
(make-hash-table*): New macro.
Add top-level call to 'register-profiling-hook!'.
(memoize): Adjust to pass the resulting procedure to
'make-hash-table*'.
(%mlambda): Likewise.

6 years agoAdd (guix profiling).
Ludovic Courtès [Wed, 28 Jun 2017 08:13:45 +0000 (10:13 +0200)]
Add (guix profiling).

* guix/profiling.scm: New file.
* Makefile.am (MODULES): Add it.
* guix/store.scm (record-operation): Use 'profiled?' and
'register-profiling-hook!'.

6 years agognu: xfig, transfig: Update home pages.
Tobias Geerinckx-Rice [Tue, 12 Dec 2017 02:22:55 +0000 (03:22 +0100)]
gnu: xfig, transfig: Update home pages.

* gnu/packages/xfig.scm (xfig, transfig)[home-page]: Use SourceForge.net.

6 years agognu: Add uthash.
Tobias Geerinckx-Rice [Fri, 8 Dec 2017 18:45:40 +0000 (19:45 +0100)]
gnu: Add uthash.

* gnu/packages/datastructures.scm (uthash): New public variable.

6 years agognu: Add fbcat.
Tobias Geerinckx-Rice [Sat, 9 Dec 2017 21:16:08 +0000 (22:16 +0100)]
gnu: Add fbcat.

* gnu/packages/linux.scm (fbcat): New public variable.

6 years agognu: Add snapscreenshot.
Tobias Geerinckx-Rice [Sat, 9 Dec 2017 21:01:11 +0000 (22:01 +0100)]
gnu: Add snapscreenshot.

* gnu/packages/linux.scm (snapscreenshot): New public variable.

6 years agognu: linux-libre: Update to 4.14.5.
Mark H Weaver [Tue, 12 Dec 2017 00:22:47 +0000 (19:22 -0500)]
gnu: linux-libre: Update to 4.14.5.

* gnu/packages/linux.scm (%linux-libre-version): Update to 4.14.5.
(%linux-libre-hash): Update hash.

6 years agognu: linux-libre@4.9: Update to 4.9.68.
Mark H Weaver [Tue, 12 Dec 2017 00:22:12 +0000 (19:22 -0500)]
gnu: linux-libre@4.9: Update to 4.9.68.

* gnu/packages/linux.scm (linux-libre-4.9): Update to 4.9.68.

6 years agognu: linux-libre@4.4: Update to 4.4.105.
Mark H Weaver [Tue, 12 Dec 2017 00:21:35 +0000 (19:21 -0500)]
gnu: linux-libre@4.4: Update to 4.4.105.

* gnu/packages/linux.scm (linux-libre-4.4): Update to 4.4.105.

6 years agognu: whois: Update to 5.2.19.
Marius Bakke [Mon, 11 Dec 2017 23:58:05 +0000 (00:58 +0100)]
gnu: whois: Update to 5.2.19.

* gnu/packages/networking.scm (whois): Update to 5.2.19.
[arguments]: Don't set HAVE_LIBIDN in 'setenv' phase; this is now autodetected.
[native-inputs]: Add PKG-CONFIG.

6 years agognu: Remove ffmpeg@3.3.
Marius Bakke [Tue, 12 Dec 2017 00:03:06 +0000 (01:03 +0100)]
gnu: Remove ffmpeg@3.3.

The reason this was required was because of a regression in ffmpeg 3.4; see
<https://trac.ffmpeg.org/ticket/6775>.

* gnu/packages/gstreamer.scm (gst-libav)[inputs]: Change FFMPEG-3.3 to FFMPEG.
* gnu/packages/video.scm (ffmpeg-3.3): Remove variable.

6 years agognu: ffmpeg: Update to 3.4.1.
Marius Bakke [Mon, 11 Dec 2017 23:50:58 +0000 (00:50 +0100)]
gnu: ffmpeg: Update to 3.4.1.

* gnu/packages/video.scm (ffmpeg): Update to 3.4.1.

6 years agognu: Add cli-visualizer.
Oleg Pykhalov [Sat, 2 Dec 2017 19:03:13 +0000 (22:03 +0300)]
gnu: Add cli-visualizer.

* gnu/packages/audio.scm (cli-visualizer): New variable.

6 years agoservices: web: Switch nginx related functions to use match-record.
Christopher Baines [Sun, 3 Dec 2017 19:36:40 +0000 (19:36 +0000)]
services: web: Switch nginx related functions to use match-record.

As this is less prone to mistakes than match.

* gnu/services/web.scm (default-nginx-config, nginx-activation,
  nginx-shepherd-service): Switch from using match-lambda to match-record.

6 years agoservices: web: Add support for configuring the nginx server names hash.
Christopher Baines [Sat, 25 Nov 2017 11:57:37 +0000 (11:57 +0000)]
services: web: Add support for configuring the nginx server names hash.

The nginx service can fail to start if the server names hash bucket size is
too small, which can happen on some systems, and when using QEMU, depending on
the CPU.

* gnu/services/web.scm (<nginx-configuration>): Add
  server-names-hash-bucket-size and server-names-hash-bucket-max-size.
  (default-nginx-config): Add support for the new hash bucket size parameters.
  (nginx-service, nginx-activation): Pass the new hash bucket size parameters
  through to the default-nginx-config procedure.
* doc/guix.texi (Web Services): Document the new hash bucket size parameters.

6 years agoservices: web: Remove default certificate and key files for nginx.
Christopher Baines [Sat, 9 Dec 2017 09:24:07 +0000 (09:24 +0000)]
services: web: Remove default certificate and key files for nginx.

If nginx is configured with a ssl-certificate file, and ssl-certificate-key,
it will fail to start unless these exist. To avoid this happening, change the
default to #f.

* gnu/services/web.scm (<nginx-server-configuration>)
  [ssl-certificate,ssl-certificate-key]: Set the defaults to #f.
* gnu/tests/web.scm (%nginx-servers): Remove redundant
  nginx-server-configuration fields.
* doc/guix.texi (Web Services): Update examples and documentation.

6 years agoweb: Don't error about missing ssl related files.
Christopher Baines [Sat, 25 Nov 2017 09:10:48 +0000 (09:10 +0000)]
web: Don't error about missing ssl related files.

Erroring here prevents doing things like building a system using nginx on a
different machine from where it's intended to be deployed, or creating
containers and VMs that use the ssl-certificate parts of the nginx
configuration, without also getting these files to exist.

* gnu/services/web.scm (emit-nginx-server-config): Don't error on missing ssl
  related files.

6 years agognu: cargo: Add file-name field to input sources.
Efraim Flashner [Mon, 11 Dec 2017 19:08:45 +0000 (21:08 +0200)]
gnu: cargo: Add file-name field to input sources.

* gnu/packages/rust.scm (cargo)[inputs]: Add 'file-name' field to all
source inputs.

6 years agognu: rust: Add support for all platforms.
Efraim Flashner [Mon, 11 Dec 2017 18:28:23 +0000 (20:28 +0200)]
gnu: rust: Add support for all platforms.

* gnu/packages/rust.scm (%rust-bootstrap-binaries): Add entries for all
platforms supported by Guix.
(rustc-bootstrap, cargo-bootstrap)[supported-systems]: Remove field.

6 years agognu: %rust-bootstrap-binaries: Add missing catch-all entry.
Efraim Flashner [Mon, 11 Dec 2017 18:18:02 +0000 (20:18 +0200)]
gnu: %rust-bootstrap-binaries: Add missing catch-all entry.

* gnu/packages/rust.scm (%rust-bootstrap-binaries): Add missing
catch-all entry to prevent various errors in Guix.

6 years agognu: Switch to using the version-major procedure.
Christopher Baines [Fri, 1 Dec 2017 07:58:24 +0000 (07:58 +0000)]
gnu: Switch to using the version-major procedure.

* gnu/packages/audio.scm (ardour)[arguments]: Switch to using version-major.
  (hmmer)[source]: Switch to using version-major.
  (pidgin)[native-search-paths]: Switch to using version-major.
  (r-minimal)[source]: Switch to using version-major.

6 years agoguix: utils: Add version-major.
nee [Mon, 9 Oct 2017 21:02:05 +0000 (23:02 +0200)]
guix: utils: Add version-major.

* guix/utils.scm (version-major): New procedure.

6 years agognu: Add afew.
Arun Isaac [Sun, 10 Dec 2017 17:24:06 +0000 (22:54 +0530)]
gnu: Add afew.

* gnu/packages/mail.scm (afew): New variable.

6 years agognu: Add emacs-diff-hl.
Maxim Cournoyer [Sun, 10 Dec 2017 17:50:26 +0000 (12:50 -0500)]
gnu: Add emacs-diff-hl.

* gnu/packages/emacs.scm (emacs-diff-hl): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
6 years agognu: skalibs: Fix non-reproducibility issue.
Z. Ren [Sun, 10 Dec 2017 14:23:32 +0000 (22:23 +0800)]
gnu: skalibs: Fix non-reproducibility issue.

* gnu/packages/skarnet.scm (skalibs)[arguments]: In 'reproducible'
phase, insert a 'sort' call in "Makefile".

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
6 years agognu: Add emacs-string-inflection.
Maxim Cournoyer [Sun, 10 Dec 2017 05:05:31 +0000 (00:05 -0500)]
gnu: Add emacs-string-inflection.

* gnu/packages/emacs.scm (emacs-string-inflection): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
6 years agognu: Add emacs-grep-a-lot.
Maxim Cournoyer [Sun, 10 Dec 2017 04:08:12 +0000 (23:08 -0500)]
gnu: Add emacs-grep-a-lot.

* gnu/packages/emacs.scm (emacs-grep-a-lot): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
6 years agognu: Add emacs-csv-mode.
Maxim Cournoyer [Sun, 10 Dec 2017 03:39:00 +0000 (22:39 -0500)]
gnu: Add emacs-csv-mode.

* gnu/packages/emacs.scm (emacs-csv-mode): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
6 years agognu: Add emacs-ws-butler.
Maxim Cournoyer [Sat, 9 Dec 2017 23:48:11 +0000 (18:48 -0500)]
gnu: Add emacs-ws-butler.

* gnu/packages/emacs.scm (emacs-ws-butler): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
6 years agognu: Add i3lock-fancy.
ng0 [Tue, 24 Jan 2017 15:57:13 +0000 (15:57 +0000)]
gnu: Add i3lock-fancy.

* gnu/packages/wm.scm (i3lock-fancy): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
6 years agognu: Add i3lock-color.
ng0 [Tue, 24 Jan 2017 13:03:42 +0000 (13:03 +0000)]
gnu: Add i3lock-color.

* gnu/packages/wm.scm (i3lock-color): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
6 years agognu: Add gource.
Oleg Pykhalov [Fri, 1 Dec 2017 15:21:00 +0000 (18:21 +0300)]
gnu: Add gource.

* gnu/packages/version-control.scm (gource): New variable.

6 years agognu: darktable: Add configure option
Mark Meyer [Sun, 10 Dec 2017 22:05:33 +0000 (23:05 +0100)]
gnu: darktable: Add configure option

6 years agoRevert "gnu: libinput: Update to 1.9.3."
Efraim Flashner [Mon, 11 Dec 2017 09:40:52 +0000 (11:40 +0200)]
Revert "gnu: libinput: Update to 1.9.3."

This reverts commit 5f5083749c1ff2731e84fa7d8eea182ad45c18a5.

Ninja FTBFS on armhf-linux and thus cannot build libinput.

6 years agognu: jemalloc: Fix tests for aarch64.
Eric Bavier [Thu, 7 Dec 2017 18:09:09 +0000 (12:09 -0600)]
gnu: jemalloc: Fix tests for aarch64.

* gnu/packages/patches/jemalloc-arm-address-bits.patch: New patch.
* gnu/packages/jemalloc.scm (jemalloc)[source]: Use it.
* gnu/local.mk (dist_patch_DATA): Add it.

6 years agoutils: Fix cond-expand for Guile 2.0.
Eric Bavier [Mon, 4 Dec 2017 16:33:31 +0000 (10:33 -0600)]
utils: Fix cond-expand for Guile 2.0.

* guix/build/download.scm (tls-wrap): Use 'guile-2.2' feature instead.

6 years agognu: rust: Update rust to 1.22.1 and cargo to 1.23.0.
Nikolai Merinov [Sun, 10 Dec 2017 21:14:01 +0000 (02:14 +0500)]
gnu: rust: Update rust to 1.22.1 and cargo to 1.23.0.

* gnu/packages/rust.scm (%rust-bootstrap-binaries-version): Update version.
(%rust-bootstrap-binaries): Use x86_64 rust bootstrap package for x86_64 build.
(%cargo-reference-project-file): Use specific file as "project" file when
patching rust vendored sources.
(%cargo-reference-hash): sha256 sum for %cargo-reference-project-file.
(rustc-bootstrap): Use bootstrap package with host architecture.
(cargo-bootstrap): Use bootstrap package with host architecture.
(rustc): Add new test dependency, fix build issues, use "./x.py" script for
build instead of "./configure".
(cargo): Update dependencies, patch shebangs for vendored sources
* gnu/packages/jemalloc.scm: Add jemalloc-4.5.0 release.

Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
6 years agoui: Display hints to resolve profile collisions.
Ludovic Courtès [Sun, 10 Dec 2017 22:41:21 +0000 (23:41 +0100)]
ui: Display hints to resolve profile collisions.

Fixes <https://bugs.gnu.org/29255>.
Reported by Ben Sturmfels <ben@sturm.com.au>.

* guix/ui.scm (display-collision-resolution-hint): New procedure.
(call-with-error-handling): Call it upon '&profile-collistion-error'.

6 years agobuild-system/asdf: Use 'mlambda'.
Ludovic Courtès [Sun, 10 Dec 2017 22:39:01 +0000 (23:39 +0100)]
build-system/asdf: Use 'mlambda'.

* guix/build-system/asdf.scm (package-with-build-system): Use 'mlambda'
instead of 'memoize'.

6 years agognu: youtube-dl: Update to 2017.12.10.
Tobias Geerinckx-Rice [Sun, 10 Dec 2017 21:19:05 +0000 (22:19 +0100)]
gnu: youtube-dl: Update to 2017.12.10.

* gnu/packages/video.scm (youtube-dl): Update to 2017.12.10.

6 years agognu: t1lib: Change how patched CVEs are listed.
Efraim Flashner [Thu, 30 Nov 2017 21:46:55 +0000 (23:46 +0200)]
gnu: t1lib: Change how patched CVEs are listed.

* gnu/packages/fontutils.scm (t1lib)[source]: Change patch name.
[properties]: New field, register patched CVEs.
* gnu/packages/patches/CVE-2011-1552+CVE-2011-1553+CVE-2011-1554.patch:
Rename to CVE-2011-1552+.patch.
* gnu/local.mk (dist_patch_DATA): Change patch name.

6 years agolint: 'check-vulnerabilities' also checks package properties.
Efraim Flashner [Thu, 30 Nov 2017 21:41:29 +0000 (23:41 +0200)]
lint: 'check-vulnerabilities' also checks package properties.

* guix/scripts/lint.scm (check-vulnerabilities): Also check for CVEs
listed as mitigated in the package properties.
* tests/lint.scm ("cve: known safe from vulnerability"): New test.

6 years agognu: emacs-smartparens: Update to 1.11.0.
Alex Kost [Sat, 9 Dec 2017 17:08:50 +0000 (20:08 +0300)]
gnu: emacs-smartparens: Update to 1.11.0.

* gnu/packages/emacs.scm (emacs-smartparens): Update to 1.11.0.

6 years agognu: git-modes: Rename to 'emacs-git-modes'.
Alex Kost [Tue, 5 Dec 2017 20:27:23 +0000 (23:27 +0300)]
gnu: git-modes: Rename to 'emacs-git-modes'.

* gnu/packages/emacs.scm (git-modes)[name]: Change to "emacs-git-modes".
(git-modes/old-name): New variable.

6 years agognu: graphicsmagick: Update to 1.3.27.
Marius Bakke [Sun, 10 Dec 2017 18:15:44 +0000 (19:15 +0100)]
gnu: graphicsmagick: Update to 1.3.27.

* gnu/packages/patches/graphicsmagick-CVE-2017-11403+CVE-2017-14103.patch,
gnu/packages/patches/graphicsmagick-CVE-2017-12935.patch,
gnu/packages/patches/graphicsmagick-CVE-2017-12936.patch,
gnu/packages/patches/graphicsmagick-CVE-2017-12937.patch,
gnu/packages/patches/graphicsmagick-CVE-2017-13775.patch,
gnu/packages/patches/graphicsmagick-CVE-2017-13776+CVE-2017-13777.patch,
gnu/packages/patches/graphicsmagick-CVE-2017-14042.patch,
gnu/packages/patches/graphicsmagick-CVE-2017-14165.patch,
gnu/packages/patches/graphicsmagick-CVE-2017-14649.patch: Delete files.
* gnu/local.mk (dist_patch_DATA): Remove them.
* gnu/packages/imagemagick.scm (graphicsmagick): Update to 1.3.27.
[source](patches): Remove.

6 years agognu: gstreamer: Update to 1.12.4.
Marius Bakke [Sun, 10 Dec 2017 15:15:23 +0000 (16:15 +0100)]
gnu: gstreamer: Update to 1.12.4.

* gnu/packages/gstreamer.scm (gstreamer, gst-plugins-base, gst-plugins-good,
gst-plugins-ugly, gst-libav, python-gst): Update to 1.12.4.
(gst-plugins-bad): Likewise.
[arguments]: Remove #:phases.

6 years agognu: notmuch: Update to 0.25.3.
Marius Bakke [Sun, 10 Dec 2017 14:48:47 +0000 (15:48 +0100)]
gnu: notmuch: Update to 0.25.3.

* gnu/packages/mail.scm (notmuch): Update to 0.25.3.

6 years agognu: xapian: Update to 1.4.5.
Marius Bakke [Sun, 10 Dec 2017 14:48:24 +0000 (15:48 +0100)]
gnu: xapian: Update to 1.4.5.

* gnu/packages/search.scm (xapian, python-xapian-bindings): Update to 1.4.5.

6 years agognu: picprog: Fix non-Intel support.
Efraim Flashner [Sun, 10 Dec 2017 10:38:26 +0000 (12:38 +0200)]
gnu: picprog: Fix non-Intel support.

* gnu/packages/patches/picprog-non-intel-support.patch: New file.
* gnu/local.mk (dist_patch_DATA): Register it.
* gnu/packages/embedded.scm (picprog)[source]: Add patch.
[arguments]: Skip building the 'testport' binary.

6 years agognu: Add picprog.
Danny Milosavljevic [Sun, 10 Dec 2017 08:50:21 +0000 (09:50 +0100)]
gnu: Add picprog.

* gnu/packages/embedded.scm (picprog): New variable.

6 years agognu: perl-sql-abstract: Update source uri.
Efraim Flashner [Sun, 10 Dec 2017 09:35:08 +0000 (11:35 +0200)]
gnu: perl-sql-abstract: Update source uri.

* gnu/packages/databases.scm (perl-sql-abstract)[source]: Update source uri.

6 years agognu: glpk: Update to 4.64.
Efraim Flashner [Sat, 9 Dec 2017 21:04:18 +0000 (23:04 +0200)]
gnu: glpk: Update to 4.64.

* gnu/packages/maths.scm (glpk): Update to 4.64.

6 years agognu: aspell-dict-en: Update to 2017.08.24-0.
Efraim Flashner [Sat, 9 Dec 2017 20:56:59 +0000 (22:56 +0200)]
gnu: aspell-dict-en: Update to 2017.08.24-0.

* gnu/packages/aspell.scm (aspell-dict-en): Update to 2017.08.24-0.

6 years agognu: aspell.scm: Alphabetize dictionaries.
Efraim Flashner [Sat, 9 Dec 2017 19:42:47 +0000 (21:42 +0200)]
gnu: aspell.scm: Alphabetize dictionaries.

* gnu/packages/aspell.scm: Reorder the dictionaries alphabetically.

6 years agognu: gnurl: Use new download URL.
ng0 [Sat, 9 Dec 2017 16:53:50 +0000 (16:53 +0000)]
gnu: gnurl: Use new download URL.

* gnu/packages/gnunet.scm (gnurl)[source]: Use mirror://gnu.

Signed-off-by: Leo Famulari <leo@famulari.name>
6 years agognu: neomutt: Update to 20171208.
ng0 [Sat, 9 Dec 2017 12:24:02 +0000 (12:24 +0000)]
gnu: neomutt: Update to 20171208.

* gnu/packages/mail.scm (neomutt): Update to 20171208.

Signed-off-by: Leo Famulari <leo@famulari.name>
6 years agognu: blists: Update to 2.0.
ng0 [Sat, 9 Dec 2017 12:08:59 +0000 (12:08 +0000)]
gnu: blists: Update to 2.0.

* gnu/packages/mail.scm (blists): Update to 2.0.

Signed-off-by: Leo Famulari <leo@famulari.name>
6 years agognu: Add emacs-robe.
Christopher Baines [Wed, 18 Oct 2017 06:20:03 +0000 (07:20 +0100)]
gnu: Add emacs-robe.

* gnu/packages/emacs.scm (emacs-robe): New variable.

6 years agognu: chez-scheme: Update to 9.5.
Tobias Geerinckx-Rice [Sat, 9 Dec 2017 03:35:58 +0000 (04:35 +0100)]
gnu: chez-scheme: Update to 9.5.

* gnu/packages/chez.scm (chez-scheme): Update to 9.5.
[arguments]: Add ‘patch-broken-documentation’ phase.

6 years agognu: bedtools-2.18: Fix build.
Ricardo Wurmus [Sat, 9 Dec 2017 10:26:07 +0000 (11:26 +0100)]
gnu: bedtools-2.18: Fix build.

* gnu/packages/bioinformatics.scm (bedtools-2.18)[arguments]: Restore custom
install phase.

Reported by Mark H Weaver <mhw@netris.org>.

6 years agognu: icecat: Fix CVE-2017-7843.
Mark H Weaver [Sat, 9 Dec 2017 08:46:14 +0000 (03:46 -0500)]
gnu: icecat: Fix CVE-2017-7843.

* gnu/packages/gnuzilla.scm (icecat)[source]: Add upstream fix for
CVE-2017-7843.

6 years agognu: linux-libre@4.1: Update to 4.1.47.
Mark H Weaver [Sat, 9 Dec 2017 08:01:53 +0000 (03:01 -0500)]
gnu: linux-libre@4.1: Update to 4.1.47.

* gnu/packages/linux.scm (linux-libre-4.1): Update to 4.1.47.

6 years agognu: fvwm: Update to 2.6.7.
ng0 [Wed, 6 Sep 2017 14:20:58 +0000 (14:20 +0000)]
gnu: fvwm: Update to 2.6.7.

* gnu/packages/fvwm.scm (fvwm): Update to 2.6.7.

Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
6 years agognu: libmicrohttpd: Update to 0.9.58.
Tobias Geerinckx-Rice [Fri, 8 Dec 2017 22:23:35 +0000 (23:23 +0100)]
gnu: libmicrohttpd: Update to 0.9.58.

* gnu/packages/gnunet.scm (libmicrohttpd): Update to 0.9.58.

6 years agodoc: Fix typo.
Tobias Geerinckx-Rice [Wed, 6 Dec 2017 18:00:30 +0000 (19:00 +0100)]
doc: Fix typo.

* doc/guix.texi (Package Management): Fix typo.

6 years agognu: wine64: Install libraries to /lib.
Rutger Helling [Thu, 7 Dec 2017 09:06:38 +0000 (10:06 +0100)]
gnu: wine64: Install libraries to /lib.

* gnu/packages/wine.scm (wine64)[arguments]: Remove inherited #:make-flags and
add new #:make-flags argument. #:configure-flags: Change LDFLAGS from /lib64
to /lib.

6 years agognu: wine: Add more inputs.
Rutger Helling [Thu, 7 Dec 2017 09:05:31 +0000 (10:05 +0100)]
gnu: wine: Add more inputs.

* gnu/packages/wine.scm (wine)[inputs]: Add eudev, gst-plugins-base, libpcap
and v4l-utils.

6 years agognu: Add qmpbackup.
Rutger Helling [Tue, 5 Dec 2017 07:19:21 +0000 (08:19 +0100)]
gnu: Add qmpbackup.

* gnu/packages/virtualization.scm (qmpbackup): New variable.

Signed-off-by: Leo Famulari <leo@famulari.name>
6 years agognu: openmw: Update to 0.43.0.
Rutger Helling [Tue, 5 Dec 2017 07:07:21 +0000 (08:07 +0100)]
gnu: openmw: Update to 0.43.0.

* gnu/packages/game-development.scm (openmw): Update to 0.43.0.

6 years agognu: Add virtualgl.
Rutger Helling [Fri, 8 Dec 2017 10:33:54 +0000 (11:33 +0100)]
gnu: Add virtualgl.

* gnu/packages/gl.scm (virtualgl): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
6 years agolicenses: Add wxWindows 3.1 license.
Rutger Helling [Fri, 8 Dec 2017 10:31:57 +0000 (11:31 +0100)]
licenses: Add wxWindows 3.1 license.

* guix/licenses.scm (wxwindows3.1+): New variable.

Co-authored-by: Ludovic Courtès <ludo@gnu.org>
6 years agognu: eolie: Update to 0.9.15.
Ricardo Wurmus [Fri, 8 Dec 2017 13:48:07 +0000 (14:48 +0100)]
gnu: eolie: Update to 0.9.15.

* gnu/packages/gnome.scm (eolie): Update to 0.9.15.

6 years agognu: keepassxc: Always install libraries to /lib.
Rutger Helling [Thu, 7 Dec 2017 08:21:22 +0000 (09:21 +0100)]
gnu: keepassxc: Always install libraries to /lib.

* gnu/packages/password-utils.scm (keepassxc)[arguments]: Add #:configure-flags
argument to force installing libraries to /lib.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
6 years agognu: openrct2: Always install libraries to /lib.
Rutger Helling [Thu, 7 Dec 2017 07:55:52 +0000 (08:55 +0100)]
gnu: openrct2: Always install libraries to /lib.

* gnu/packages/games.scm (openrct2)[arguments]: Add #:configure-flags argument
to force installing libraries to /lib.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
6 years agognu: emacs-exwm: Update to 0.16.
Feng Shu [Thu, 7 Dec 2017 12:56:56 +0000 (20:56 +0800)]
gnu: emacs-exwm: Update to 0.16.

* gnu/packages/emacs.scm (emacs-exwm): Update to 0.16.

Signed-off-by: Arun Isaac <arunisaac@systemreboot.net>
6 years agognu: libinput: Update to 1.9.3.
Efraim Flashner [Fri, 8 Dec 2017 07:25:40 +0000 (09:25 +0200)]
gnu: libinput: Update to 1.9.3.

* gnu/packages/freedesktop.scm (libinput): Update to 1.9.3.
[build-system]: Switch to meson-build-system.
[arguments]: Disable documentation.
[native-inputs]: Add check and valgrind for tests.
(libinput-minimal)[native-inputs]: Add check, valgrind.
[arguments]: Disable libwacom, documentation and debug-gui.

6 years agognu: xf86-input-wacom: Update to 0.35.0.
Efraim Flashner [Fri, 8 Dec 2017 07:12:04 +0000 (09:12 +0200)]
gnu: xf86-input-wacom: Update to 0.35.0.

* gnu/packages/xdisorg.scm (xf86-input-wacom): Update to 0.35.0.

6 years agognu: libwacom: Update to 0.26.
Efraim Flashner [Fri, 8 Dec 2017 07:11:27 +0000 (09:11 +0200)]
gnu: libwacom: Update to 0.26.

* gnu/packages/xdisorg.scm (libwacom): Update to 0.26.

6 years agognu: mpd: Update to 0.20.12.
Leo Famulari [Fri, 8 Dec 2017 01:42:24 +0000 (20:42 -0500)]
gnu: mpd: Update to 0.20.12.

* gnu/packages/mpd.scm (mpd): Update to 0.20.12.

6 years agoscripts: All commands enable build hooks by default.
Ludovic Courtès [Thu, 7 Dec 2017 21:49:08 +0000 (22:49 +0100)]
scripts: All commands enable build hooks by default.

* guix/scripts/archive.scm (%default-options): Add 'build-hook?'.
* guix/scripts/copy.scm (%default-options): Likewise.
* guix/scripts/environment.scm (%default-options): Likewise.
* guix/scripts/pack.scm (%default-options): Likewise.
* guix/scripts/package.scm (%default-options): Likewise.
* guix/scripts/pull.scm (%default-options): Likewise.

6 years agognu: certbot: Update to 0.20.0.
Marius Bakke [Thu, 7 Dec 2017 16:08:56 +0000 (17:08 +0100)]
gnu: certbot: Update to 0.20.0.

* gnu/packages/tls.scm (python-acme, certbot): Update to 0.20.0.

6 years agognu: sddm: Remove obsolete workaround.
Marius Bakke [Wed, 6 Dec 2017 01:07:56 +0000 (02:07 +0100)]
gnu: sddm: Remove obsolete workaround.

* gnu/packages/display-managers.scm (sddm)[arguments]: Remove obsolete
'fix-qml-include' phase.

6 years agognu: re2: Update to 2017-12-01.
Marius Bakke [Thu, 7 Dec 2017 15:06:48 +0000 (16:06 +0100)]
gnu: re2: Update to 2017-12-01.

* gnu/packages/regex.scm (re2): Update to 2017-12-01.

6 years agognu: libraw: Update to 0.18.6.
Marius Bakke [Thu, 7 Dec 2017 14:59:12 +0000 (15:59 +0100)]
gnu: libraw: Update to 0.18.6.

* gnu/packages/photo.scm (libraw): Update to 0.18.6.