jackhill/guix/guix.git
4 years agognu: jsoncpp: Fix test failure on armhf-linux and aarch64-linux.
Marius Bakke [Sun, 12 Jan 2020 17:46:40 +0000 (18:46 +0100)]
gnu: jsoncpp: Fix test failure on armhf-linux and aarch64-linux.

* gnu/packages/patches/jsoncpp-fix-inverted-case.patch: New file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/serialization.scm (jsoncpp)[source](patches): New field.

4 years agognu: chez-scheme: Remove obsolete snippet.
Marius Bakke [Sun, 12 Jan 2020 00:37:36 +0000 (01:37 +0100)]
gnu: chez-scheme: Remove obsolete snippet.

* gnu/packages/chez.scm (chez-scheme)[source](modules, snippet): Remove.

4 years agognu: emacs-telega: Update to 0.5.4-3.
Brett Gilio [Sun, 12 Jan 2020 19:23:48 +0000 (13:23 -0600)]
gnu: emacs-telega: Update to 0.5.4-3.

* gnu/packages/emacs-xyz.scm (emacs-telega): Update to 0.5.4-3.

This change reflects several bug fixes that allows for better integration with
the latest changes provided by `tdlib` 1.5.4 -- 1.6.0.

4 years agognu: sbcl-trivial-backtrace: Fix build reproducibility.
Guillaume Le Vaillant [Sun, 12 Jan 2020 10:40:22 +0000 (11:40 +0100)]
gnu: sbcl-trivial-backtrace: Fix build reproducibility.

* gnu/packages/lisp.scm (sbcl-trivial-backtrace)[arguments]: Add
  'delete-test-results' phase.

4 years agobuild: asdf-build-system: Improve reproducibility.
Guillaume Le Vaillant [Sun, 12 Jan 2020 13:29:41 +0000 (14:29 +0100)]
build: asdf-build-system: Improve reproducibility.

* guix/build/asdf-build-system.scm (copy-files-to-output): Reset timestamps of
  source files before compiling.

4 years agognu: audacity: Update to 2.3.3.
Kei Kebreau [Sat, 11 Jan 2020 07:53:22 +0000 (02:53 -0500)]
gnu: audacity: Update to 2.3.3.

* gnu/packages/audio.scm (audacity): Update to 2.3.3.
[source](snippet): Remove bundled "lame".
[arguments]: Adjust "use-upstream-headers" phase.
* gnu/packages/patches/audacity-build-with-system-portaudio.patch: Adjust patch.

4 years agognu: Fix license of several GNOME packages.
Ludovic Courtès [Sat, 11 Jan 2020 23:37:51 +0000 (00:37 +0100)]
gnu: Fix license of several GNOME packages.

* gnu/packages/gnome.scm (gnome-color-manager)[license]: Change to GPL2+.
(gnome-online-miners)[license]: Likewise.
(gnome-menus)[license]: Change to LGPL2.0+.

4 years agodoc: Make sure 'htmlxref.cnf' is honored.
Ludovic Courtès [Sat, 11 Jan 2020 23:14:53 +0000 (00:14 +0100)]
doc: Make sure 'htmlxref.cnf' is honored.

Fixes <https://bugs.gnu.org/39060>.
Reported by Tobias Geerinckx-Rice <me@tobias.gr>.

* doc/build.scm (html-manual)[build]: Copy 'htmlxref.cnf' to the current
directory so that 'makeinfo' honors it.

4 years agodoc: Update htmlxref.cnf.
Ludovic Courtès [Sat, 11 Jan 2020 22:53:37 +0000 (23:53 +0100)]
doc: Update htmlxref.cnf.

* doc/htmlxref.cnf: Update from Texinfo.  Add entries for "mes",
"guix.ru", and "guix.zh_CN".

4 years agognu: Add libolm.
nixo [Sun, 5 Jan 2020 15:46:01 +0000 (16:46 +0100)]
gnu: Add libolm.

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

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
4 years agognu: timidity++: Add libvorbis as input
EuAndreh [Tue, 7 Jan 2020 11:08:30 +0000 (08:08 -0300)]
gnu: timidity++: Add libvorbis as input

* gnu/packages/audio.scm (timidity++)[inputs] Add libvorbis as input

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
4 years agognu: entr: Fix references to external programs.
Jakub Kądziołka [Sat, 11 Jan 2020 18:11:44 +0000 (19:11 +0100)]
gnu: entr: Fix references to external programs.

* gnu/packages/entr.scm (entr)[arguments](remove-fhs-file-names): Use 'which'
instead of relying on the runtime PATH.  Patch /bin/sh too.
[inputs]: Add NCURSES.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
4 years agosystem: Drop net-tools from %BASE-PACKAGES (replaced by iproute2).
Simon Josefsson [Wed, 1 Jan 2020 17:05:47 +0000 (18:05 +0100)]
system: Drop net-tools from %BASE-PACKAGES (replaced by iproute2).

* gnu/system.scm (%base-packages): Remove net-tools.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
4 years agodaemon: Fix the displayed GC estimated progress.
Ludovic Courtès [Sat, 11 Jan 2020 21:11:16 +0000 (22:11 +0100)]
daemon: Fix the displayed GC estimated progress.

* nix/libstore/gc.cc (LocalStore::deletePathRecursive): Fix computation
of 'fraction'.  Take 'bytesInvalidated' into account.

4 years agodaemon: Account for deleted store files when deduplication is on.
Ludovic Courtès [Sat, 11 Jan 2020 17:46:23 +0000 (18:46 +0100)]
daemon: Account for deleted store files when deduplication is on.

Previously, a store item that is a regular file would not be accounted
for in the 'bytesFreed' value computed by 'deletePath' because its
'st_nlink' count would always be >= 2.  This commit fixes that.

* nix/libutil/util.hh (deletePath): Add optional 'linkThreshold' argument.
* nix/libutil/util.cc (_deletePath): Add 'linkThreshold' argument and
honor it.  Pass it down in recursive call.
(deletePath): Add 'linkThreshold' and honor it.
* nix/libstore/gc.cc (LocalStore::deleteGarbage): Pass 'linkThreshold'
argument to 'deletePath', with a value of 2 when PATH is a store item
and deduplication is on.

4 years agognu: cmake@3.15.5: Honor 'SSL_CERT_DIR' and 'SSL_CERT_FILE'.
Ludovic Courtès [Fri, 10 Jan 2020 16:23:31 +0000 (17:23 +0100)]
gnu: cmake@3.15.5: Honor 'SSL_CERT_DIR' and 'SSL_CERT_FILE'.

* gnu/packages/cmake.scm (cmake-3.15.5)[native-search-paths]: New field.

4 years agognu: cmake@3.15.5: Apply "cmake-curl-certificates.patch".
Ludovic Courtès [Fri, 10 Jan 2020 10:30:45 +0000 (11:30 +0100)]
gnu: cmake@3.15.5: Apply "cmake-curl-certificates.patch".

* gnu/packages/cmake.scm (cmake-3.15.5)[source]: Add 'patches' field.
(cmake/fixed): Turn into a deprecated alias for CMAKE-3.15.5.

4 years agognu: Use the two-element 'define-deprecated' form where applicable.
Ludovic Courtès [Fri, 10 Jan 2020 10:28:59 +0000 (11:28 +0100)]
gnu: Use the two-element 'define-deprecated' form where applicable.

* gnu/packages/guile.scm (guile-json): Use the two-element
'define-deprecated' form.
* gnu/packages/kde.scm (kdevplatform): Likewise.
* gnu/packages/mpi.scm (hwloc-2.0): Likewise.
* gnu/packages/qt.scm (qt): Likewise.

4 years agodeprecation: Add a two-element form for simple aliases.
Ludovic Courtès [Fri, 10 Jan 2020 10:27:29 +0000 (11:27 +0100)]
deprecation: Add a two-element form for simple aliases.

* guix/deprecation.scm (define-deprecated): Add a two-element form for
simple aliases: (define-deprecated old new).

4 years agognu: Add emacs-metal-mercury-mode.
Brett Gilio [Sat, 11 Jan 2020 22:10:32 +0000 (16:10 -0600)]
gnu: Add emacs-metal-mercury-mode.

* gnu/packages/emacs-xyz.scm (emacs-metal-mercury-mode): New variable.

4 years agognu: python-keyring: Update to 21.0.0.
Efraim Flashner [Sat, 11 Jan 2020 21:38:13 +0000 (23:38 +0200)]
gnu: python-keyring: Update to 21.0.0.

* gnu/packages/python-crypto.scm (python-keyring): Update to 21.0.0.
[source]: Add snippet to backport test failure.
[arguments]: Use custom 'check phase.
[native-inputs]: Remove python-pytest-runner. Add
python-pytest-checkdocks, python-pytest-cov, python-pytest-flake8.
[propagated-inputs]: Remove python-pycrypto. Add
python-importlib-metadata, python-secretstorage.
[properties]: New field.
(python2-keyring): Rewrite package to stay at 8.7.

4 years agognu: Add python-secretstorage.
Efraim Flashner [Sat, 11 Jan 2020 21:35:18 +0000 (23:35 +0200)]
gnu: Add python-secretstorage.

* gnu/packages/python-crypto.scm (python-secretstorage): New variable.

4 years agognu: Add python-jeepney.
Efraim Flashner [Sat, 11 Jan 2020 21:34:43 +0000 (23:34 +0200)]
gnu: Add python-jeepney.

* gnu/packages/python-crypto.scm (python-jeepney): New variable.

4 years agognu: python2-contextlib2: Inherit from python-contextlib2.
Efraim Flashner [Sat, 11 Jan 2020 21:33:01 +0000 (23:33 +0200)]
gnu: python2-contextlib2: Inherit from python-contextlib2.

* gnu/packages/python-xyz.scm (python2-contextlib2): Inherit from
python-contextlib2.
(python-contextlib2)[properties]: New field.

4 years agognu: pcmanfm-qt: Fix opening files by double-click.
Reza Alizadeh Majd [Tue, 7 Jan 2020 07:54:05 +0000 (11:24 +0330)]
gnu: pcmanfm-qt: Fix opening files by double-click.

Fixes <https://bugs.gnu.org/38926>.

* gnu/packages/lxqt.scm (pcmanfm-qt)[arguments]: Add phase to wrap the
executable with the GIO_LAUNCH_DESKTOP environment variable.
[inputs]: Add GLIB:BIN.

Signed-off-by: Marius Bakke <mbakke@fastmail.com>
4 years agognu: make-gcc-toolchain: Fix typo in description.
Jonathan Brielmaier [Tue, 7 Jan 2020 16:48:13 +0000 (17:48 +0100)]
gnu: make-gcc-toolchain: Fix typo in description.

* gnu/packages/commencement.scm (make-gcc-toolchain)[description]: Fix typo
and triple spacing.

Signed-off-by: Marius Bakke <mbakke@fastmail.com>
4 years agognu: Add wla-dx.
Jakub Kądziołka [Sat, 11 Jan 2020 13:01:24 +0000 (14:01 +0100)]
gnu: Add wla-dx.

* gnu/packages/assembly.scm (wla-dx): New variable.

Signed-off-by: Julien Lepiller <julien@lepiller.eu>
4 years agoservices: Add pulseaudio to %desktop-services.
Leo Prikler [Fri, 10 Jan 2020 01:48:24 +0000 (02:48 +0100)]
services: Add pulseaudio to %desktop-services.

Fixes <https://bugs.gnu.org/38172>.
Reported by raingloom <raingloom@riseup.net>.

* gnu/services/desktop.scm (%desktop-services): Add pulseaudio service.

Signed-off-by: Marius Bakke <mbakke@fastmail.com>
4 years agodoc: Add pulseaudio documentation.
Leo Prikler [Fri, 10 Jan 2020 01:48:23 +0000 (02:48 +0100)]
doc: Add pulseaudio documentation.

* doc/guile.texi: Add documentation for pulseaudio-service-type and
pulseaudio-configuration.

Signed-off-by: Marius Bakke <mbakke@fastmail.com>
4 years agoservices: Split ladspa-service-type from pulseaudio-service-type.
Leo Prikler [Fri, 10 Jan 2020 01:48:22 +0000 (02:48 +0100)]
services: Split ladspa-service-type from pulseaudio-service-type.

* gnu/services/sound.scm (ladspa-configuration): New record.
(ladspa-environment): New procedure.
(ladspa-service-type): New service type.
(pulseaudio-environment): Remove LADSPA_PATH.
* doc/guix.texi: Adjust documentation.

Signed-off-by: Marius Bakke <mbakke@fastmail.com>
4 years agoservices: pulseaudio-configuration: Set flat-volumes to no.
Leo Prikler [Fri, 10 Jan 2020 01:48:21 +0000 (02:48 +0100)]
services: pulseaudio-configuration: Set flat-volumes to no.

* gnu/services/sound (pulseaudio-configuration) [daemon-conf]: Disable
flat-volumes, which causes unpleasant experiences to users when applications
inadvertently max out the system volume (e.g. as in #38172).

Signed-off-by: Marius Bakke <mbakke@fastmail.com>
4 years agoservices: Add pulseaudio-configuration.
Leo Prikler [Fri, 10 Jan 2020 01:48:19 +0000 (02:48 +0100)]
services: Add pulseaudio-configuration.

* gnu/services/sound (<pulseaudio-configuration>): New record.
(pulseaudio-etc): New procedure.
(pulseaudio-environment): Add PULSE_CONFIG and PULSE_CLIENTCONFIG.
(pulseaudio-service-type): Update accordingly.

Signed-off-by: Marius Bakke <mbakke@fastmail.com>
4 years agognu: qtwebengine: Purge unnecessary bundled software from the source.
Marius Bakke [Fri, 3 Jan 2020 18:32:52 +0000 (19:32 +0100)]
gnu: qtwebengine: Purge unnecessary bundled software from the source.

* gnu/packages/qt.scm (qtwebengine)[source](modules, snippet): New fields.
[inputs]: Add CURL and VALGRIND.

4 years agognu: Add qtwebengine.
Mike Rosset [Wed, 1 Jan 2020 16:03:52 +0000 (08:03 -0800)]
gnu: Add qtwebengine.

* gnu/packages/qt.scm (qtwebengine): New variable.

Signed-off-by: Marius Bakke <mbakke@fastmail.com>
4 years agognu: emacs-undo-tree: Update to 0.7.1.
nixo [Sat, 11 Jan 2020 13:19:39 +0000 (14:19 +0100)]
gnu: emacs-undo-tree: Update to 0.7.1.

* gnu/packages/emacs-xyz.scm (emacs-undo-tree): Update to 0.7.1.

Signed-off-by: David Wilson <david@daviwil.com>
4 years agognu: Add picolisp.
Guillaume Le Vaillant [Sat, 11 Jan 2020 00:23:50 +0000 (01:23 +0100)]
gnu: Add picolisp.

* gnu/packages/lisp.scm (picolisp32, picolisp): New variables.

4 years agognu: cdemu-daemon: Split excessively long line.
Tobias Geerinckx-Rice [Sat, 11 Jan 2020 02:49:49 +0000 (03:49 +0100)]
gnu: cdemu-daemon: Split excessively long line.

* gnu/packages/cdrom.scm (cdemu-daemon)[source]: Wrap at 80 characters.

4 years agognu: cdemu-client: Update to 3.2.4.
Tobias Geerinckx-Rice [Sat, 11 Jan 2020 02:48:01 +0000 (03:48 +0100)]
gnu: cdemu-client: Update to 3.2.4.

* gnu/packages/cdrom.scm (cdemu-client): Update to 3.2.4.

4 years agognu: cdemu-daemon: Update to 3.2.4.
Tobias Geerinckx-Rice [Sat, 11 Jan 2020 02:48:00 +0000 (03:48 +0100)]
gnu: cdemu-daemon: Update to 3.2.4.

* gnu/packages/cdrom.scm (cdemu-daemon): Update to 3.2.4.

4 years agognu: libmirage: Update to 3.2.4.
Tobias Geerinckx-Rice [Sat, 11 Jan 2020 02:47:58 +0000 (03:47 +0100)]
gnu: libmirage: Update to 3.2.4.

* gnu/packages/cdrom.scm (libmirage): Update to 3.2.4.

4 years agognu: impressive: Update to 0.12.1.
Tobias Geerinckx-Rice [Fri, 10 Jan 2020 20:44:47 +0000 (21:44 +0100)]
gnu: impressive: Update to 0.12.1.

* gnu/packages/pdf.scm (impressive): Update to 0.12.1.

4 years agognu: kdevelop: Update to 5.4.6.
Tobias Geerinckx-Rice [Fri, 10 Jan 2020 20:38:19 +0000 (21:38 +0100)]
gnu: kdevelop: Update to 5.4.6.

* gnu/packages/kde.scm (kdevelop): Update to 5.4.6.

4 years agognu: upower: Update to 0.99.11.
Tobias Geerinckx-Rice [Fri, 10 Jan 2020 20:30:31 +0000 (21:30 +0100)]
gnu: upower: Update to 0.99.11.

* gnu/packages/gnome.scm (upower): Update to 0.99.11.
[source]: Follow home page download URI.

4 years agognu: python-glances: Update to 3.1.2.
Tobias Geerinckx-Rice [Fri, 10 Jan 2020 17:18:09 +0000 (18:18 +0100)]
gnu: python-glances: Update to 3.1.2.

* gnu/packages/python-xyz.scm (python-glances): Update to 3.1.2.

4 years agognu: ddcutil: Update to 0.9.8.
Tobias Geerinckx-Rice [Fri, 10 Jan 2020 20:52:44 +0000 (21:52 +0100)]
gnu: ddcutil: Update to 0.9.8.

* gnu/packages/hardware.scm (ddcutil): Update to 0.9.8.

4 years agognu: python-smmap2: Update to 2.0.5.
Tobias Geerinckx-Rice [Fri, 10 Jan 2020 15:59:23 +0000 (16:59 +0100)]
gnu: python-smmap2: Update to 2.0.5.

* gnu/packages/python-xyz.scm (python-smmap2): Update to 2.0.5.

4 years agognu: thunar: Update to 1.8.11.
Tobias Geerinckx-Rice [Sat, 11 Jan 2020 01:09:14 +0000 (02:09 +0100)]
gnu: thunar: Update to 1.8.11.

* gnu/packages/xfce.scm (thunar): Update to 1.8.11.

4 years agognu: xf86-input-wacom: Update to 0.39.0.
Tobias Geerinckx-Rice [Sat, 11 Jan 2020 01:08:53 +0000 (02:08 +0100)]
gnu: xf86-input-wacom: Update to 0.39.0.

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

4 years agognu: libwacom: Update to 1.2.
Tobias Geerinckx-Rice [Sat, 11 Jan 2020 01:08:34 +0000 (02:08 +0100)]
gnu: libwacom: Update to 1.2.

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

4 years agognu: mercurial: Update to 5.2.1.
Roel Janssen [Tue, 7 Jan 2020 21:00:30 +0000 (22:00 +0100)]
gnu: mercurial: Update to 5.2.1.

* gnu/packages/version-control.scm (mercurial): Update to 5.2.1.
[arguments]: Remove hard dependency on Python 2. Replace check phase to work
around known failing tests.
[native-inputs]: Add python-nose, and unzip.

Signed-off-by: Brett Gilio <brettg@gnu.org>
4 years agodoc: Clarify description of the PageKite service.
Florian Pelz [Thu, 9 Jan 2020 06:51:41 +0000 (07:51 +0100)]
doc: Clarify description of the PageKite service.

* doc/guix.texi (Networking Services): Make clear PageKite is not necessary
with port forwarding.

4 years agognu: hdf5@1.10: Update to 1.10.6.
Tobias Geerinckx-Rice [Fri, 10 Jan 2020 12:36:12 +0000 (13:36 +0100)]
gnu: hdf5@1.10: Update to 1.10.6.

* gnu/packages/maths.scm (hdf5-1.10): Update to 1.10.6.

4 years agognu: reuse: Download from PyPI.
Tobias Geerinckx-Rice [Fri, 10 Jan 2020 12:35:37 +0000 (13:35 +0100)]
gnu: reuse: Download from PyPI.

* gnu/packages/license.scm (reuse)[source]: Use PYPI-URI.

4 years agognu: reuse: Update to 0.7.0.
Tobias Geerinckx-Rice [Fri, 10 Jan 2020 12:29:41 +0000 (13:29 +0100)]
gnu: reuse: Update to 0.7.0.

* gnu/packages/license.scm (reuse): Update to 0.7.0.

4 years agognu: opensc: Eliminate obsolete test disablement.
Tobias Geerinckx-Rice [Fri, 10 Jan 2020 12:26:06 +0000 (13:26 +0100)]
gnu: opensc: Eliminate obsolete test disablement.

This follows up on commit 508d5c5fa883a3cee53f8da358d853d4b245496c,
I guess.

* gnu/packages/security-token.scm (opensc)[arguments]: Remove the
‘disable-broken-test’ phase.

4 years agognu: rng-tools: Update to 6.9.
Tobias Geerinckx-Rice [Fri, 10 Jan 2020 04:01:14 +0000 (05:01 +0100)]
gnu: rng-tools: Update to 6.9.

* gnu/packages/linux.scm (rng-tools): Update to 6.9.

4 years agognu: gnucash: Update to 3.8.
Hartmut Goebel [Tue, 31 Dec 2019 15:06:32 +0000 (16:06 +0100)]
gnu: gnucash: Update to 3.8.

* gnu/packages/gnucash.scm (gnucash, gnucash-doc): Update to 3.8.

4 years agognu: aqbanking: Update to 5.99.44beta.
Hartmut Goebel [Tue, 24 Dec 2019 12:08:54 +0000 (13:08 +0100)]
gnu: aqbanking: Update to 5.99.44beta.

* gnu/packages/gnucash.scm (aqbanking): Update to 5.99.44beta.
  [argmuents]<configure-flags>: Remove.
  [native-inputs]. Add gettext-minimal.

4 years agognu: gwenhywfar: Update to 4.99.25rc9.
Hartmut Goebel [Tue, 24 Dec 2019 12:05:50 +0000 (13:05 +0100)]
gnu: gwenhywfar: Update to 4.99.25rc9.

* gnu/packages/gnucash.scm (gwenhywfar): Update to 4.99.25rc9.

4 years agognu: lepton-eda: Fix build.
Ricardo Wurmus [Fri, 10 Jan 2020 21:43:45 +0000 (22:43 +0100)]
gnu: lepton-eda: Fix build.

This is a follow-up to commit 1101c73c7fb2e0dbba00b45c05bf36ae08bdb6f2.

* gnu/packages/engineering.scm (lepton-eda)[arguments]: Ignore inherited
phases.

4 years agognu: nfs-utils: Build rpc.svcgssd.
Ricardo Wurmus [Fri, 10 Jan 2020 21:17:10 +0000 (22:17 +0100)]
gnu: nfs-utils: Build rpc.svcgssd.

* gnu/packages/nfs.scm (nfs-utils)[arguments]: Enable building of rpc.svcgssd.

4 years agognu: monero-gui: Update to 0.15.0.3.
Guillaume Le Vaillant [Fri, 10 Jan 2020 08:52:20 +0000 (09:52 +0100)]
gnu: monero-gui: Update to 0.15.0.3.

* gnu/packages/finance.scm (monero-gui): Update to 0.15.0.3.
  [build-system]: Use qt-build-system.
  [inputs]: Remove qtwebchannel and qtx11extras.
  [arguments]: Merge fix-library-paths, fix-monerod-path, fix-qt-paths and
  fix-install-path phases into a fix-paths phase. Remove custom build,
  change-dir and wrap-program phases. Add configure and build-zxcvbn-c phases.

4 years agognu: rrdtool: Update to 1.7.2.
Tobias Geerinckx-Rice [Fri, 10 Jan 2020 03:43:38 +0000 (04:43 +0100)]
gnu: rrdtool: Update to 1.7.2.

* gnu/packages/rrdtool.scm (rrdtool): Update to 1.7.2.

4 years agognu: pcsc-lite: Update to 1.8.26.
Tobias Geerinckx-Rice [Fri, 10 Jan 2020 03:28:23 +0000 (04:28 +0100)]
gnu: pcsc-lite: Update to 1.8.26.

* gnu/packages/security-token.scm (pcsc-lite): Update to 1.8.26.

4 years agognu: pcsc-lite: Don't use NAME in source URI.
Tobias Geerinckx-Rice [Fri, 10 Jan 2020 03:28:07 +0000 (04:28 +0100)]
gnu: pcsc-lite: Don't use NAME in source URI.

* gnu/packages/security-token.scm (pcsc-lite)[source]: Hard-code NAME.

4 years agognu: font-iosevka-slab: Update source hash.
Tobias Geerinckx-Rice [Fri, 10 Jan 2020 03:22:45 +0000 (04:22 +0100)]
gnu: font-iosevka-slab: Update source hash.

* gnu/packages/fonts.scm (font-iosevka-slab)[source]: Update sha256.

4 years agognu: python-lxml: Use HTTPS home page.
Tobias Geerinckx-Rice [Fri, 10 Jan 2020 00:35:37 +0000 (01:35 +0100)]
gnu: python-lxml: Use HTTPS home page.

* gnu/packages/python-xyz.scm (python-lxml)[home-page]: Use HTTPS.

4 years agognu: python-lxml: Update to 4.4.2.
Tobias Geerinckx-Rice [Fri, 10 Jan 2020 00:34:24 +0000 (01:34 +0100)]
gnu: python-lxml: Update to 4.4.2.

* gnu/packages/python-xyz.scm (python-lxml): Update to 4.4.2.

4 years agognu: hplip: Fix scanner model detection.
Danny Milosavljevic [Thu, 9 Jan 2020 23:25:50 +0000 (00:25 +0100)]
gnu: hplip: Fix scanner model detection.

* gnu/packages/cups.scm (hplip)[arguments]<#:phases>[install-models-dat]: New
phase.

4 years agognu: Add libmediaart.
Raghav Gururajan [Thu, 2 Jan 2020 19:53:01 +0000 (14:53 -0500)]
gnu: Add libmediaart.

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

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
4 years agognu: Add emacs-monky.
Joseph LaFreniere [Thu, 2 Jan 2020 07:43:21 +0000 (01:43 -0600)]
gnu: Add emacs-monky.

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

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
4 years agodoc: Add a cooptation policy for commit access.
Ludovic Courtès [Wed, 1 Jan 2020 15:32:42 +0000 (16:32 +0100)]
doc: Add a cooptation policy for commit access.

* doc/contributing.texi (Commit Access): Draft a cooptation policy.

4 years agodoc: Encourage patch review.
Ludovic Courtès [Wed, 1 Jan 2020 16:11:42 +0000 (17:11 +0100)]
doc: Encourage patch review.

* doc/contributing.texi (Commit Access): Add note about patch review.

4 years agodoc: Move "Commit Access" section from 'HACKING' to the manual.
Ludovic Courtès [Wed, 1 Jan 2020 15:14:08 +0000 (16:14 +0100)]
doc: Move "Commit Access" section from 'HACKING' to the manual.

* HACKING (Commit Access): Remove.
(Contributing): Update URL of the manual.
* doc/contributing.texi (Commit Access): New section.
(Submitting Patches): Add cross reference.

4 years agodoc: Add "Tracking Bugs and Patches" section.
Ludovic Courtès [Wed, 1 Jan 2020 15:05:11 +0000 (16:05 +0100)]
doc: Add "Tracking Bugs and Patches" section.

* doc/contributing.texi (Tracking Bugs and Patches): New section.
(Submitting Patches): Refer to it.
* doc/guix.texi: Update copyright line.
* HACKING (Using emacs-debbugs): Remove.

4 years agochannels: Provide a hint when the 'guix' channel is lacking.
Ludovic Courtès [Thu, 9 Jan 2020 10:21:31 +0000 (11:21 +0100)]
channels: Provide a hint when the 'guix' channel is lacking.

Fixes <https://bugs.gnu.org/39043>.
Reported by Jesse Gibbons <jgibbons2357@gmail.com>.

* guix/channels.scm (channel-instance-derivations): Raise '&fix-hint'
condition in addition to the '&message' condition.

4 years agolint: Check for more packages which should be native.
Danny Milosavljevic [Thu, 9 Jan 2020 15:32:16 +0000 (16:32 +0100)]
lint: Check for more packages which should be native.

* guix/lint.scm (check-inputs-should-be-native): Add autoconf, automake,
bison, dejagnu, desktop-file-utils, doxygen, flex, gettext,
gobject-introspection, googletest-source, groff, help2man, libtool, swig,
qmake, qttools, texinfo, xorg-server-for-tests, yelp-tools.

4 years agognu: linux-libre: Update to 5.4.10.
Mark H Weaver [Thu, 9 Jan 2020 20:39:08 +0000 (15:39 -0500)]
gnu: linux-libre: Update to 5.4.10.

* gnu/packages/linux.scm (linux-libre-5.4-version): Update to 5.4.10.
(linux-libre-5.4-pristine-source): Update hash.

4 years agognu: linux-libre@4.19: Update to 4.19.94.
Mark H Weaver [Thu, 9 Jan 2020 20:38:29 +0000 (15:38 -0500)]
gnu: linux-libre@4.19: Update to 4.19.94.

* gnu/packages/linux.scm (linux-libre-4.19-version): Update to 4.19.94.
(linux-libre-4.19-pristine-source): Update hash.

4 years agognu: linux-libre@4.14: Update to 4.14.163.
Mark H Weaver [Thu, 9 Jan 2020 20:37:32 +0000 (15:37 -0500)]
gnu: linux-libre@4.14: Update to 4.14.163.

* gnu/packages/linux.scm (linux-libre-4.14-version): Update to 4.14.163.
(linux-libre-4.14-pristine-source): Update hash.

4 years agognu: icecat: Update to 68.4.1-guix0-preview1 [fixes CVE-2019-17026].
Mark H Weaver [Thu, 9 Jan 2020 18:55:25 +0000 (13:55 -0500)]
gnu: icecat: Update to 68.4.1-guix0-preview1 [fixes CVE-2019-17026].

* gnu/packages/gnuzilla.scm (%icecat-version, %icecat-build-id): Update.
(icecat-source): Update hash of upstream firefox source tarball,
'upstream-icecat-base-version', and commit and hash of gnuzilla checkout.
* gnu/packages/patches/icecat-makeicecat.patch: Adapt to upstream changes.

4 years agognu: dillo: Fix SSL support.
Mark H Weaver [Thu, 9 Jan 2020 04:04:13 +0000 (23:04 -0500)]
gnu: dillo: Fix SSL support.

* gnu/packages/web-browsers.scm (dillo)[inputs]: Use openssl-1.0
in place of openssl.

4 years agognu: emacs-ledger-mode: Fix autoload failure.
Brant Gardner [Wed, 25 Dec 2019 16:11:41 +0000 (10:11 -0600)]
gnu: emacs-ledger-mode: Fix autoload failure.

* gnu/packages/finance.scm (emacs-ledger-mode)[arguments]: Replace the
  'relocate-elisp' phase by a 'patch-site-dir' phase to put the files in the
  right directory and a 'generate-autoload' phase to make the autoload file.

Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
4 years agognu: Add gnome-color-manager.
Raghav Gururajan [Thu, 9 Jan 2020 14:55:25 +0000 (15:55 +0100)]
gnu: Add gnome-color-manager.

* gnu/packages/gnome.scm (gnome-color-manager): New variable.

4 years agognu: qtxmlpatterns: Build QML plugin for XmlListModel.
Guillaume Le Vaillant [Sun, 5 Jan 2020 18:27:17 +0000 (19:27 +0100)]
gnu: qtxmlpatterns: Build QML plugin for XmlListModel.

* gnu/packages/qt.scm (qtdeclarative)[native-inputs]: Remove qtxmlpatterns.
  (qtxmlpatterns)[native-inputs]: Add qtdeclarative.

4 years agognu: Add gnome-online-miners.
Raghav Gururajan [Thu, 9 Jan 2020 14:14:31 +0000 (09:14 -0500)]
gnu: Add gnome-online-miners.

* gnu/packages/gnome.scm (gnome-online-miners): New variable.

Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
4 years agognu: Add emacs-ebib.
Paul Garlick [Thu, 9 Jan 2020 13:09:19 +0000 (13:09 +0000)]
gnu: Add emacs-ebib.

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

4 years agognu: smithwaterman: Update to 0.0.0-2.2610e25.
Efraim Flashner [Wed, 8 Jan 2020 10:49:17 +0000 (12:49 +0200)]
gnu: smithwaterman: Update to 0.0.0-2.2610e25.

* gnu/packages/bioinformatics.scm (smithwaterman): Update to 0.0.0-2.2610e25.
[arguments]: Add make-flags to build static library. Adjust custom
'install phase to install static library.

4 years agognu: vcflib: Update to 1.0.1.
Efraim Flashner [Wed, 8 Jan 2020 10:17:58 +0000 (12:17 +0200)]
gnu: vcflib: Update to 1.0.1.

* gnu/packages/bioinformatics.scm (vcflib): Update to 1.0.1.
[source]: Download using url-fetch.
[native-inputs]: Sort alphabetically. Move perl, python ...
[inputs]: ... to here.
[arguments]: Add make-flags. Update custom 'build phase.

(tabixpp-freebayes): Remove variable.
(freebayes)[native-inputs]: Use tabixpp-source over tabixpp-freebayes.

4 years agognu: fastahack: Update to 1.0.0.
Efraim Flashner [Wed, 8 Jan 2020 09:58:45 +0000 (11:58 +0200)]
gnu: fastahack: Update to 1.0.0.

* gnu/packages/bioinformatics.scm (fastahack): Update to 1.0.0.

4 years agognu: Add intervaltree.
Efraim Flashner [Wed, 8 Jan 2020 09:55:17 +0000 (11:55 +0200)]
gnu: Add intervaltree.

* gnu/packages/bioinformatics.scm (intervaltree): New variable.
(vcflib, freebayes)[native-inputs]: Use packaged intervaltree's source.

4 years agognu: tabixpp: Update to 1.1.0.
Efraim Flashner [Wed, 8 Jan 2020 09:30:36 +0000 (11:30 +0200)]
gnu: tabixpp: Update to 1.1.0.

* gnu/packages/bioinformatics.scm (tabixpp): Update to 1.1.0.
[source]: Add snippet to remove vendored library.
[arguments]: Adjust custom 'build phase to fix INCLUDES.

4 years agognu: bwa: Install static library.
Efraim Flashner [Wed, 8 Jan 2020 09:29:09 +0000 (11:29 +0200)]
gnu: bwa: Install static library.

* gnu/packages/bioinformatics.scm (bwa)[arguments]: Install static
library.

4 years agognu: emacs-cyberpunk-theme: Update to 1.21.
Pierre Neidhardt [Thu, 9 Jan 2020 11:07:02 +0000 (12:07 +0100)]
gnu: emacs-cyberpunk-theme: Update to 1.21.

* gnu/packages/emacs-xyz.scm (emacs-cyberpunk-theme): Update to 1.21.

4 years agognu: emacs-helm-org: Update to 20191229.
Pierre Neidhardt [Thu, 9 Jan 2020 10:27:25 +0000 (11:27 +0100)]
gnu: emacs-helm-org: Update to 20191229.

* gnu/packages/emacs-xyz.scm (emacs-helm-org): Update to 20191229.

4 years agognu: u-boot-2019.10: Remove obsolete version.
Vagrant Cascadian [Thu, 9 Jan 2020 01:47:09 +0000 (17:47 -0800)]
gnu: u-boot-2019.10: Remove obsolete version.

* gnu/packages/bootloaders (u-boot-2019.10): Remove variable.
  (u-boot-firefly-rk3399): Use default u-boot version.
  (u-boot-rockpro64-rk3399): Use default u-boot version.
  (u-boot-rock64-rk3328): Use default u-boot version.
  [arguments]: Remove add-u-boot-itb phase.

4 years agognu: u-boot: Update to 2020.01.
Vagrant Cascadian [Thu, 9 Jan 2020 01:44:48 +0000 (17:44 -0800)]
gnu: u-boot: Update to 2020.01.

* gnu/packages/bootloaders (u-boot): Update to 2020.01.
  [source]: Remove patch u-boot-fix-mkimage-header-verification.
  [native-inputs]: Update to use python 3 and add perl.
  (u-boot-tools)[configure]: Use tools-only_defconfig.
  [arguments]: Update phase updating python-coverage to work with python 3.
  Drop obsolete substitution for test_ofplatdata.
  Disable code coverage tests and binman tests.
* gnu/packages/patches/u-boot-fix-mkimage-header-verification.patch: Remove file.
* gnu/local.mk [dist_patch_DATA]: Update accordingly.

4 years agognu: arm-trusted-firmware: Update to 2.2.
Vagrant Cascadian [Wed, 23 Oct 2019 05:45:17 +0000 (22:45 -0700)]
gnu: arm-trusted-firmware: Update to 2.2.

* gnu/packages/firmware (make-arm-trusted-firmware): Update to 2.2.
  [source]: Update URL.
  [homepage]: Update URL.
* gnu/packages/patches/arm-trusted-firmware-optional-bin-generation.patch:
  Remove patch.
* gnu/packages/patches/arm-trusted-firmware-rockchip-disable-binary.patch:
  Remove patch.
* gnu/local.mk (dist_patch_DATA): Update accordingly.

4 years agognu: system-config-printer: Update to 1.5.12.
Oleg Pykhalov [Thu, 9 Jan 2020 01:37:52 +0000 (04:37 +0300)]
gnu: system-config-printer: Update to 1.5.12.

* gnu/packages/gnome.scm (system-config-printer): Update to 1.5.12.

4 years agognu: sysstat: Update to 12.3.1.
Oleg Pykhalov [Thu, 9 Jan 2020 01:35:39 +0000 (04:35 +0300)]
gnu: sysstat: Update to 12.3.1.

* gnu/packages/linux.scm (sysstat): Update to 12.3.1.