Commit Graph

45105 Commits (a32e3b90787ab3d221fb1b8d0bfd9c519a874230)

Author SHA1 Message Date
Meiyo Peng e23b6a6800
gnu: sway: Hardcode path to swaybg.
* gnu/packages/wm.scm (sway)[arguments]: Hardcode path to swaybg.
  [inputs]: Add swaybg.

Signed-off-by: Marius Bakke <mbakke@fastmail.com>
2019-06-14 14:06:06 +02:00
Marius Bakke 71bfbe9ba8
gnu: whois: Update to 5.4.3.
* gnu/packages/networking.scm (whois): Update to 5.4.3.
2019-06-14 14:06:06 +02:00
Marius Bakke 54200da4b3
gnu: ungoogled-chromium: Update to 75.0.3770.90-0.5d8abc3 [fixes CVE-2019-5842].
* gnu/packages/chromium.scm (%chromium-version): Update to 75.0.3770.90.
(%debian-revision): Update to 'debian/75.0.3770.90-1'.
(%chromium-origin): Update hashes.
2019-06-14 14:05:47 +02:00
Robert Vollmert ca45da9fc9
import: hackage: Handle Hackage revisions.
Hackage packages can have metadata revisions (Cabal file only) that are
not reflected in the source archive.  The Haskell build system has
support for this, but until now the Hackage importer would create a
package based on the revised Cabal file which would then build using the
old Cabal file.

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

* guix/import/cabal.scm (<cabal-package>): Add 'revision' field.
(eval-cabal): Parse 'x-revision:' property.
* guix/import/hackage.scm (read-cabal-and-hash): New procedure.
(hackage-fetch-and-hash): New procedure.
(hackage-fetch): Rewrite using 'hackage-fetch-and-hash'.
(hackage-module->sexp): Add 'cabal-hash' argument and use it to populate
the '#:cabal-revision' argument.
(hackage->guix-package): Use the new '-and-hash' functions to get the
hash of the Cabal file and pass it to 'hackage-module->sexp'.
* guix/tests/hackage.scm: Test import of Cabal file revision.

Signed-off-by: Timothy Sample <samplet@ngyro.com>
2019-06-13 22:18:52 -04:00
Ludovic Courtès 30825c4629
gnu: emacs-org-noter: Tweak.
* gnu/packages/emacs-xyz.scm (emacs-org-noter): Adjust indentation and
description.
2019-06-13 23:27:34 +02:00
Dimakakos Dimos 576cb396ea
gnu: Add emacs-org-noter
* gnu/packages/emacs-xyz.scm (emacs-org-noter): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2019-06-13 23:23:28 +02:00
Alex Griffin 1aa2c25560
gnu: ikiwiki: Update to 3.20190228.
* gnu/packages/web.scm (ikiwiki): Update to 3.20190228.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2019-06-13 23:06:45 +02:00
Alex Griffin 1682368932
gnu: perl-yaml-libyaml: Update to 0.78.
* gnu/packages/perl.scm (perl-yaml-libyaml): Update to 0.78.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2019-06-13 23:06:45 +02:00
Alex Griffin 15f836efc1
gnu: perl-canary-stability: Update to 2013.
* gnu/packages/perl.scm (perl-canary-stability): Update to 2013.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2019-06-13 23:06:45 +02:00
Alex Griffin a3abc3fdfc
gnu: perl-db-file: Update to 1.852.
* gnu/packages/databases.scm (perl-db-file): Update to 1.852.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2019-06-13 23:06:44 +02:00
Alex Griffin 6bb5a7e08c
gnu: Add emacs-solaire-mode.
* gnu/packages/emacs-xyz.scm (emacs-solaire-mode): New variable.

Signed-off-by: Oleg Pykhalov <go.wigust@gmail.com>
2019-06-13 23:40:06 +03:00
Alex Griffin 4df1d31b54
gnu: Add emacs-mixed-pitch.
* gnu/packages/emacs-xyz.scm (emacs-mixed-pitch): New variable.

Signed-off-by: Oleg Pykhalov <go.wigust@gmail.com>
2019-06-13 23:40:05 +03:00
Alex Griffin fdcd50b93b
gnu: Add emacs-restart-emacs.
* gnu/packages/emacs-xyz.scm (emacs-restart-emacs): New variable.

Signed-off-by: Oleg Pykhalov <go.wigust@gmail.com>
2019-06-13 23:40:05 +03:00
Alex Griffin 9989e06fda
gnu: Add emacs-elfeed-org.
* gnu/packages/emacs-xyz.scm (emacs-elfeed-org): New variable.

Signed-off-by: Oleg Pykhalov <go.wigust@gmail.com>
2019-06-13 23:40:05 +03:00
Oleg Pykhalov c56a65aae7
gnu: Add emacs-xtest.
* gnu/packages/emacs-xyz.scm (emacs-xtest): New variable.
2019-06-13 23:40:05 +03:00
Efraim Flashner 9062fde4c6
gnu: parcimonie: Update source and home-page.
* gnu/packages/gnupg.scm (parcimonie)[source]: Update to new url.
[home-page]: Same.
2019-06-13 20:43:20 +03:00
Robert Vollmert ed8d3f33a5
build-system/haskell: Generate Setup.hs if needed.
The default Setup.hs is boilerplate that is frequently left out of
source packages.  Several packages already add a phase to generate it,
so moving this phase to the build system is just factoring out an
existing pattern.

See <https://github.com/phadej/time-compat/issues/4>.

* guix/build/haskell-build-system.scm (generate-setuphs): New procedure.
(%standard-phases): Add it after 'unpack'.
* gnu/packages/haskell.scm (ghc-foundation, ghc-inline-c,
ghc-inline-c-cpp, ghc-rio): Remove 'arguments'.

Signed-off-by: Timothy Sample <samplet@ngyro.com>
2019-06-13 13:30:24 -04:00
Robert Vollmert 5f9f2c82e6
build-system/haskell: Fix Haddock phase docstring.
* guix/build/haskell-build-system.scm (haddock): Fix docstring.

Signed-off-by: Timothy Sample <samplet@ngyro.com>
2019-06-13 13:30:23 -04:00
Marius Bakke f388f4a568
Merge branch 'staging' 2019-06-13 15:27:30 +02:00
Marius Bakke 2a9d89afb6
gnu: gstreamer: Skip failing test on 32-bit systems.
* gnu/packages/gstreamer.scm (gstreamer)[arguments]: When building for a
32-bit system, add #:phases.
2019-06-13 14:08:32 +02:00
Nicolas Goaziou 3745909dc9
gnu: Add ri-li.
* gnu/packages/games.scm (ri-li): New variable.
* gnu/packages/patches/ri-li-modernize_cpp.patch: New file.
* gnu/local.mk (dist_patch_DATA): Reference patch.
2019-06-13 13:59:58 +02:00
Carlo Zancanaro 47f2168b6f
gnu: Add Kawa.
* gnu/packages/kawa.scm: New file.
* gnu/local.mk (GNU_SYSTEM_MODULES): Add it.
2019-06-13 13:00:37 +02:00
Ludovic Courtès 0ddf17dc1a
gnu; emacs-realgud: Add a 'file-name' field to the origin.
* gnu/packages/emacs-xyz.scm (emacs-realgud)[source]: Add 'file-name'.
2019-06-13 13:00:37 +02:00
Brian Leung 0882c491f0
gnu: emacs-realgud: Update to 1.5.0.
* gnu/packages/emacs-xyz.scm (emacs-realgud): Update to 1.5.0.
[source]: Fetch from git.
Remove upstreamed patch.
* gnu/packages/patches/emacs-realgud-fix-configure-ac.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Remove it.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2019-06-13 13:00:37 +02:00
Ludovic Courtès ed8a551653
gnu: gpxsee: Fetch from Git instead of a generated tarball.
* gnu/packages/gps.scm (gpxsee)[source]: Use 'git-fetch'.
2019-06-13 13:00:37 +02:00
Nikolay Korotkiy 286ef5d97c
gnu: gpxsee: Upgrade to 7.8
* gnu/packages/gps.scm (gpxsee): Update to 7.8.
[arguments]: Leave "config.h" unchanged in 'configure' phase.
Remove 'install' phase.
[home-page, synopsis, description]: Update.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2019-06-13 13:00:37 +02:00
Ludovic Courtès b801646727
gnu: nyacc: Add 0.94.0.
* gnu/packages/mes.scm (nyacc): Rename to...
(nyacc-0.86): ... this.
(nyacc): New variable.
(mes)[propagated-inputs]: Use NYACC-0.86 instead of NYACC.
2019-06-13 13:00:36 +02:00
Nicolas Goaziou 4d6d2d7cca
gnu: gimp: Update to 2.10.12.
* gnu/packages/gimp.scm (gimp): Update to 2.10.12.
2019-06-13 12:52:55 +02:00
Nicolas Goaziou 42b641b7d8
gnu: babl: Update to 0.1.66.
* gnu/packages/gimp.scm (babl): Update to 0.1.66.
2019-06-13 12:52:40 +02:00
LaFreniere, Joseph aa86c3adbd
gnu: emacs-perspective: Update to 2.2.
* gnu/packages/emacs-xyz.scm (emacs-perspective): Update to 2.2.
[source]: Download using git-fetch.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
2019-06-13 10:46:24 +03:00
Efraim Flashner e22edabbb5
gnu: gpodder: Only return #t when needed.
* gnu/packages/gpodder.scm (gpodder)[arguments]: Return #t from
'do-not-run-msgmerge. Don't return #t from 'install.
2019-06-13 09:35:08 +03:00
Pierre Langlois 2bb078efe5
gnu: gpodder: Update to 3.10.9.
* gnu/packages/gpodder.scm (gpodder): Update to 3.10.9.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
2019-06-13 09:29:27 +03:00
Tobias Geerinckx-Rice 5cc5364eba
gnu: dstat: Add python2-six.
* gnu/packages/admin.scm (dstat)[inputs]: Add python2-six.
[arguments]: Add ‘wrap’ phase to make dstat find required modules.
2019-06-13 02:26:21 +02:00
Ludovic Courtès 76533c52c0
daemon: Replace "illegal" by "invalid" in error messages.
* nix/libstore/build.cc (parseReferenceSpecifiers): Replace "illegal" by
"invalid".
* nix/libstore/globals.cc (Settings::pack): Likewise.
* nix/libstore/store-api.cc (checkStoreName): Likewise.
2019-06-13 00:44:01 +02:00
Florian Pelz bd9b15fb31
gnu: Add USB_ModeSwitch.
* gnu/packages/usb-modeswitch.scm: New file.
* gnu/packages/patches/usb-modeswitch-accept-config-arg.patch: New file.
* gnu/local.mk (GNU_SYSTEM_MODULES): Add package.
  (dist_patch_DATA): Add patch.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2019-06-13 00:44:01 +02:00
Jan Nieuwenhuizen f0de9544a3
gnu: Add emacsy.
* gnu/packages/guile-xyz.scm (emacsy): New variable.
2019-06-12 23:31:43 +02:00
Leo Famulari ff22ff42a1
gnu: GParted: Update 1.0.0.
* gnu/packages/disk.scm (gparted): Update to 1.0.0.
[arguments]: Remove obsolete configure flag.
[inputs]: Use gtkmm@3. Add yelp-tools and itstool. Remove libxslt,
gnome-doc-utils, docbook-xml-4.2, python-2, python2-libxml2, and which.
[native-inputs]: Add lvm2.
2019-06-12 15:46:53 -04:00
Mark H Weaver ac72162efd
gnu: linux-libre: Update to 5.1.9.
* gnu/packages/linux.scm (%linux-libre-version): Update to 5.1.9.
(%linux-libre-hash): Update hash.
2019-06-12 13:05:09 -04:00
Mark H Weaver 6a2d0191c6
gnu: linux-libre@4.19: Update to 4.19.50.
* gnu/packages/linux.scm (%linux-libre-4.19-version): Update to 4.19.50.
(%linux-libre-4.19-hash): Update hash.
2019-06-12 13:03:53 -04:00
Mark H Weaver 7ef05bcf4b
gnu: linux-libre@4.14: Update to 4.14.125.
* gnu/packages/linux.scm (%linux-libre-4.14-version): Update to 4.14.125.
(%linux-libre-4.14-hash): Update hash.
2019-06-12 13:01:12 -04:00
Mark H Weaver 07b7a45a49
gnu: linux-libre@4.9: Update to 4.9.181.
* gnu/packages/linux.scm (linux-libre-4.9): Update to 4.9.181.
2019-06-12 13:00:33 -04:00
Mark H Weaver a542521a70
gnu: linux-libre@4.4: Update to 4.4.181.
* gnu/packages/linux.scm (linux-libre-4.4): Update to 4.4.181.
2019-06-12 12:59:50 -04:00
Julien Lepiller 88b696ef27
doc: Improve tarball extraction example. 2019-06-12 18:52:42 +02:00
Christopher Baines 2916deb91b
gnu: perl-io-socket-ssl: Update to 2.066.
The previous version failed to build, but this updated version does build
successfully.

* gnu/packages/web.scm (perl-io-socket-ssl): Update to 2.066.
2019-06-12 17:49:23 +01:00
Julien Lepiller 24d32e67db
gnu: Add python-pynvim.
* gnu/packages/vim.scm (python-pynvim, python2-pynvim): New variables.
2019-06-12 18:48:15 +02:00
Tobias Geerinckx-Rice 79d19d7d90
services: Import (srfi srfi-26) from the build side.
See <https://lists.gnu.org/archive/html/guix-devel/2019-06/msg00119.html>.

* gnu/services/nix.scm (nix-activation): Remove (srfi srfi-26) from (host-)
imported modules.
2019-06-12 17:26:28 +02:00
Ricardo Wurmus 798b80cea2
gnu: Add r-txdb-hsapiens-ucsc-hg38-knowngene.
* gnu/packages/bioconductor.scm (r-txdb-hsapiens-ucsc-hg38-knowngene): New variable.
2019-06-12 16:23:44 +02:00
Marius Bakke 136eeb0b49
gnu: ungoogled-chromium: Update to 75.0.3770.80-0.5d8abc3.
* gnu/packages/chromium.scm (%preserved-third-party-files): Update for 75.
(%chromium-version): Update to 75.0.3770.80.
(%ungoogled-revision): Update to 5d8abc38b43a62f379615a0dc972b29d9aebb4b4.
(%debian-revision): Update to debian/75.0.3770.80-1.
(%chromium-origin, %ungoogled-origin, %debian-origin): Update hashes.
(ungoogled-chromium-source): Include Debians GCC6 patches.
(ungoogled-chromium)[arguments]: Add "enable_vr=false" to #:configure-flags.
2019-06-12 13:29:45 +02:00
Marius Bakke d0804ea0c6
gnu: chromium: Move origins into separate variables.
* gnu/packages/chromium.scm (%chromium-origin, %ungoogled-origin,
%debian-origin): New variables.
(ungoogled-chromium-source): Adjust accordingly.
2019-06-12 13:29:35 +02:00
Ricardo Wurmus 6054c823ae
gnu: pigx-rnaseq: Update to 0.0.6.
* gnu/packages/bioinformatics.scm (pigx-rnaseq): Update to 0.0.6.
[inputs]: Remove bedtools.
2019-06-12 13:12:00 +02:00