jackhill/guix/guix.git
7 years agognu: keyutils: Fix typo in synopsis.
Tobias Geerinckx-Rice [Mon, 29 Aug 2016 20:01:59 +0000 (22:01 +0200)]
gnu: keyutils: Fix typo in synopsis.

* gnu/packages/crypto.scm (keyutils)[synopsis]: Fix typo.

7 years agognu: hplip: Update to 3.16.8.
Tobias Geerinckx-Rice [Mon, 29 Aug 2016 09:47:04 +0000 (11:47 +0200)]
gnu: hplip: Update to 3.16.8.

* gnu/packages/cups.scm (hplip): Update 3.16.8.

7 years agognu: ffmpeg: Update to 3.1.3.
Efraim Flashner [Sun, 28 Aug 2016 19:16:04 +0000 (22:16 +0300)]
gnu: ffmpeg: Update to 3.1.3.

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

7 years agoguix: lint: Check descriptions for trademark signs.
Eric Bavier [Tue, 23 Aug 2016 07:08:02 +0000 (02:08 -0500)]
guix: lint: Check descriptions for trademark signs.

* guix/scripts/lint.scm (check-description-style): Emit a warning if
trademark signs found in description.
* tests/lint.scm (description: may not contain trademark signs): Add
test.

7 years agotests: Make sure /var/guix/gcroots/profiles is a valid symlink.
Ludovic Courtès [Sun, 28 Aug 2016 21:48:14 +0000 (23:48 +0200)]
tests: Make sure /var/guix/gcroots/profiles is a valid symlink.

Reported by csanchezdll@gmail.com (Carlos Sánchez de La Lama)
at <https://lists.gnu.org/archive/html/guix-devel/2016-08/msg01641.html>.

* gnu/build/install.scm (directives): Add /var/guix/gcroots/profiles
symlink.
* gnu/tests/base.scm (run-basic-test)["/var/guix/gcroots/profiles is a
valid symlink"]: New test.

7 years agotests: Make sure /run/current-system is a GC root.
Ludovic Courtès [Sun, 28 Aug 2016 21:15:27 +0000 (23:15 +0200)]
tests: Make sure /run/current-system is a GC root.

* gnu/tests/base.scm (run-basic-test)["/run/current-system is a GC
root"]: New test.

7 years agognu: libmicrohttpd: Update to 0.9.51.
ng0 [Sat, 27 Aug 2016 20:32:25 +0000 (20:32 +0000)]
gnu: libmicrohttpd: Update to 0.9.51.

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

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
7 years agotests: Fix 'guix environment --container' test in the presence of tmpfs.
Ludovic Courtès [Sun, 28 Aug 2016 14:02:41 +0000 (16:02 +0200)]
tests: Fix 'guix environment --container' test in the presence of tmpfs.

Reported by Ting-Wei Lan <lantw44@gmail.com>.
This is a followup to 1250034d5aff14fe236aad9900233a2b6f8563bb.

* tests/guix-environment-container.sh (mount_test_code): Reverse order
of 'string-prefix?' arguments.

7 years agognu: Add ecryptfs-utils.
Tobias Geerinckx-Rice [Wed, 24 Aug 2016 00:51:52 +0000 (02:51 +0200)]
gnu: Add ecryptfs-utils.

* gnu/packages/linux.scm (ecryptfs-utils): New variable.

7 years agognu: Add keyutils.
Tobias Geerinckx-Rice [Wed, 24 Aug 2016 00:50:49 +0000 (02:50 +0200)]
gnu: Add keyutils.

* gnu/packages/crypto.scm (keyutils): New variable.

7 years agognu: xf86-input-synaptics: Update to 1.8.99.1.
Efraim Flashner [Sat, 27 Aug 2016 20:24:29 +0000 (23:24 +0300)]
gnu: xf86-input-synaptics: Update to 1.8.99.1.

* gnu/packages/xorg.scm (xf86-input-synaptics): Update to 1.8.99.1.

7 years agognu: xf86-video-openchrome: Update to 0.5.0.
Efraim Flashner [Sat, 27 Aug 2016 20:17:07 +0000 (23:17 +0300)]
gnu: xf86-video-openchrome: Update to 0.5.0.

* gnu/packages/xorg.scm (xf86-video-openchrome): Update to 0.5.0.
[source]: Remove patch.
* gnu/packages/patches/xf86-video-openchrome-glibc-2.20.patch: Remove file.
* gnu/local.mk (dist_patch_DATA): Remove it.

7 years agognu: xf86-input-evdev: Update to 2.10.3.
Efraim Flashner [Sat, 27 Aug 2016 20:11:07 +0000 (23:11 +0300)]
gnu: xf86-input-evdev: Update to 2.10.3.

* gnu/packages/xorg.scm (xf86-input-evdev): Update to 2.10.3.

7 years agognu: xf86-video-ati: Update to 7.7.0.
Efraim Flashner [Sat, 27 Aug 2016 20:06:02 +0000 (23:06 +0300)]
gnu: xf86-video-ati: Update to 7.7.0.

* gnu/packages/xorg.scm (xf86-video-ati): Update to 7.7.0.

7 years agoguix scripts: Disable grafting on dry runs.
Roel Janssen [Sun, 28 Aug 2016 14:22:19 +0000 (16:22 +0200)]
guix scripts: Disable grafting on dry runs.

* guix/scripts/archive.scm, guix/scripts/build.scm,
  guix/scripts/environment.scm, guix/scripts/system.scm,
  guix/scripts/package.scm: Disable grafting when a dry-run parameter is given.

7 years agosystem: Do not create the home directory of "nobody".
Ludovic Courtès [Sun, 28 Aug 2016 10:56:48 +0000 (12:56 +0200)]
system: Do not create the home directory of "nobody".

Fixes <http://bugs.gnu.org/24275>.
Reported by John Darrington <john@darrington.wattle.id.au>.

* gnu/system/shadow.scm (%base-user-accounts):
Add (create-home-directory? #f) for "nobody".

7 years agosystem: Add 'create-home-directory?' field to <user-account>.
Ludovic Courtès [Sun, 28 Aug 2016 10:53:20 +0000 (12:53 +0200)]
system: Add 'create-home-directory?' field to <user-account>.

* gnu/system/shadow.scm (<user-account>)[create-home-directory?]: New
field.
(user-account->gexp): Serialize it.
* gnu/build/activation.scm (activate-users+groups)[activate-user]:
Update 'match-lambda' pattern accordingly.  Pass #:create-home? to
'ensure-user'.
(add-user, modify-user, ensure-user): Add #:create-home? parameter and
honor it.
* doc/guix.texi (User Accounts): Document it.

7 years agognu: kmscon: Add missing licenses.
David Craven [Mon, 22 Aug 2016 21:37:58 +0000 (23:37 +0200)]
gnu: kmscon: Add missing licenses.

* gnu/packages/terminals.scm (kmscon)[license]: Add lgpl2.1+, bsd-2 and gpl2+.

7 years agognu: libtsm: Add missing licenses.
David Craven [Mon, 22 Aug 2016 21:35:18 +0000 (23:35 +0200)]
gnu: libtsm: Add missing licenses.

* gnu/packages/terminals.scm (libtsm)[license]: Add lgpl2.1+, isc and bsd-2.

7 years agognu: python-ipaddress: Update to 1.0.16.
David Craven [Fri, 5 Aug 2016 17:35:34 +0000 (19:35 +0200)]
gnu: python-ipaddress: Update to 1.0.16.

* gnu/packages/python.scm (python-ipaddress): New variable.
(python2-ipaddress): Use package-with-python2.

7 years agognu: Add python-url.
David Craven [Fri, 5 Aug 2016 17:34:43 +0000 (19:34 +0200)]
gnu: Add python-url.

* gnu/packages/python.scm (python-url): New variable.
(python2-url): New variable.

7 years agognu: Add python-publicsuffix2.
David Craven [Fri, 5 Aug 2016 17:33:09 +0000 (19:33 +0200)]
gnu: Add python-publicsuffix2.

* gnu/packages/python.scm (python-publicsuffix2): New variable.
(python2-publicsuffix2): New variable.

7 years agognu: Add python-publicsuffix.
David Craven [Fri, 5 Aug 2016 17:31:57 +0000 (19:31 +0200)]
gnu: Add python-publicsuffix.

* gnu/packages/python.scm (python-publicsuffix): New variable.
(python2-publicsuffix): New variable.

7 years agognu: Add python-schematics.
David Craven [Fri, 5 Aug 2016 17:30:24 +0000 (19:30 +0200)]
gnu: Add python-schematics.

* gnu/packages/python.scm (python-schematics): New variable.
(python2-schematics): New variable.

7 years agognu: Add python-sh.
David Craven [Fri, 5 Aug 2016 17:29:19 +0000 (19:29 +0200)]
gnu: Add python-sh.

* gnu/packages/python.scm (python-sh): New variable.
(python2-sh): New variable.

7 years agognu: Add python-pymongo.
David Craven [Fri, 5 Aug 2016 17:28:14 +0000 (19:28 +0200)]
gnu: Add python-pymongo.

* gnu/packages/python.scm (python-pymongo): New variable.
(python2-pymongo): New variable.

7 years agognu: Add python-nltk.
David Craven [Fri, 5 Aug 2016 17:26:34 +0000 (19:26 +0200)]
gnu: Add python-nltk.

* gnu/packages/python.scm (python-nltk): New variable.
(python2-nltk): New variable.

7 years agognu: Add python-binaryornot.
David Craven [Fri, 5 Aug 2016 17:25:15 +0000 (19:25 +0200)]
gnu: Add python-binaryornot.

* gnu/packages/python.scm (python-binaryornot): New variable.
(python2-binaryornot): New variable.

7 years agognu: python: Import guix licenses with #:prefix license:.
David Craven [Fri, 5 Aug 2016 17:21:17 +0000 (19:21 +0200)]
gnu: python: Import guix licenses with #:prefix license:.

* gnu/packages/python.scm (define-module): Add import.

7 years agoimport: Importers return prefixed licenses.
David Craven [Fri, 5 Aug 2016 17:15:56 +0000 (19:15 +0200)]
import: Importers return prefixed licenses.

* guix/import/utils.scm
(define-module): Import licenses with license: prefix.
(string->licenses): Use prefixed licenses.
(license->symbol): Return symbols with the prefix license:.
* guix/tests/pypi.scm (pypi->guix-package): Update test cases.
* guix/tests/gem.scm (gem->guix-package): Update test case.

7 years agognu: Add prosody.
Ricardo Wurmus [Mon, 22 Aug 2016 19:35:26 +0000 (21:35 +0200)]
gnu: Add prosody.

* gnu/packages/messaging.scm (prosody): New variable.

7 years agognu: Add lua5.1-sec.
Ricardo Wurmus [Mon, 22 Aug 2016 19:33:13 +0000 (21:33 +0200)]
gnu: Add lua5.1-sec.

* gnu/packages/lua.scm (lua5.1-sec): New variable.

7 years agognu: Add lua5.1-filesystem.
Ricardo Wurmus [Mon, 22 Aug 2016 19:32:42 +0000 (21:32 +0200)]
gnu: Add lua5.1-filesystem.

* gnu/packages/lua.scm (lua5.1-filesystem): New variable.

7 years agognu: Add lua5.1-socket.
Ricardo Wurmus [Mon, 22 Aug 2016 19:32:09 +0000 (21:32 +0200)]
gnu: Add lua5.1-socket.

* gnu/packages/lua.scm (lua5.1-socket): New variable.

7 years agognu: Add lua5.1-expat.
Ricardo Wurmus [Mon, 22 Aug 2016 14:50:58 +0000 (16:50 +0200)]
gnu: Add lua5.1-expat.

* gnu/packages/lua.scm (lua5.1-expat): New variable.

7 years agognu: lua: Use "license:" prefix.
Ricardo Wurmus [Mon, 22 Aug 2016 14:46:52 +0000 (16:46 +0200)]
gnu: lua: Use "license:" prefix.

* gnu/packages/gstreamer.scm (define-module): Import guix licenses with
"license:" prefix.

7 years agognu: lua: Build with support for dynamic libraries.
Ricardo Wurmus [Mon, 22 Aug 2016 14:44:57 +0000 (16:44 +0200)]
gnu: lua: Build with support for dynamic libraries.

* gnu/packages/lua.scm (lua)[arguments]: Use regular build phase and add
make-flags.

7 years agognu: Add bwm-ng.
Arun Isaac [Wed, 24 Aug 2016 18:19:46 +0000 (23:49 +0530)]
gnu: Add bwm-ng.

* gnu/packages/networking.scm (bwm-ng): New variable.

7 years agognu: mupdf: Fix CVE-2016-{6265,6525}.
Leo Famulari [Sat, 27 Aug 2016 21:31:52 +0000 (17:31 -0400)]
gnu: mupdf: Fix CVE-2016-{6265,6525}.

* gnu/packages/patches/mupdf-CVE-2016-6265.patch,
gnu/packages/patches/mupdf-CVE-2016-6525.patch: New files.
* gnu/local.mk (dist_patch_DATA): Add them.
* gnu/packages/pdf.scm (mupdf): Use them.

7 years agobase64: Restore original license header.
Christopher Allan Webber [Fri, 26 Aug 2016 20:14:20 +0000 (15:14 -0500)]
base64: Restore original license header.

When incorporating a copyleft licensed program with a lax licensed program,
it is correct to preserve the original license notice.  See also:
  https://www.softwarefreedom.org/resources/2007/gpl-non-gpl-collaboration.html

* guix/base64.scm: Restored original license header.

7 years agognu: octave: Update to 4.0.3.
Kei Kebreau [Sat, 27 Aug 2016 03:33:50 +0000 (23:33 -0400)]
gnu: octave: Update to 4.0.3.

* gnu/packages/maths.scm (octave): Update to 4.0.3.
[inputs]: Remove unnecessary curl, cyrus-sasl and openssl dependencies.

7 years agognu: python-gnupg: Fix broken tests.
Ricardo Wurmus [Fri, 26 Aug 2016 21:47:42 +0000 (23:47 +0200)]
gnu: python-gnupg: Fix broken tests.

* gnu/packages/gnupg.scm (python-gnupg)[arguments]: Fix check phase.

7 years agognu: btrfs-progs: Update to 4.7.1.
Tobias Geerinckx-Rice [Fri, 26 Aug 2016 21:16:28 +0000 (23:16 +0200)]
gnu: btrfs-progs: Update to 4.7.1.

* gnu/packages/linux.scm (btrfs-progs): Update to 4.7.1.

7 years agognu: enlightenment: Move efl to inputs.
Efraim Flashner [Fri, 26 Aug 2016 12:23:46 +0000 (15:23 +0300)]
gnu: enlightenment: Move efl to inputs.

* gnu/packages/enlightenment.scm (enlightenment)[propagated-inputs]:
Move efl from here ...
[inputs]: ... to here.

7 years agognu: enlightenment: Move gettext to native-inputs.
Efraim Flashner [Fri, 26 Aug 2016 10:24:56 +0000 (13:24 +0300)]
gnu: enlightenment: Move gettext to native-inputs.

* gnu/packages/enlightenment.scm (enlightenment)[inputs]: Move gettext
from here ...
[native-inputs]: ... to here.

7 years agognu: rage: Update to 0.2.0.
Efraim Flashner [Fri, 26 Aug 2016 10:18:38 +0000 (13:18 +0300)]
gnu: rage: Update to 0.2.0.

* gnu/packages/enlightenment.scm (rage): Update to 0.2.0.

7 years agognu: python-efl: Update to 1.18.0.
Efraim Flashner [Fri, 26 Aug 2016 09:30:00 +0000 (12:30 +0300)]
gnu: python-efl: Update to 1.18.0.

* gnu/packages/enlightenment.scm (python-efl): Update to 1.18.0.

7 years agognu: efl: Update to 1.18.0.
Efraim Flashner [Wed, 24 Aug 2016 09:55:48 +0000 (12:55 +0300)]
gnu: efl: Update to 1.18.0.

* gnu/packages/enlightenment.scm (efl): Update to 1.18.0.
[inputs]: Add ghostscript, libraw, libspectre, openjpeg, poppler.
[arguments]: Remove unecessary 'patch-config-files phase, add phase
hardlinking the location of pulseaudio and libsndfile.
* gnu/packages/enlightenment.scm (terminology, enlightenment, rage)
(python-efl)[inputs]: Remove elementary, now provided by efl.

7 years agognu: btrfs-progs: Update to 4.7.
Tobias Geerinckx-Rice [Tue, 23 Aug 2016 13:03:17 +0000 (15:03 +0200)]
gnu: btrfs-progs: Update to 4.7.

* gnu/packages/linux.scm (btrfs-progs): Update to 4.7.
[native-inputs]: Add missing header comment for which.

7 years agognu: fdupes: Use 'modify-phases'.
Tobias Geerinckx-Rice [Mon, 22 Aug 2016 17:50:59 +0000 (19:50 +0200)]
gnu: fdupes: Use 'modify-phases'.

* gnu/packages/admin.scm (fdupes)[arguments]: Use 'modify-phases'.

7 years agognu: fdupes: Update to 1.6.1.
Tobias Geerinckx-Rice [Mon, 22 Aug 2016 17:48:26 +0000 (19:48 +0200)]
gnu: fdupes: Update to 1.6.1.

* gnu/packages/admin.scm (fdupes): Update to 1.6.1.
[source]: Update 'uri' template, add 'file-name' field.
[arguments]: Set CC in make-flags.

7 years agognu: Add emacs-ahungry-theme.
Alex Vong [Thu, 25 Aug 2016 05:49:31 +0000 (13:49 +0800)]
gnu: Add emacs-ahungry-theme.

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

Signed-off-by: Alex Kost <alezost@gmail.com>
7 years agognu: emacs-f: Update to 0.18.2.
Alex Kost [Fri, 26 Aug 2016 07:31:32 +0000 (10:31 +0300)]
gnu: emacs-f: Update to 0.18.2.

* gnu/packages/emacs.scm (emacs-f): Update to 0.18.2.

7 years agognu: emacs-s: Update to 1.11.0.
Alex Kost [Fri, 26 Aug 2016 07:31:07 +0000 (10:31 +0300)]
gnu: emacs-s: Update to 1.11.0.

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

7 years agognu: emacs-dash: Update to 2.13.0.
Alex Kost [Fri, 26 Aug 2016 07:30:36 +0000 (10:30 +0300)]
gnu: emacs-dash: Update to 2.13.0.

* gnu/packages/emacs.scm (emacs-dash): Update to 2.13.0.

7 years agognu: magit: Update to 2.8.0.
Alex Kost [Fri, 26 Aug 2016 07:29:20 +0000 (10:29 +0300)]
gnu: magit: Update to 2.8.0.

* gnu/packages/emacs.scm (magit, emacs-magit-popup): Update to 2.8.0.

7 years agognu: emacs-with-editor: Update to 2.5.2.
Alex Kost [Fri, 26 Aug 2016 07:28:22 +0000 (10:28 +0300)]
gnu: emacs-with-editor: Update to 2.5.2.

* gnu/packages/emacs.scm (emacs-with-editor): Update to 2.5.2.

7 years agognu: gnome-screenshot: Update to 3.20.1.
Rene Saavedra [Thu, 25 Aug 2016 02:39:58 +0000 (21:39 -0500)]
gnu: gnome-screenshot: Update to 3.20.1.

* gnu/packages/gnome.scm (gnome-screenshot): Update to 3.20.1.

Signed-off-by: 宋文武 <iyzsong@gmail.com>
7 years agognu: enlightenment: Update to 0.21.2.
Efraim Flashner [Thu, 25 Aug 2016 09:25:04 +0000 (12:25 +0300)]
gnu: enlightenment: Update to 0.21.2.

* gnu/packages/enlightenment.scm (enlightenment): Update to 0.21.2.

7 years agognu: ibus: Fix simple engine.
Ricardo Wurmus [Thu, 25 Aug 2016 09:04:39 +0000 (11:04 +0200)]
gnu: ibus: Fix simple engine.

* gnu/packages/ibus.scm (ibus)[inputs]: Add libx11, setxkbmap, xmodmap.
[arguments]: Add "fix-paths" phase.

7 years agognu: ibus: Generate C from Vala sources.
Ricardo Wurmus [Thu, 25 Aug 2016 09:03:02 +0000 (11:03 +0200)]
gnu: ibus: Generate C from Vala sources.

* gnu/packages/ibus.scm (ibus)[native-inputs]: Add vala.
[arguments]: Add "delete-generated-files" phase.

7 years agognu: ibus: Use modify-phases syntax.
Ricardo Wurmus [Thu, 25 Aug 2016 08:23:19 +0000 (10:23 +0200)]
gnu: ibus: Use modify-phases syntax.

* gnu/packages/ibus.scm (ibus)[arguments]: Use modify-phases syntax.

7 years agognu: aria2: Fix bash completion.
Efraim Flashner [Wed, 24 Aug 2016 19:13:34 +0000 (22:13 +0300)]
gnu: aria2: Fix bash completion.

* gnu/packages/bittorrent.scm (aria2)[arguments]: Set bash completion
directory.

7 years agognu: aria2: Update to 1.26.0.
Efraim Flashner [Wed, 24 Aug 2016 19:11:50 +0000 (22:11 +0300)]
gnu: aria2: Update to 1.26.0.

* gnu/packages/bittorrent.scm (aria2): Update to 1.26.0.

7 years agognu: offlineimap: Update to 7.0.6.
Efraim Flashner [Wed, 24 Aug 2016 18:37:27 +0000 (21:37 +0300)]
gnu: offlineimap: Update to 7.0.6.

* gnu/packages/mail.scm (offlineimap): Update to 7.0.6.

7 years agognu: webkitgtk: Update to 2.12.4 [fixes CVE-2016-{4590,4591,4622,4624}].
Leo Famulari [Thu, 25 Aug 2016 04:18:42 +0000 (00:18 -0400)]
gnu: webkitgtk: Update to 2.12.4 [fixes CVE-2016-{4590,4591,4622,4624}].

* gnu/packages/webkit.scm (webkitgtk): Update to 2.12.4.
[source]: Use HTTPS URL.

7 years agognu: linux-libre@4.1: Update to 4.1.31.
Mark H Weaver [Thu, 25 Aug 2016 00:52:19 +0000 (20:52 -0400)]
gnu: linux-libre@4.1: Update to 4.1.31.

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

7 years agognu: ncmpc: Update to 0.25.
Leo Famulari [Wed, 24 Aug 2016 22:03:22 +0000 (18:03 -0400)]
gnu: ncmpc: Update to 0.25.

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

7 years agognu: mpd-mpc: Update to 0.28.
Leo Famulari [Wed, 24 Aug 2016 22:02:38 +0000 (18:02 -0400)]
gnu: mpd-mpc: Update to 0.28.

* gnu/packages/mpd.scm (mpd-mpc): Update to 0.28.

7 years agognu: mpd: Update to 0.19.19.
Leo Famulari [Wed, 24 Aug 2016 22:01:22 +0000 (18:01 -0400)]
gnu: mpd: Update to 0.19.19.

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

7 years agognu: ncmpcpp: Update to 0.7.5.
Leo Famulari [Wed, 24 Aug 2016 21:58:50 +0000 (17:58 -0400)]
gnu: ncmpcpp: Update to 0.7.5.

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

7 years agognu: signify: Update to 19.
Leo Famulari [Wed, 24 Aug 2016 20:47:40 +0000 (16:47 -0400)]
gnu: signify: Update to 19.

* gnu/packages/crypto.scm (signify): Update to 19.

7 years agognu: tor: Update to 0.2.8.7.
ng0 [Wed, 24 Aug 2016 19:25:02 +0000 (19:25 +0000)]
gnu: tor: Update to 0.2.8.7.

* gnu/packages/tor.scm (tor): Update to 0.2.8.7.

Signed-off-by: Leo Famulari <leo@famulari.name>
7 years agognu: imagemagick: Don't build with processor-specific optimizations.
Leo Famulari [Tue, 23 Aug 2016 02:35:49 +0000 (22:35 -0400)]
gnu: imagemagick: Don't build with processor-specific optimizations.

* gnu/packages/imagemagick.scm (imagemagick)[arguments]: Pass --without-gcc-arch
to #:configure-flags.

7 years agognu: vdirsyncer: Update to 0.12.1.
Leo Famulari [Wed, 24 Aug 2016 18:49:43 +0000 (14:49 -0400)]
gnu: vdirsyncer: Update to 0.12.1.

* gnu/packages/dav.scm (vdirsyncer): Update to 0.12.1.

7 years agognu: libksba: Update to 1.3.5.
Leo Famulari [Wed, 24 Aug 2016 17:44:26 +0000 (13:44 -0400)]
gnu: libksba: Update to 1.3.5.

* gnu/packages/gnupg.scm (libksba): Update to 1.3.5.

7 years agognu: efl: Update notes.
Efraim Flashner [Wed, 24 Aug 2016 08:11:42 +0000 (11:11 +0300)]
gnu: efl: Update notes.

* gnu/packages/enlightenment.scm (efl)[propagated-inputs]: Update the
notes for each input relating to which '.pc' file requires them.

7 years agognu: efl: Enable harfbuzz support.
Efraim Flashner [Wed, 24 Aug 2016 07:37:33 +0000 (10:37 +0300)]
gnu: efl: Enable harfbuzz support.

* gnu/packages/enlightenment.scm (efl)[arguments]: Add '--enable-harfbuzz'.
[inputs]: Move harfbuzz ...
[propagated-inputs]: ... here.

7 years agognu: enlightenment: Use https.
Efraim Flashner [Wed, 24 Aug 2016 08:13:45 +0000 (11:13 +0300)]
gnu: enlightenment: Use https.

* gnu/packages/enlightenment.scm: Use 'https' for all enlightenment urls.

7 years agognu: efl: Use system lz4.
Efraim Flashner [Wed, 24 Aug 2016 07:39:02 +0000 (10:39 +0300)]
gnu: efl: Use system lz4.

* gnu/packages/enlightenment.scm (efl)[arguments]: Pass '--enable-liblz4'.
[inputs]: Add lz4.

7 years agognu: tiled: Update to 0.17.0.
David Thompson [Wed, 24 Aug 2016 13:56:51 +0000 (09:56 -0400)]
gnu: tiled: Update to 0.17.0.

* gnu/packages/game-development.scm (tiled): Update to 0.17.0.

7 years agognu: python-magic: Disable egg compression.
Leo Famulari [Tue, 23 Aug 2016 16:45:53 +0000 (12:45 -0400)]
gnu: python-magic: Disable egg compression.

Reported by Troy Sankey <sankeytms@gmail.com>.

* gnu/packages/python.scm (python-magic, python2-magic)[arguments]: Add
'disable-egg-compression' phase.

7 years agognu: Add capnproto.
Marius Bakke [Fri, 12 Aug 2016 12:42:16 +0000 (13:42 +0100)]
gnu: Add capnproto.

* gnu/packages/serialization.scm (capnproto): New variable.

Signed-off-by: Leo Famulari <leo@famulari.name>
7 years agognu: Add glfw.
David Thompson [Sat, 20 Aug 2016 15:07:22 +0000 (11:07 -0400)]
gnu: Add glfw.

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

7 years agognu: mit-krb5: Replace with 1.14.3 [fixes CVE-2016-3120].
Leo Famulari [Tue, 23 Aug 2016 03:14:06 +0000 (23:14 -0400)]
gnu: mit-krb5: Replace with 1.14.3 [fixes CVE-2016-3120].

* gnu/packages/mit-krb5.scm (mit-krb5)[replacement]: New field.
(mit-krb5-1.14.3): New variable.

7 years agognu: alot: Fixup comments.
Troy Sankey [Sat, 13 Aug 2016 16:09:22 +0000 (12:09 -0400)]
gnu: alot: Fixup comments.

* gnu/packages/mail.scm (alot): Add note about distribution method,
and adhere to double semi-colon norm.

Signed-off-by: Mark H Weaver <mhw@netris.org>
7 years agognu: python-urwidtrees: Update to 1.0.2.
Troy Sankey [Sat, 13 Aug 2016 16:08:05 +0000 (12:08 -0400)]
gnu: python-urwidtrees: Update to 1.0.2.

* gnu/packages/python.scm (python-urwidtrees): Update to 1.0.2.  Add note about
distribution method.

Signed-off-by: Mark H Weaver <mhw@netris.org>
7 years agognu: python-urwid: Update to 1.3.1.
Troy Sankey [Sat, 13 Aug 2016 03:33:24 +0000 (23:33 -0400)]
gnu: python-urwid: Update to 1.3.1.

* gnu/packages/python.scm (python-urwid): Update to 1.3.1.

Signed-off-by: Mark H Weaver <mhw@netris.org>
7 years agognu: thefuck: Upgrade to 3.11.
Eric Bavier [Tue, 23 Aug 2016 05:27:08 +0000 (00:27 -0500)]
gnu: thefuck: Upgrade to 3.11.

* gnu/packages/admin.scm (thefuck): Upgrade to 3.11.

7 years agognu: gcc-6: Update to 6.2.0.
Efraim Flashner [Tue, 23 Aug 2016 04:03:03 +0000 (07:03 +0300)]
gnu: gcc-6: Update to 6.2.0.

* gnu/packages/gcc.scm (gcc-6): Update to 6.2.0.

7 years agognu: synergy: Upgrade to 1.8.2.
Eric Bavier [Mon, 22 Aug 2016 17:25:17 +0000 (12:25 -0500)]
gnu: synergy: Upgrade to 1.8.2.

* gnu/packages/synergy.scm (synergy): Upgrade to 1.8.2

7 years agognu: opam: Upgrade to 1.2.2.
Eric Bavier [Mon, 22 Aug 2016 17:28:09 +0000 (12:28 -0500)]
gnu: opam: Upgrade to 1.2.2.

* gnu/packages/ocaml.scm (opam): Upgrade to 1.2.2.
[arguments]: define SHELL in #:make-flags.  Build dependencies in
'pre-build phase.
[inputs]: Add camlp4.

7 years agognu: opam: Use modify-phases.
Eric Bavier [Mon, 22 Aug 2016 17:27:06 +0000 (12:27 -0500)]
gnu: opam: Use modify-phases.

* gnu/packages/ocaml.scm (opam)[arguments]: Use modify-phases.

7 years agognu: autojump: Upgrade to 22.3.4.
Eric Bavier [Tue, 23 Aug 2016 04:57:18 +0000 (23:57 -0500)]
gnu: autojump: Upgrade to 22.3.4.

* gnu/packages/admin.scm (autojump): Upgrade to 22.3.4.

7 years agognu: gnunet-gtk: Add libunique support.
ng0 [Mon, 22 Aug 2016 23:13:03 +0000 (23:13 +0000)]
gnu: gnunet-gtk: Add libunique support.

* gnu/packages/gnunet.scm (gnunet-gtk)[inputs]: Add libunique.
[arguments]: Add "--with-libunique" to #:configure-flags.

Signed-off-by: Leo Famulari <leo@famulari.name>
7 years agognu: Add kmscon.
David Craven [Mon, 22 Aug 2016 13:39:53 +0000 (15:39 +0200)]
gnu: Add kmscon.

* gnu/packages/terminals.scm (kmscon): New variable.

7 years agognu: Add libtsm.
David Craven [Mon, 22 Aug 2016 13:39:19 +0000 (15:39 +0200)]
gnu: Add libtsm.

* gnu/packages/terminals.scm (libtsm): New variable.

7 years agognu: Remove trademark acknowledgements.
John Darrington [Mon, 22 Aug 2016 18:14:17 +0000 (20:14 +0200)]
gnu: Remove trademark acknowledgements.

* gnu/packages/imagemagick.scm (imagemagick), gnu/packages/python.scm
(python-xlrd), gnu/packages/wordnet.scm (wordnet) [description]:
Remove trademark acknowledgements.

7 years agognu: Add libunique.
ng0 [Wed, 3 Aug 2016 08:18:14 +0000 (08:18 +0000)]
gnu: Add libunique.

* gnu/packages/gnome.scm (libunique): New variable.

Signed-off-by: Leo Famulari <leo@famulari.name>
7 years agognu: Add r-bamsignals.
Ricardo Wurmus [Thu, 18 Aug 2016 11:09:42 +0000 (13:09 +0200)]
gnu: Add r-bamsignals.

* gnu/packages/bioinformatics.scm (r-bamsignals): New variable.