From 44ad1c16e2e681f0b9cc35dc2a1b8d7e685cbe48 Mon Sep 17 00:00:00 2001 From: Rutger Helling Date: Sat, 9 Feb 2019 22:19:17 +0100 Subject: gnu: Add spice-protocol@0.12.14. * gnu/packages/spice.scm (spice-protocol@0.12.14): New variable. --- gnu/packages/spice.scm | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'gnu') diff --git a/gnu/packages/spice.scm b/gnu/packages/spice.scm index 6a580c6226..77939bc8a8 100644 --- a/gnu/packages/spice.scm +++ b/gnu/packages/spice.scm @@ -1,6 +1,7 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2016 David Craven ;;; Copyright © 2018 Tobias Geerinckx-Rice +;;; Copyright © 2019 Rutger Helling ;;; ;;; This file is part of GNU Guix. ;;; @@ -113,6 +114,22 @@ (define-public spice-protocol (home-page "https://www.spice-space.org") (license (list license:bsd-3 license:lgpl2.1+)))) +;; TODO: Package lookingglass doesn't build with spice-protocol 0.12.15. Remove +;; below once that is fixed. +(define-public spice-protocol-0.12.14 + (package + (inherit spice-protocol) + (name "spice-protocol") + (version "0.12.14") + (source (origin + (method url-fetch) + (uri (string-append + "https://www.spice-space.org/download/releases/" + "spice-protocol-" version ".tar.bz2")) + (sha256 + (base32 + "170ckpgazvqv7hxy209myg67pqnd6c0gvr4ysbqgsfch6320nd90")))))) + (define-public spice-gtk (package (name "spice-gtk") -- cgit v1.2.3 From 64b632f861697751d01eb299ffac879d88c3f412 Mon Sep 17 00:00:00 2001 From: Rutger Helling Date: Sat, 9 Feb 2019 22:19:47 +0100 Subject: gnu: lookingglass: Build with spice-protocol@0.12.14. * gnu/packages/virtualization.scm (lookingglass)[inputs]: Use spice-protocol@0.12.14 instead of spice-protocol. --- gnu/packages/virtualization.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/virtualization.scm b/gnu/packages/virtualization.scm index 04165a9b8c..f5e4540329 100644 --- a/gnu/packages/virtualization.scm +++ b/gnu/packages/virtualization.scm @@ -5,7 +5,7 @@ ;;; Copyright © 2016, 2017 Ricardo Wurmus ;;; Copyright © 2017 Alex Vong ;;; Copyright © 2017 Andy Patterson -;;; Copyright © 2017, 2018 Rutger Helling +;;; Copyright © 2017, 2018, 2019 Rutger Helling ;;; Copyright © 2017, 2018, 2019 Tobias Geerinckx-Rice ;;; Copyright © 2018 Danny Milosavljevic ;;; Copyright © 2018 Sou Bunnbu @@ -815,7 +815,7 @@ (define-public lookingglass ("openssl" ,openssl) ("sdl2" ,sdl2) ("sdl2-ttf" ,sdl2-ttf) - ("spice-protocol" ,spice-protocol))) + ("spice-protocol" ,spice-protocol-0.12.14))) (native-inputs `(("libconfig" ,libconfig) ("nettle" ,nettle) ("pkg-config" ,pkg-config))) -- cgit v1.2.3 From 20310a7e92f2213ac6fa22c26feccd1a8904e0c7 Mon Sep 17 00:00:00 2001 From: Vagrant Cascadian Date: Thu, 17 Jan 2019 00:17:11 +0000 Subject: gnu: Add python-aiohttp-socks. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/python-web.scm (python-aiohttp-socks): New variable. Signed-off-by: Ludovic Courtès --- gnu/packages/python-web.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'gnu') diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 97b1f06611..61f3a194a7 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -102,6 +102,26 @@ (define-public python-aiohttp @end itemize") (license license:asl2.0))) +(define-public python-aiohttp-socks + (package + (name "python-aiohttp-socks") + (version "0.2.2") + (source + (origin + (method url-fetch) + (uri (pypi-uri "aiohttp_socks" version)) + (sha256 + (base32 + "0473702jk66xrgpm28wbdgpnak4v0dh2qmdjw7ky7hf3lwwqkggf")))) + (build-system python-build-system) + (propagated-inputs + `(("python-aiohttp" ,python-aiohttp))) + (home-page "https://github.com/romis2012/aiohttp-socks") + (synopsis "SOCKS proxy connector for aiohttp") + (description "This package provides a SOCKS proxy connector for +aiohttp. It supports SOCKS4(a) and SOCKS5.") + (license license:asl2.0))) + (define-public python-aiodns (package (name "python-aiodns") -- cgit v1.2.3 From 93d3360ab01d7115eba8972990519cdd1d5e21b1 Mon Sep 17 00:00:00 2001 From: Vagrant Cascadian Date: Thu, 17 Jan 2019 00:18:41 +0000 Subject: gnu: Add python-aiorpcx. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/python-web.scm (python-aiorpcx): New variable. Signed-off-by: Ludovic Courtès --- gnu/packages/python-web.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) (limited to 'gnu') diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 61f3a194a7..afec5ebc30 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -27,6 +27,7 @@ ;;; Copyright © 2018 Nicolas Goaziou ;;; Copyright © 2018 Mathieu Othacehe ;;; Copyright © 2018 Maxim Cournoyer +;;; Copyright © 2019 Vagrant Cascadian ;;; ;;; This file is part of GNU Guix. ;;; @@ -145,6 +146,31 @@ (define-public python-aiodns using @url{https://github.com/saghul/pycares,pycares}.") (license license:expat))) +(define-public python-aiorpcx + (package + (name "python-aiorpcx") + (version "0.10.2") + (source + (origin + (method url-fetch) + (uri (pypi-uri "aiorpcX" version)) + (sha256 + (base32 + "1p88k15jh0d2a18pnnbfcamsqi2bxvmmhpizmdlxfdxf8vy5ggyj")))) + (build-system python-build-system) + (propagated-inputs + `(("python-attrs" ,python-attrs))) + (home-page "https://github.com/kyuupichan/aiorpcX") + (synopsis "Generic asyncio RPC implementation") + (description + "aiorpcX is a generic asyncio library implementation of RPC suitable for +an application that is a client, server or both. + +The package includes a module with full coverage of JSON RPC versions 1.0 and +2.0, JSON RPC protocol auto-detection, and arbitrary message framing. It also +comes with a SOCKS proxy client.") + (license (list license:expat license:bsd-2)))) + (define-public python-falcon (package (name "python-falcon") -- cgit v1.2.3 From 81d59f4425b47ae519cd1879f802788e25cef639 Mon Sep 17 00:00:00 2001 From: Vagrant Cascadian Date: Tue, 15 Jan 2019 04:51:34 +0000 Subject: gnu: electrum: Update to 3.3.3. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/finance.scm (electrum): Update to 3.3.3. [inputs]: Add python-aiohttp, python-aiohttp-socks, python-aiorpcx and python-certifi. Signed-off-by: Ludovic Courtès --- gnu/packages/finance.scm | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/finance.scm b/gnu/packages/finance.scm index ce67694cfe..e2c7e82a7e 100644 --- a/gnu/packages/finance.scm +++ b/gnu/packages/finance.scm @@ -299,7 +299,7 @@ (define-public geierlein (define-public electrum (package (name "electrum") - (version "3.2.2") + (version "3.3.3") (source (origin (method url-fetch) @@ -308,7 +308,7 @@ (define-public electrum version ".tar.gz")) (sha256 (base32 - "1fxaxlf5vm2zydj678ls3pazyriym188iwzk60kyk26cz2p3xk39")) + "0z2zfhyawrbzs0w1426a2w0d4wsajl34ymj77qmpm41138g2ysf2")) (modules '((guix build utils))) (snippet '(begin @@ -326,6 +326,10 @@ (define-public electrum ("python-requests" ,python-requests) ("python-qrcode" ,python-qrcode) ("python-protobuf" ,python-protobuf) + ("python-aiohttp" ,python-aiohttp) + ("python-aiohttp-socks" ,python-aiohttp-socks) + ("python-aiorpcx" ,python-aiorpcx) + ("python-certifi" ,python-certifi) ("python-dnspython" ,python-dnspython) ("python-jsonrpclib-pelix" ,python-jsonrpclib-pelix))) (arguments -- cgit v1.2.3 From 2becddeb0c2885cf9767072e0677a1913807976f Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Sat, 9 Feb 2019 23:30:13 +0100 Subject: gnu: emacs-pdf-tools: Update to 0.90. * gnu/packages/emacs-xyz.scm (emacs-pdf-tools): Update to 0.90. [source]: Remove patch. * gnu/packages/patches/emacs-pdf-tools-poppler.patch: Delete file. * gnu/local.mk (dist_patch_DATA): Remove reference to deleted file. --- gnu/local.mk | 1 - gnu/packages/emacs-xyz.scm | 7 ++-- gnu/packages/patches/emacs-pdf-tools-poppler.patch | 41 ---------------------- 3 files changed, 3 insertions(+), 46 deletions(-) delete mode 100644 gnu/packages/patches/emacs-pdf-tools-poppler.patch (limited to 'gnu') diff --git a/gnu/local.mk b/gnu/local.mk index cf8d29e4ce..37083ca916 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -726,7 +726,6 @@ dist_patch_DATA = \ %D%/packages/patches/emacs-fix-scheme-indent-function.patch \ %D%/packages/patches/emacs-json-reformat-fix-tests.patch \ %D%/packages/patches/emacs-highlight-stages-add-gexp.patch \ - %D%/packages/patches/emacs-pdf-tools-poppler.patch \ %D%/packages/patches/emacs-scheme-complete-scheme-r5rs-info.patch \ %D%/packages/patches/emacs-source-date-epoch.patch \ %D%/packages/patches/emacs-realgud-fix-configure-ac.patch \ diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 5d8aa0e863..339927a4f0 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -1532,7 +1532,7 @@ (define-public emacs-tablist (define-public emacs-pdf-tools (package (name "emacs-pdf-tools") - (version "0.80") + (version "0.90") (home-page "https://github.com/politza/pdf-tools") (source (origin (method git-fetch) @@ -1541,11 +1541,10 @@ (define-public emacs-pdf-tools (file-name (git-file-name name version)) (sha256 (base32 - "1i4647vax5na73basc5dz4lh9kprir00fh8ps4i0l1y3ippnjs2s")) - (patches (search-patches "emacs-pdf-tools-poppler.patch")))) + "0iv2g5kd14zk3r5dzdw7b7hk4b5w7qpbilcqkja46jgxbb6xnpl9")))) (build-system gnu-build-system) (arguments - `(#:tests? #f ; there are no tests + `(#:tests? #f ; there are no tests #:modules ((guix build gnu-build-system) ((guix build emacs-build-system) #:prefix emacs:) (guix build utils) diff --git a/gnu/packages/patches/emacs-pdf-tools-poppler.patch b/gnu/packages/patches/emacs-pdf-tools-poppler.patch deleted file mode 100644 index 0477508fa9..0000000000 --- a/gnu/packages/patches/emacs-pdf-tools-poppler.patch +++ /dev/null @@ -1,41 +0,0 @@ -Fix build issue with recent Poppler: - . - -This combines upstream commits -6cd76dec9aece2a8daa90f17ab77fbf773157a1d..50a5297b82e26cfd52f6c00645ddc1057099d6a7 -for this file. - -diff --git a/server/poppler-hack.cc b/server/poppler-hack.cc -index 0c62f73..427f9df 100644 ---- a/server/poppler-hack.cc -+++ b/server/poppler-hack.cc -@@ -51,7 +51,10 @@ GType poppler_annot_markup_get_type (void) G_GNUC_CONST; - double y2; - }; - -- char *_xpoppler_goo_string_to_utf8(GooString *s) -+ // This function does not modify its argument s, but for -+ // compatibility reasons (e.g. getLength in GooString.h before 2015) -+ // with older poppler code, it can't be declared as such. -+ char *_xpoppler_goo_string_to_utf8(/* const */ GooString *s) - { - char *result; - -@@ -85,7 +88,7 @@ GType poppler_annot_markup_get_type (void) G_GNUC_CONST; - // Set the rectangle of an annotation. It was first added in v0.26. - void xpoppler_annot_set_rectangle (PopplerAnnot *a, PopplerRectangle *rectangle) - { -- GooString *state = a->annot->getAppearState (); -+ GooString *state = (GooString*) a->annot->getAppearState (); - char *ustate = _xpoppler_goo_string_to_utf8 (state); - - a->annot->setRect (rectangle->x1, rectangle->y1, -@@ -105,7 +108,7 @@ GType poppler_annot_markup_get_type (void) G_GNUC_CONST; - g_return_val_if_fail (POPPLER_IS_ANNOT_MARKUP (poppler_annot), NULL); - - annot = static_cast(POPPLER_ANNOT (poppler_annot)->annot); -- text = annot->getDate (); -+ text = (GooString*) annot->getDate (); - - return text ? _xpoppler_goo_string_to_utf8 (text) : NULL; - } -- cgit v1.2.3 From 1d5be0b61c80ca9045896d2faa4842955de7cb8b Mon Sep 17 00:00:00 2001 From: Mark H Weaver Date: Sat, 9 Feb 2019 23:01:12 -0500 Subject: gnu: linux-libre@4.4: Update to 4.4.174. * gnu/packages/linux.scm (linux-libre-4.4): Update to 4.4.174. --- gnu/packages/linux.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index f3b5476f2d..d7c242015e 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -457,8 +457,8 @@ (define-public linux-libre-4.9 #:configuration-file kernel-config)) (define-public linux-libre-4.4 - (make-linux-libre "4.4.173" - "1iy8qzjvcssf7ppb590lqzhb01ap2fjqv9iam691q1d4r8vmgcsh" + (make-linux-libre "4.4.174" + "1njd50yc180aarpd5crss3wn0n82lhxbyjrifsm647f3dfjhyvjb" '("x86_64-linux" "i686-linux") #:configuration-file kernel-config)) -- cgit v1.2.3 From 0b767e3d5b2f02976587bba4be7379cb5c19b992 Mon Sep 17 00:00:00 2001 From: Pierre Neidhardt Date: Fri, 8 Feb 2019 15:30:08 +0100 Subject: install: Add nss-certs to the image. * gnu/system/install.scm (installation-os)[packages]: Add nss-certs. --- gnu/system/install.scm | 1 + 1 file changed, 1 insertion(+) (limited to 'gnu') diff --git a/gnu/system/install.scm b/gnu/system/install.scm index 880a8be32d..137123c725 100644 --- a/gnu/system/install.scm +++ b/gnu/system/install.scm @@ -409,6 +409,7 @@ (define installation-os ;; available here, so we keep that. bash-completion nvi ;:wq! + nss-certs ; To access HTTPS, use git, etc. %base-packages)))) (define* (os-with-u-boot os board #:key (bootloader-target "/dev/mmcblk0") -- cgit v1.2.3 From 9ce09a7698e91e907cea112c12d4837de27324dd Mon Sep 17 00:00:00 2001 From: Pierre Neidhardt Date: Sun, 10 Feb 2019 15:30:35 +0100 Subject: install: Use (gnu package certs) module for the nss-certs package. * gnu/system/install.scm: Use (gnu package certs). --- gnu/system/install.scm | 1 + 1 file changed, 1 insertion(+) (limited to 'gnu') diff --git a/gnu/system/install.scm b/gnu/system/install.scm index 137123c725..0ba2066d11 100644 --- a/gnu/system/install.scm +++ b/gnu/system/install.scm @@ -36,6 +36,7 @@ (define-module (gnu system install) #:use-module (gnu packages admin) #:use-module (gnu packages bash) #:use-module (gnu packages bootloaders) + #:use-module (gnu packages certs) #:use-module (gnu packages fonts) #:use-module (gnu packages fontutils) #:use-module (gnu packages guile) -- cgit v1.2.3 From fba9a660954f77ef8ba0c481345ded9b7948ec22 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sat, 9 Feb 2019 21:46:50 +0100 Subject: gnu: xinetd: Don't use unstable tarball. * gnu/packages/web.scm (xinetd)[source]: Use GIT-FETCH and GIT-FILE-NAME. --- gnu/packages/web.scm | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index 45ea77ad36..158d542d7f 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -16,7 +16,7 @@ ;;; Copyright © 2016 Clément Lassieur ;;; Copyright © 2016, 2017 Nils Gillmann ;;; Copyright © 2016, 2017, 2018, 2019 Arun Isaac -;;; Copyright © 2016, 2017, 2018 Tobias Geerinckx-Rice +;;; Copyright © 2016, 2017, 2018, 2019 Tobias Geerinckx-Rice ;;; Copyright © 2016 Bake Timmons ;;; Copyright © 2017 Thomas Danckaert ;;; Copyright © 2017, 2018 Marius Bakke @@ -4877,15 +4877,17 @@ (define-public xinetd (version "2.3.15") (source (origin - (method url-fetch) - (uri - (string-append "https://github.com/xinetd-org/xinetd/archive/xinetd-" - (string-join (string-split version #\.) "-") ".tar.gz")) + (method git-fetch) + (uri (git-reference + (url "https://github.com/xinetd-org/xinetd.git") + (commit (string-append "xinetd-" + (string-join (string-split version #\.) + "-"))))) + (file-name (git-file-name name version)) (patches (search-patches "xinetd-CVE-2013-4342.patch" "xinetd-fix-fd-leak.patch")) (sha256 - (base32 - "0k59x52cbzp5fw0n8zn0y54j1ps0x9b72y8k5grzswjdmgs2a2v2")))) + (base32 "0wjai6qagcgxpa1khh639ih7kswgkryc7ll1i4hxhs29sc7irdcn")))) (build-system gnu-build-system) (arguments `(#:configure-flags '("--with-loadavg") -- cgit v1.2.3 From 85e0827d909ff352ee8f56ccb740a7d5913e560e Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 10 Feb 2019 00:34:10 +0100 Subject: gnu: clojure-algo-generic: Don't use unstable tarball. * gnu/packages/clojure.scm (clojure-algo-generic)[source]: Use GIT-FETCH and GIT-FILE-NAME. --- gnu/packages/clojure.scm | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/clojure.scm b/gnu/packages/clojure.scm index 8112b65278..2f82f347b6 100644 --- a/gnu/packages/clojure.scm +++ b/gnu/packages/clojure.scm @@ -1,6 +1,7 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2018 Alex Vong ;;; Copyright © 2018 Pierre Neidhardt +;;; Copyright © 2019 Tobias Geerinckx-Rice ;;; ;;; This file is part of GNU Guix. ;;; @@ -147,12 +148,13 @@ (define-public clojure-algo-generic (version "0.1.3") (source (origin - (method url-fetch) - (uri - (string-append "https://github.com/clojure/algo.generic/archive" - "/algo.generic-" version ".tar.gz")) + (method git-fetch) + (uri (git-reference + (url "https://github.com/clojure/algo.generic.git") + (commit (string-append "algo.generic-" version)))) + (file-name (git-file-name name version)) (sha256 - (base32 "12w9681i545gp1af4576z1qbixwps1j13c16fmcc7zsb0bd1zr7w")))) + (base32 "1s6q10qp276dcpzv06bq1q3bvkvlw03qhmncqcs9cc6p9lc0w4p4")))) (build-system clojure-build-system) (arguments '(#:source-dirs '("src/main/clojure/") -- cgit v1.2.3 From 62dbf78b65424bf8c03a47338bcfba1fa5786246 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 10 Feb 2019 00:39:02 +0100 Subject: gnu: clojure-algo-monads: Don't use unstable tarball. * gnu/packages/clojure.scm (clojure-algo-monads)[source]: Use GIT-FETCH and GIT-FILE-NAME. --- gnu/packages/clojure.scm | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/clojure.scm b/gnu/packages/clojure.scm index 2f82f347b6..8e09cfa69d 100644 --- a/gnu/packages/clojure.scm +++ b/gnu/packages/clojure.scm @@ -173,12 +173,13 @@ (define-public clojure-algo-monads (version "0.1.6") (source (origin - (method url-fetch) - (uri - (string-append "https://github.com/clojure/algo.monads/archive" - "/algo.monads-" version ".tar.gz")) + (method git-fetch) + (uri (git-reference + (url "https://github.com/clojure/algo.monads.git") + (commit (string-append "algo.monads-" version)))) + (file-name (git-file-name name version)) (sha256 - (base32 "14gbvfgmrda990h45yn7zag83vp1kdkz4f4yzmyvkr0sjihlgdmq")))) + (base32 "0mv3ba72hyhgasg2k3zy83ij61gak6cs4d6qgh8123z3j02mbh8p")))) (build-system clojure-build-system) (arguments '(#:source-dirs '("src/main/clojure/") -- cgit v1.2.3 From 99631313e2487c1ea853ee2e2e74a848113ed490 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 10 Feb 2019 00:39:09 +0100 Subject: gnu: clojure-tools-macro: Don't use unstable tarball. * gnu/packages/clojure.scm (clojure-tools-macro)[source]: Use GIT-FETCH and GIT-FILE-NAME. --- gnu/packages/clojure.scm | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/clojure.scm b/gnu/packages/clojure.scm index 8e09cfa69d..a9cabfe008 100644 --- a/gnu/packages/clojure.scm +++ b/gnu/packages/clojure.scm @@ -280,12 +280,13 @@ (define-public clojure-tools-macro (version "0.1.5") (source (origin - (method url-fetch) - (uri - (string-append "https://github.com/clojure/tools.macro/archive" - "/tools.macro-" version ".tar.gz")) + (method git-fetch) + (uri (git-reference + (url "https://github.com/clojure/tools.macro.git") + (commit (string-append "tools.macro-" version)))) + (file-name (git-file-name name version)) (sha256 - (base32 "0fs64a0g63xx6g7sj6vrsqknhl90s0isf6k053nw8vv5prfzc7v6")))) + (base32 "14mdxqkwja0cffmyfav5pbcli2qvw1mjdgz0n619a2z2036andx8")))) (build-system clojure-build-system) (arguments '(#:source-dirs '("src/main/clojure/") -- cgit v1.2.3 From 3255fc3bfef07dfce0ee66993639fd02b7c52610 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 10 Feb 2019 01:24:44 +0100 Subject: gnu: xlsx2csv: Update to 0.7.4. * gnu/packages/xml.scm (xlsx2csv): Update to 0.7.4. --- gnu/packages/xml.scm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm index 05bc8aa13e..7d67788804 100644 --- a/gnu/packages/xml.scm +++ b/gnu/packages/xml.scm @@ -1203,25 +1203,25 @@ (define-public html-xml-utils (define-public xlsx2csv (package (name "xlsx2csv") - (version "0.7.2") + (version "0.7.4") (source (origin (method url-fetch) (uri (string-append "https://github.com/dilshod/" - name "/archive/release/" version ".tar.gz")) + name "/archive/" version ".tar.gz")) (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 - "1gpn6kaa7l1ai8c9zx2j3acf04bvxq79pni8jjfjrk01smjbyyql")))) + "029yp4nlgz079drqxg3kxda98a2lqwgbg8x5q6kfwjm90gnffzda")))) (build-system python-build-system) (arguments - `(#:python ,python-2 ; Use python-2 for the test script. + `(#:python ,python-2 ; use python-2 for the test script #:phases (modify-phases %standard-phases (replace 'check (lambda _ (substitute* "test/run" - ;; Run tests with `python' only + ;; Run tests with `python' only. (("^(PYTHON_VERSIONS = ).*" all m) (string-append m "['']"))) (invoke "test/run")))))) (home-page "https://github.com/dilshod/xlsx2csv") -- cgit v1.2.3 From 3047c7baae84271080336936e12c89bad5c3559f Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 10 Feb 2019 01:27:03 +0100 Subject: gnu: xlsx2csv: Don't use unstable tarball. * gnu/packages/xml.scm (xlsx2csv)[source]: Use GIT-FETCH and GIT-FILE-NAME. --- gnu/packages/xml.scm | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm index 7d67788804..0479b7ce0e 100644 --- a/gnu/packages/xml.scm +++ b/gnu/packages/xml.scm @@ -55,6 +55,7 @@ (define-module (gnu packages xml) #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) #:use-module (guix download) + #:use-module (guix git-download) #:use-module (guix build-system ant) #:use-module (guix build-system cmake) #:use-module (guix build-system gnu) @@ -1204,15 +1205,15 @@ (define-public xlsx2csv (package (name "xlsx2csv") (version "0.7.4") - (source (origin - (method url-fetch) - (uri (string-append - "https://github.com/dilshod/" - name "/archive/" version ".tar.gz")) - (file-name (string-append name "-" version ".tar.gz")) - (sha256 - (base32 - "029yp4nlgz079drqxg3kxda98a2lqwgbg8x5q6kfwjm90gnffzda")))) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/dilshod/xlsx2csv.git") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "168dm6p7w6pvgd87yb9hcxv9y0liv6mxgril202nfva68cp8y939")))) (build-system python-build-system) (arguments `(#:python ,python-2 ; use python-2 for the test script -- cgit v1.2.3 From ef6a5fcc30dd56fa8ef7a4be53b98a736499b833 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 10 Feb 2019 15:13:23 +0100 Subject: gnu: java-groovy-bootstrap: Don't use unstable tarball. * gnu/packages/groovy.scm (java-groovy-bootstrap)[source]: Use GIT-FETCH and GIT-FILE-NAME. --- gnu/packages/groovy.scm | 28 ++++++++++++++++------------ 1 file changed, 16 insertions(+), 12 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/groovy.scm b/gnu/packages/groovy.scm index aaa524b1ba..f5d0416f36 100644 --- a/gnu/packages/groovy.scm +++ b/gnu/packages/groovy.scm @@ -1,5 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2018 Julien Lepiller +;;; Copyright © 2019 Tobias Geerinck-Rice ;;; ;;; This file is part of GNU Guix. ;;; @@ -20,6 +21,7 @@ (define-module (gnu packages groovy) #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) #:use-module (guix download) + #:use-module (guix git-download) #:use-module (guix utils) #:use-module (guix build-system ant) #:use-module (gnu packages) @@ -30,18 +32,20 @@ (define java-groovy-bootstrap (package (name "java-groovy-bootstrap") (version "2.4.15") - (source (origin - (method url-fetch) - (uri (string-append "https://github.com/apache/groovy/archive/GROOVY_" - (string-map (lambda (x) (if (eq? x #\.) #\_ x)) version) - ".tar.gz")) - (file-name (string-append name "-" version ".tar.gz")) - (sha256 - (base32 - "19f3yd2z6jmz1xhwi5kkg1wmgbqkfs7qvd3rzb43xr3nffz8cisv")) - (patches - (search-patches - "groovy-add-exceptionutilsgenerator.patch")))) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/apache/groovy.git") + (commit (string-append + "GROOVY_" + (string-map (lambda (x) (if (eq? x #\.) #\_ x)) + version))))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1q4cplimr18j93zz92kgq8b6wdv0p9svr7cdr47q8b2mbjpd0x3j")) + (patches + (search-patches "groovy-add-exceptionutilsgenerator.patch")))) (build-system ant-build-system) (arguments `(#:jar-name "groovy.jar" -- cgit v1.2.3 From 9d67052661676f4835280f5a151637701c319264 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 10 Feb 2019 02:21:33 +0100 Subject: gnu: java-dom4j: Don't use unstable tarball. * gnu/packages/xml.scm (java-dom4j)[source]: Use GIT-FETCH and GIT-FILE-NAME. --- gnu/packages/xml.scm | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm index 0479b7ce0e..80dd6fb709 100644 --- a/gnu/packages/xml.scm +++ b/gnu/packages/xml.scm @@ -1783,13 +1783,14 @@ (define-public java-dom4j (name "java-dom4j") (version "2.1.0") (source (origin - (method url-fetch) - (uri (string-append "https://github.com/dom4j/dom4j/archive/" - "version-" version ".tar.gz")) - (file-name (string-append name "-" version ".tar.gz")) + (method git-fetch) + (uri (git-reference + (url "https://github.com/dom4j/dom4j.git") + (commit (string-append "version-" version)))) + (file-name (git-file-name name version)) (sha256 (base32 - "101drpnw6agmcvsi1jrfi0kn97r7liazrh5jbrip9vx26axn2fx9")) + "1827jljs8mps489fm7xw63cakdqwc5grilrr5n9spr2rlk76jpx3")) (modules '((guix build utils))) (snippet '(begin ;; Delete bundled jar archives. -- cgit v1.2.3 From 00fc938983f70f9ff9522133380a48495a5a4114 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 10 Feb 2019 02:37:28 +0100 Subject: gnu: java-kxml2: Don't use unstable tarball. * gnu/packages/xml.scm (java-kxml2)[source]: Use GIT-FETCH and GIT-FILE-NAME. [arguments]: Add 'make-git-checkout-writable' phase. --- gnu/packages/xml.scm | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm index 80dd6fb709..f216482790 100644 --- a/gnu/packages/xml.scm +++ b/gnu/packages/xml.scm @@ -1856,13 +1856,14 @@ (define-public java-kxml2 (name "java-kxml2") (version "2.4.2") (source (origin - (method url-fetch) - (uri (string-append "https://github.com/stefanhaustein/kxml2/archive/v" - version ".tar.gz")) - (file-name (string-append name "-" version ".tar.gz")) + (method git-fetch) + (uri (git-reference + (url "https://github.com/stefanhaustein/kxml2.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) (sha256 (base32 - "17kh04qf3vll1xx6sv06xlazw2hxa8qdmzyday9r6z2191jlj74w")))) + "0g6d8c9r9sh3x04sf4wdpgwvhkqvk11k3kq9skx91i60h4vn01hg")))) (build-system ant-build-system) (arguments `(#:jar-name "kxml2.jar" @@ -1873,6 +1874,10 @@ (define-public java-kxml2 #:tests? #f #:phases (modify-phases %standard-phases + (add-after 'unpack 'make-git-checkout-writable + (lambda _ + (for-each make-file-writable (find-files ".")) + #t)) (add-before 'build 'copy-resources (lambda _ (copy-recursively "src/main/resources" "build/classes") -- cgit v1.2.3 From 951bdf5adfd52f0d646244a2090dbfa52d868c37 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 10 Feb 2019 11:59:31 +0100 Subject: gnu: java-jdom2: Don't use unstable tarball. * gnu/packages/xml.scm (java-jdom2)[source]: Use GIT-FETCH and GIT-FILE-NAME. --- gnu/packages/xml.scm | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm index f216482790..e09fde733f 100644 --- a/gnu/packages/xml.scm +++ b/gnu/packages/xml.scm @@ -1960,16 +1960,18 @@ (define-public java-jdom2 (name "java-jdom") (version "2.0.6") (source (origin - (method url-fetch) - (uri (string-append "https://github.com/hunterhacker/jdom/archive/JDOM-" - version ".tar.gz")) + (method git-fetch) + (uri (git-reference + (url "https://github.com/hunterhacker/jdom.git") + (commit (string-append "JDOM-" version)))) + (file-name (git-file-name name version)) (sha256 (base32 - "0p8n7inqq2a25wk9ljinl3ixlx1x2la9qaman8ngd75xxjb02yc1")))) + "14vv1kxrsdvwi4cz3rx6r48w5y6fvk9cymil8qhvxwp56xxrgxiq")))) (build-system ant-build-system) (arguments `(#:build-target "package" - #:tests? #f; tests are run as part of the build process + #:tests? #f ; tests are run as part of the build process #:phases (modify-phases %standard-phases (replace 'install -- cgit v1.2.3 From 4bad4fbdf88b97274a18e6aa403ffea14ef11d80 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 10 Feb 2019 12:43:31 +0100 Subject: gnu: tinyxml2: Don't use unstable tarball. * gnu/packages/xml.scm (tinyxml2)[source]: Use GIT-FETCH and GIT-FILE-NAME. --- gnu/packages/xml.scm | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm index e09fde733f..19391ea8aa 100644 --- a/gnu/packages/xml.scm +++ b/gnu/packages/xml.scm @@ -1096,16 +1096,16 @@ (define-public tinyxml2 (version "4.0.1") (source (origin - (method url-fetch) - (uri (string-append "https://github.com/leethomason/tinyxml2/archive/" - version ".tar.gz")) - (file-name (string-append name "-" version ".tar.gz")) + (method git-fetch) + (uri (git-reference + (url "https://github.com/leethomason/tinyxml2.git") + (commit version))) + (file-name (git-file-name name version)) (sha256 - (base32 - "083z4r4khcndxi9k840lcr48sqxvar4gpsnf749xfdn1bkr8xcql")))) + (base32 "1a0skfi8rzk53qcxbv88qlvhlqzvsvg4hm20dnx4zw7vrn6anr9y")))) (build-system cmake-build-system) (arguments - `(#:tests? #f)) ; no tests + `(#:tests? #f)) ; no tests (synopsis "Small XML parser for C++") (description "TinyXML2 is a small and simple XML parsing library for the C++ programming language.") -- cgit v1.2.3 From a4b96726b510979c0784dab81ffd68349788554b Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 10 Feb 2019 13:30:02 +0100 Subject: gnu: java-jettison: Don't use unstable tarball. * gnu/packages/xml.scm (java-jettison)[source]: Use GIT-FETCH and GIT-FILE-NAME. --- gnu/packages/xml.scm | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm index 19391ea8aa..461c021967 100644 --- a/gnu/packages/xml.scm +++ b/gnu/packages/xml.scm @@ -1930,12 +1930,14 @@ (define-public java-jettison (name "java-jettison") (version "1.3.7") (source (origin - (method url-fetch) - (uri (string-append "https://github.com/codehaus/jettison/archive/" - "jettison-" version ".tar.gz")) + (method git-fetch) + (uri (git-reference + (url "https://github.com/codehaus/jettison.git") + (commit (string-append "jettison-" version)))) + (file-name (git-file-name name version)) (sha256 (base32 - "0rdhfyxywvga5wiwasc04iqnxyixn3rd8wj01c9ymhvwc3h6dpqg")))) + "15sydmi5chdh4126qc7v8bsrp7fp4ldaya8a05iby4pq2324q0qw")))) (build-system ant-build-system) (arguments `(#:jar-name "jettison.jar" -- cgit v1.2.3 From eed5e162adef90324e46dc45ab83dff1a471bcf8 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 10 Feb 2019 14:45:35 +0100 Subject: gnu: java-xom: Don't use unstable tarball. * gnu/packages/xml.scm (java-xom)[source]: Use GIT-FETCH and GIT-FILE-NAME. [arguments]: Add 'make-git-checkout-writable' phase. --- gnu/packages/xml.scm | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm index 461c021967..3a320351e9 100644 --- a/gnu/packages/xml.scm +++ b/gnu/packages/xml.scm @@ -1651,12 +1651,14 @@ (define-public java-xom (name "java-xom") (version "127") (source (origin - (method url-fetch) - (uri (string-append "https://github.com/elharo/xom/archive/XOM_" - version ".tar.gz")) + (method git-fetch) + (uri (git-reference + (url "https://github.com/elharo/xom.git") + (commit (string-append "XOM_" version)))) + (file-name (git-file-name name version)) (sha256 (base32 - "04m69db1irqja12a9rfxrac8cbn9psqa1k136wh4ls4pxfsdr5wg")) + "1jh6y03g5zzdhsb5jm6ms1xnamr460qmn96y3w6aw0ikfwqlg0bq")) (modules '((guix build utils))) (snippet '(begin @@ -1667,9 +1669,13 @@ (define-public java-xom (arguments `(#:jar-name "xom.jar" #:jdk ,icedtea-8 - #:tests? #f; no tests + #:tests? #f ; no tests #:phases (modify-phases %standard-phases + (add-after 'unpack 'make-git-checkout-writable + (lambda _ + (for-each make-file-writable (find-files ".")) + #t)) (add-before 'configure 'fix-tagsoup-dep (lambda _ ;; FIXME: Where is tagsoup source? -- cgit v1.2.3 From b05bc3c487a66c9ceddd59ae068b90ab5c16ddcd Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 10 Feb 2019 15:30:24 +0100 Subject: gnu: java-xstream: Don't use unstable tarball. * gnu/packages/xml.scm (java-xstream)[source]: Use GIT-FETCH and GIT-FILE-NAME. --- gnu/packages/xml.scm | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm index 3a320351e9..52f1533699 100644 --- a/gnu/packages/xml.scm +++ b/gnu/packages/xml.scm @@ -1994,20 +1994,22 @@ (define-public java-xstream (package (name "java-xstream") (version "1.4.10") - (source (origin - (method url-fetch) - (uri (string-append - "https://github.com/x-stream/xstream/archive/XSTREAM_" - (string-map (lambda (x) (if (eq? x #\.) #\_ x)) version) - ".tar.gz")) - (file-name (string-append name "-" version ".tar.gz")) - (sha256 - (base32 - "10zbkam05wirxipvgrjimdwsyqrwl4a0n7lhvxbsssqpv727469g")))) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/x-stream/xstream.git") + (commit (string-append + "XSTREAM_" + (string-map (lambda (x) (if (eq? x #\.) #\_ x)) + version))))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12m2bw8bapdc1w0pni9wl5hh2y8jfdgcvxd464jl9917dsp3ai2n")))) (build-system ant-build-system) (arguments `(#:jar-name "xstream.jar" - ;; FIXME: Tests are not in a java subdirectory as assumed by ant-build-system + ;; FIXME: Tests are not in a java subdirectory as assumed by ant-build-system. #:tests? #f #:jdk ,icedtea-8 #:source-dir "xstream/src/java")) -- cgit v1.2.3 From 4e86e9d78e2eb9869b84a94486a3b4a50ba7f800 Mon Sep 17 00:00:00 2001 From: Vagrant Cascadian Date: Sat, 9 Feb 2019 20:43:53 -0800 Subject: gnu: electron-cash: Update to 3.3.5. * gnu/packages/finance.scm (electron-cash): Update to 3.3.5. [source]: Update uri. --- gnu/packages/finance.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/finance.scm b/gnu/packages/finance.scm index e2c7e82a7e..b559ef7954 100644 --- a/gnu/packages/finance.scm +++ b/gnu/packages/finance.scm @@ -354,18 +354,18 @@ (define-public electron-cash (package (inherit electrum) (name "electron-cash") - (version "3.3.4") + (version "3.3.5") (source (origin (method url-fetch) (uri (string-append "https://electroncash.org/downloads/" version - "/win-linux/ElectronCash-" + "/win-linux/Electron-Cash-" version ".tar.gz")) (sha256 (base32 - "0ipl6vf2n9a5n556sx2z57s7wdvg05xwjvz67kff9nmbx4s8vjyf")) + "185z3c5j9nvl31ga80hvahx7ghvkgmqgfjrrzw1fbs6p9jxy007w")) (modules '((guix build utils))) (snippet '(begin -- cgit v1.2.3 From 02d9e5d285638c7a1e6c984a01588f8b5bb56c8c Mon Sep 17 00:00:00 2001 From: Vagrant Cascadian Date: Thu, 7 Feb 2019 20:35:20 -0800 Subject: gnu: python-keepkey: Update to 6.0.2. * gnu/packages/finance.scm (python-keepkey): Update to 6.0.2. [propagated-inputs]: Add python-libusb1. --- gnu/packages/finance.scm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/finance.scm b/gnu/packages/finance.scm index b559ef7954..132d8845b4 100644 --- a/gnu/packages/finance.scm +++ b/gnu/packages/finance.scm @@ -727,14 +727,14 @@ (define-public python2-trezor (define-public python-keepkey (package (name "python-keepkey") - (version "4.0.2") + (version "6.0.2") (source (origin (method url-fetch) (uri (pypi-uri "keepkey" version)) (sha256 (base32 - "0f4iqqjlqmamw4mhyhik4qlb5bnfd10wbjw9yzgir105wh5fdpnd")))) + "16j8hnxj9r4b2w6kfncmny09pb1al8ppmn59qxzl3qmh1xhpy45g")))) (build-system python-build-system) (arguments `(#:phases @@ -747,6 +747,7 @@ (define-public python-keepkey (propagated-inputs `(("python-ecdsa" ,python-ecdsa) ("python-hidapi" ,python-hidapi) + ("python-libusb1" ,python-libusb1) ("python-mnemonic" ,python-mnemonic) ("python-protobuf" ,python-protobuf))) (home-page "https://github.com/keepkey/python-keepkey") -- cgit v1.2.3 From f89d443be198f6f6fbb8d7576120301269f99192 Mon Sep 17 00:00:00 2001 From: Vagrant Cascadian Date: Tue, 5 Feb 2019 04:14:23 +0000 Subject: gnu: Add python-typing-extensions. * gnu/packages/python-xyz.scm (python-typing-extensions): New variable. --- gnu/packages/python-xyz.scm | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) (limited to 'gnu') diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index f047a5c316..2a1575a77b 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -13433,6 +13433,43 @@ (define-public python-typing (define-public python2-typing (package-with-python2 python-typing)) +(define-public python-typing-extensions + (package + (name "python-typing-extensions") + (version "3.7.2") + (source + (origin + (method url-fetch) + (uri (pypi-uri "typing_extensions" version)) + (sha256 + (base32 + "0wfsv71pvkyf2na938l579jh0v3kzl6g744ijgnahcwd4d9x0b7v")))) + (build-system python-build-system) + (home-page + "https://github.com/python/typing/blob/master/typing_extensions/README.rst") + (synopsis "Experimental type hints for Python") + (description + "The typing_extensions module contains additional @code{typing} hints not +yet present in the of the @code{typing} standard library. +Included are implementations of: +@enumerate +@item ClassVar +@item ContextManager +@item Counter +@item DefaultDict +@item Deque +@item NewType +@item NoReturn +@item overload +@item Protocol +@item runtime +@item Text +@item Type +@item TYPE_CHECKING +@item AsyncGenerator +@end enumerate\n") + (license license:psfl))) + (define-public bpython (package (name "bpython") -- cgit v1.2.3 From f98232a39e955c9cb0cad151c939b8b94008c740 Mon Sep 17 00:00:00 2001 From: Vagrant Cascadian Date: Tue, 5 Feb 2019 04:14:23 +0000 Subject: gnu: Add python-construct. * gnu/packages/python-xyz.scm (python-construct): New variable. --- gnu/packages/python-xyz.scm | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) (limited to 'gnu') diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 2a1575a77b..36e8ce0120 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -138,6 +138,7 @@ (define-module (gnu packages python-xyz) #:use-module (gnu packages xdisorg) #:use-module (gnu packages tcl) #:use-module (gnu packages bdw-gc) + #:use-module (gnu packages serialization) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix git-download) @@ -14819,3 +14820,33 @@ (define-public python-attr (description "Simple decorator to set attributes of target function or class in a @acronym{DRY, Don't Repeat Yourself} way.") (license license:expat))) + +(define-public python-construct + (package + (name "python-construct") + (version "2.9.45") + (source + (origin + (method url-fetch) + (uri (pypi-uri "construct" version)) + (sha256 + (base32 + "130iy05awzigm2xah2yvlmb08mac5bi4gzr5m3g7k1krs3ps0w92")))) + (build-system python-build-system) + (arguments + `(#:tests? #f)) ; No tests exist. + (propagated-inputs + `(("python-extras" ,python-extras) + ("python-arrow" ,python-arrow) + ("python-numpy" ,python-numpy) + ("python-ruamel.yaml" ,python-ruamel.yaml))) + (home-page "http://construct.readthedocs.io") + (synopsis "Declarative and symmetrical parser and builder for binary data") + (description + "This package provides both simple, atomic constructs (such as +integers of various sizes), as well as composite ones which allow you +form hierarchical and sequential structures of increasing complexity. +It features bit and byte granularity, easy debugging and testing, an +easy-to-extend subclass system, and lots of primitive constructs to +make your work easier.") + (license license:expat))) -- cgit v1.2.3 From 8c16b8a40ca3a77ee819b05d825b30671f1d536c Mon Sep 17 00:00:00 2001 From: Vagrant Cascadian Date: Tue, 5 Feb 2019 04:14:23 +0000 Subject: gnu: python-trezor: Update to 0.11.1. * gnu/packages/finance.scm (python-trezor): Update to 0.11.1. [arguments]: Remove obsolete "slow_cosi" test. Delete "test_tx_api" test, which requires network access. [propagated-inputs]: Add python-construct and python-typing-extensions, Remove python-hidapi, python-protobuf and python-typing. [native-inputs]: Remove python-mock, Add protobuf, python-black, python-protobuf and python-isort. --- gnu/packages/finance.scm | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/finance.scm b/gnu/packages/finance.scm index 132d8845b4..e44be713f2 100644 --- a/gnu/packages/finance.scm +++ b/gnu/packages/finance.scm @@ -683,14 +683,14 @@ (define-public python2-ledgerblue (define-public python-trezor (package (name "python-trezor") - (version "0.10.2") + (version "0.11.1") (source (origin (method url-fetch) (uri (pypi-uri "trezor" version)) (sha256 (base32 - "138k6zsqqpb46k3rcpyslm9q7yq5i6k4myvr9n425jnkadf4vfjd")))) + "064yds8f4px0c6grkkanpdjx022g4q87ihzhkmdv9qanv0hz6hv0")))) (build-system python-build-system) (arguments `(#:phases @@ -698,21 +698,23 @@ (define-public python-trezor ;; Default tests run device-specific tests which fail, only run specific tests. (replace 'check (lambda* (#:key inputs outputs #:allow-other-keys) - (invoke "python" "-m" "pytest" "--pyarg" "trezorlib.tests.unit_tests") - (invoke "python" "-m" "pytest" "-m" "slow_cosi" "--pyarg" "trezorlib.tests.unit_tests") - ))))) + ;; Delete tests that require network access. + (delete-file "trezorlib/tests/unit_tests/test_tx_api.py") + (invoke "python" "-m" "pytest" "--pyarg" "trezorlib.tests.unit_tests")))))) (propagated-inputs `(("python-click" ,python-click) + ("python-construct" ,python-construct) ("python-ecdsa" ,python-ecdsa) - ("python-hidapi" ,python-hidapi) ("python-libusb1" ,python-libusb1) ("python-mnemonic" ,python-mnemonic) - ("python-protobuf" ,python-protobuf) ("python-pyblake2" ,python-pyblake2) ("python-requests" ,python-requests) - ("python-typing" ,python-typing))) + ("python-typing-extensions" ,python-typing-extensions))) (native-inputs - `(("python-mock" ,python-mock) ; Tests + `(("protobuf" ,protobuf) ; Tests + ("python-black" ,python-black) ; Tests + ("python-protobuf" ,python-protobuf) ; Tests + ("python-isort" ,python-isort) ; Tests ("python-pyqt" ,python-pyqt) ; Tests ("python-pytest" ,python-pytest))) ; Tests (home-page "https://github.com/trezor/python-trezor") -- cgit v1.2.3 From 118be6e8cad8a82189efd2f32e104131a99e2be5 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sun, 10 Feb 2019 18:53:42 +0100 Subject: gnu: apr: Update to 1.6.5. * gnu/packages/apr.scm (apr): Update to 1.6.5. --- gnu/packages/apr.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/apr.scm b/gnu/packages/apr.scm index 8ccec08fa2..1a4a1c6304 100644 --- a/gnu/packages/apr.scm +++ b/gnu/packages/apr.scm @@ -30,14 +30,14 @@ (define-module (gnu packages apr) (define-public apr (package (name "apr") - (version "1.6.3") + (version "1.6.5") (source (origin (method url-fetch) (uri (string-append "mirror://apache/apr/apr-" version ".tar.bz2")) (sha256 (base32 - "0wiik6amxn6lkc55fv9yz5i3kbxnqbp36alrzabx1avsdp8hc7qk")) + "01d1n1ql66bxsjx0wyzazmkqdqdmr0is6a7lwyy5kzy4z7yajz56")) (patches (search-patches "apr-skip-getservbyname-test.patch")) (patch-flags '("-p0")))) -- cgit v1.2.3 From 18df1ab122b81f8147c2f8e5cf937bc62ebd292d Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sun, 10 Feb 2019 18:54:13 +0100 Subject: gnu: ninja: Update to 1.9.0. * gnu/packages/ninja.scm (ninja): Update to 1.9.0. --- gnu/packages/ninja.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/ninja.scm b/gnu/packages/ninja.scm index 5a168a6ada..0791abe764 100644 --- a/gnu/packages/ninja.scm +++ b/gnu/packages/ninja.scm @@ -30,7 +30,7 @@ (define-module (gnu packages ninja) (define-public ninja (package (name "ninja") - (version "1.8.2") + (version "1.9.0") (source (origin (method url-fetch) (uri (string-append "https://github.com/martine/ninja/" @@ -38,7 +38,7 @@ (define-public ninja (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 - "1x66q6494ml1p1f74mxzik1giakl4zj7rxig9jsc50087l671f46")))) + "1ffmzj5s9h98qhl94d9i23zcv057rsqbac9g1hdgvlzq51ccfzjx")))) (build-system gnu-build-system) (native-inputs `(("python" ,python-2))) (arguments -- cgit v1.2.3 From 85b961d2ee2e22ef52dd746bfeae07f42ab081ce Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sun, 10 Feb 2019 18:54:33 +0100 Subject: gnu: meson: Update to 0.49.2. * gnu/packages/build-tools.scm (meson): Update to 0.49.2. --- gnu/packages/build-tools.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/build-tools.scm b/gnu/packages/build-tools.scm index 628b36fff5..6beeb4f542 100644 --- a/gnu/packages/build-tools.scm +++ b/gnu/packages/build-tools.scm @@ -158,7 +158,7 @@ (define-public gn (define-public meson (package (name "meson") - (version "0.49.0") + (version "0.49.2") (source (origin (method url-fetch) (uri (string-append "https://github.com/mesonbuild/meson/" @@ -166,7 +166,7 @@ (define-public meson version ".tar.gz")) (sha256 (base32 - "0l8m1v7cl5ybm7psfqmmdqbvmnsbb1qhb8ni3hwap3i0mk29a0zv")))) + "1z89f71r29laywx75bamjakybv9653wz0vd2l4xhvqy1dqr197zg")))) (build-system python-build-system) (arguments `(;; FIXME: Tests require many additional inputs, a fix for the RUNPATH -- cgit v1.2.3 From 0ce64334e658470489e68bbd7645c5f96890e8bb Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sun, 10 Feb 2019 18:55:01 +0100 Subject: gnu: mariadb: Update to 10.1.38. * gnu/packages/databases.scm (mariadb): Update to 10.1.38. --- gnu/packages/databases.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index 33fb530509..cc4e6631f8 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -497,7 +497,7 @@ (define-public mysql (define-public mariadb (package (name "mariadb") - (version "10.1.37") + (version "10.1.38") (source (origin (method url-fetch) (uri (string-append "https://downloads.mariadb.org/f/" @@ -505,7 +505,7 @@ (define-public mariadb name "-" version ".tar.gz")) (sha256 (base32 - "0ijdmdn9mcciwv361zfmja6b1h6qpbdqgrnnq6kkdapplyq1dmcc")) + "0zq77w3ff9q781fn8cv46vy1v4ggb8vjarjvk51k653x4gyg9wfa")) (patches (search-patches "mariadb-client-test-32bit.patch")) (modules '((guix build utils))) (snippet @@ -584,7 +584,7 @@ (define-public mariadb "roles.acl_statistics" ;; This file contains a time bomb which makes it fail after - ;; 2019-01-01. See for details. + ;; 2030-12-31. See for details. "main.mysqldump" ;; XXX: Fails sporadically. -- cgit v1.2.3 From 60a59f917c0ae7a1c7932d3943828f6b020d7655 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sun, 10 Feb 2019 18:55:35 +0100 Subject: gnu: libinput: Update to 1.12.6. * gnu/packages/freedesktop.scm (libinput): Update to 1.12.6. --- gnu/packages/freedesktop.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/freedesktop.scm b/gnu/packages/freedesktop.scm index 7c497ccc75..f01ea8cbb4 100644 --- a/gnu/packages/freedesktop.scm +++ b/gnu/packages/freedesktop.scm @@ -148,14 +148,14 @@ (define-public xdg-utils (define-public libinput (package (name "libinput") - (version "1.12.3") + (version "1.12.6") (source (origin (method url-fetch) (uri (string-append "https://freedesktop.org/software/libinput/" name "-" version ".tar.xz")) (sha256 (base32 - "0mg2zqbjcgj0aq7d9nwawvyhx43vakilahrc83hrfyif3a3gyrpj")))) + "0pgla0mc6mvyr1ljy10mcqvfz8i5z6yp7dbx2bcd70y67wx05d0j")))) (build-system meson-build-system) (arguments `(#:configure-flags '("-Ddocumentation=false"))) -- cgit v1.2.3 From 9ca063e7bf4ab69c619d8b26928f575a9310976d Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sun, 10 Feb 2019 18:55:54 +0100 Subject: gnu: libgsf: Update to 1.14.45. * gnu/packages/gnome.scm (libgsf): Update to 1.14.45. --- gnu/packages/gnome.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 850bfcf5e9..b05b2d7879 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -1182,7 +1182,7 @@ (define-public libcroco (define-public libgsf (package (name "libgsf") - (version "1.14.44") + (version "1.14.45") (source (origin (method url-fetch) (uri (string-append "mirror://gnome/sources/" name "/" @@ -1190,7 +1190,7 @@ (define-public libgsf name "-" version ".tar.xz")) (sha256 (base32 - "1ppzfk3zmmgrg9jh8vc4dacddbfngjslq2wpj94pcr3i0c8dxgk8")))) + "1yk91ccf7z9b8d8ac6vip3gc5c0pkwgabqy6l0pj0kf43l7jrg2w")))) (build-system gnu-build-system) (native-inputs `(("intltool" ,intltool) -- cgit v1.2.3 From 10e1f1732c4fe5b9cd04b99f1b230fbc391bc8f2 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sun, 10 Feb 2019 18:56:14 +0100 Subject: gnu: gtk+: Update to 3.24.5. * gnu/packages/gtk.scm (gtk+): Update to 3.24.5. --- gnu/packages/gtk.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index b8377ff514..93b9ba09fe 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -693,7 +693,7 @@ (define-public gtk+ (name "gtk+") ;; NOTE: When updating the version of 'gtk+', the hash of 'mate-themes' in ;; mate.scm will also need to be updated. - (version "3.24.2") + (version "3.24.5") (source (origin (method url-fetch) (uri (string-append "mirror://gnome/sources/" name "/" @@ -701,7 +701,7 @@ (define-public gtk+ name "-" version ".tar.xz")) (sha256 (base32 - "14l8mimdm44r3h5pn5hzigl1z25jna8jxvb16l88v4nc4zj0afsv")) + "0bxhvnixc1hjxbzx063lghmix0wmv282khsqmckdxhrb606zpr8b")) (patches (search-patches "gtk3-respect-GUIX_GTK3_PATH.patch" "gtk3-respect-GUIX_GTK3_IM_MODULE_FILE.patch")) (modules '((guix build utils))) -- cgit v1.2.3 From 017a8178f6808b2736d6763d239772d3c42e0032 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sun, 10 Feb 2019 18:56:34 +0100 Subject: gnu: ImageMagick: Update to 6.9.10-27. * gnu/packages/imagemagick.scm (imagemagick): Update to 6.9.10-27. --- gnu/packages/imagemagick.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/imagemagick.scm b/gnu/packages/imagemagick.scm index dafe8c76ed..0207eb6569 100644 --- a/gnu/packages/imagemagick.scm +++ b/gnu/packages/imagemagick.scm @@ -48,14 +48,14 @@ (define-public imagemagick ;; The 7 release series has an incompatible API, while the 6 series is still ;; maintained. Don't update to 7 until we've made sure that the ImageMagick ;; users are ready for the 7-series API. - (version "6.9.10-16") + (version "6.9.10-27") (source (origin (method url-fetch) (uri (string-append "mirror://imagemagick/ImageMagick-" version ".tar.xz")) (sha256 (base32 - "1ylbv69r8l3d4za4i8q41cs6lq06mnhiq4qm03rvs3vp3gyp1m9x")))) + "1skngh58lkpa2scc9rhjxvhyn6f7nlwd28hbwrxzlvvb7qil9jcq")))) (build-system gnu-build-system) (arguments `(#:configure-flags '("--with-frozenpaths" "--without-gcc-arch") -- cgit v1.2.3 From 602a5ef9f3714be8e7bbad6f4df89d59fb7e076a Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sun, 10 Feb 2019 18:57:01 +0100 Subject: gnu: OpenBLAS: Update to 0.3.5. * gnu/packages/maths.scm (openblas): Update to 0.3.5. --- gnu/packages/maths.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index 7d3ac773b3..34c72dadad 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -2930,7 +2930,7 @@ (define-public muparser (define-public openblas (package (name "openblas") - (version "0.3.4") + (version "0.3.5") (source (origin (method url-fetch) @@ -2939,7 +2939,7 @@ (define-public openblas (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 - "1s56lgilyyw86dzmj3jkci9zsg24n60wq4d0zri1hrxlxb6ihimj")))) + "062kg4ny1ywz7k5grpb4pbf0hba0w6manbajwkmv4f477a31sxpl")))) (build-system gnu-build-system) (arguments `(#:test-target "test" -- cgit v1.2.3 From 143d6589327807f89a209a75158aed2b1d0d2715 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sun, 10 Feb 2019 18:57:20 +0100 Subject: gnu: qpdf: Update to 8.4.0. * gnu/packages/pdf.scm (qpdf): Update to 8.4.0. --- gnu/packages/pdf.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/pdf.scm b/gnu/packages/pdf.scm index 33bd0062ff..504e69c769 100644 --- a/gnu/packages/pdf.scm +++ b/gnu/packages/pdf.scm @@ -663,14 +663,14 @@ (define-public mupdf (define-public qpdf (package (name "qpdf") - (version "8.2.1") + (version "8.4.0") (source (origin (method url-fetch) (uri (string-append "mirror://sourceforge/qpdf/qpdf/" version "/qpdf-" version ".tar.gz")) (sha256 (base32 - "1jdb0jj72fjdp6xip4m7yz31r5x13zs7h4smnxsycgw3vbmx6igl")) + "1864p952m8vzxk6v500a42psbqj2g2gyli3d3zj6h33hzwxqy09r")) (modules '((guix build utils))) (snippet ;; Replace shebang with the bi-lingual shell/Perl trick to remove -- cgit v1.2.3 From fcf7cd00414422189a56400c34e8372fd6707022 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sun, 10 Feb 2019 18:57:40 +0100 Subject: gnu: libva: Update to 2.4.0. * gnu/packages/video.scm (libva): Update to 2.4.0. --- gnu/packages/video.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index c0f439ea93..a5a684c67e 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -627,7 +627,7 @@ (define-public libmatroska (define-public libva (package (name "libva") - (version "2.3.0") + (version "2.4.0") (source (origin (method url-fetch) @@ -639,7 +639,7 @@ (define-public libva (string-append "https://www.freedesktop.org/software/vaapi/releases/" "libva/libva-" version "/libva-" version ".tar.bz2"))) (sha256 - (base32 "1r6wiw4k044cpb39rfqqdw6qmzw0268whpz124hywck9v980x130")))) + (base32 "14ckq67z3pcd7jrnrm3ckss440g6dzp2m0ff5rps54qmq9b309lr")))) (build-system gnu-build-system) (native-inputs `(("pkg-config" ,pkg-config))) -- cgit v1.2.3 From 5530f5f4fd9fe7e82c102930fbe6fe0f4a99856b Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sun, 10 Feb 2019 18:57:57 +0100 Subject: gnu: libxkbcommon: Update to 0.8.3. * gnu/packages/xdisorg.scm (libxkbcommon): Update to 0.8.3. --- gnu/packages/xdisorg.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm index 5f01c8c6a6..7613accb4f 100644 --- a/gnu/packages/xdisorg.scm +++ b/gnu/packages/xdisorg.scm @@ -164,14 +164,14 @@ (define-public xclip (define-public libxkbcommon (package (name "libxkbcommon") - (version "0.8.2") + (version "0.8.3") (source (origin (method url-fetch) (uri (string-append "https://xkbcommon.org/download/" name "-" version ".tar.xz")) (sha256 (base32 - "136mdq11lrwg6rjmm44lmysxxgb9c35p4sq6k0cd129x82rw9f3s")))) + "0h2mh8j21xvf1h3kz81q1pvkd9j9nzb9kbd46ncap5wshhlwcmdq")))) (build-system gnu-build-system) (inputs `(("libx11" ,libx11) -- cgit v1.2.3 From 2d39566d7e2b1291dd075c1ef7fa05173265d99e Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sun, 10 Feb 2019 19:00:49 +0100 Subject: gnu: nss, nss-certs: Update to 3.42.1. * gnu/packages/certs.scm (nss-certs): Update to 3.42.1. * gnu/packages/gnuzilla.scm (nss): Likewise. --- gnu/packages/certs.scm | 4 ++-- gnu/packages/gnuzilla.scm | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/certs.scm b/gnu/packages/certs.scm index bb66d27026..89f2ff2884 100644 --- a/gnu/packages/certs.scm +++ b/gnu/packages/certs.scm @@ -76,7 +76,7 @@ (define certdata2pem (define-public nss-certs (package (name "nss-certs") - (version "3.41") + (version "3.42.1") (source (origin (method url-fetch) (uri (let ((version-with-underscores @@ -87,7 +87,7 @@ (define-public nss-certs "nss-" version ".tar.gz"))) (sha256 (base32 - "0bbif42fzz5gk451sv3yphdrl7m4p6zgk5jk0307j06xs3sihbmb")))) + "1ihzqspvqjmysp1c15xxr7kqvj3zm9dqnanxhkaxyjgx71yv6z88")))) (build-system gnu-build-system) (outputs '("out")) (native-inputs diff --git a/gnu/packages/gnuzilla.scm b/gnu/packages/gnuzilla.scm index 1f299a2b13..8d87b580fb 100644 --- a/gnu/packages/gnuzilla.scm +++ b/gnu/packages/gnuzilla.scm @@ -442,7 +442,7 @@ (define-public nspr (define-public nss (package (name "nss") - (version "3.41") + (version "3.42.1") (source (origin (method url-fetch) (uri (let ((version-with-underscores @@ -453,7 +453,7 @@ (define-public nss "nss-" version ".tar.gz"))) (sha256 (base32 - "0bbif42fzz5gk451sv3yphdrl7m4p6zgk5jk0307j06xs3sihbmb")) + "1ihzqspvqjmysp1c15xxr7kqvj3zm9dqnanxhkaxyjgx71yv6z88")) ;; Create nss.pc and nss-config. (patches (search-patches "nss-pkgconfig.patch" "nss-increase-test-timeout.patch")))) @@ -501,7 +501,7 @@ (define-public nss ;; leading to test failures: ;; . To ;; work around that, set the time to roughly the release date. - (invoke "faketime" "2018-12-01" "./nss/tests/all.sh"))) + (invoke "faketime" "2019-02-01" "./nss/tests/all.sh"))) (replace 'install (lambda* (#:key outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) -- cgit v1.2.3 From 9220651d43c5dd945a6ec5e21eb04b00222ebc1c Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sun, 10 Feb 2019 19:05:30 +0100 Subject: gnu: gdb: Update to 8.2.1. * gnu/packages/gdb.scm (gdb): Update to 8.2.1. --- gnu/packages/gdb.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/gdb.scm b/gnu/packages/gdb.scm index 74eb0f8994..e9df33e3fc 100644 --- a/gnu/packages/gdb.scm +++ b/gnu/packages/gdb.scm @@ -37,14 +37,14 @@ (define-module (gnu packages gdb) (define-public gdb (package (name "gdb") - (version "8.2") + (version "8.2.1") (source (origin (method url-fetch) (uri (string-append "mirror://gnu/gdb/gdb-" version ".tar.xz")) (sha256 (base32 - "0fbw6j4z7kmvywwgavn7w3knp860i5i9qnjffc5p52bwkji43963")))) + "00i27xqawjv282a07i73lp1l02n0a3ywzhykma75qg500wll6sha")))) (build-system gnu-build-system) (arguments `(#:tests? #f ; FIXME "make check" fails on single-processor systems. -- cgit v1.2.3 From d7dccedc0d6352ed0fcd5cbca9fa5d8052533156 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sun, 10 Feb 2019 20:58:28 +0100 Subject: gnu: cups-filters: Update to 1.22.0. * gnu/packages/cups.scm (cups-filters): Update to 1.22.0. --- gnu/packages/cups.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/cups.scm b/gnu/packages/cups.scm index 9c470c4bb6..6724f04ce5 100644 --- a/gnu/packages/cups.scm +++ b/gnu/packages/cups.scm @@ -54,7 +54,7 @@ (define-module (gnu packages cups) (define-public cups-filters (package (name "cups-filters") - (version "1.21.5") + (version "1.22.0") (source(origin (method url-fetch) (uri @@ -62,7 +62,7 @@ (define-public cups-filters "cups-filters-" version ".tar.xz")) (sha256 (base32 - "0azq9j7kqy18g6vgmvrbw8i4mcqdp3cbgh7q79x1b8p92w4si6rq")) + "0gdv33g7dr1i7756n07zwgsv9b1i15rp7n1z1xr3n8f59br4fds4")) (modules '((guix build utils))) (snippet ;; install backends, banners and filters to cups-filters output -- cgit v1.2.3