unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* [PATCH 01/68] gnu: Add flex-2.6.1.
@ 2016-10-29 18:04 David Craven
  2016-10-29 18:04 ` [PATCH 02/68] gnu: extra-cmake-modules: Update to 5.27.0 David Craven
                   ` (67 more replies)
  0 siblings, 68 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:04 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/flex.scm (flex-2.6.1): New variable.
---
 gnu/packages/flex.scm | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/gnu/packages/flex.scm b/gnu/packages/flex.scm
index 20aff19..7b59085 100644
--- a/gnu/packages/flex.scm
+++ b/gnu/packages/flex.scm
@@ -78,3 +78,17 @@ regular expressions for each rule.  Whenever it finds a match, it
 executes the corresponding C code.")
     (license (non-copyleft "file://COPYING"
                         "See COPYING in the distribution."))))
+
+(define-public flex-2.6.1
+  (package
+    (inherit flex)
+    (version "2.6.1")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "https://github.com/westes/flex"
+                    "/releases/download/v" version "/"
+                    "flex-" version ".tar.gz"))
+              (sha256
+               (base32
+                "0fy14c35yz2m1n1m4f02by3501fn0cca37zn7jp8lpp4b3kgjhrw"))))))
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 02/68] gnu: extra-cmake-modules: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
@ 2016-10-29 18:04 ` David Craven
  2016-10-29 21:27   ` Ricardo Wurmus
  2016-10-29 18:04 ` [PATCH 03/68] gnu: gpgmepp: Update to 16.08.2 David Craven
                   ` (66 subsequent siblings)
  67 siblings, 1 reply; 76+ messages in thread
From: David Craven @ 2016-10-29 18:04 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (extra-cmake-modules): Update to
  5.27.0.
---
 gnu/packages/kde-frameworks.scm | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 011f9e0..04cb6e8 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -54,16 +54,16 @@
 (define-public extra-cmake-modules
   (package
     (name "extra-cmake-modules")
-    (version "5.24.0")
-    (source
-      (origin
-        (method url-fetch)
-        (uri (string-append "mirror://kde/stable/frameworks/"
-                            (version-major+minor version) "/"
-                            name "-" version ".tar.xz"))
-        (sha256
-         (base32
-          "01m12ml529pwr2sal951r5z6yb1rwbpid1y4k14nlk3xqgmdakwa"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "0n7vw2a4kxdgpsc1wn9f1d0y01p6qfk8ac360rq329bvdpigxmnj"))))
     (build-system cmake-build-system)
     (native-inputs
      `(("qtbase" ,qtbase))) ; For tests (needs qmake)
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 03/68] gnu: gpgmepp: Update to 16.08.2.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
  2016-10-29 18:04 ` [PATCH 02/68] gnu: extra-cmake-modules: Update to 5.27.0 David Craven
@ 2016-10-29 18:04 ` David Craven
  2016-10-29 18:04 ` [PATCH 04/68] gnu: kpmcore: Fix indentation David Craven
                   ` (65 subsequent siblings)
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:04 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks (gpgmepp): Update to 16.08.2.
---
 gnu/packages/kde-frameworks.scm | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 04cb6e8..f5a8b63 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -120,16 +120,16 @@ common build settings used in software produced by the KDE community.")
 (define-public gpgmepp
   (package
     (name "gpgmepp")
-    (version "16.04.3")
-    (source
-      (origin
-        (method url-fetch)
-        (uri (string-append "mirror://kde/stable/applications"
-                            "/" version "/src/"
-                            name "-" version ".tar.xz"))
-        (sha256
-         (base32
-          "1850pdysi7c1w0nxnhcbrhnkrfqyrcl0laxyjcw1g1ln764pwcmj"))))
+    (version "16.08.2")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/applications"
+                    "/" version "/src/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "0828qlhdi1i26n2xgyb01c0q77m6jlppbxv6mprryxq0ma88940a"))))
     (build-system cmake-build-system)
     (native-inputs
      `(("extra-cmake-modules" ,extra-cmake-modules)))
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 04/68] gnu: kpmcore: Fix indentation.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
  2016-10-29 18:04 ` [PATCH 02/68] gnu: extra-cmake-modules: Update to 5.27.0 David Craven
  2016-10-29 18:04 ` [PATCH 03/68] gnu: gpgmepp: Update to 16.08.2 David Craven
@ 2016-10-29 18:04 ` David Craven
  2016-10-29 18:04 ` [PATCH 05/68] gnu: phonon: " David Craven
                   ` (64 subsequent siblings)
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:04 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (kpmcore): Fix indentation.
---
 gnu/packages/kde-frameworks.scm | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index f5a8b63..da0de95 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -147,15 +147,15 @@ common build settings used in software produced by the KDE community.")
   (package
     (name "kpmcore")
     (version "2.2.1")
-    (source
-      (origin
-        (method url-fetch)
-        (uri (string-append "mirror://kde/stable/kpmcore"
-                            "/" version "/src/"
-                            name "-" version ".tar.xz"))
-        (sha256
-         (base32
-          "1blila6ncqbmzhycx3szrbkxc000pzh62956mw5ihxvhrqpncg2p"))))
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/kpmcore"
+                    "/" version "/src/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "1blila6ncqbmzhycx3szrbkxc000pzh62956mw5ihxvhrqpncg2p"))))
     (build-system cmake-build-system)
     (native-inputs
      `(("extra-cmake-modules" ,extra-cmake-modules)
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 05/68] gnu: phonon: Fix indentation.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (2 preceding siblings ...)
  2016-10-29 18:04 ` [PATCH 04/68] gnu: kpmcore: Fix indentation David Craven
@ 2016-10-29 18:04 ` David Craven
  2016-10-29 18:04 ` [PATCH 06/68] gnu: attica: Update to 5.27.0 David Craven
                   ` (63 subsequent siblings)
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:04 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (phonon): Fix indentation.
---
 gnu/packages/kde-frameworks.scm | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index da0de95..ae3161a 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -94,15 +94,15 @@ common build settings used in software produced by the KDE community.")
   (package
     (name "phonon")
     (version "4.9.0")
-    (source
-      (origin
-        (method url-fetch)
-        (uri (string-append "mirror://kde/stable/phonon"
-                            "/" version "/"
-                            name "-" version ".tar.xz"))
-        (sha256
-         (base32
-          "1q5hvsk4sfcb91625wcmldy7kgjmfpmpmkgzi6mxkqdd307v8x5v"))))
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/phonon"
+                    "/" version "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "1q5hvsk4sfcb91625wcmldy7kgjmfpmpmkgzi6mxkqdd307v8x5v"))))
     (build-system cmake-build-system)
     (native-inputs
      `(("extra-cmake-modules" ,extra-cmake-modules)))
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 06/68] gnu: attica: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (3 preceding siblings ...)
  2016-10-29 18:04 ` [PATCH 05/68] gnu: phonon: " David Craven
@ 2016-10-29 18:04 ` David Craven
  2016-10-29 18:04 ` [PATCH 07/68] gnu: bluez-qt: " David Craven
                   ` (62 subsequent siblings)
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:04 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (attica): Update to 5.27.0.
---
 gnu/packages/kde-frameworks.scm | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index ae3161a..653e8fb 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -184,16 +184,16 @@ common build settings used in software produced by the KDE community.")
 (define-public attica
   (package
     (name "attica")
-    (version "5.24.0")
-    (source
-      (origin
-        (method url-fetch)
-        (uri (string-append "mirror://kde/stable/frameworks/"
-                            (version-major+minor version) "/"
-                            name "-" version ".tar.xz"))
-        (sha256
-         (base32
-          "0d368gmds7m7k5pnn625wqsij38cvxk1gkm4zv24phnk9f67v7cw"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "0w6dwq83vj70m8rf52x60a64f6s6h0y7c948j3hddfql7s3ghha7"))))
     (build-system cmake-build-system)
     (native-inputs
      `(("extra-cmake-modules" ,extra-cmake-modules)))
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 07/68] gnu: bluez-qt: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (4 preceding siblings ...)
  2016-10-29 18:04 ` [PATCH 06/68] gnu: attica: Update to 5.27.0 David Craven
@ 2016-10-29 18:04 ` David Craven
  2016-10-29 20:33   ` Leo Famulari
  2016-10-29 20:42   ` Leo Famulari
  2016-10-29 18:04 ` [PATCH 08/68] gnu: breeze-icons: " David Craven
                   ` (61 subsequent siblings)
  67 siblings, 2 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:04 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (bluez-qt): Update to 5.27.0 and
  fix indentation.
---
 gnu/packages/kde-frameworks.scm | 32 ++++++++++++++++----------------
 1 file changed, 16 insertions(+), 16 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 653e8fb..ba22f89 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -216,16 +216,16 @@ http://freedesktop.org/wiki/Specifications/open-collaboration-services/")
 (define-public bluez-qt
   (package
     (name "bluez-qt")
-    (version "5.24.0")
-    (source
-      (origin
-        (method url-fetch)
-        (uri (string-append "mirror://kde/stable/frameworks/"
-                            (version-major+minor version) "/"
-                            name "-" version ".tar.xz"))
-        (sha256
-         (base32
-          "0gy0m7lcwwklf021l5i3v7j0cl7qz7cgvzrwpj87ix3kyw5xs80z"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "111gqxw1bvazdhxk5rcfhi438i6bd92r3wvlkxsdqrp7ypcqdpig"))))
     (build-system cmake-build-system)
     (native-inputs
      `(("dbus" ,dbus)
@@ -234,13 +234,13 @@ http://freedesktop.org/wiki/Specifications/open-collaboration-services/")
      `(("qtbase" ,qtbase)))
     (arguments
      `(#:configure-flags
-        '("-DINSTALL_UDEV_RULE:BOOL=OFF")
+       '("-DINSTALL_UDEV_RULE:BOOL=OFF")
        #:phases
-        (modify-phases %standard-phases
-          (replace 'check
-            (lambda* _
-              (setenv "DBUS_FATAL_WARNINGS" "0")
-              (zero? (system* "dbus-launch" "ctest" ".")))))))
+       (modify-phases %standard-phases
+         (replace 'check
+           (lambda _
+             (setenv "DBUS_FATAL_WARNINGS" "0")
+             (zero? (system* "dbus-launch" "ctest" ".")))))))
     (home-page "https://community.kde.org/Frameworks")
     (synopsis "QML wrapper for BlueZ")
     (description "bluez-qt is a Qt-style library for accessing the bluez
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 08/68] gnu: breeze-icons: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (5 preceding siblings ...)
  2016-10-29 18:04 ` [PATCH 07/68] gnu: bluez-qt: " David Craven
@ 2016-10-29 18:04 ` David Craven
  2016-10-29 18:04 ` [PATCH 09/68] gnu: kapidox: " David Craven
                   ` (60 subsequent siblings)
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:04 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (breeze-icons): Update to 5.27.0.
  [native-inputs]: Add fduptes and libxml2.
  [arguments]: Disable tests.
---
 gnu/packages/kde-frameworks.scm | 29 ++++++++++++++++++-----------
 1 file changed, 18 insertions(+), 11 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index ba22f89..c725461 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -250,21 +250,28 @@ Bluetooth stack.  It is used by the KDE Bluetooth stack, BlueDevil.")
 (define-public breeze-icons
   (package
     (name "breeze-icons")
-    (version "5.24.0")
-    (source
-      (origin
-        (method url-fetch)
-        (uri (string-append "mirror://kde/stable/frameworks/"
-                            (version-major+minor version) "/"
-                            name "-" version ".tar.xz"))
-        (sha256
-         (base32
-          "1dh7bijx99sdb3vn6394wmm5cq0fvvmz8h17sx4hakmbga849cx2"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "12awfvka9sgdgh7dyg7cw7myw7fxrx1w93s1gyhdq2drjsdbghgz"))))
     (build-system cmake-build-system)
     (native-inputs
-     `(("extra-cmake-modules" ,extra-cmake-modules)))
+     `(("extra-cmake-modules" ,extra-cmake-modules)
+       ("fdupes" ,fdupes)
+       ("libxml2" ,libxml2)))
     (inputs
      `(("qtbase" ,qtbase)))
+    ;; FIXME: Dupes test fails. Issue is fixed upstream
+    ;; Remove when updating to 5.28.
+    ;; https://github.com/KDE/breeze-icons/commit/22b383359e3a0e02d4828e6fa8ed8a3d213440b1
+    (arguments
+     `(#:tests? #f))
     (home-page "https://community.kde.org/Frameworks")
     (synopsis "Default KDE Plasma 5 icon theme")
     (description "Breeze provides a freedesktop.org compatible icon theme.
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 09/68] gnu: kapidox: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (6 preceding siblings ...)
  2016-10-29 18:04 ` [PATCH 08/68] gnu: breeze-icons: " David Craven
@ 2016-10-29 18:04 ` David Craven
  2016-10-29 18:04 ` [PATCH 10/68] gnu: karchive: " David Craven
                   ` (59 subsequent siblings)
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:04 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (kapidox): Update to 5.27.0 and fix
  indentation.
---
 gnu/packages/kde-frameworks.scm | 21 ++++++++++-----------
 1 file changed, 10 insertions(+), 11 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index c725461..029b390 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -284,16 +284,16 @@ It is the default icon theme for the KDE Plasma 5 desktop.")
 (define-public kapidox
   (package
     (name "kapidox")
-    (version "5.24.0")
-    (source
-      (origin
-        (method url-fetch)
-        (uri (string-append "mirror://kde/stable/frameworks/"
-                            (version-major+minor version) "/"
-                            name "-" version ".tar.xz"))
-        (sha256
-         (base32
-          "19a7alvn71nxflsyi7y3hghx1iw04qqc77qy54mcxcpkiyvpsggf"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "193m0qpcqdkspdcwc8cwabjjcqyd9d0m5kl53mycyiv1m220x11l"))))
     (build-system cmake-build-system)
     (arguments
      `(#:tests? #f)) ; has no test target
@@ -311,7 +311,6 @@ It is the default icon theme for the KDE Plasma 5 desktop.")
      `(("qtbase" ,qtbase)))
     (home-page "https://community.kde.org/Frameworks")
     (synopsis "KDE Doxygen Tools")
-
     (description "This framework contains scripts and data for building API
 documentation (dox) in a standard format and style for KDE.
 
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 10/68] gnu: karchive: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (7 preceding siblings ...)
  2016-10-29 18:04 ` [PATCH 09/68] gnu: kapidox: " David Craven
@ 2016-10-29 18:04 ` David Craven
  2016-10-29 18:04 ` [PATCH 11/68] gnu: kcodecs: " David Craven
                   ` (58 subsequent siblings)
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:04 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (karchive): Update to 5.27.0.
---
 gnu/packages/kde-frameworks.scm | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 029b390..2ee18a8 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -326,16 +326,16 @@ documentation.")
 (define-public karchive
   (package
     (name "karchive")
-    (version "5.24.0")
-    (source
-      (origin
-        (method url-fetch)
-        (uri (string-append "mirror://kde/stable/frameworks/"
-                            (version-major+minor version) "/"
-                            name "-" version ".tar.xz"))
-        (sha256
-         (base32
-          "1n5nfhrfvqnrdjgjjy7arqik4fya5bp3dvxa16mlhqr19azkavzq"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "1c7bifmzyr398p1qx9qfxp893wbr44sjn3sda9q0hdpmw2i7yf3z"))))
     (build-system cmake-build-system)
     (native-inputs
      `(("extra-cmake-modules" ,extra-cmake-modules)))
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 11/68] gnu: kcodecs: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (8 preceding siblings ...)
  2016-10-29 18:04 ` [PATCH 10/68] gnu: karchive: " David Craven
@ 2016-10-29 18:04 ` David Craven
  2016-10-29 18:04 ` [PATCH 12/68] gnu: kconfig: " David Craven
                   ` (57 subsequent siblings)
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:04 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (kcodecs): Update to 5.27.0.
---
 gnu/packages/kde-frameworks.scm | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 2ee18a8..68b5436 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -360,16 +360,16 @@ GZip format, via a subclass of QIODevice.")
 (define-public kcodecs
   (package
     (name "kcodecs")
-    (version "5.24.0")
-    (source
-      (origin
-        (method url-fetch)
-        (uri (string-append "mirror://kde/stable/frameworks/"
-                            (version-major+minor version) "/"
-                            name "-" version ".tar.xz"))
-        (sha256
-         (base32
-          "1qpzjh3qc2zz80j2bmlinipbispms14k9bmqw8v61zhi6in9z14c"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "0f4k276sm0svh5y8yyq8hfc5vy60cpsrwany7kswyh22m57v5j8a"))))
     (build-system cmake-build-system)
     (native-inputs
      `(("extra-cmake-modules" ,extra-cmake-modules)
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 12/68] gnu: kconfig: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (9 preceding siblings ...)
  2016-10-29 18:04 ` [PATCH 11/68] gnu: kcodecs: " David Craven
@ 2016-10-29 18:04 ` David Craven
  2016-10-29 18:04 ` [PATCH 13/68] gnu: kcoreaddons: " David Craven
                   ` (56 subsequent siblings)
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:04 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (kconfig): Update to 5.27.0 and fix
  indentation.
---
 gnu/packages/kde-frameworks.scm | 42 ++++++++++++++++++++---------------------
 1 file changed, 21 insertions(+), 21 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 68b5436..784868f 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -395,16 +395,16 @@ Internet).")
 (define-public kconfig
   (package
     (name "kconfig")
-    (version "5.24.0")
-    (source
-      (origin
-        (method url-fetch)
-        (uri (string-append "mirror://kde/stable/frameworks/"
-                            (version-major+minor version) "/"
-                            name "-" version ".tar.xz"))
-        (sha256
-         (base32
-          "1dc2i6icyigw1j6qxgdza6j2g8afh390qmxsa2a54mwl84fkfmxv"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "18dpm0r4nnvmxrask6rv5dkniwna9hh72ffdnvjgrh8p5djs9szi"))))
     (build-system cmake-build-system)
     (native-inputs
      `(("extra-cmake-modules" ,extra-cmake-modules)
@@ -415,18 +415,18 @@ Internet).")
      `(("qtbase" ,qtbase)))
     (arguments
      `(#:phases
-        (modify-phases %standard-phases
-          (add-before 'check 'check-setup
-            (lambda* _
-              (setenv "HOME" (getcwd))
-              (setenv "TMPDIR" (getcwd))
+       (modify-phases %standard-phases
+         (add-before 'check 'check-setup
+           (lambda _
+             (setenv "HOME" (getcwd))
+             (setenv "TMPDIR" (getcwd))
              #t))
-          (add-before 'check 'start-xorg-server
-            (lambda* (#:key inputs #:allow-other-keys)
-              ;; The test suite requires a running X server.
-              (system (string-append (assoc-ref inputs "xorg-server")
-                                     "/bin/Xvfb :1 &"))
-              (setenv "DISPLAY" ":1")
+         (add-before 'check 'start-xorg-server
+           (lambda* (#:key inputs #:allow-other-keys)
+             ;; The test suite requires a running X server.
+             (system (string-append (assoc-ref inputs "xorg-server")
+                                    "/bin/Xvfb :1 &"))
+             (setenv "DISPLAY" ":1")
              #t)))))
     (home-page "https://community.kde.org/Frameworks")
     (synopsis "Kconfiguration settings framework for Qt")
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 13/68] gnu: kcoreaddons: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (10 preceding siblings ...)
  2016-10-29 18:04 ` [PATCH 12/68] gnu: kconfig: " David Craven
@ 2016-10-29 18:04 ` David Craven
  2016-10-29 18:04 ` [PATCH 14/68] gnu: kdbusaddons: " David Craven
                   ` (55 subsequent siblings)
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:04 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (kcoreaddons): Update to 5.27.0 and
  fix indentation.
---
 gnu/packages/kde-frameworks.scm | 33 +++++++++++++++++----------------
 1 file changed, 17 insertions(+), 16 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 784868f..18868c5 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -462,16 +462,16 @@ propagate their changes to their respective configuration files.")
 (define-public kcoreaddons
   (package
     (name "kcoreaddons")
-    (version "5.24.0")
-    (source
-      (origin
-        (method url-fetch)
-        (uri (string-append "mirror://kde/stable/frameworks/"
-                            (version-major+minor version) "/"
-                            name "-" version ".tar.xz"))
-        (sha256
-         (base32
-          "06sx7by3nvaridnavj5p0bxv4nh47n708jlacfw8ydaikmd9i03h"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "0rzpxajv041kdbk92rwxq1qnvzyrxfjy154d8257yj2fj76w1gnw"))))
     (build-system cmake-build-system)
     (native-inputs
      `(("extra-cmake-modules" ,extra-cmake-modules)
@@ -482,12 +482,13 @@ propagate their changes to their respective configuration files.")
     (arguments
      `(#:tests? #f ; FIXME: Test failure caused by stout/stderr being interleaved.
        #:phases
-        (modify-phases %standard-phases
-          (add-before 'check 'check-setup
-            (lambda* _
-              (setenv "CTEST_OUTPUT_ON_FAILURE" "1") ; enable debug output
-              (setenv "HOME" (getcwd))
-              (setenv "TMPDIR" (getcwd)))))))
+       (modify-phases %standard-phases
+         (add-before 'check 'check-setup
+           (lambda _
+             (setenv "CTEST_OUTPUT_ON_FAILURE" "1") ; enable debug output
+             (setenv "HOME" (getcwd))
+             (setenv "TMPDIR" (getcwd))
+             #t)))))
     (home-page "https://community.kde.org/Frameworks")
     (synopsis "Qt addon library with a collection of non-GUI utilities")
     (description "KCoreAddons provides classes built on top of QtCore to
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 14/68] gnu: kdbusaddons: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (11 preceding siblings ...)
  2016-10-29 18:04 ` [PATCH 13/68] gnu: kcoreaddons: " David Craven
@ 2016-10-29 18:04 ` David Craven
  2016-10-29 18:04 ` [PATCH 15/68] gnu: kdnssd: " David Craven
                   ` (54 subsequent siblings)
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:04 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (kdbusaddons): Update to 5.27.0 and
  fix indentation.
---
 gnu/packages/kde-frameworks.scm | 30 +++++++++++++++---------------
 1 file changed, 15 insertions(+), 15 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 18868c5..ff848c4 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -501,16 +501,16 @@ many more.")
 (define-public kdbusaddons
   (package
     (name "kdbusaddons")
-    (version "5.24.0")
-    (source
-      (origin
-        (method url-fetch)
-        (uri (string-append "mirror://kde/stable/frameworks/"
-                            (version-major+minor version) "/"
-                            name "-" version ".tar.xz"))
-        (sha256
-         (base32
-          "183nxqrhz4qk4qfp1w4an0scp2dvfqcaqbpg4cgbgk0z590q0pkk"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "1vgdl9z5xyfr2b5z7n2vdh0s6zab6ccxp30p1cy8hhhrsf04663m"))))
     (build-system cmake-build-system)
     (native-inputs
      `(("extra-cmake-modules" ,extra-cmake-modules)
@@ -521,11 +521,11 @@ many more.")
        ("qtx11extras" ,qtx11extras)))
     (arguments
      `(#:phases
-        (modify-phases %standard-phases
-          (replace 'check
-            (lambda* _
-              (setenv "DBUS_FATAL_WARNINGS" "0")
-              (zero? (system* "dbus-launch" "ctest" ".")))))))
+       (modify-phases %standard-phases
+         (replace 'check
+           (lambda _
+             (setenv "DBUS_FATAL_WARNINGS" "0")
+             (zero? (system* "dbus-launch" "ctest" ".")))))))
     (home-page "https://community.kde.org/Frameworks")
     (synopsis "Convenience classes for DBus")
     (description "KDBusAddons provides convenience classes on top of QtDBus,
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 15/68] gnu: kdnssd: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (12 preceding siblings ...)
  2016-10-29 18:04 ` [PATCH 14/68] gnu: kdbusaddons: " David Craven
@ 2016-10-29 18:04 ` David Craven
  2016-10-29 18:04 ` [PATCH 16/68] gnu: kguiaddons: " David Craven
                   ` (53 subsequent siblings)
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:04 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (kdnssd): Update to 5.27.0.
---
 gnu/packages/kde-frameworks.scm | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index ff848c4..168381c 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -537,16 +537,16 @@ as well as an API to create KDED modules.")
 (define-public kdnssd
   (package
     (name "kdnssd")
-    (version "5.24.0")
-    (source
-      (origin
-        (method url-fetch)
-        (uri (string-append "mirror://kde/stable/frameworks/"
-                            (version-major+minor version) "/"
-                            name "-" version ".tar.xz"))
-        (sha256
-         (base32
-          "01b650g031apxc3vd2m91g2fxqk9l8ap67z6rafniphfwy8i0d5m"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "0dq2i4f4ny5cwgd41mjw5i7cf23ns55s2m13cjvxvy90nwhlymqp"))))
     (build-system cmake-build-system)
     (native-inputs
      `(("extra-cmake-modules" ,extra-cmake-modules)
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 16/68] gnu: kguiaddons: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (13 preceding siblings ...)
  2016-10-29 18:04 ` [PATCH 15/68] gnu: kdnssd: " David Craven
@ 2016-10-29 18:04 ` David Craven
  2016-10-29 18:04 ` [PATCH 17/68] gnu: ki18n: " David Craven
                   ` (52 subsequent siblings)
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:04 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (kguiaddons): Update to 5.27.0 and fix
  indentation.
---
 gnu/packages/kde-frameworks.scm | 30 +++++++++++++++---------------
 1 file changed, 15 insertions(+), 15 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 168381c..619479b 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -564,16 +564,16 @@ infrastructure.")
 (define-public kguiaddons
   (package
     (name "kguiaddons")
-    (version "5.24.0")
-    (source
-      (origin
-        (method url-fetch)
-        (uri (string-append "mirror://kde/stable/frameworks/"
-                            (version-major+minor version) "/"
-                            name "-" version ".tar.xz"))
-        (sha256
-         (base32
-          "0ig96ah20ybg5rwpswj9va2klvkh2q4amwxmgy3z4niwfsm2g3ic"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "1skvlcj0fgb4am02vlm4fyd52f9yn4y0aj5arcfz3qps5cjzr6xg"))))
     (build-system cmake-build-system)
     (native-inputs
      `(("extra-cmake-modules" ,extra-cmake-modules)
@@ -582,11 +582,11 @@ infrastructure.")
      `(("qtbase" ,qtbase)))
     (arguments
      `(#:phases
-        (modify-phases %standard-phases
-          (add-before 'check 'check-setup
-            (lambda* _
-              (setenv "QT_QPA_PLATFORM" "offscreen")
-              #t)))))
+       (modify-phases %standard-phases
+         (add-before 'check 'check-setup
+           (lambda _
+             (setenv "QT_QPA_PLATFORM" "offscreen")
+             #t)))))
     (home-page "https://community.kde.org/Frameworks")
     (synopsis "Utilities for graphical user interfaces")
     (description "The KDE GUI addons provide utilities for graphical user
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 17/68] gnu: ki18n: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (14 preceding siblings ...)
  2016-10-29 18:04 ` [PATCH 16/68] gnu: kguiaddons: " David Craven
@ 2016-10-29 18:04 ` David Craven
  2016-10-29 18:04 ` [PATCH 18/68] gnu: kidletime: " David Craven
                   ` (51 subsequent siblings)
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:04 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (ki18n): Update to 5.27.0 and fix
  indentation.
---
 gnu/packages/kde-frameworks.scm | 29 +++++++++++++++--------------
 1 file changed, 15 insertions(+), 14 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 619479b..1535307 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -596,16 +596,16 @@ interfaces in the areas of colors, fonts, text, images, keyboard input.")
 (define-public ki18n
   (package
     (name "ki18n")
-    (version "5.24.0")
-    (source
-      (origin
-        (method url-fetch)
-        (uri (string-append "mirror://kde/stable/frameworks/"
-                            (version-major+minor version) "/"
-                            name "-" version ".tar.xz"))
-        (sha256
-         (base32
-          "0cw24spmwsqa3ppkw03cm6yjd3sfll0dbbk2ya76fd4nw9hb00dv"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "0a66z325bvdv7g6ysml2bf8559nkjhv2fxwj1ja6vsxkn95d54ff"))))
     (build-system cmake-build-system)
     (propagated-inputs
      `(("gettext" ,gnu-gettext)
@@ -618,10 +618,11 @@ interfaces in the areas of colors, fonts, text, images, keyboard input.")
        ("qtscript" ,qtscript)))
     (arguments
      `(#:phases
-        (modify-phases %standard-phases
-          (add-before 'check 'check-setup
-            (lambda* _
-              (setenv "HOME" (getcwd)))))))
+       (modify-phases %standard-phases
+         (add-before 'check 'check-setup
+           (lambda _
+             (setenv "HOME" (getcwd))
+             #t)))))
     (home-page "https://community.kde.org/Frameworks")
     (synopsis "KDE Gettext-based UI text internationalization")
     (description "KI18n provides functionality for internationalizing user
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 18/68] gnu: kidletime: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (15 preceding siblings ...)
  2016-10-29 18:04 ` [PATCH 17/68] gnu: ki18n: " David Craven
@ 2016-10-29 18:04 ` David Craven
  2016-10-29 18:04 ` [PATCH 19/68] gnu: kitemmodels: " David Craven
                   ` (50 subsequent siblings)
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:04 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (kidletime): Update to 5.27.0.
---
 gnu/packages/kde-frameworks.scm | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 1535307..c98c96a 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -639,16 +639,16 @@ translation scripting.")
 (define-public kidletime
   (package
     (name "kidletime")
-    (version "5.24.0")
-    (source
-      (origin
-        (method url-fetch)
-        (uri (string-append "mirror://kde/stable/frameworks/"
-                            (version-major+minor version) "/"
-                            name "-" version ".tar.xz"))
-        (sha256
-         (base32
-          "09jsj0pj27h93nr8v46savs6b93h8frydinfr7wlijkvpsl02jb4"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "1cv6d2vylz7vymn4v0brv2jp1kzscvm9wh1ylp3wyi1jqyblgjfw"))))
     (build-system cmake-build-system)
     (native-inputs
      `(("extra-cmake-modules" ,extra-cmake-modules)))
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 19/68] gnu: kitemmodels: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (16 preceding siblings ...)
  2016-10-29 18:04 ` [PATCH 18/68] gnu: kidletime: " David Craven
@ 2016-10-29 18:04 ` David Craven
  2016-10-29 18:04 ` [PATCH 20/68] gnu: kitemviews: " David Craven
                   ` (49 subsequent siblings)
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:04 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (kitemmodels): Update to 5.27.0 and
  fix indentation.
---
 gnu/packages/kde-frameworks.scm | 34 +++++++++++++++++-----------------
 1 file changed, 17 insertions(+), 17 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index c98c96a..90adc44 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -666,16 +666,16 @@ or user activity.")
 (define-public kitemmodels
   (package
     (name "kitemmodels")
-    (version "5.24.0")
-    (source
-      (origin
-        (method url-fetch)
-        (uri (string-append "mirror://kde/stable/frameworks/"
-                            (version-major+minor version) "/"
-                            name "-" version ".tar.xz"))
-        (sha256
-         (base32
-          "1s1p4nw1pqdzbdwvjnka17p9avf00wadr437p4f96md1lvh3sh69"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "00qgp5i35r7k9gy43wypn9fa7zxiqqip89dzbw8r6rabinihqzy2"))))
     (build-system cmake-build-system)
     (native-inputs
      `(("extra-cmake-modules" ,extra-cmake-modules)
@@ -684,13 +684,13 @@ or user activity.")
      `(("qtbase" ,qtbase)))
     (arguments
      `(#:phases
-        (modify-phases %standard-phases
-          (add-before 'check 'start-xorg-server
-            (lambda* (#:key inputs #:allow-other-keys)
-              ;; The test suite requires a running X server.
-              (system (string-append (assoc-ref inputs "xorg-server")
-                                     "/bin/Xvfb :1 &"))
-              (setenv "DISPLAY" ":1")
+       (modify-phases %standard-phases
+         (add-before 'check 'start-xorg-server
+           (lambda* (#:key inputs #:allow-other-keys)
+             ;; The test suite requires a running X server.
+             (system (string-append (assoc-ref inputs "xorg-server")
+                                    "/bin/Xvfb :1 &"))
+             (setenv "DISPLAY" ":1")
              #t)))))
     (home-page "https://community.kde.org/Frameworks")
     (synopsis "Set of item models extending the Qt model-view framework")
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 20/68] gnu: kitemviews: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (17 preceding siblings ...)
  2016-10-29 18:04 ` [PATCH 19/68] gnu: kitemmodels: " David Craven
@ 2016-10-29 18:04 ` David Craven
  2016-10-29 18:04 ` [PATCH 21/68] gnu: kplotting: " David Craven
                   ` (48 subsequent siblings)
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:04 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (kitemviews): Update to 5.27.0 and fix
  indentation.
---
 gnu/packages/kde-frameworks.scm | 41 +++++++++++++++++++++--------------------
 1 file changed, 21 insertions(+), 20 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 90adc44..6aaf8c1 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -727,16 +727,16 @@ model to observers
 (define-public kitemviews
   (package
     (name "kitemviews")
-    (version "5.24.0")
-    (source
-      (origin
-        (method url-fetch)
-        (uri (string-append "mirror://kde/stable/frameworks/"
-                            (version-major+minor version) "/"
-                            name "-" version ".tar.xz"))
-        (sha256
-         (base32
-          "0y3fx9hk1x27arrmwfzq783a44cs7p8dpmhxrwzh0di4mwa8jafw"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "1469i10y2c3i1pdhzl9nk177y4n1mlc7p5w7kivdcrvf9ilxvbkx"))))
     (build-system cmake-build-system)
     (native-inputs
      `(("extra-cmake-modules" ,extra-cmake-modules)
@@ -746,16 +746,17 @@ model to observers
      `(("qtbase" ,qtbase)))
     (arguments
      `(#:phases
-        (modify-phases %standard-phases
-          (add-before 'check 'check-setup
-            (lambda* _
-              (setenv "DBUS_FATAL_WARNINGS" "0")))
-          (add-before 'check 'start-xorg-server
-            (lambda* (#:key inputs #:allow-other-keys)
-              ;; The test suite requires a running X server.
-              (system (string-append (assoc-ref inputs "xorg-server")
-                                     "/bin/Xvfb :1 &"))
-              (setenv "DISPLAY" ":1")
+       (modify-phases %standard-phases
+         (add-before 'check 'check-setup
+           (lambda _
+             (setenv "DBUS_FATAL_WARNINGS" "0")
+             #t))
+         (add-before 'check 'start-xorg-server
+           (lambda* (#:key inputs #:allow-other-keys)
+             ;; The test suite requires a running X server.
+             (system (string-append (assoc-ref inputs "xorg-server")
+                                    "/bin/Xvfb :1 &"))
+             (setenv "DISPLAY" ":1")
              #t)))))
     (home-page "https://community.kde.org/Frameworks")
     (synopsis "Set of item views extending the Qt model-view framework")
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 21/68] gnu: kplotting: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (18 preceding siblings ...)
  2016-10-29 18:04 ` [PATCH 20/68] gnu: kitemviews: " David Craven
@ 2016-10-29 18:04 ` David Craven
  2016-10-29 18:04 ` [PATCH 22/68] gnu: kwayland: " David Craven
                   ` (47 subsequent siblings)
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:04 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (kplotting): Update to 5.27.0 and fix
  indentation.
---
 gnu/packages/kde-frameworks.scm | 34 +++++++++++++++++-----------------
 1 file changed, 17 insertions(+), 17 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 6aaf8c1..ef77d8d 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -768,16 +768,16 @@ to flat and hierarchical lists.")
 (define-public kplotting
   (package
     (name "kplotting")
-    (version "5.24.0")
-    (source
-      (origin
-        (method url-fetch)
-        (uri (string-append "mirror://kde/stable/frameworks/"
-                            (version-major+minor version) "/"
-                            name "-" version ".tar.xz"))
-        (sha256
-         (base32
-          "0gpypq9kh4b5s6dc7py3m117k3nbxczsfkxgxd9zxvr35kig7ya2"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "1qp9q8g9yxy359bylyqyqxjq9wjismajrg4xhxx5xn4s6znyrxny"))))
     (build-system cmake-build-system)
     (native-inputs
      `(("extra-cmake-modules" ,extra-cmake-modules)
@@ -786,13 +786,13 @@ to flat and hierarchical lists.")
      `(("qtbase" ,qtbase)))
     (arguments
      `(#:phases
-        (modify-phases %standard-phases
-          (add-before 'check 'start-xorg-server
-            (lambda* (#:key inputs #:allow-other-keys)
-              ;; The test suite requires a running X server.
-              (system (string-append (assoc-ref inputs "xorg-server")
-                                     "/bin/Xvfb :1 &"))
-              (setenv "DISPLAY" ":1")
+       (modify-phases %standard-phases
+         (add-before 'check 'start-xorg-server
+           (lambda* (#:key inputs #:allow-other-keys)
+             ;; The test suite requires a running X server.
+             (system (string-append (assoc-ref inputs "xorg-server")
+                                    "/bin/Xvfb :1 &"))
+             (setenv "DISPLAY" ":1")
              #t)))))
     (home-page "https://community.kde.org/Frameworks")
     (synopsis "Data plotting library")
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 22/68] gnu: kwayland: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (19 preceding siblings ...)
  2016-10-29 18:04 ` [PATCH 21/68] gnu: kplotting: " David Craven
@ 2016-10-29 18:04 ` David Craven
  2016-10-29 18:04 ` [PATCH 23/68] gnu: kwidgetsaddons: " David Craven
                   ` (46 subsequent siblings)
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:04 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (kwayland): Update to 5.27.0 and fix
  indentation.
---
 gnu/packages/kde-frameworks.scm | 29 +++++++++++++++--------------
 1 file changed, 15 insertions(+), 14 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index ef77d8d..bf61f67 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -806,16 +806,16 @@ pixel units.")
 (define-public kwayland
   (package
     (name "kwayland")
-    (version "5.24.0")
-    (source
-      (origin
-        (method url-fetch)
-        (uri (string-append "mirror://kde/stable/frameworks/"
-                            (version-major+minor version) "/"
-                            name "-" version ".tar.xz"))
-        (sha256
-         (base32
-          "1h5anbqrxcl1s8kx1l53vcsfr8ifamcjqd47dk8a7lwr1ga6myq2"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "0va1kmki2xr4mx2918h333mfkqs5v1mhbzyf71hq190izdz0jdss"))))
     (build-system cmake-build-system)
     (native-inputs
      `(("extra-cmake-modules" ,extra-cmake-modules)
@@ -827,10 +827,11 @@ pixel units.")
      `(#:tests? #f ; FIXME tests require weston to run
                    ; weston requires wayland flags in mesa
        #:phases
-         (modify-phases %standard-phases
-           (add-before 'check 'check-setup
-             (lambda* _
-               (setenv "XDG_RUNTIME_DIR" "/tmp"))))))
+       (modify-phases %standard-phases
+         (add-before 'check 'check-setup
+           (lambda _
+             (setenv "XDG_RUNTIME_DIR" "/tmp")
+             #t)))))
     (home-page "https://community.kde.org/Frameworks")
     (synopsis "Qt-style API to interact with the wayland client and server")
     (description "As the names suggest they implement a Client respectively a
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 23/68] gnu: kwidgetsaddons: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (20 preceding siblings ...)
  2016-10-29 18:04 ` [PATCH 22/68] gnu: kwayland: " David Craven
@ 2016-10-29 18:04 ` David Craven
  2016-10-29 18:04 ` [PATCH 24/68] gnu: kwindowsystem: " David Craven
                   ` (45 subsequent siblings)
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:04 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (kwidgetsaddons): Update to 5.27.0 and
  fix indentation.
---
 gnu/packages/kde-frameworks.scm | 54 ++++++++++++++++++++---------------------
 1 file changed, 27 insertions(+), 27 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index bf61f67..450b238 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -845,16 +845,16 @@ represented by a QPoint or a QSize.")
 (define-public kwidgetsaddons
   (package
     (name "kwidgetsaddons")
-    (version "5.24.0")
-    (source
-      (origin
-        (method url-fetch)
-        (uri (string-append "mirror://kde/stable/frameworks/"
-                            (version-major+minor version) "/"
-                            name "-" version ".tar.xz"))
-        (sha256
-         (base32
-          "1kppx0ppfhnb6q6sijs2dffyar86wkkx8miqavsjsgw1l2wiymcx"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "0p9gxna7y7nigpi0ri7k45g4pf1svq0kxrhk4wf7rj58rilhcfrl"))))
     (build-system cmake-build-system)
     (native-inputs
      `(("extra-cmake-modules" ,extra-cmake-modules)
@@ -865,23 +865,23 @@ represented by a QPoint or a QSize.")
     (arguments
      `(#:tests? #f ; FIXME: Regression after update to qt 5.7
        #:phases
-        (modify-phases %standard-phases
-          (add-before 'check 'check-setup
-            (lambda _
-              (setenv "QT_QPA_PLATFORM" "offscreen") ; a better solution to Xvfb
-              (setenv "CTEST_OUTPUT_ON_FAILURE" "1") ; enable debug info
-              (setenv "DBUS_FATAL_WARNINGS" "0")
-              #t))
-          (add-before 'check 'start-xorg-server
-            (lambda* (#:key inputs #:allow-other-keys)
-              ;; The test suite requires a running X server.
-              ;; Xvfb doesn't have proper glx support and needs a pixeldepth
-              ;; of 24 bit to avoid "libGL error: failed to load driver: swrast"
-              ;;                    "Could not initialize GLX"
-              (system (string-append (assoc-ref inputs "xorg-server")
-                                     "/bin/Xvfb :1 -screen 0 640x480x24 &"))
-              (setenv "DISPLAY" ":1")
-              #t)))))
+       (modify-phases %standard-phases
+         (add-before 'check 'check-setup
+           (lambda _
+             (setenv "QT_QPA_PLATFORM" "offscreen") ; a better solution to Xvfb
+             (setenv "CTEST_OUTPUT_ON_FAILURE" "1") ; enable debug info
+             (setenv "DBUS_FATAL_WARNINGS" "0")
+             #t))
+         (add-before 'check 'start-xorg-server
+           (lambda* (#:key inputs #:allow-other-keys)
+             ;; The test suite requires a running X server.
+             ;; Xvfb doesn't have proper glx support and needs a pixeldepth
+             ;; of 24 bit to avoid "libGL error: failed to load driver: swrast"
+             ;;                    "Could not initialize GLX"
+             (system (string-append (assoc-ref inputs "xorg-server")
+                                    "/bin/Xvfb :1 -screen 0 640x480x24 &"))
+             (setenv "DISPLAY" ":1")
+             #t)))))
     (home-page "https://community.kde.org/Frameworks")
     (synopsis "Large set of desktop widgets")
     (description "Provided are action classes that can be added to toolbars or
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 24/68] gnu: kwindowsystem: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (21 preceding siblings ...)
  2016-10-29 18:04 ` [PATCH 23/68] gnu: kwidgetsaddons: " David Craven
@ 2016-10-29 18:04 ` David Craven
  2016-10-29 18:04 ` [PATCH 25/68] gnu: modemmanager-qt: " David Craven
                   ` (44 subsequent siblings)
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:04 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (kwindowsystem): Update to 5.27.0 and
  fix indentation.
---
 gnu/packages/kde-frameworks.scm | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 450b238..82aead4 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -893,16 +893,16 @@ configuration pages, message boxes, and password requests.")
 (define-public kwindowsystem
   (package
     (name "kwindowsystem")
-    (version "5.24.0")
-    (source
-      (origin
-        (method url-fetch)
-        (uri (string-append "mirror://kde/stable/frameworks/"
-                            (version-major+minor version) "/"
-                            name "-" version ".tar.xz"))
-        (sha256
-         (base32
-          "0w5ym8msl80v3q65253pdpj9f1fmb658rnndlbkrgpmm1rv1n6dz"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "0w49lpwicl71gyyf2aisvmfjpvjl3w1rqpx4a42ph0aywjihjmhx"))))
     (build-system cmake-build-system)
     (native-inputs
      `(("extra-cmake-modules" ,extra-cmake-modules)
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 25/68] gnu: modemmanager-qt: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (22 preceding siblings ...)
  2016-10-29 18:04 ` [PATCH 24/68] gnu: kwindowsystem: " David Craven
@ 2016-10-29 18:04 ` David Craven
  2016-10-29 18:04 ` [PATCH 26/68] gnu: networkmanager-qt: " David Craven
                   ` (43 subsequent siblings)
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:04 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (modemmanager-qt): Update to 5.27.0
  and fix indentation.
---
 gnu/packages/kde-frameworks.scm | 32 ++++++++++++++++----------------
 1 file changed, 16 insertions(+), 16 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 82aead4..5d6872f 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -933,33 +933,33 @@ lower level classes for interaction with the X Windowing System.")
 (define-public modemmanager-qt
   (package
     (name "modemmanager-qt")
-    (version "5.24.0")
-    (source
-      (origin
-        (method url-fetch)
-        (uri (string-append "mirror://kde/stable/frameworks/"
-                            (version-major+minor version) "/"
-                            name "-" version ".tar.xz"))
-        (sha256
-         (base32
-          "0khz5bf84xxa8aqpzwb6x839xx6dbiadwqhyj7cvgha65fh2xinh"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "1zw5frscvbsp0jpb071ssqgvm097ylw3zy69y7f0dybhps6lv2jv"))))
     (build-system cmake-build-system)
     (native-inputs
      `(("extra-cmake-modules" ,extra-cmake-modules)
        ("dbus" ,dbus)
        ("pkg-config" ,pkg-config)))
     (propagated-inputs
-     ; Headers contain #include <ModemManager/ModemManager.h>
+     ;; Headers contain #include <ModemManager/ModemManager.h>
      `(("modem-manager", modem-manager)))
     (inputs
      `(("qtbase" ,qtbase)))
     (arguments
      `(#:phases
-        (modify-phases %standard-phases
-          (replace 'check
-            (lambda* _
-              (setenv "DBUS_FATAL_WARNINGS" "0")
-              (zero? (system* "dbus-launch" "ctest" ".")))))))
+       (modify-phases %standard-phases
+         (replace 'check
+           (lambda _
+             (setenv "DBUS_FATAL_WARNINGS" "0")
+             (zero? (system* "dbus-launch" "ctest" ".")))))))
     (home-page "https://community.kde.org/Frameworks")
     (synopsis "Qt wrapper for ModemManager DBus API")
     (description "ModemManagerQt provides access to all ModemManager features
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 26/68] gnu: networkmanager-qt: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (23 preceding siblings ...)
  2016-10-29 18:04 ` [PATCH 25/68] gnu: modemmanager-qt: " David Craven
@ 2016-10-29 18:04 ` David Craven
  2016-10-29 18:04 ` [PATCH 27/68] gnu: oxygen-icons: " David Craven
                   ` (42 subsequent siblings)
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:04 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (networkmanager-qt): Update to 5.27.0
  and fix indentation.
---
 gnu/packages/kde-frameworks.scm | 64 ++++++++++++++++++++---------------------
 1 file changed, 32 insertions(+), 32 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 5d6872f..99cfe88 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -971,41 +971,41 @@ messages.")
 (define-public networkmanager-qt
   (package
     (name "networkmanager-qt")
-    (version "5.24.0")
-    (source
-      (origin
-        (method url-fetch)
-        (uri (string-append "mirror://kde/stable/frameworks/"
-                            (version-major+minor version) "/"
-                            name "-" version ".tar.xz"))
-        (sha256
-         (base32
-          "11wy0ds0hqbba900ggkcxjfqc9n65xlzc3h1zv9433nn5d75v6fy"))))
-     (build-system cmake-build-system)
-     (native-inputs
-      `(("extra-cmake-modules" ,extra-cmake-modules)
-        ("dbus" ,dbus)
-        ("pkg-config" ,pkg-config)))
-     (propagated-inputs
-      ; Headers contain #include <NetworkManager.h> and
-      ;                 #include <libnm/NetworkManager.h>
-      `(("network-manager" ,network-manager)))
-     (inputs
-      `(("qtbase" ,qtbase)))
-     (arguments
-      `(#:phases
-         (modify-phases %standard-phases
-           (replace 'check
-             (lambda* _
-               (setenv "DBUS_FATAL_WARNINGS" "0")
-               (zero? (system* "dbus-launch" "ctest" ".")))))))
-     (home-page "https://community.kde.org/Frameworks")
-     (synopsis "Qt wrapper for NetworkManager DBus API")
-     (description "NetworkManagerQt provides access to all NetworkManager
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "0fnj0b2j4v51f12b3v59psdza2krdkidj22b9a9jwn224lg4852y"))))
+    (build-system cmake-build-system)
+    (native-inputs
+     `(("extra-cmake-modules" ,extra-cmake-modules)
+       ("dbus" ,dbus)
+       ("pkg-config" ,pkg-config)))
+    (propagated-inputs
+     ;; Headers contain #include <NetworkManager.h> and
+     ;;                 #include <libnm/NetworkManager.h>
+     `(("network-manager" ,network-manager)))
+    (inputs
+     `(("qtbase" ,qtbase)))
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         (replace 'check
+           (lambda _
+             (setenv "DBUS_FATAL_WARNINGS" "0")
+             (zero? (system* "dbus-launch" "ctest" ".")))))))
+    (home-page "https://community.kde.org/Frameworks")
+    (synopsis "Qt wrapper for NetworkManager DBus API")
+    (description "NetworkManagerQt provides access to all NetworkManager
 features exposed on DBus.  It allows you to manage your connections and control
 your network devices and also provides a library for parsing connection settings
 which are used in DBus communication.")
-     (license license:lgpl2.1+)))
+    (license license:lgpl2.1+)))
 
 (define-public oxygen-icons
   (package
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 27/68] gnu: oxygen-icons: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (24 preceding siblings ...)
  2016-10-29 18:04 ` [PATCH 26/68] gnu: networkmanager-qt: " David Craven
@ 2016-10-29 18:04 ` David Craven
  2016-10-29 18:04 ` [PATCH 28/68] gnu: solid: " David Craven
                   ` (41 subsequent siblings)
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:04 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (oxygen-icons): Update to 5.27.0.
  [native-inputs]: Add fdupes.
---
 gnu/packages/kde-frameworks.scm | 23 ++++++++++++-----------
 1 file changed, 12 insertions(+), 11 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 99cfe88..fcdf034 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -1010,19 +1010,20 @@ which are used in DBus communication.")
 (define-public oxygen-icons
   (package
     (name "oxygen-icons")
-    (version "5.24.0")
-    (source
-      (origin
-        (method url-fetch)
-        (uri (string-append "mirror://kde/stable/frameworks/"
-                            (version-major+minor version) "/"
-                            name "5" "-" version ".tar.xz"))
-        (sha256
-         (base32
-          "1c7spjbzk04725vv0ly7vmyvwa96mfa5ki2pm146ld4888a896wm"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "5" "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "1lb09ykj5ayj5lv7w2k2pqis7z61clr3gkinf6n7jghnlc96222g"))))
     (build-system cmake-build-system)
     (native-inputs
-     `(("extra-cmake-modules" ,extra-cmake-modules)))
+     `(("extra-cmake-modules" ,extra-cmake-modules)
+       ("fdupes" ,fdupes)))
     (inputs
      `(("qtbase" ,qtbase)))
     (home-page "https://community.kde.org/Frameworks")
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 28/68] gnu: solid: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (25 preceding siblings ...)
  2016-10-29 18:04 ` [PATCH 27/68] gnu: oxygen-icons: " David Craven
@ 2016-10-29 18:04 ` David Craven
  2016-10-29 20:28   ` Leo Famulari
  2016-10-29 18:04 ` [PATCH 29/68] gnu: sonnet: " David Craven
                   ` (40 subsequent siblings)
  67 siblings, 1 reply; 76+ messages in thread
From: David Craven @ 2016-10-29 18:04 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (solid): Update to 5.27.0.
  [native-inputs]: Add flex-2.6.1.
---
 gnu/packages/kde-frameworks.scm | 22 ++++++++++++----------
 1 file changed, 12 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index fcdf034..e6b25bc 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -35,6 +35,7 @@
   #:use-module (gnu packages databases)
   #:use-module (gnu packages disk)
   #:use-module (gnu packages docbook)
+  #:use-module (gnu packages flex)
   #:use-module (gnu packages freedesktop)
   #:use-module (gnu packages gettext)
   #:use-module (gnu packages glib)
@@ -1034,20 +1035,21 @@ which are used in DBus communication.")
 (define-public solid
   (package
     (name "solid")
-    (version "5.24.0")
-    (source
-      (origin
-        (method url-fetch)
-        (uri (string-append "mirror://kde/stable/frameworks/"
-                            (version-major+minor version) "/"
-                            name "-" version ".tar.xz"))
-        (sha256
-         (base32
-          "00wvsxcnvhdx7ijzpcz5wny2ypkxr1drdpr4yvawgpwa678l1107"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "01qlfj30n8sr8xd8l8fimg7hs7h70ynhalk2m9l8dz2qay2pdl27"))))
     (build-system cmake-build-system)
     (native-inputs
      `(("bison" ,bison)
        ("extra-cmake-modules" ,extra-cmake-modules)
+       ("flex" ,flex-2.6.1)
        ("qttools" ,qttools)))
     (inputs
      `(("qtbase" ,qtbase)
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 29/68] gnu: sonnet: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (26 preceding siblings ...)
  2016-10-29 18:04 ` [PATCH 28/68] gnu: solid: " David Craven
@ 2016-10-29 18:04 ` David Craven
  2016-10-29 18:04 ` [PATCH 30/68] gnu: threadweaver: " David Craven
                   ` (39 subsequent siblings)
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:04 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (sonnet): Update to 5.27.0.
---
 gnu/packages/kde-frameworks.scm | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index e6b25bc..6ccf4a6 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -1064,16 +1064,16 @@ system.")
 (define-public sonnet
   (package
     (name "sonnet")
-    (version "5.24.0")
-    (source
-      (origin
-        (method url-fetch)
-        (uri (string-append "mirror://kde/stable/frameworks/"
-                            (version-major+minor version) "/"
-                            name "-" version ".tar.xz"))
-        (sha256
-         (base32
-          "152xz7fb1iwhb5w1n4xqvc648iaxi0inrl4kavxcsir61das1xyl"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "07i3gng309vsf5kp5dlwca0lpi3iqc0lp0ixdvx75q832gk8ivrv"))))
     (build-system cmake-build-system)
     (native-inputs
      `(("extra-cmake-modules" ,extra-cmake-modules)
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 30/68] gnu: threadweaver: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (27 preceding siblings ...)
  2016-10-29 18:04 ` [PATCH 29/68] gnu: sonnet: " David Craven
@ 2016-10-29 18:04 ` David Craven
  2016-10-29 18:04 ` [PATCH 31/68] gnu: kauth: " David Craven
                   ` (38 subsequent siblings)
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:04 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (threadweaver): Update to 5.27.0.
---
 gnu/packages/kde-frameworks.scm | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 6ccf4a6..51ac434 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -1090,16 +1090,16 @@ ASpell and HUNSPELL.")
 (define-public threadweaver
   (package
     (name "threadweaver")
-    (version "5.24.0")
-    (source
-      (origin
-        (method url-fetch)
-        (uri (string-append "mirror://kde/stable/frameworks/"
-                            (version-major+minor version) "/"
-                            name "-" version ".tar.xz"))
-        (sha256
-         (base32
-          "02g60zr9cc4bg1p90giich4n0qvqaiakz0y94qrnyj9f7fg0yksl"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "0mg5i125b008x6162a5h2q14fg81m17md00017n09xljw3099kqy"))))
     (build-system cmake-build-system)
     (native-inputs
      `(("extra-cmake-modules" ,extra-cmake-modules)))
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 31/68] gnu: kauth: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (28 preceding siblings ...)
  2016-10-29 18:04 ` [PATCH 30/68] gnu: threadweaver: " David Craven
@ 2016-10-29 18:04 ` David Craven
  2016-10-29 18:04 ` [PATCH 32/68] gnu: kcompletion: " David Craven
                   ` (37 subsequent siblings)
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:04 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (kauth): Update to 5.27.0 and fix
  indentation.
---
 gnu/packages/kde-frameworks.scm | 30 +++++++++++++++---------------
 1 file changed, 15 insertions(+), 15 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 51ac434..58f4125 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -1120,16 +1120,16 @@ uses a job-based interface to queue tasks and execute them in an efficient way."
 (define-public kauth
   (package
     (name "kauth")
-    (version "5.24.0")
-    (source
-      (origin
-        (method url-fetch)
-        (uri (string-append "mirror://kde/stable/frameworks/"
-                            (version-major+minor version) "/"
-                            name "-" version ".tar.xz"))
-        (sha256
-         (base32
-          "14sjjfgl3arqyqcr77w9qhpnd8mrnh53r5rfss6bvlk26bmihs49"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "17z6dh1qdpd490z84g6ynl8bcrr9naalvh34ybnpipvx3qs50kwl"))))
     (build-system cmake-build-system)
     (native-inputs
      `(("dbus" ,dbus)
@@ -1141,11 +1141,11 @@ uses a job-based interface to queue tasks and execute them in an efficient way."
        ("qtbase" ,qtbase)))
     (arguments
      `(#:phases
-        (modify-phases %standard-phases
-          (replace 'check
-            (lambda* _
-              (setenv "DBUS_FATAL_WARNINGS" "0")
-              (zero? (system* "dbus-launch" "ctest" ".")))))))
+       (modify-phases %standard-phases
+         (replace 'check
+           (lambda _
+             (setenv "DBUS_FATAL_WARNINGS" "0")
+             (zero? (system* "dbus-launch" "ctest" ".")))))))
     (home-page "https://community.kde.org/Frameworks")
     (synopsis "Execute actions as privileged user")
     (description "KAuth provides a convenient, system-integrated way to offload
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 32/68] gnu: kcompletion: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (29 preceding siblings ...)
  2016-10-29 18:04 ` [PATCH 31/68] gnu: kauth: " David Craven
@ 2016-10-29 18:04 ` David Craven
  2016-10-29 18:04 ` [PATCH 33/68] gnu: kcrash: " David Craven
                   ` (36 subsequent siblings)
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:04 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (kcompletion): Update to 5.27.0 and
  fix indentation.
---
 gnu/packages/kde-frameworks.scm | 30 +++++++++++++++---------------
 1 file changed, 15 insertions(+), 15 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 58f4125..26983c0 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -1156,16 +1156,16 @@ utilities.")
 (define-public kcompletion
   (package
     (name "kcompletion")
-    (version "5.24.0")
-    (source
-      (origin
-        (method url-fetch)
-        (uri (string-append "mirror://kde/stable/frameworks/"
-                            (version-major+minor version) "/"
-                            name "-" version ".tar.xz"))
-        (sha256
-         (base32
-          "1qln0v31gn86kzwhnkijr1ydf129n32jmiybbckrp4w6hyx6xfxv"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "1mb64ii4ilhqhy9p6cl3phs17bg3lr4b60jkkm71yn2wnd4wl47s"))))
     (build-system cmake-build-system)
     (native-inputs
      `(("extra-cmake-modules" ,extra-cmake-modules)
@@ -1177,11 +1177,11 @@ utilities.")
        ("qtbase" ,qtbase)))
     (arguments
      `(#:phases
-        (modify-phases %standard-phases
-          (add-before 'check 'check-setup
-            (lambda _
-              (setenv "QT_QPA_PLATFORM" "offscreen")
-              #t)))))
+       (modify-phases %standard-phases
+         (add-before 'check 'check-setup
+           (lambda _
+             (setenv "QT_QPA_PLATFORM" "offscreen")
+             #t)))))
     (home-page "https://community.kde.org/Frameworks")
     (synopsis "Powerful autocompletion framework and widgets")
     (description "This framework helps implement autocompletion in Qt-based
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 33/68] gnu: kcrash: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (30 preceding siblings ...)
  2016-10-29 18:04 ` [PATCH 32/68] gnu: kcompletion: " David Craven
@ 2016-10-29 18:04 ` David Craven
  2016-10-29 18:04 ` [PATCH 34/68] gnu: kdoctools: " David Craven
                   ` (35 subsequent siblings)
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:04 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (kcrash): Update to 5.27.0 and fix
  indentation.
---
 gnu/packages/kde-frameworks.scm | 34 +++++++++++++++++-----------------
 1 file changed, 17 insertions(+), 17 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 26983c0..0d0388d 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -1192,16 +1192,16 @@ integrated it into your application's other widgets.")
 (define-public kcrash
   (package
     (name "kcrash")
-    (version "5.24.0")
-    (source
-      (origin
-        (method url-fetch)
-        (uri (string-append "mirror://kde/stable/frameworks/"
-                            (version-major+minor version) "/"
-                            name "-" version ".tar.xz"))
-        (sha256
-         (base32
-          "1lahgfwlp9b5rsl244kzp7rsl4ybv1q4qlvpv0xxz5ygssk48l0w"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "09wf4dzckc9l8dyl8qs1wc54h4rm38i2blzyyicm4iazi420lysk"))))
     (build-system cmake-build-system)
     (native-inputs
      `(("extra-cmake-modules" ,extra-cmake-modules)
@@ -1213,13 +1213,13 @@ integrated it into your application's other widgets.")
        ("qtx11extras" ,qtx11extras)))
     (arguments
      `(#:phases
-        (modify-phases %standard-phases
-          (add-before 'check 'start-xorg-server
-            (lambda* (#:key inputs #:allow-other-keys)
-              ;; The test suite requires a running X server.
-              (system (string-append (assoc-ref inputs "xorg-server")
-                                     "/bin/Xvfb :1 &"))
-              (setenv "DISPLAY" ":1")
+       (modify-phases %standard-phases
+         (add-before 'check 'start-xorg-server
+           (lambda* (#:key inputs #:allow-other-keys)
+             ;; The test suite requires a running X server.
+             (system (string-append (assoc-ref inputs "xorg-server")
+                                    "/bin/Xvfb :1 &"))
+             (setenv "DISPLAY" ":1")
              #t)))))
     (home-page "https://community.kde.org/Frameworks")
     (synopsis "Graceful handling of application crashes")
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 34/68] gnu: kdoctools: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (31 preceding siblings ...)
  2016-10-29 18:04 ` [PATCH 33/68] gnu: kcrash: " David Craven
@ 2016-10-29 18:04 ` David Craven
  2016-10-29 18:04 ` [PATCH 35/68] gnu: kfilemetadata: " David Craven
                   ` (34 subsequent siblings)
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:04 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (kdoctools): Update to 5.27.0 and fix
  indentation.
---
 gnu/packages/kde-frameworks.scm | 46 ++++++++++++++++++++---------------------
 1 file changed, 23 insertions(+), 23 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 0d0388d..294a474 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -1230,16 +1230,15 @@ application crashes.")
 (define-public kdoctools
   (package
     (name "kdoctools")
-    (version "5.24.0")
-    (source
-      (origin
-        (method url-fetch)
-        (uri (string-append "mirror://kde/stable/frameworks/"
-                            (version-major+minor version) "/"
-                            name "-" version ".tar.xz"))
-        (sha256
-         (base32
-          "1r129kpq0d11b9l87cqbal6fm5ycwhsps1g3r1a7jsxz70scz4ri"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "mirror://kde/stable/frameworks/"
+                                  (version-major+minor version) "/"
+                                  name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "1hgg19da0918mx8z2614qljvj9j8bny78mwlyljf42814f3ycpam"))))
     (build-system cmake-build-system)
     (native-inputs
      `(("extra-cmake-modules" ,extra-cmake-modules)))
@@ -1255,19 +1254,20 @@ application crashes.")
        ("qtbase" ,qtbase)))
     (arguments
      `(#:phases
-        (modify-phases %standard-phases
-          (add-after 'unpack 'cmake-find-docbook
-            (lambda* (#:key inputs #:allow-other-keys)
-              (substitute* (find-files "cmake" "\\.cmake$")
-                (("CMAKE_SYSTEM_PREFIX_PATH")
-                  "CMAKE_PREFIX_PATH"))
-               (substitute* "cmake/FindDocBookXML4.cmake"
-                 (("^.*xml/docbook/schema/dtd.*$")
-                   "xml/dtd/docbook\n"))
-               (substitute* "cmake/FindDocBookXSL.cmake"
-                 (("^.*xml/docbook/stylesheet.*$")
-                  (string-append "xml/xsl/docbook-xsl-"
-                                 ,(package-version docbook-xsl) "\n"))))))))
+       (modify-phases %standard-phases
+         (add-after 'unpack 'cmake-find-docbook
+           (lambda* (#:key inputs #:allow-other-keys)
+             (substitute* (find-files "cmake" "\\.cmake$")
+               (("CMAKE_SYSTEM_PREFIX_PATH")
+                "CMAKE_PREFIX_PATH"))
+             (substitute* "cmake/FindDocBookXML4.cmake"
+               (("^.*xml/docbook/schema/dtd.*$")
+                "xml/dtd/docbook\n"))
+             (substitute* "cmake/FindDocBookXSL.cmake"
+               (("^.*xml/docbook/stylesheet.*$")
+                (string-append "xml/xsl/docbook-xsl-"
+                               ,(package-version docbook-xsl) "\n")))
+             #t)))))
     (home-page "https://community.kde.org/Frameworks")
     (synopsis "Create documentation from DocBook")
     (description "Provides tools to generate documentation in various format
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 35/68] gnu: kfilemetadata: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (32 preceding siblings ...)
  2016-10-29 18:04 ` [PATCH 34/68] gnu: kdoctools: " David Craven
@ 2016-10-29 18:04 ` David Craven
  2016-10-29 18:04 ` [PATCH 36/68] gnu: kimageformats: " David Craven
                   ` (33 subsequent siblings)
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:04 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (kfilemetadata): Update to 5.27.0.
---
 gnu/packages/kde-frameworks.scm | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 294a474..0ed134c 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -1277,16 +1277,16 @@ from DocBook files.")
 (define-public kfilemetadata
   (package
     (name "kfilemetadata")
-    (version "5.24.0")
-    (source
-      (origin
-        (method url-fetch)
-        (uri (string-append "mirror://kde/stable/frameworks/"
-                            (version-major+minor version) "/"
-                            name "-" version ".tar.xz"))
-        (sha256
-         (base32
-          "02n9qhpr0jlwdgdbid0k34abhs3bzhlsa56ybl5dq1aib6izk1sy"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "1la6h05izgnps10py2gcn4xnwz3fm7dyswib57flc8phzipxbg5q"))))
     (build-system cmake-build-system)
     (native-inputs
      `(("extra-cmake-modules" ,extra-cmake-modules)
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 36/68] gnu: kimageformats: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (33 preceding siblings ...)
  2016-10-29 18:04 ` [PATCH 35/68] gnu: kfilemetadata: " David Craven
@ 2016-10-29 18:04 ` David Craven
  2016-10-29 18:04 ` [PATCH 37/68] gnu: kjobwidgets: " David Craven
                   ` (32 subsequent siblings)
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:04 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (kimageformats): Update to 5.27.0 and
  fix indentation.
---
 gnu/packages/kde-frameworks.scm | 22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 0ed134c..7cf56ef 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -1307,16 +1307,16 @@ by applications to write metadata.")
 (define-public kimageformats
   (package
     (name "kimageformats")
-    (version "5.24.0")
-    (source
-      (origin
-        (method url-fetch)
-        (uri (string-append "mirror://kde/stable/frameworks/"
-                            (version-major+minor version) "/"
-                            name "-" version ".tar.xz"))
-        (sha256
-         (base32
-          "12mhgckmhnvcnm8k7mk15mipxrnm7i9ip7ykbjh8nxjiwyk1pmwc"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "0ijy7di9p37l6fjrmsday402vq4zibq1m37jghkvdymawxcrd22h"))))
     (build-system cmake-build-system)
     (native-inputs
      `(("extra-cmake-modules" ,extra-cmake-modules)
@@ -1332,7 +1332,7 @@ by applications to write metadata.")
              (system (string-append (assoc-ref inputs "xorg-server")
                                     "/bin/Xvfb :1 &"))
              (setenv "DISPLAY" ":1")
-            #t)))))
+             #t)))))
     (home-page "https://community.kde.org/Frameworks")
     (synopsis "Plugins to allow QImage to support extra file formats")
     (description "This framework provides additional image format plugins for
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 37/68] gnu: kjobwidgets: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (34 preceding siblings ...)
  2016-10-29 18:04 ` [PATCH 36/68] gnu: kimageformats: " David Craven
@ 2016-10-29 18:04 ` David Craven
  2016-10-29 18:04 ` [PATCH 38/68] gnu: knotifications: " David Craven
                   ` (31 subsequent siblings)
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:04 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (kjobwidgets): Update to 5.27.0.
---
 gnu/packages/kde-frameworks.scm | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 7cf56ef..b958da4 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -1344,16 +1344,16 @@ formats.")
 (define-public kjobwidgets
   (package
     (name "kjobwidgets")
-    (version "5.24.0")
-    (source
-      (origin
-        (method url-fetch)
-        (uri (string-append "mirror://kde/stable/frameworks/"
-                            (version-major+minor version) "/"
-                            name "-" version ".tar.xz"))
-        (sha256
-         (base32
-          "1mcvrz66xcqjgbp08zpqsf943cm462wbqm5gh719p9s25hx8hwrc"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "05c6jzl2a37bfz5i7hzsjmrhh8ajx1gbz7j05wgal811m5m4ww8l"))))
     (build-system cmake-build-system)
     (native-inputs
      `(("extra-cmake-modules" ,extra-cmake-modules)
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 38/68] gnu: knotifications: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (35 preceding siblings ...)
  2016-10-29 18:04 ` [PATCH 37/68] gnu: kjobwidgets: " David Craven
@ 2016-10-29 18:04 ` David Craven
  2016-10-29 18:04 ` [PATCH 39/68] gnu: kpackage: " David Craven
                   ` (30 subsequent siblings)
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:04 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (knotifications): Update to 5.27.0 and
  fix indentation.
---
 gnu/packages/kde-frameworks.scm | 27 ++++++++++++++-------------
 1 file changed, 14 insertions(+), 13 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index b958da4..20397ed 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -1372,16 +1372,16 @@ asynchronous jobs.")
 (define-public knotifications
   (package
     (name "knotifications")
-    (version "5.24.0")
-    (source
-      (origin
-        (method url-fetch)
-        (uri (string-append "mirror://kde/stable/frameworks/"
-                            (version-major+minor version) "/"
-                            name "-" version ".tar.xz"))
-        (sha256
-         (base32
-          "0qryp41phnpx4r9wa6rfhmnzy7nxl0ijnyrafadf2n2xb53ipkpa"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "09v122nxfgqjzr2azfn2nh4q9l22i5wnsz9prs0i7s3m7y0d7pxn"))))
     (build-system cmake-build-system)
     (native-inputs
      `(("extra-cmake-modules" ,extra-cmake-modules)
@@ -1399,10 +1399,11 @@ asynchronous jobs.")
      `(#:phases
        (modify-phases %standard-phases
          (add-before 'check 'check-setup
-           (lambda* _
-             (setenv "HOME" (getcwd))))
+           (lambda _
+             (setenv "HOME" (getcwd))
+             #t))
          (replace 'check
-           (lambda* _
+           (lambda _
              (setenv "DBUS_FATAL_WARNINGS" "0")
              (zero? (system* "dbus-launch" "ctest" ".")))))))
     (home-page "https://community.kde.org/Frameworks")
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 39/68] gnu: kpackage: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (36 preceding siblings ...)
  2016-10-29 18:04 ` [PATCH 38/68] gnu: knotifications: " David Craven
@ 2016-10-29 18:04 ` David Craven
  2016-10-29 18:04 ` [PATCH 40/68] gnu: kpty: " David Craven
                   ` (29 subsequent siblings)
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:04 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (kpackage): Update to 5.27.0 and fix
  indentation.
---
 gnu/packages/kde-frameworks.scm | 25 +++++++++++++------------
 1 file changed, 13 insertions(+), 12 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 20397ed..43857c5 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -1415,16 +1415,16 @@ covers feedback and persistent events.")
 (define-public kpackage
   (package
     (name "kpackage")
-    (version "5.24.0")
-    (source
-      (origin
-        (method url-fetch)
-        (uri (string-append "mirror://kde/stable/frameworks/"
-                            (version-major+minor version) "/"
-                            name "-" version ".tar.xz"))
-        (sha256
-         (base32
-          "03aqzkpqz3c1v4qgwfbs3ncdbapiyg7psrkhxqv3z48rklavk1ri"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "0y07zh8ryibm69ljp9f169qfal6r4lngz1ljxgrr6qw15cjkjygk"))))
     (build-system cmake-build-system)
     (native-inputs
      `(("extra-cmake-modules" ,extra-cmake-modules)))
@@ -1439,9 +1439,10 @@ covers feedback and persistent events.")
        #:phases
        (modify-phases %standard-phases
          (add-before 'check 'check-setup
-           (lambda* _
+           (lambda _
              (setenv "CTEST_OUTPUT_ON_FAILURE" "1") ; enable debug output
-             (setenv "HOME" (getcwd)))))))
+             (setenv "HOME" (getcwd))
+             #t)))))
     (home-page "https://community.kde.org/Frameworks")
     (synopsis "Installation and loading of additional content as packages")
     (description "The Package framework lets the user install and load packages
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 40/68] gnu: kpty: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (37 preceding siblings ...)
  2016-10-29 18:04 ` [PATCH 39/68] gnu: kpackage: " David Craven
@ 2016-10-29 18:04 ` David Craven
  2016-10-29 18:04 ` [PATCH 41/68] gnu: kunitconversion: " David Craven
                   ` (28 subsequent siblings)
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:04 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (kpty): Update to 5.27.0 and fix
  indentation.
---
 gnu/packages/kde-frameworks.scm | 30 +++++++++++++++---------------
 1 file changed, 15 insertions(+), 15 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 43857c5..937122d 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -1453,16 +1453,16 @@ were traditional plugins.")
 (define-public kpty
   (package
     (name "kpty")
-    (version "5.24.0")
-    (source
-      (origin
-        (method url-fetch)
-        (uri (string-append "mirror://kde/stable/frameworks/"
-                            (version-major+minor version) "/"
-                            name "-" version ".tar.xz"))
-        (sha256
-         (base32
-          "1ybvdzqpa53kkki9p5da0ff9x3c63rmksk7865wqwlgy8apzi2fs"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "06pka8cbw6a9rk2j5pkz34rfy10bv6il3wqyf7ala32ynv5rcgc3"))))
     (build-system cmake-build-system)
     (native-inputs
      `(("extra-cmake-modules" ,extra-cmake-modules)))
@@ -1475,11 +1475,11 @@ were traditional plugins.")
        #:phases
        (modify-phases %standard-phases
          (add-after 'unpack 'patch-tests
-         (lambda _
-           (setenv "CTEST_OUTPUT_ON_FAILURE" "1")
-           (substitute* "autotests/kptyprocesstest.cpp"
-             (("/bin/bash") (which "bash")))
-           #t)))))
+           (lambda _
+             (setenv "CTEST_OUTPUT_ON_FAILURE" "1")
+             (substitute* "autotests/kptyprocesstest.cpp"
+               (("/bin/bash") (which "bash")))
+             #t)))))
     (home-page "https://community.kde.org/Frameworks")
     (synopsis "Interfacing with pseudo terminal devices")
     (description "This library provides primitives to interface with pseudo
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 41/68] gnu: kunitconversion: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (38 preceding siblings ...)
  2016-10-29 18:04 ` [PATCH 40/68] gnu: kpty: " David Craven
@ 2016-10-29 18:04 ` David Craven
  2016-10-29 18:04 ` [PATCH 42/68] gnu: baloo: " David Craven
                   ` (27 subsequent siblings)
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:04 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (kunitconversion): Update to 5.27.0.
---
 gnu/packages/kde-frameworks.scm | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 937122d..d6a68c5 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -1490,16 +1490,16 @@ and communicating with them using a pty.")
 (define-public kunitconversion
   (package
     (name "kunitconversion")
-    (version "5.24.0")
-    (source
-      (origin
-        (method url-fetch)
-        (uri (string-append "mirror://kde/stable/frameworks/"
-                            (version-major+minor version) "/"
-                            name "-" version ".tar.xz"))
-        (sha256
-         (base32
-          "03dfjn4lm6sl2zcdrvw0b9irzvkyc2w2j5xixag5j8nw373742h8"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "11rn6813jz7clb6fjp9nbdg1c350zh0yiprbr053wkdjrb3aca7c"))))
     (build-system cmake-build-system)
     (native-inputs
      `(("extra-cmake-modules" ,extra-cmake-modules)))
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 42/68] gnu: baloo: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (39 preceding siblings ...)
  2016-10-29 18:04 ` [PATCH 41/68] gnu: kunitconversion: " David Craven
@ 2016-10-29 18:04 ` David Craven
  2016-10-29 18:04 ` [PATCH 43/68] gnu: kactivities: " David Craven
                   ` (26 subsequent siblings)
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:04 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (baloo): Update to 5.27.0.
---
 gnu/packages/kde-frameworks.scm | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index d6a68c5..1f254c5 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -1523,16 +1523,16 @@ gallons).")
 (define-public baloo
   (package
     (name "baloo")
-    (version "5.24.0")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (string-append "mirror://kde/stable/frameworks/"
-                           (version-major+minor version) "/"
-                           name "-" version ".tar.xz"))
-       (sha256
-        (base32
-         "1ayfdg6j9lvas17ryjdv4a0kaj6vw3bxfy2x9nadl0gkc9pak4nh"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "0dqa5sxz2z440h6zry7s1x0r1d919qky69i5fv2nir7y844xx2cc"))))
     (build-system cmake-build-system)
     (propagated-inputs
      `(("kcoreaddons" ,kcoreaddons)
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 43/68] gnu: kactivities: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (40 preceding siblings ...)
  2016-10-29 18:04 ` [PATCH 42/68] gnu: baloo: " David Craven
@ 2016-10-29 18:04 ` David Craven
  2016-10-29 18:04 ` [PATCH 44/68] gnu: kactivities-stats: " David Craven
                   ` (25 subsequent siblings)
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:04 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (kactivities): Update to 5.27.0.
---
 gnu/packages/kde-frameworks.scm | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 1f254c5..83aa116 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -1580,16 +1580,16 @@ maintaining an index of the contents of your files.")
 (define-public kactivities
   (package
     (name "kactivities")
-    (version "5.24.0")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (string-append "mirror://kde/stable/frameworks/"
-                           (version-major+minor version) "/"
-                           name "-" version ".tar.xz"))
-       (sha256
-        (base32
-         "0s8g43zk6h35bq1am1nnhj0qvmhd6kz42gs8l7ybga0367jghzhf"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "08x07rlf2gff1j9jahznz2838919vab1ay8jppz3bp5kywx104yk"))))
     (build-system cmake-build-system)
     (native-inputs
      `(("extra-cmake-modules" ,extra-cmake-modules)))
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 44/68] gnu: kactivities-stats: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (41 preceding siblings ...)
  2016-10-29 18:04 ` [PATCH 43/68] gnu: kactivities: " David Craven
@ 2016-10-29 18:04 ` David Craven
  2016-10-29 18:04 ` [PATCH 45/68] gnu: kbookmarks: " David Craven
                   ` (24 subsequent siblings)
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:04 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (kactivities-stats): Update to 5.27.0.
---
 gnu/packages/kde-frameworks.scm | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 83aa116..4c0bf70 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -1627,16 +1627,16 @@ with other frameworks.")
 (define-public kactivities-stats
   (package
     (name "kactivities-stats")
-    (version "5.24.0")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (string-append "mirror://kde/stable/frameworks/"
-                           (version-major+minor version) "/"
-                           name "-" version ".tar.xz"))
-       (sha256
-        (base32
-         "1z3xvpifxbd05b2xaxxyiypcpid7jgjb1qpwiyjj1gnfp4rjmzpc"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "134a3zgasza9wghp1lkiaar3sakag7vn82pm2kcrmr420a0jigsw"))))
     (build-system cmake-build-system)
     (native-inputs
      `(("extra-cmake-modules" ,extra-cmake-modules)))
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 45/68] gnu: kbookmarks: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (42 preceding siblings ...)
  2016-10-29 18:04 ` [PATCH 44/68] gnu: kactivities-stats: " David Craven
@ 2016-10-29 18:04 ` David Craven
  2016-10-29 18:04 ` [PATCH 46/68] gnu: kcmutils: " David Craven
                   ` (23 subsequent siblings)
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:04 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (kbookmarks): Update to 5.27.0.
---
 gnu/packages/kde-frameworks.scm | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 4c0bf70..aaec0aa 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -1657,16 +1657,16 @@ by which applications, and what documents have been linked to which activity.")
 (define-public kbookmarks
   (package
     (name "kbookmarks")
-    (version "5.24.0")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (string-append "mirror://kde/stable/frameworks/"
-                           (version-major+minor version) "/"
-                           name "-" version ".tar.xz"))
-       (sha256
-        (base32
-         "10d8dnhvbrwp0dbmz93cqfdff6ir8iy3yiwaf9ihj6ma124qlyjn"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "1lb20yn8s27h0965yf6w4v4wwlm80bl24mpsksp01z9f0711j8vm"))))
     (build-system cmake-build-system)
     (propagated-inputs
      `(("kwidgetsaddons" ,kwidgetsaddons)))
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 46/68] gnu: kcmutils: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (43 preceding siblings ...)
  2016-10-29 18:04 ` [PATCH 45/68] gnu: kbookmarks: " David Craven
@ 2016-10-29 18:04 ` David Craven
  2016-10-29 18:04 ` [PATCH 47/68] gnu: kconfigwidgets: " David Craven
                   ` (22 subsequent siblings)
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:04 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (kcmutils): Update to 5.27.0.
---
 gnu/packages/kde-frameworks.scm | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index aaec0aa..cd41a5e 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -1699,16 +1699,16 @@ using the XBEL format.")
 (define-public kcmutils
   (package
     (name "kcmutils")
-    (version "5.24.0")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (string-append "mirror://kde/stable/frameworks/"
-                           (version-major+minor version) "/"
-                           name "-" version ".tar.xz"))
-       (sha256
-        (base32
-         "0aws1c76s6wbp0xpr6qv6cfwq8dw82v00pkf9gy84sbxknwjnizk"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "04nbd0836azs2i0pq8hq8ljnmfc45mqs022zdn84xd2q3npl3hfx"))))
     (build-system cmake-build-system)
     (propagated-inputs
      `(("kconfigwidgets" ,kconfigwidgets)
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 47/68] gnu: kconfigwidgets: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (44 preceding siblings ...)
  2016-10-29 18:04 ` [PATCH 46/68] gnu: kcmutils: " David Craven
@ 2016-10-29 18:04 ` David Craven
  2016-10-29 18:04 ` [PATCH 48/68] gnu: kdeclarative: " David Craven
                   ` (21 subsequent siblings)
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:04 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (kconfigwidgets): Update to 5.27.0.
---
 gnu/packages/kde-frameworks.scm | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index cd41a5e..19aee87 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -1738,16 +1738,16 @@ KCModules can be created with the KConfigWidgets framework.")
 (define-public kconfigwidgets
   (package
     (name "kconfigwidgets")
-    (version "5.24.0")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (string-append "mirror://kde/stable/frameworks/"
-                           (version-major+minor version) "/"
-                           name "-" version ".tar.xz"))
-       (sha256
-        (base32
-         "0v25r50gh5i984lzlv0rradghglcfqf0gsfmnkn23h87b86fm9l2"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "0sbhirfsjmsxiwaqqh5jh85bhwmij93gj5knnb0bs0al4hy29918"))))
     (build-system cmake-build-system)
     (propagated-inputs
      `(("kauth" ,kauth)
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 48/68] gnu: kdeclarative: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (45 preceding siblings ...)
  2016-10-29 18:04 ` [PATCH 47/68] gnu: kconfigwidgets: " David Craven
@ 2016-10-29 18:04 ` David Craven
  2016-10-29 18:05 ` [PATCH 49/68] gnu: kded: " David Craven
                   ` (20 subsequent siblings)
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:04 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (kdeclarative): Update to 5.27.0.
---
 gnu/packages/kde-frameworks.scm | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 19aee87..af03dbd 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -1779,16 +1779,16 @@ their settings.")
 (define-public kdeclarative
   (package
     (name "kdeclarative")
-    (version "5.24.0")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (string-append "mirror://kde/stable/frameworks/"
-                           (version-major+minor version) "/"
-                           name "-" version ".tar.xz"))
-       (sha256
-        (base32
-         "00ik9q1r6y6g5rkdq96yczgrxmcg85x00lipyljvc3x6xw6bixbz"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "1a8pqwrwgmzarinhr9xxviqh9417p8icj8lwqg9ly0q0j3yv20dh"))))
     (build-system cmake-build-system)
     (propagated-inputs
      `(("kconfig" ,kconfig)
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 49/68] gnu: kded: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (46 preceding siblings ...)
  2016-10-29 18:04 ` [PATCH 48/68] gnu: kdeclarative: " David Craven
@ 2016-10-29 18:05 ` David Craven
  2016-10-29 18:05 ` [PATCH 50/68] gnu: kdesignerplugin: " David Craven
                   ` (19 subsequent siblings)
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:05 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (kded): Update to 5.27.0.
---
 gnu/packages/kde-frameworks.scm | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index af03dbd..9fd57d0 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -1839,16 +1839,16 @@ that offer bindings to some of the Frameworks.")
 (define-public kded
   (package
     (name "kded")
-    (version "5.24.0")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (string-append "mirror://kde/stable/frameworks/"
-                           (version-major+minor version) "/"
-                           name "-" version ".tar.xz"))
-       (sha256
-        (base32
-         "0ngpxdxb596myn5r4kjxahx195bwklq33yvgjvcbxi2clg2wccaj"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "14f4qxia9p3vynv2ch9rs67zaxn9kpbas0fn0vwag1ikxb8qz0c2"))))
     (build-system cmake-build-system)
     (native-inputs
      `(("extra-cmake-modules" ,extra-cmake-modules)))
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 50/68] gnu: kdesignerplugin: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (47 preceding siblings ...)
  2016-10-29 18:05 ` [PATCH 49/68] gnu: kded: " David Craven
@ 2016-10-29 18:05 ` David Craven
  2016-10-29 18:05 ` [PATCH 51/68] gnu: kdesu: " David Craven
                   ` (18 subsequent siblings)
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:05 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (kdesignerplugin): Update to 5.27.0.
---
 gnu/packages/kde-frameworks.scm | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 9fd57d0..b44369c 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -1872,16 +1872,16 @@ started on demand.")
 (define-public kdesignerplugin
   (package
     (name "kdesignerplugin")
-    (version "5.24.0")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (string-append "mirror://kde/stable/frameworks/"
-                           (version-major+minor version) "/"
-                           name "-" version ".tar.xz"))
-       (sha256
-        (base32
-         "0i0s8pwwhwh5hyyvkv0cnj0yyv0g5bnm5xw18knv2yagiy4bvb2j"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "157lny5v8js63nvw2iyc9j4cinqmyj75a389s46n8wqyygrz5v0v"))))
     (build-system cmake-build-system)
     (native-inputs
      `(("extra-cmake-modules" ,extra-cmake-modules)
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 51/68] gnu: kdesu: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (48 preceding siblings ...)
  2016-10-29 18:05 ` [PATCH 50/68] gnu: kdesignerplugin: " David Craven
@ 2016-10-29 18:05 ` David Craven
  2016-10-29 18:05 ` [PATCH 52/68] gnu: kemoticons: " David Craven
                   ` (17 subsequent siblings)
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:05 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (kdesu): Update to 5.27.0.
---
 gnu/packages/kde-frameworks.scm | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index b44369c..b368230 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -1909,16 +1909,16 @@ ini-style description files.")
 (define-public kdesu
   (package
     (name "kdesu")
-    (version "5.24.0")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (string-append "mirror://kde/stable/frameworks/"
-                           (version-major+minor version) "/"
-                           name "-" version ".tar.xz"))
-       (sha256
-        (base32
-         "1ivcnhgvq75xvl0w9g7m45qzallz42ijaq0n1ap09lpdfmjbnrxk"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "1l501z102ygibz4000jnngm0cggh2kaf6hzra1ngv5nxqxzkh31a"))))
     (build-system cmake-build-system)
     (propagated-inputs
      `(("kpty" ,kpty)))
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 52/68] gnu: kemoticons: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (49 preceding siblings ...)
  2016-10-29 18:05 ` [PATCH 51/68] gnu: kdesu: " David Craven
@ 2016-10-29 18:05 ` David Craven
  2016-10-29 18:05 ` [PATCH 53/68] gnu: kglobalaccel: " David Craven
                   ` (16 subsequent siblings)
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:05 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (kemoticons): Update to 5.27.0.
  [arguments]: Return #t.
---
 gnu/packages/kde-frameworks.scm | 23 ++++++++++++-----------
 1 file changed, 12 insertions(+), 11 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index b368230..9591301 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -1940,16 +1940,16 @@ with su and ssh respectively.")
 (define-public kemoticons
   (package
     (name "kemoticons")
-    (version "5.24.0")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (string-append "mirror://kde/stable/frameworks/"
-                           (version-major+minor version) "/"
-                           name "-" version ".tar.xz"))
-       (sha256
-        (base32
-         "0gmc52k5jb553jvzxwsq79v5y87kgav8i5qqv4bqc9yl7p866zhn"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "0rjw2g3lfdxiy56x61d0sdcmcs8rml6h29a05fp6xww2bqcvr9wq"))))
     (build-system cmake-build-system)
     (propagated-inputs
      `(("kservice" ,kservice)))
@@ -1968,7 +1968,8 @@ with su and ssh respectively.")
            (lambda _
              (setenv "HOME" (getcwd))
              (setenv "CTEST_OUTPUT_ON_FAILURE" "1") ; Enable debug output
-             (setenv "QT_QPA_PLATFORM" "offscreen"))))))
+             (setenv "QT_QPA_PLATFORM" "offscreen")
+             #t)))))
     (home-page "https://community.kde.org/Frameworks")
     (synopsis "Convert text emoticons to graphical emoticons")
     (description "KEmoticons converts emoticons from text to a graphical
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 53/68] gnu: kglobalaccel: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (50 preceding siblings ...)
  2016-10-29 18:05 ` [PATCH 52/68] gnu: kemoticons: " David Craven
@ 2016-10-29 18:05 ` David Craven
  2016-10-29 18:05 ` [PATCH 54/68] gnu: kiconthemes: " David Craven
                   ` (15 subsequent siblings)
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:05 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (kglobalaccel): Update to 5.27.0.
  [inputs]: Add kservice.
---
 gnu/packages/kde-frameworks.scm | 21 +++++++++++----------
 1 file changed, 11 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 9591301..88509a5 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -1981,16 +1981,16 @@ emoticons coming from different providers.")
 (define-public kglobalaccel
   (package
     (name "kglobalaccel")
-    (version "5.24.0")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (string-append "mirror://kde/stable/frameworks/"
-                           (version-major+minor version) "/"
-                           name "-" version ".tar.xz"))
-       (sha256
-        (base32
-         "123v0ld1q88hbm3d0mqgq6lcivfkqh7pbz4hb4n76ab5v43qc15c"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "1z2knfxcla1f191cifij1fzw88b076yx6qjxraqfsmkc6g6i2bmj"))))
     (build-system cmake-build-system)
     (native-inputs
      `(("extra-cmake-modules" ,extra-cmake-modules)
@@ -2000,6 +2000,7 @@ emoticons coming from different providers.")
        ("kcrash" ,kcrash)
        ("kcoreaddons" ,kcoreaddons)
        ("kdbusaddons" ,kdbusaddons)
+       ("kservice" ,kservice)
        ("kwindowsystem" ,kwindowsystem)
        ("libxcb" ,libxcb)
        ("qtbase" ,qtbase)
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 54/68] gnu: kiconthemes: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (51 preceding siblings ...)
  2016-10-29 18:05 ` [PATCH 53/68] gnu: kglobalaccel: " David Craven
@ 2016-10-29 18:05 ` David Craven
  2016-10-29 18:05 ` [PATCH 55/68] gnu: kinit: " David Craven
                   ` (14 subsequent siblings)
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:05 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (kiconthemes): Update to 5.27.0.
  [arguments]: Return #t.
---
 gnu/packages/kde-frameworks.scm | 23 ++++++++++++-----------
 1 file changed, 12 insertions(+), 11 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 88509a5..793c39c 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -2023,16 +2023,16 @@ window does not need focus for them to be activated.")
 (define-public kiconthemes
   (package
     (name "kiconthemes")
-    (version "5.24.0")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (string-append "mirror://kde/stable/frameworks/"
-                           (version-major+minor version) "/"
-                           name "-" version ".tar.xz"))
-       (sha256
-        (base32
-         "1k5zig2n6wzfyv6pc8dpas2862mxjyxxza00m31myrfw5i1a1h6m"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "0m70vcrxp0vvqw5grlsn19d2hgdhky8iv2pr0xwzw8v5yrnl1hh2"))))
     (build-system cmake-build-system)
     (native-inputs
      `(("extra-cmake-modules" ,extra-cmake-modules)
@@ -2060,7 +2060,8 @@ window does not need focus for them to be activated.")
                                     "/share"))
              (setenv "HOME" (getcwd))
              (setenv "CTEST_OUTPUT_ON_FAILURE" "1") ; Enable debug output
-             (setenv "QT_QPA_PLATFORM" "offscreen"))))))
+             (setenv "QT_QPA_PLATFORM" "offscreen")
+             #t)))))
     (home-page "https://community.kde.org/Frameworks")
     (synopsis "Icon GUI utilities")
     (description "This library contains classes to improve the handling of icons
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 55/68] gnu: kinit: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (52 preceding siblings ...)
  2016-10-29 18:05 ` [PATCH 54/68] gnu: kiconthemes: " David Craven
@ 2016-10-29 18:05 ` David Craven
  2016-10-29 18:05 ` [PATCH 56/68] gnu: kio: " David Craven
                   ` (13 subsequent siblings)
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:05 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (kinit): Update to 5.27.0.
---
 gnu/packages/kde-frameworks.scm | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 793c39c..fa03fd3 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -2071,16 +2071,16 @@ in applications using the KDE Frameworks.")
 (define-public kinit
   (package
     (name "kinit")
-    (version "5.24.0")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (string-append "mirror://kde/stable/frameworks/"
-                           (version-major+minor version) "/"
-                           name "-" version ".tar.xz"))
-       (sha256
-        (base32
-         "1i7l6gid5hrrfglw1c461gpjg51dwz7cl4lx7ll8vz2ha8mz4d3n"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "0sbpl1sp1ajarjmnvx2l3dr09afsay28kp2sf4yacrm4lrmhwzip"))))
     (build-system cmake-build-system)
     (native-inputs
      `(("extra-cmake-modules" ,extra-cmake-modules)))
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 56/68] gnu: kio: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (53 preceding siblings ...)
  2016-10-29 18:05 ` [PATCH 55/68] gnu: kinit: " David Craven
@ 2016-10-29 18:05 ` David Craven
  2016-10-29 18:05 ` [PATCH 57/68] gnu: knewstuff: " David Craven
                   ` (12 subsequent siblings)
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:05 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (kio): Update to 5.27.0.
  [arguments]: Return #t.
---
 gnu/packages/kde-frameworks.scm | 23 ++++++++++++-----------
 1 file changed, 12 insertions(+), 11 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index fa03fd3..0d1ed2d 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -2115,16 +2115,16 @@ makes starting KDE applications faster and reduces memory consumption.")
 (define-public kio
   (package
     (name "kio")
-    (version "5.24.0")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (string-append "mirror://kde/stable/frameworks/"
-                           (version-major+minor version) "/"
-                           name "-" version ".tar.xz"))
-       (sha256
-        (base32
-         "0zncj9yf8zaylazlwvirylpk9vki3j889b1x2s0aav54vvj7vdi5"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "129sglaw1480v3i1xdyv6k1w3spbj8s00rkdr5mzlcdaqiig69rn"))))
     (build-system cmake-build-system)
     (propagated-inputs
      `(("kbookmarks" ,kbookmarks)
@@ -2168,7 +2168,8 @@ makes starting KDE applications faster and reduces memory consumption.")
              (setenv "HOME" (getcwd))
              (setenv "XDG_RUNTIME_DIR" (getcwd))
              (setenv "CTEST_OUTPUT_ON_FAILURE" "1")
-             (setenv "QT_QPA_PLATFORM" "offscreen"))))))
+             (setenv "QT_QPA_PLATFORM" "offscreen")
+             #t)))))
     ;;(replace 'check
     ;;  (lambda _
     ;;    (setenv "DBUS_FATAL_WARNINGS" "0")
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 57/68] gnu: knewstuff: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (54 preceding siblings ...)
  2016-10-29 18:05 ` [PATCH 56/68] gnu: kio: " David Craven
@ 2016-10-29 18:05 ` David Craven
  2016-10-29 18:05 ` [PATCH 58/68] gnu: knotifyconfig: " David Craven
                   ` (11 subsequent siblings)
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:05 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (knewstuff): Update to 5.27.0.
  [arguments]: Return #t.
---
 gnu/packages/kde-frameworks.scm | 23 ++++++++++++-----------
 1 file changed, 12 insertions(+), 11 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 0d1ed2d..bf185af 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -2188,16 +2188,16 @@ KIO enabled infrastructure.")
 (define-public knewstuff
   (package
     (name "knewstuff")
-    (version "5.24.0")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (string-append "mirror://kde/stable/frameworks/"
-                           (version-major+minor version) "/"
-                           name "-" version ".tar.xz"))
-       (sha256
-        (base32
-         "0xdv3wh3100vzsx8p2zihy1dvh0wzfmrjkjq71v8igwz5d291zsj"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "05ikb7cvyx3cmrrjh2ss6439a49vmzbi3chjj23ffdz2nd2k7r2f"))))
     (build-system cmake-build-system)
     (propagated-inputs
      `(("attica" ,attica)
@@ -2232,7 +2232,8 @@ KIO enabled infrastructure.")
            (lambda _ ; XDG_DATA_DIRS isn't set
              (setenv "HOME" (getcwd))
              (setenv "CTEST_OUTPUT_ON_FAILURE" "1")
-             (setenv "QT_QPA_PLATFORM" "offscreen"))))))
+             (setenv "QT_QPA_PLATFORM" "offscreen")
+             #t)))))
     (home-page "https://community.kde.org/Frameworks")
     (synopsis "Framework for downloading and sharing additional application data")
     (description "The KNewStuff library implements collaborative data sharing
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 58/68] gnu: knotifyconfig: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (55 preceding siblings ...)
  2016-10-29 18:05 ` [PATCH 57/68] gnu: knewstuff: " David Craven
@ 2016-10-29 18:05 ` David Craven
  2016-10-29 18:05 ` [PATCH 59/68] gnu: kparts: " David Craven
                   ` (10 subsequent siblings)
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:05 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (knotifyconfig): Update to 5.27.0.
---
 gnu/packages/kde-frameworks.scm | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index bf185af..77bbdda 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -2244,16 +2244,16 @@ specification.")
 (define-public knotifyconfig
   (package
     (name "knotifyconfig")
-    (version "5.24.0")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (string-append "mirror://kde/stable/frameworks/"
-                           (version-major+minor version) "/"
-                           name "-" version ".tar.xz"))
-       (sha256
-        (base32
-         "1dij841fnqia4p44x2wnpdvl8cn3nkj833y0fah50fmipjc8r70b"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "088p19ynjs79zf7mq3gkds93dg72jj8pfya53xyhzdg8s6vyns9n"))))
     (build-system cmake-build-system)
     (native-inputs
      `(("extra-cmake-modules" ,extra-cmake-modules)))
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 59/68] gnu: kparts: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (56 preceding siblings ...)
  2016-10-29 18:05 ` [PATCH 58/68] gnu: knotifyconfig: " David Craven
@ 2016-10-29 18:05 ` David Craven
  2016-10-29 18:05 ` [PATCH 60/68] gnu: kpeople: " David Craven
                   ` (9 subsequent siblings)
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:05 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (kparts): Update to 5.27.0.
---
 gnu/packages/kde-frameworks.scm | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 77bbdda..916ef7e 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -2286,16 +2286,16 @@ notifications which can be embedded in your application.")
 (define-public kparts
   (package
     (name "kparts")
-    (version "5.24.0")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (string-append "mirror://kde/stable/frameworks/"
-                           (version-major+minor version) "/"
-                           name "-" version ".tar.xz"))
-       (sha256
-        (base32
-         "0z7qr93aq02i7g7cxgypx2rzlnsvbsx9cjblb0ijmad1nb8w3mix"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "0rfsyr96s59ljp3jgmcwlvwzbgmlx7fvr62xswwmsnb8ah14k5rh"))))
     (build-system cmake-build-system)
     (propagated-inputs
      `(("kio" ,kio)
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 60/68] gnu: kpeople: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (57 preceding siblings ...)
  2016-10-29 18:05 ` [PATCH 59/68] gnu: kparts: " David Craven
@ 2016-10-29 18:05 ` David Craven
  2016-10-29 18:05 ` [PATCH 61/68] gnu: krunner: " David Craven
                   ` (8 subsequent siblings)
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:05 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (kpeople): Update to 5.27.0.
  [arguments]: Return #t.
---
 gnu/packages/kde-frameworks.scm | 23 ++++++++++++-----------
 1 file changed, 12 insertions(+), 11 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 916ef7e..ad4de4a 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -2336,16 +2336,16 @@ widgets with a user-interface defined in terms of actions.")
 (define-public kpeople
   (package
     (name "kpeople")
-    (version "5.24.0")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (string-append "mirror://kde/stable/frameworks/"
-                           (version-major+minor version) "/"
-                           name "-" version ".tar.xz"))
-       (sha256
-        (base32
-         "0iknzkj23y927xh24kw5sjxyirhy6pkmfcmmgwzd78rba8a54qp2"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "1w6sbd6djcpv36m9my4drqkrs1l3cryshpz1dx9z8p7afr296n8j"))))
     (build-system cmake-build-system)
     (native-inputs
      `(("extra-cmake-modules" ,extra-cmake-modules)))
@@ -2365,7 +2365,8 @@ widgets with a user-interface defined in terms of actions.")
          (add-before 'check 'check-setup
            (lambda _
              (setenv "CTEST_OUTPUT_ON_FAILURE" "1") ; Enable debug output
-             (setenv "QT_QPA_PLATFORM" "offscreen"))))))
+             (setenv "QT_QPA_PLATFORM" "offscreen")
+             #t)))))
     (home-page "https://community.kde.org/Frameworks")
     (synopsis "Provides access to all contacts and aggregates them by person")
     (description "KPeople offers unified access to our contacts from different
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 61/68] gnu: krunner: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (58 preceding siblings ...)
  2016-10-29 18:05 ` [PATCH 60/68] gnu: kpeople: " David Craven
@ 2016-10-29 18:05 ` David Craven
  2016-10-29 18:05 ` [PATCH 62/68] gnu: kservice: " David Craven
                   ` (7 subsequent siblings)
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:05 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (krunner): Update to 5.27.0.
  [arguments]: Return #t.
---
 gnu/packages/kde-frameworks.scm | 23 ++++++++++++-----------
 1 file changed, 12 insertions(+), 11 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index ad4de4a..1327d50 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -2379,16 +2379,16 @@ to easily extend the contacts collection.")
 (define-public krunner
   (package
     (name "krunner")
-    (version "5.24.0")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (string-append "mirror://kde/stable/frameworks/"
-                           (version-major+minor version) "/"
-                           name "-" version ".tar.xz"))
-       (sha256
-        (base32
-         "0ff87ijjd47jxf6zw2ggqgngnbyx1rj59wdfgy5wbi3acws6bafl"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "1yyxyippmn0d9ycj1hdjvhl1zd31yxwg89a9zwmj8v8gdfr9flj9"))))
     (build-system cmake-build-system)
     (propagated-inputs
      `(("plasma-framework" ,plasma-framework)))
@@ -2421,7 +2421,8 @@ to easily extend the contacts collection.")
          (add-before 'check 'check-setup
            (lambda _
              (setenv "CTEST_OUTPUT_ON_FAILURE" "1") ; Enable debug output
-             (setenv "QT_QPA_PLATFORM" "offscreen"))))))
+             (setenv "QT_QPA_PLATFORM" "offscreen")
+             #t)))))
     (home-page "https://community.kde.org/Frameworks")
     (synopsis "Framework for Plasma runners")
     (description "The Plasma workspace provides an application called KRunner
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 62/68] gnu: kservice: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (59 preceding siblings ...)
  2016-10-29 18:05 ` [PATCH 61/68] gnu: krunner: " David Craven
@ 2016-10-29 18:05 ` David Craven
  2016-10-29 18:05 ` [PATCH 63/68] gnu: ktexteditor: " David Craven
                   ` (6 subsequent siblings)
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:05 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (kservice): Update to 5.27.0.
  [native-inputs]: Add bison and flex-2.6.1.
---
 gnu/packages/kde-frameworks.scm | 24 +++++++++++++-----------
 1 file changed, 13 insertions(+), 11 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 1327d50..ea30461 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -2434,22 +2434,24 @@ typed.")
 (define-public kservice
   (package
     (name "kservice")
-    (version "5.24.0")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (string-append "mirror://kde/stable/frameworks/"
-                           (version-major+minor version) "/"
-                           name "-" version ".tar.xz"))
-       (sha256
-        (base32
-         "0w0nsg64d6xhgijr2vh0j5p544qi0q55jpqa9v9mv956zrrdssdk"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "129bjdr272qkz2inmagy8jnxasifrl4d82x8rp9akfar29qsj6x6"))))
     (build-system cmake-build-system)
     (propagated-inputs
      `(("kconfig" ,kconfig)
        ("kcoreaddons" ,kcoreaddons)))
     (native-inputs
-     `(("extra-cmake-modules" ,extra-cmake-modules)))
+     `(("bison" ,bison)
+       ("extra-cmake-modules" ,extra-cmake-modules)
+       ("flex" ,flex-2.6.1)))
     (inputs
      `(("kcrash" ,kcrash)
        ("kdbusaddons" ,kdbusaddons)
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 63/68] gnu: ktexteditor: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (60 preceding siblings ...)
  2016-10-29 18:05 ` [PATCH 62/68] gnu: kservice: " David Craven
@ 2016-10-29 18:05 ` David Craven
  2016-10-29 18:05 ` [PATCH 64/68] gnu: ktextwidgets: " David Craven
                   ` (5 subsequent siblings)
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:05 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (ktexteditor): Update to 5.27.0.
---
 gnu/packages/kde-frameworks.scm | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index ea30461..ad847b0 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -2479,16 +2479,16 @@ types or handled by application specific code.")
 (define-public ktexteditor
   (package
     (name "ktexteditor")
-    (version "5.24.0")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (string-append "mirror://kde/stable/frameworks/"
-                           (version-major+minor version) "/"
-                           name "-" version ".tar.xz"))
-       (sha256
-        (base32
-         "1ykj1kvm7k1vxb1w235d5hp2swwdqjyp2y4c3pxbvkn999h9x5q5"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "127wp4dg72skd6abn2vqffxg91bn59z8yxwy6lxyzvck2pc5v1ss"))))
     (build-system cmake-build-system)
     (propagated-inputs
      `(("kparts" ,kparts)))
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 64/68] gnu: ktextwidgets: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (61 preceding siblings ...)
  2016-10-29 18:05 ` [PATCH 63/68] gnu: ktexteditor: " David Craven
@ 2016-10-29 18:05 ` David Craven
  2016-10-29 18:05 ` [PATCH 65/68] gnu: kwallet: " David Craven
                   ` (4 subsequent siblings)
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:05 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (ktextwidgets): Update to 5.27.0.
---
 gnu/packages/kde-frameworks.scm | 19 +++++++++----------
 1 file changed, 9 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index ad847b0..7ea7fbb 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -2546,16 +2546,15 @@ library.")
 (define-public ktextwidgets
   (package
     (name "ktextwidgets")
-    (version "5.24.0")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (string-append "mirror://kde/stable/frameworks/"
-                           (version-major+minor version) "/"
-                           name "-" version ".tar.xz"))
-       (sha256
-        (base32
-         "1q10xav2gkii6s3m31c9xvxf1988l7k2lpib6pyhgsidflmwjm02"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "mirror://kde/stable/frameworks/"
+                                  (version-major+minor version) "/"
+                                  name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "0aq2qx64wylxj5q5sr0dxv9h8bmn725llxyi7iwz31dg2ngfr7m4"))))
     (build-system cmake-build-system)
     (propagated-inputs
      `(("ki18n" ,ki18n)
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 65/68] gnu: kwallet: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (62 preceding siblings ...)
  2016-10-29 18:05 ` [PATCH 64/68] gnu: ktextwidgets: " David Craven
@ 2016-10-29 18:05 ` David Craven
  2016-10-29 18:05 ` [PATCH 66/68] gnu: kxmlgui: " David Craven
                   ` (3 subsequent siblings)
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:05 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (kwallet): Update to 5.27.0.
---
 gnu/packages/kde-frameworks.scm | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 7ea7fbb..96a322b 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -2590,16 +2590,16 @@ It supports rich text as well as plain text.")
 (define-public kwallet
   (package
     (name "kwallet")
-    (version "5.24.0")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (string-append "mirror://kde/stable/frameworks/"
-                           (version-major+minor version) "/"
-                           name "-" version ".tar.xz"))
-       (sha256
-        (base32
-         "0zad5h4vsvcl2xv3vxsjwh42b71xbp6x6rj8cvmw8szr2rzz9gsx"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "1mlrkzvbqk6r43yqrvv6jsc66brzjd321fp7mg7g3ny47va7hbc2"))))
     (build-system cmake-build-system)
     (native-inputs
      `(("extra-cmake-modules" ,extra-cmake-modules)))
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 66/68] gnu: kxmlgui: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (63 preceding siblings ...)
  2016-10-29 18:05 ` [PATCH 65/68] gnu: kwallet: " David Craven
@ 2016-10-29 18:05 ` David Craven
  2016-10-29 18:05 ` [PATCH 67/68] gnu: kxmlrpcclient: " David Craven
                   ` (2 subsequent siblings)
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:05 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (kxmlgui): Update to 5.27.0.
---
 gnu/packages/kde-frameworks.scm | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 96a322b..68ee92b 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -2631,16 +2631,16 @@ the passwords on KDE work spaces.")
 (define-public kxmlgui
   (package
     (name "kxmlgui")
-    (version "5.24.0")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (string-append "mirror://kde/stable/frameworks/"
-                           (version-major+minor version) "/"
-                           name "-" version ".tar.xz"))
-       (sha256
-        (base32
-         "1qhixldhhcbklmrpjh67440h1rrzqy70h57hw6ialjdsr3pl6ihp"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "0hf55ip2irbsbg59r36njgb0h5ygpaspa4x6jfyi4bxj852c3hw1"))))
     (build-system cmake-build-system)
     (propagated-inputs
      `(("kconfig" ,kconfig)
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 67/68] gnu: kxmlrpcclient: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (64 preceding siblings ...)
  2016-10-29 18:05 ` [PATCH 66/68] gnu: kxmlgui: " David Craven
@ 2016-10-29 18:05 ` David Craven
  2016-10-29 18:05 ` [PATCH 68/68] gnu: plasma-framework: " David Craven
  2016-10-29 18:46 ` [PATCH 01/68] gnu: Add flex-2.6.1 Marius Bakke
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:05 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (kxmlrpcclient): Update to 5.27.0.
---
 gnu/packages/kde-frameworks.scm | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 68ee92b..3abf835 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -2683,16 +2683,16 @@ descriptions for integrating actions from plugins.")
 (define-public kxmlrpcclient
   (package
     (name "kxmlrpcclient")
-    (version "5.24.0")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (string-append "mirror://kde/stable/frameworks/"
-                           (version-major+minor version) "/"
-                           name "-" version ".tar.xz"))
-       (sha256
-        (base32
-         "06ap6ipzqimz1rfrcr7z8zc7idy7sg4a97dws7h52i34ms7jqnc8"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "17bavm8qj4r1kc67x5g20v1pl8arjqpn69hg7icp2b1b0vnfvav1"))))
     (build-system cmake-build-system)
     (propagated-inputs
      `(("kio" ,kio)))
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* [PATCH 68/68] gnu: plasma-framework: Update to 5.27.0.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (65 preceding siblings ...)
  2016-10-29 18:05 ` [PATCH 67/68] gnu: kxmlrpcclient: " David Craven
@ 2016-10-29 18:05 ` David Craven
  2016-10-29 18:46 ` [PATCH 01/68] gnu: Add flex-2.6.1 Marius Bakke
  67 siblings, 0 replies; 76+ messages in thread
From: David Craven @ 2016-10-29 18:05 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/kde-frameworks.scm (plasma-framework): Update to 5.27.0.
---
 gnu/packages/kde-frameworks.scm | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 3abf835..361e7a3 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -2726,16 +2726,16 @@ setUrl, setUserAgent and call.")
 (define-public plasma-framework
   (package
     (name "plasma-framework")
-    (version "5.24.0")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (string-append "mirror://kde/stable/frameworks/"
-                           (version-major+minor version) "/"
-                           name "-" version ".tar.xz"))
-       (sha256
-        (base32
-         "0981vm00541dzihlr1fsax05biwp2ddpwjrmvnfysx5jagdc65cb"))))
+    (version "5.27.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/frameworks/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "11apg7h636dshswikjpz0qkapv8izqjjz47k7vs49x0byp802s5i"))))
     (build-system cmake-build-system)
     (propagated-inputs
      `(("kpackage" ,kpackage)
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 76+ messages in thread

* Re: [PATCH 01/68] gnu: Add flex-2.6.1.
  2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
                   ` (66 preceding siblings ...)
  2016-10-29 18:05 ` [PATCH 68/68] gnu: plasma-framework: " David Craven
@ 2016-10-29 18:46 ` Marius Bakke
  2016-10-29 20:27   ` Leo Famulari
                     ` (2 more replies)
  67 siblings, 3 replies; 76+ messages in thread
From: Marius Bakke @ 2016-10-29 18:46 UTC (permalink / raw)
  To: David Craven, guix-devel

[-- Attachment #1: Type: text/plain, Size: 302 bytes --]

David Craven <david@craven.ch> writes:

> * gnu/packages/flex.scm (flex-2.6.1): New variable.

This is newer than what we currently have (2.6.0). I know it's late in
the core-updates cycle, but maybe we can squeeze in a flex upgrade?

I haven't tried building the series, but the patches LGTM overall.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 454 bytes --]

^ permalink raw reply	[flat|nested] 76+ messages in thread

* Re: [PATCH 01/68] gnu: Add flex-2.6.1.
  2016-10-29 18:46 ` [PATCH 01/68] gnu: Add flex-2.6.1 Marius Bakke
@ 2016-10-29 20:27   ` Leo Famulari
  2016-10-29 20:40   ` Leo Famulari
  2016-10-29 20:45   ` Leo Famulari
  2 siblings, 0 replies; 76+ messages in thread
From: Leo Famulari @ 2016-10-29 20:27 UTC (permalink / raw)
  To: Marius Bakke; +Cc: guix-devel

[-- Attachment #1: Type: text/plain, Size: 433 bytes --]

On Sat, Oct 29, 2016 at 07:46:53PM +0100, Marius Bakke wrote:
> David Craven <david@craven.ch> writes:
> 
> > * gnu/packages/flex.scm (flex-2.6.1): New variable.
> 
> This is newer than what we currently have (2.6.0). I know it's late in
> the core-updates cycle, but maybe we can squeeze in a flex upgrade?

It's also not the latest upstream release, which is 2.6.2. Why use this
particular version instead of the latest?

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 801 bytes --]

^ permalink raw reply	[flat|nested] 76+ messages in thread

* Re: [PATCH 28/68] gnu: solid: Update to 5.27.0.
  2016-10-29 18:04 ` [PATCH 28/68] gnu: solid: " David Craven
@ 2016-10-29 20:28   ` Leo Famulari
  0 siblings, 0 replies; 76+ messages in thread
From: Leo Famulari @ 2016-10-29 20:28 UTC (permalink / raw)
  To: David Craven; +Cc: guix-devel

On Sat, Oct 29, 2016 at 08:04:39PM +0200, David Craven wrote:
> * gnu/packages/kde-frameworks.scm (solid): Update to 5.27.0.
>   [native-inputs]: Add flex-2.6.1.

>      (native-inputs
>       `(("bison" ,bison)
>         ("extra-cmake-modules" ,extra-cmake-modules)
> +       ("flex" ,flex-2.6.1)

Please add a comment explaining why we need a particular version of
flex.

^ permalink raw reply	[flat|nested] 76+ messages in thread

* Re: [PATCH 07/68] gnu: bluez-qt: Update to 5.27.0.
  2016-10-29 18:04 ` [PATCH 07/68] gnu: bluez-qt: " David Craven
@ 2016-10-29 20:33   ` Leo Famulari
  2016-10-29 20:42   ` Leo Famulari
  1 sibling, 0 replies; 76+ messages in thread
From: Leo Famulari @ 2016-10-29 20:33 UTC (permalink / raw)
  To: David Craven; +Cc: guix-devel

On Sat, Oct 29, 2016 at 08:04:18PM +0200, David Craven wrote:
> * gnu/packages/kde-frameworks.scm (bluez-qt): Update to 5.27.0 and
>   fix indentation.

In general, when making many changes that have no effect (for example,
several dozen indentation fixes), I think they should be done
separately.

A purely cosmetic commit can be easily audited by rebuilding the package
after the commit. If only indentation was changed, no rebuild will be
required.

By combining the "real" and cosmetic changes, the burden on reviewers is
increased significantly. Now, we have to manually compare the
re-indented code to verify that nothing changed.

Something to keep in mind in the future...

^ permalink raw reply	[flat|nested] 76+ messages in thread

* Re: [PATCH 01/68] gnu: Add flex-2.6.1.
  2016-10-29 18:46 ` [PATCH 01/68] gnu: Add flex-2.6.1 Marius Bakke
  2016-10-29 20:27   ` Leo Famulari
@ 2016-10-29 20:40   ` Leo Famulari
  2016-10-29 20:45   ` Leo Famulari
  2 siblings, 0 replies; 76+ messages in thread
From: Leo Famulari @ 2016-10-29 20:40 UTC (permalink / raw)
  To: Marius Bakke; +Cc: guix-devel

[-- Attachment #1: Type: text/plain, Size: 771 bytes --]

On Sat, Oct 29, 2016 at 07:46:53PM +0100, Marius Bakke wrote:
> David Craven <david@craven.ch> writes:
> 
> > * gnu/packages/flex.scm (flex-2.6.1): New variable.
> 
> This is newer than what we currently have (2.6.0). I know it's late in
> the core-updates cycle, but maybe we can squeeze in a flex upgrade?

Unfortunately, changing flex will cause ~1500 rebuilds per architecture,
so I think we won't do it unless there is some very serious problem.

Also see commit eba7fab890f43 on core-updates, which fixes a bug
(CVE-2016-6354) that allow DOS and potentially arbitrary code execution
in code generated by flex.

Updating flex to the latest version should happen in the next
core-updates, or possibly in an earlier staging / security-updates
cycle.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 801 bytes --]

^ permalink raw reply	[flat|nested] 76+ messages in thread

* Re: [PATCH 07/68] gnu: bluez-qt: Update to 5.27.0.
  2016-10-29 18:04 ` [PATCH 07/68] gnu: bluez-qt: " David Craven
  2016-10-29 20:33   ` Leo Famulari
@ 2016-10-29 20:42   ` Leo Famulari
  1 sibling, 0 replies; 76+ messages in thread
From: Leo Famulari @ 2016-10-29 20:42 UTC (permalink / raw)
  To: David Craven; +Cc: guix-devel

On Sat, Oct 29, 2016 at 08:04:18PM +0200, David Craven wrote:
> * gnu/packages/kde-frameworks.scm (bluez-qt): Update to 5.27.0 and
>   fix indentation.
> ---
>  gnu/packages/kde-frameworks.scm | 32 ++++++++++++++++----------------
>  1 file changed, 16 insertions(+), 16 deletions(-)
> 
> diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
> index 653e8fb..ba22f89 100644
> --- a/gnu/packages/kde-frameworks.scm
> +++ b/gnu/packages/kde-frameworks.scm
> @@ -216,16 +216,16 @@ http://freedesktop.org/wiki/Specifications/open-collaboration-services/")
>  (define-public bluez-qt
>    (package
>      (name "bluez-qt")
> -    (version "5.24.0")
> -    (source
> -      (origin
> -        (method url-fetch)
> -        (uri (string-append "mirror://kde/stable/frameworks/"
> -                            (version-major+minor version) "/"
> -                            name "-" version ".tar.xz"))

Could this mirror URL be factored into something like
"kde-frameworks-uri" (in a later set of patches)?

^ permalink raw reply	[flat|nested] 76+ messages in thread

* Re: [PATCH 01/68] gnu: Add flex-2.6.1.
  2016-10-29 18:46 ` [PATCH 01/68] gnu: Add flex-2.6.1 Marius Bakke
  2016-10-29 20:27   ` Leo Famulari
  2016-10-29 20:40   ` Leo Famulari
@ 2016-10-29 20:45   ` Leo Famulari
  2 siblings, 0 replies; 76+ messages in thread
From: Leo Famulari @ 2016-10-29 20:45 UTC (permalink / raw)
  To: Marius Bakke; +Cc: guix-devel

[-- Attachment #1: Type: text/plain, Size: 490 bytes --]

On Sat, Oct 29, 2016 at 07:46:53PM +0100, Marius Bakke wrote:
> David Craven <david@craven.ch> writes:
> 
> > * gnu/packages/flex.scm (flex-2.6.1): New variable.
> 
> This is newer than what we currently have (2.6.0). I know it's late in
> the core-updates cycle, but maybe we can squeeze in a flex upgrade?

I saw this explanatory message on #guix:

https://gnunet.org/bot/log/guix/2016-10-29#T1187445

Please add some detail in a code comment so we know why it's required :)

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 801 bytes --]

^ permalink raw reply	[flat|nested] 76+ messages in thread

* Re: [PATCH 02/68] gnu: extra-cmake-modules: Update to 5.27.0.
  2016-10-29 18:04 ` [PATCH 02/68] gnu: extra-cmake-modules: Update to 5.27.0 David Craven
@ 2016-10-29 21:27   ` Ricardo Wurmus
  0 siblings, 0 replies; 76+ messages in thread
From: Ricardo Wurmus @ 2016-10-29 21:27 UTC (permalink / raw)
  To: David Craven; +Cc: guix-devel


David Craven <david@craven.ch> writes:

> * gnu/packages/kde-frameworks.scm (extra-cmake-modules): Update to
>   5.27.0.
> ---
>  gnu/packages/kde-frameworks.scm | 20 ++++++++++----------
>  1 file changed, 10 insertions(+), 10 deletions(-)
>
> diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
> index 011f9e0..04cb6e8 100644
> --- a/gnu/packages/kde-frameworks.scm
> +++ b/gnu/packages/kde-frameworks.scm
> @@ -54,16 +54,16 @@
>  (define-public extra-cmake-modules
>    (package
>      (name "extra-cmake-modules")
> -    (version "5.24.0")
> -    (source
> -      (origin
> -        (method url-fetch)
> -        (uri (string-append "mirror://kde/stable/frameworks/"
> -                            (version-major+minor version) "/"
> -                            name "-" version ".tar.xz"))
> -        (sha256
> -         (base32
> -          "01m12ml529pwr2sal951r5z6yb1rwbpid1y4k14nlk3xqgmdakwa"))))
> +    (version "5.27.0")
> +    (source (origin
> +              (method url-fetch)
> +              (uri (string-append
> +                    "mirror://kde/stable/frameworks/"
> +                    (version-major+minor version) "/"
> +                    name "-" version ".tar.xz"))
> +              (sha256
> +               (base32
> +                "0n7vw2a4kxdgpsc1wn9f1d0y01p6qfk8ac360rq329bvdpigxmnj"))))
>      (build-system cmake-build-system)
>      (native-inputs
>       `(("qtbase" ,qtbase))) ; For tests (needs qmake)

I liked the previous indentation better, but feel free to ignore me :)
Looks good to me!

~~ Ricardo

^ permalink raw reply	[flat|nested] 76+ messages in thread

end of thread, other threads:[~2016-10-29 21:28 UTC | newest]

Thread overview: 76+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-10-29 18:04 [PATCH 01/68] gnu: Add flex-2.6.1 David Craven
2016-10-29 18:04 ` [PATCH 02/68] gnu: extra-cmake-modules: Update to 5.27.0 David Craven
2016-10-29 21:27   ` Ricardo Wurmus
2016-10-29 18:04 ` [PATCH 03/68] gnu: gpgmepp: Update to 16.08.2 David Craven
2016-10-29 18:04 ` [PATCH 04/68] gnu: kpmcore: Fix indentation David Craven
2016-10-29 18:04 ` [PATCH 05/68] gnu: phonon: " David Craven
2016-10-29 18:04 ` [PATCH 06/68] gnu: attica: Update to 5.27.0 David Craven
2016-10-29 18:04 ` [PATCH 07/68] gnu: bluez-qt: " David Craven
2016-10-29 20:33   ` Leo Famulari
2016-10-29 20:42   ` Leo Famulari
2016-10-29 18:04 ` [PATCH 08/68] gnu: breeze-icons: " David Craven
2016-10-29 18:04 ` [PATCH 09/68] gnu: kapidox: " David Craven
2016-10-29 18:04 ` [PATCH 10/68] gnu: karchive: " David Craven
2016-10-29 18:04 ` [PATCH 11/68] gnu: kcodecs: " David Craven
2016-10-29 18:04 ` [PATCH 12/68] gnu: kconfig: " David Craven
2016-10-29 18:04 ` [PATCH 13/68] gnu: kcoreaddons: " David Craven
2016-10-29 18:04 ` [PATCH 14/68] gnu: kdbusaddons: " David Craven
2016-10-29 18:04 ` [PATCH 15/68] gnu: kdnssd: " David Craven
2016-10-29 18:04 ` [PATCH 16/68] gnu: kguiaddons: " David Craven
2016-10-29 18:04 ` [PATCH 17/68] gnu: ki18n: " David Craven
2016-10-29 18:04 ` [PATCH 18/68] gnu: kidletime: " David Craven
2016-10-29 18:04 ` [PATCH 19/68] gnu: kitemmodels: " David Craven
2016-10-29 18:04 ` [PATCH 20/68] gnu: kitemviews: " David Craven
2016-10-29 18:04 ` [PATCH 21/68] gnu: kplotting: " David Craven
2016-10-29 18:04 ` [PATCH 22/68] gnu: kwayland: " David Craven
2016-10-29 18:04 ` [PATCH 23/68] gnu: kwidgetsaddons: " David Craven
2016-10-29 18:04 ` [PATCH 24/68] gnu: kwindowsystem: " David Craven
2016-10-29 18:04 ` [PATCH 25/68] gnu: modemmanager-qt: " David Craven
2016-10-29 18:04 ` [PATCH 26/68] gnu: networkmanager-qt: " David Craven
2016-10-29 18:04 ` [PATCH 27/68] gnu: oxygen-icons: " David Craven
2016-10-29 18:04 ` [PATCH 28/68] gnu: solid: " David Craven
2016-10-29 20:28   ` Leo Famulari
2016-10-29 18:04 ` [PATCH 29/68] gnu: sonnet: " David Craven
2016-10-29 18:04 ` [PATCH 30/68] gnu: threadweaver: " David Craven
2016-10-29 18:04 ` [PATCH 31/68] gnu: kauth: " David Craven
2016-10-29 18:04 ` [PATCH 32/68] gnu: kcompletion: " David Craven
2016-10-29 18:04 ` [PATCH 33/68] gnu: kcrash: " David Craven
2016-10-29 18:04 ` [PATCH 34/68] gnu: kdoctools: " David Craven
2016-10-29 18:04 ` [PATCH 35/68] gnu: kfilemetadata: " David Craven
2016-10-29 18:04 ` [PATCH 36/68] gnu: kimageformats: " David Craven
2016-10-29 18:04 ` [PATCH 37/68] gnu: kjobwidgets: " David Craven
2016-10-29 18:04 ` [PATCH 38/68] gnu: knotifications: " David Craven
2016-10-29 18:04 ` [PATCH 39/68] gnu: kpackage: " David Craven
2016-10-29 18:04 ` [PATCH 40/68] gnu: kpty: " David Craven
2016-10-29 18:04 ` [PATCH 41/68] gnu: kunitconversion: " David Craven
2016-10-29 18:04 ` [PATCH 42/68] gnu: baloo: " David Craven
2016-10-29 18:04 ` [PATCH 43/68] gnu: kactivities: " David Craven
2016-10-29 18:04 ` [PATCH 44/68] gnu: kactivities-stats: " David Craven
2016-10-29 18:04 ` [PATCH 45/68] gnu: kbookmarks: " David Craven
2016-10-29 18:04 ` [PATCH 46/68] gnu: kcmutils: " David Craven
2016-10-29 18:04 ` [PATCH 47/68] gnu: kconfigwidgets: " David Craven
2016-10-29 18:04 ` [PATCH 48/68] gnu: kdeclarative: " David Craven
2016-10-29 18:05 ` [PATCH 49/68] gnu: kded: " David Craven
2016-10-29 18:05 ` [PATCH 50/68] gnu: kdesignerplugin: " David Craven
2016-10-29 18:05 ` [PATCH 51/68] gnu: kdesu: " David Craven
2016-10-29 18:05 ` [PATCH 52/68] gnu: kemoticons: " David Craven
2016-10-29 18:05 ` [PATCH 53/68] gnu: kglobalaccel: " David Craven
2016-10-29 18:05 ` [PATCH 54/68] gnu: kiconthemes: " David Craven
2016-10-29 18:05 ` [PATCH 55/68] gnu: kinit: " David Craven
2016-10-29 18:05 ` [PATCH 56/68] gnu: kio: " David Craven
2016-10-29 18:05 ` [PATCH 57/68] gnu: knewstuff: " David Craven
2016-10-29 18:05 ` [PATCH 58/68] gnu: knotifyconfig: " David Craven
2016-10-29 18:05 ` [PATCH 59/68] gnu: kparts: " David Craven
2016-10-29 18:05 ` [PATCH 60/68] gnu: kpeople: " David Craven
2016-10-29 18:05 ` [PATCH 61/68] gnu: krunner: " David Craven
2016-10-29 18:05 ` [PATCH 62/68] gnu: kservice: " David Craven
2016-10-29 18:05 ` [PATCH 63/68] gnu: ktexteditor: " David Craven
2016-10-29 18:05 ` [PATCH 64/68] gnu: ktextwidgets: " David Craven
2016-10-29 18:05 ` [PATCH 65/68] gnu: kwallet: " David Craven
2016-10-29 18:05 ` [PATCH 66/68] gnu: kxmlgui: " David Craven
2016-10-29 18:05 ` [PATCH 67/68] gnu: kxmlrpcclient: " David Craven
2016-10-29 18:05 ` [PATCH 68/68] gnu: plasma-framework: " David Craven
2016-10-29 18:46 ` [PATCH 01/68] gnu: Add flex-2.6.1 Marius Bakke
2016-10-29 20:27   ` Leo Famulari
2016-10-29 20:40   ` Leo Famulari
2016-10-29 20:45   ` Leo Famulari

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).