unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* [PATCH 0/7] Misc updates
@ 2015-09-10 13:47 Efraim Flashner
  2015-09-10 13:47 ` [PATCH 1/7] gnu: ncdu: Update to 1.11 Efraim Flashner
                   ` (6 more replies)
  0 siblings, 7 replies; 23+ messages in thread
From: Efraim Flashner @ 2015-09-10 13:47 UTC (permalink / raw)
  To: guix-devel

Found a couple of packages installed on my machine that are updated upstream.

Efraim Flashner (7):
  gnu: ncdu: Update to 1.11.
  gnu: terminology: Update to 0.9.0.
  gnu: efl: Update to 1.15.1.
  gnu: elementary: Update to 1.15.1.
  gnu: evas-generic-loaders: Update to 1.15.0.
  gnu: emotion-generic-players: Update to 1.15.0.
  gnu: enlightenment: Update to 0.19.9.

 gnu/packages/enlightenment.scm | 92 +++++++++++++++++++++---------------------
 gnu/packages/ncdu.scm          |  6 +--
 2 files changed, 50 insertions(+), 48 deletions(-)

-- 
2.5.1

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

* [PATCH 1/7] gnu: ncdu: Update to 1.11.
  2015-09-10 13:47 [PATCH 0/7] Misc updates Efraim Flashner
@ 2015-09-10 13:47 ` Efraim Flashner
  2015-09-10 16:26   ` Mathieu Lirzin
  2015-09-10 13:47 ` [PATCH 2/7] gnu: terminology: Update to 0.9.0 Efraim Flashner
                   ` (5 subsequent siblings)
  6 siblings, 1 reply; 23+ messages in thread
From: Efraim Flashner @ 2015-09-10 13:47 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/ncdu.scm (ncdu): Update to 1.11.
---
 gnu/packages/ncdu.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/ncdu.scm b/gnu/packages/ncdu.scm
index 6c3d617..0b3fc66 100644
--- a/gnu/packages/ncdu.scm
+++ b/gnu/packages/ncdu.scm
@@ -27,14 +27,14 @@
 (define-public ncdu
   (package
    (name "ncdu")
-   (version "1.10")
+   (version "1.11")
    (source (origin
 	    (method url-fetch)
 	    (uri (string-append "http://dev.yorhel.nl/download/ncdu-"
 				version ".tar.gz"))
 	    (sha256
 	     (base32
-	      "0rqc5wpqcbfqpcwxgh3jxwa0yw2py0hv0acpsf0a9g6v9144m6gm"))))
+	      "0yxv87hpal05p6nii6rlnai5a8958689l9vz020w4qvlwiragbnh"))))
    (inputs
     `(("ncurses" ,ncurses)))
    (build-system gnu-build-system)
@@ -44,5 +44,5 @@ run on a remote server where you don't have an entire graphical setup, but have
 to do with a simple SSH connection. ncdu aims to be fast, simple and easy to
 use, and should be able to run in any minimal POSIX-like environment with
 ncurses installed.")
-   (license (x11-style "http://g.blicky.net/ncdu.git/plain/COPYING?id=v1.10"))
+   (license (x11-style "http://g.blicky.net/ncdu.git/plain/COPYING?id=v1.11"))
    (home-page "http://dev.yorhel.nl/ncdu")))
-- 
2.5.1

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

* [PATCH 2/7] gnu: terminology: Update to 0.9.0.
  2015-09-10 13:47 [PATCH 0/7] Misc updates Efraim Flashner
  2015-09-10 13:47 ` [PATCH 1/7] gnu: ncdu: Update to 1.11 Efraim Flashner
@ 2015-09-10 13:47 ` Efraim Flashner
  2015-09-10 16:57   ` Mathieu Lirzin
  2015-09-10 13:47 ` [PATCH 3/7] gnu: efl: Update to 1.15.1 Efraim Flashner
                   ` (4 subsequent siblings)
  6 siblings, 1 reply; 23+ messages in thread
From: Efraim Flashner @ 2015-09-10 13:47 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/enlightenment.scm (terminology): Update to 0.9.0.
---
 gnu/packages/enlightenment.scm | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/enlightenment.scm b/gnu/packages/enlightenment.scm
index 5e6693b..2470d1e 100644
--- a/gnu/packages/enlightenment.scm
+++ b/gnu/packages/enlightenment.scm
@@ -214,15 +214,15 @@ The only supported now is VLC.")
 (define-public terminology
   (package
     (name "terminology")
-    (version "0.8.0")
+    (version "0.9.0")
     (source (origin
               (method url-fetch)
               (uri
                (string-append
-                "https://download.enlightenment.org/rel/apps/terminology/terminology-"
-                version ".tar.gz"))
+                "https://download.enlightenment.org/rel/apps/terminology/"
+		"terminology-" version ".tar.xz"))
               (sha256
-               (base32 "0a767ixackzmhb2awrhjy7q6vsivsd54wc434i617xiw095x843s"))))
+               (base32 "0iwid9cvd96kwl0hjhbby84kkz5sgb4p8454nnkf7wjvdz2f9b96"))))
     (build-system gnu-build-system)
     (native-inputs
      `(("pkg-config" ,pkg-config)))
-- 
2.5.1

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

* [PATCH 3/7] gnu: efl: Update to 1.15.1.
  2015-09-10 13:47 [PATCH 0/7] Misc updates Efraim Flashner
  2015-09-10 13:47 ` [PATCH 1/7] gnu: ncdu: Update to 1.11 Efraim Flashner
  2015-09-10 13:47 ` [PATCH 2/7] gnu: terminology: Update to 0.9.0 Efraim Flashner
@ 2015-09-10 13:47 ` Efraim Flashner
  2015-09-10 16:58   ` Mathieu Lirzin
  2015-09-10 13:47 ` [PATCH 4/7] gnu: elementary: " Efraim Flashner
                   ` (3 subsequent siblings)
  6 siblings, 1 reply; 23+ messages in thread
From: Efraim Flashner @ 2015-09-10 13:47 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/enlightenment.scm (efl): Update to 1.15.1.
  Align package to 80 width columns.
---
 gnu/packages/enlightenment.scm | 17 +++++++++--------
 1 file changed, 9 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/enlightenment.scm b/gnu/packages/enlightenment.scm
index 2470d1e..6b1257a 100644
--- a/gnu/packages/enlightenment.scm
+++ b/gnu/packages/enlightenment.scm
@@ -51,14 +51,14 @@
 (define-public efl
   (package
     (name "efl")
-    (version "1.14.2")
+    (version "1.15.1")
     (source (origin
-              (method url-fetch)
-              (uri (string-append
-                    "https://download.enlightenment.org/rel/libs/efl/efl-"
-                    version ".tar.xz"))
-              (sha256
-               (base32 "0kg51v63ljq1z4dj65aiyxaqhq54gkl4hx53ifwbci6ihammandr"))))
+             (method url-fetch)
+             (uri (string-append
+                   "https://download.enlightenment.org/rel/libs/efl/efl-"
+                   version ".tar.xz"))
+             (sha256
+              (base32 "1n2l2n09lys5dph9lrnsv5z3qbgzp7bi0vidal2fvy18hflbbvsn"))))
     (build-system gnu-build-system)
     (native-inputs
      `(("pkg-config" ,pkg-config)))
@@ -127,7 +127,8 @@
 for Enlightenment.  Libraries covers data serialization, wide support for
 graphics rendering, UI layout and themes, interaction with OS, access to
 removable devices or support for multimedia.")
-    (license (list license:bsd-2 license:lgpl2.1 license:zlib)))) ; different parts under different licenses
+    (license (list license:bsd-2 license:lgpl2.1 license:zlib)))) 
+				;;; different parts under different licenses
 
 (define-public elementary
   (package
-- 
2.5.1

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

* [PATCH 4/7] gnu: elementary: Update to 1.15.1.
  2015-09-10 13:47 [PATCH 0/7] Misc updates Efraim Flashner
                   ` (2 preceding siblings ...)
  2015-09-10 13:47 ` [PATCH 3/7] gnu: efl: Update to 1.15.1 Efraim Flashner
@ 2015-09-10 13:47 ` Efraim Flashner
  2015-09-10 17:09   ` Mathieu Lirzin
  2015-09-10 13:47 ` [PATCH 5/7] gnu: evas-generic-loaders: Update to 1.15.0 Efraim Flashner
                   ` (2 subsequent siblings)
  6 siblings, 1 reply; 23+ messages in thread
From: Efraim Flashner @ 2015-09-10 13:47 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/enlightenment.scm (elementary): Update to 1.15.1.
  Align package to 80 width columns.
---
 gnu/packages/enlightenment.scm | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/enlightenment.scm b/gnu/packages/enlightenment.scm
index 6b1257a..11cad86 100644
--- a/gnu/packages/enlightenment.scm
+++ b/gnu/packages/enlightenment.scm
@@ -133,15 +133,15 @@ removable devices or support for multimedia.")
 (define-public elementary
   (package
     (name "elementary")
-    (version "1.14.2")
+    (version "1.15.1")
     (source (origin
-              (method url-fetch)
-              (uri
-               (string-append
-                "https://download.enlightenment.org/rel/libs/elementary/elementary-"
-                version ".tar.xz"))
-              (sha256
-               (base32 "1ck1jm9dfx2l72nklndqjfsxjqb0024b88naskld1dk9b8drs76b"))))
+             (method url-fetch)
+             (uri
+              (string-append
+               "https://download.enlightenment.org/rel/libs/elementary/"
+	       "elementary-" version ".tar.xz"))
+             (sha256
+              (base32 "015b277bvgb4q8cqjl58ir9nqb1d40fpj2jblf4gkxq8a45a88mb"))))
     (build-system gnu-build-system)
     (native-inputs
      `(("pkg-config" ,pkg-config)))
-- 
2.5.1

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

* [PATCH 5/7] gnu: evas-generic-loaders: Update to 1.15.0.
  2015-09-10 13:47 [PATCH 0/7] Misc updates Efraim Flashner
                   ` (3 preceding siblings ...)
  2015-09-10 13:47 ` [PATCH 4/7] gnu: elementary: " Efraim Flashner
@ 2015-09-10 13:47 ` Efraim Flashner
  2015-09-10 17:19   ` Mathieu Lirzin
  2015-09-10 13:47 ` [PATCH 6/7] gnu: emotion-generic-players: " Efraim Flashner
  2015-09-10 13:47 ` [PATCH 7/7] gnu: enlightenment: Update to 0.19.9 Efraim Flashner
  6 siblings, 1 reply; 23+ messages in thread
From: Efraim Flashner @ 2015-09-10 13:47 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/enlightenment.scm (evas-generic-loaders): Update to 1.15.0.
---
 gnu/packages/enlightenment.scm | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/enlightenment.scm b/gnu/packages/enlightenment.scm
index 11cad86..1564885 100644
--- a/gnu/packages/enlightenment.scm
+++ b/gnu/packages/enlightenment.scm
@@ -158,16 +158,16 @@ full capabilities of EFL.")
 (define-public evas-generic-loaders
   (package
     (name "evas-generic-loaders")
-    (version "1.14.0")
+    (version "1.15.0")
     (source (origin
-              (method url-fetch)
-              (uri
-               (string-append
-                "https://download.enlightenment.org/rel/libs/"
-                "evas_generic_loaders/evas_generic_loaders-"
-                version ".tar.xz"))
-              (sha256
-               (base32 "18b6xmbf81bly4mlwlzwr17g2m8dzznbhsdjk6pbb3nw4wn3y88l"))))
+             (method url-fetch)
+             (uri
+              (string-append
+               "https://download.enlightenment.org/rel/libs/"
+               "evas_generic_loaders/evas_generic_loaders-"
+               version ".tar.xz"))
+             (sha256
+              (base32 "0zzx06j20x580xqnnsxp7gb7rv279zcgvdxfbhs905af9m6rwlqy"))))
     (build-system gnu-build-system)
     (native-inputs
      `(("pkg-config" ,pkg-config)))
-- 
2.5.1

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

* [PATCH 6/7] gnu: emotion-generic-players: Update to 1.15.0.
  2015-09-10 13:47 [PATCH 0/7] Misc updates Efraim Flashner
                   ` (4 preceding siblings ...)
  2015-09-10 13:47 ` [PATCH 5/7] gnu: evas-generic-loaders: Update to 1.15.0 Efraim Flashner
@ 2015-09-10 13:47 ` Efraim Flashner
  2015-09-10 17:34   ` Mathieu Lirzin
  2015-09-10 13:47 ` [PATCH 7/7] gnu: enlightenment: Update to 0.19.9 Efraim Flashner
  6 siblings, 1 reply; 23+ messages in thread
From: Efraim Flashner @ 2015-09-10 13:47 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/enlightenment.scm (emotion-generic-players):
  Update to 1.15.0.
---
 gnu/packages/enlightenment.scm | 17 +++++++++--------
 1 file changed, 9 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/enlightenment.scm b/gnu/packages/enlightenment.scm
index 1564885..264cd02 100644
--- a/gnu/packages/enlightenment.scm
+++ b/gnu/packages/enlightenment.scm
@@ -189,15 +189,16 @@ files in Evas (EFL canvas library).")
 (define-public emotion-generic-players
   (package
     (name "emotion-generic-players")
-    (version "1.14.0")
+    (version "1.15.0")
     (source (origin
-              (method url-fetch)
-              (uri
-               (string-append
-                "https://download.enlightenment.org/rel/libs/emotion_generic_players/emotion_generic_players-"
-                version ".tar.xz"))
-              (sha256
-               (base32 "0685jzag98ykknycfdqn70zif3fmcfi6m8k9yp6d79r1h8gc49n4"))))
+             (method url-fetch)
+             (uri
+              (string-append
+               "https://download.enlightenment.org/rel/libs/"
+	       "emotion_generic_players/emotion_generic_players-"
+	       version ".tar.xz"))
+             (sha256
+              (base32 "0pszwmcygxnv1sfx0m79md2jmi4sng8mdb1xcr6h2z5c8685wvcz"))))
     (build-system gnu-build-system)
     (native-inputs
      `(("pkg-config" ,pkg-config)))
-- 
2.5.1

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

* [PATCH 7/7] gnu: enlightenment: Update to 0.19.9.
  2015-09-10 13:47 [PATCH 0/7] Misc updates Efraim Flashner
                   ` (5 preceding siblings ...)
  2015-09-10 13:47 ` [PATCH 6/7] gnu: emotion-generic-players: " Efraim Flashner
@ 2015-09-10 13:47 ` Efraim Flashner
  2015-09-10 17:42   ` Mathieu Lirzin
  6 siblings, 1 reply; 23+ messages in thread
From: Efraim Flashner @ 2015-09-10 13:47 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/enlightenment (enlightenment): Update to 0.19.9.
  Align package to 80 width columns.
---
 gnu/packages/enlightenment.scm | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/enlightenment.scm b/gnu/packages/enlightenment.scm
index 264cd02..0989890 100644
--- a/gnu/packages/enlightenment.scm
+++ b/gnu/packages/enlightenment.scm
@@ -268,15 +268,15 @@ Libraries with some extra bells and whistles.")
 (define-public enlightenment
   (package
     (name "enlightenment")
-    (version "0.19.5")
+    (version "0.19.9")
     (source (origin
-              (method url-fetch)
-              (uri
-               (string-append
-                "https://download.enlightenment.org/rel/apps/enlightenment/enlightenment-"
-                version ".tar.xz"))
-              (sha256
-               (base32 "0j66x7x76fbgqfw6fi77v8qy50slw3jnsq3vvs82rrfvniabm8wc"))))
+             (method url-fetch)
+             (uri
+              (string-append
+               "https://download.enlightenment.org/rel/apps/enlightenment/"
+	       "enlightenment-" version ".tar.xz"))
+             (sha256
+              (base32 "1ajpyw1bfbmxpniw041vbvrs9wqgzyw9kccx72nnfiy2wxspjcr5"))))
     (build-system gnu-build-system)
     (native-inputs
      `(("pkg-config" ,pkg-config)))
-- 
2.5.1

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

* Re: [PATCH 1/7] gnu: ncdu: Update to 1.11.
  2015-09-10 13:47 ` [PATCH 1/7] gnu: ncdu: Update to 1.11 Efraim Flashner
@ 2015-09-10 16:26   ` Mathieu Lirzin
  2015-09-10 17:53     ` Efraim Flashner
  2015-09-10 19:18     ` Ludovic Courtès
  0 siblings, 2 replies; 23+ messages in thread
From: Mathieu Lirzin @ 2015-09-10 16:26 UTC (permalink / raw)
  To: Efraim Flashner; +Cc: guix-devel

Efraim Flashner <efraim@flashner.co.il> writes:

> * gnu/packages/ncdu.scm (ncdu): Update to 1.11.
> ---
>  gnu/packages/ncdu.scm | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/gnu/packages/ncdu.scm b/gnu/packages/ncdu.scm
> index 6c3d617..0b3fc66 100644
> --- a/gnu/packages/ncdu.scm
> +++ b/gnu/packages/ncdu.scm
> @@ -27,14 +27,14 @@
>  (define-public ncdu
>    (package
>     (name "ncdu")
> -   (version "1.10")
> +   (version "1.11")
>     (source (origin


>  	    (method url-fetch)
>  	    (uri (string-append "http://dev.yorhel.nl/download/ncdu-"
>  				version ".tar.gz"))
>  	    (sha256
>  	     (base32
> -	      "0rqc5wpqcbfqpcwxgh3jxwa0yw2py0hv0acpsf0a9g6v9144m6gm"))))
> +	      "0yxv87hpal05p6nii6rlnai5a8958689l9vz020w4qvlwiragbnh"))))

Not related to this update but guix lint report undesired tabulations on
these lines. It's fine to silently untabify them with this commit.

>     (inputs
>      `(("ncurses" ,ncurses)))
>     (build-system gnu-build-system)
> @@ -44,5 +44,5 @@ run on a remote server where you don't have an entire graphical setup, but have
>  to do with a simple SSH connection. ncdu aims to be fast, simple and easy to
>  use, and should be able to run in any minimal POSIX-like environment with
>  ncurses installed.")
> -   (license (x11-style "http://g.blicky.net/ncdu.git/plain/COPYING?id=v1.10"))
> +   (license (x11-style "http://g.blicky.net/ncdu.git/plain/COPYING?id=v1.11"))

Since it has high probability to change every next version, I will be in
favor of this

   (license (x11-style
             (string-append "http://g.blicky.net/ncdu.git/plain/COPYING?id=v"
                            version)))

Maybe there is something with doing that, what do others think?

--
Mathieu Lirzin

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

* Re: [PATCH 2/7] gnu: terminology: Update to 0.9.0.
  2015-09-10 13:47 ` [PATCH 2/7] gnu: terminology: Update to 0.9.0 Efraim Flashner
@ 2015-09-10 16:57   ` Mathieu Lirzin
  2015-09-10 17:53     ` Efraim Flashner
  0 siblings, 1 reply; 23+ messages in thread
From: Mathieu Lirzin @ 2015-09-10 16:57 UTC (permalink / raw)
  To: Efraim Flashner; +Cc: guix-devel

Efraim Flashner <efraim@flashner.co.il> writes:

> * gnu/packages/enlightenment.scm (terminology): Update to 0.9.0.
> ---
>  gnu/packages/enlightenment.scm | 8 ++++----
>  1 file changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/gnu/packages/enlightenment.scm b/gnu/packages/enlightenment.scm
> index 5e6693b..2470d1e 100644
> --- a/gnu/packages/enlightenment.scm
> +++ b/gnu/packages/enlightenment.scm
> @@ -214,15 +214,15 @@ The only supported now is VLC.")
>  (define-public terminology
>    (package
>      (name "terminology")
> -    (version "0.8.0")
> +    (version "0.9.0")
>      (source (origin
>                (method url-fetch)
>                (uri
>                 (string-append
> -                "https://download.enlightenment.org/rel/apps/terminology/terminology-"
> -                version ".tar.gz"))
> +                "https://download.enlightenment.org/rel/apps/terminology/"

According to guix lint:
gnu/packages/enlightenment.scm:217:2: terminology-0.9.0: tabulation on line 225, column 0

> +		"terminology-" version ".tar.xz"))
>                (sha256
> -               (base32 "0a767ixackzmhb2awrhjy7q6vsivsd54wc434i617xiw095x843s"))))
> +               (base32 "0iwid9cvd96kwl0hjhbby84kkz5sgb4p8454nnkf7wjvdz2f9b96"))))
>      (build-system gnu-build-system)
>      (native-inputs
>       `(("pkg-config" ,pkg-config)))

Otherwise LGTM.

--
Mathieu Lirzin

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

* Re: [PATCH 3/7] gnu: efl: Update to 1.15.1.
  2015-09-10 13:47 ` [PATCH 3/7] gnu: efl: Update to 1.15.1 Efraim Flashner
@ 2015-09-10 16:58   ` Mathieu Lirzin
  2015-09-10 17:52     ` Efraim Flashner
  0 siblings, 1 reply; 23+ messages in thread
From: Mathieu Lirzin @ 2015-09-10 16:58 UTC (permalink / raw)
  To: Efraim Flashner; +Cc: guix-devel

Efraim Flashner <efraim@flashner.co.il> writes:

> * gnu/packages/enlightenment.scm (efl): Update to 1.15.1.
>   Align package to 80 width columns.
    ^^^
    This is not necessary to notify indentation changes in commit
    messages.

> ---
>  gnu/packages/enlightenment.scm | 17 +++++++++--------
>  1 file changed, 9 insertions(+), 8 deletions(-)
>
> diff --git a/gnu/packages/enlightenment.scm b/gnu/packages/enlightenment.scm
> index 2470d1e..6b1257a 100644
> --- a/gnu/packages/enlightenment.scm
> +++ b/gnu/packages/enlightenment.scm
> @@ -51,14 +51,14 @@
>  (define-public efl
>    (package
>      (name "efl")
> -    (version "1.14.2")
> +    (version "1.15.1")
>      (source (origin
> -              (method url-fetch)
> -              (uri (string-append
> -                    "https://download.enlightenment.org/rel/libs/efl/efl-"
> -                    version ".tar.xz"))
> -              (sha256
> -               (base32 "0kg51v63ljq1z4dj65aiyxaqhq54gkl4hx53ifwbci6ihammandr"))))
> +             (method url-fetch)
> +             (uri (string-append
> +                   "https://download.enlightenment.org/rel/libs/efl/efl-"
> +                   version ".tar.xz"))
> +             (sha256
> +              (base32 "1n2l2n09lys5dph9lrnsv5z3qbgzp7bi0vidal2fvy18hflbbvsn"))))
>      (build-system gnu-build-system)
>      (native-inputs
>       `(("pkg-config" ,pkg-config)))
> @@ -127,7 +127,8 @@
>  for Enlightenment.  Libraries covers data serialization, wide support for
>  graphics rendering, UI layout and themes, interaction with OS, access to
>  removable devices or support for multimedia.")
> -    (license (list license:bsd-2 license:lgpl2.1 license:zlib)))) ; different parts under different licenses
> +    (license (list license:bsd-2 license:lgpl2.1 license:zlib)))) 
> +				;;; different parts under different licenses

There is a trailing white space here. ";;;" is not adapted for this type of
comment I would suggest this

    ;; Different parts are under different licenses.
    (license (list license:bsd-2 license:lgpl2.1 license:zlib))))

Can you send the updated patch?

--
Mathieu Lirzin

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

* Re: [PATCH 4/7] gnu: elementary: Update to 1.15.1.
  2015-09-10 13:47 ` [PATCH 4/7] gnu: elementary: " Efraim Flashner
@ 2015-09-10 17:09   ` Mathieu Lirzin
  2015-09-10 17:52     ` Efraim Flashner
  0 siblings, 1 reply; 23+ messages in thread
From: Mathieu Lirzin @ 2015-09-10 17:09 UTC (permalink / raw)
  To: Efraim Flashner; +Cc: guix-devel

Efraim Flashner <efraim@flashner.co.il> writes:

> * gnu/packages/enlightenment.scm (elementary): Update to 1.15.1.
>   Align package to 80 width columns.
    ^^^
    Like previous review.

> ---
>  gnu/packages/enlightenment.scm | 16 ++++++++--------
>  1 file changed, 8 insertions(+), 8 deletions(-)
>
> diff --git a/gnu/packages/enlightenment.scm b/gnu/packages/enlightenment.scm
> index 6b1257a..11cad86 100644
> --- a/gnu/packages/enlightenment.scm
> +++ b/gnu/packages/enlightenment.scm
> @@ -133,15 +133,15 @@ removable devices or support for multimedia.")
>  (define-public elementary
>    (package
>      (name "elementary")
> -    (version "1.14.2")
> +    (version "1.15.1")
>      (source (origin
> -              (method url-fetch)
> -              (uri
> -               (string-append
> -                "https://download.enlightenment.org/rel/libs/elementary/elementary-"
> -                version ".tar.xz"))
> -              (sha256
> -               (base32 "1ck1jm9dfx2l72nklndqjfsxjqb0024b88naskld1dk9b8drs76b"))))
> +             (method url-fetch)
> +             (uri
> +              (string-append
> +               "https://download.enlightenment.org/rel/libs/elementary/"
> +	       "elementary-" version ".tar.xz"))
   ^^
   Tabulation.
> +             (sha256
> +              (base32 "015b277bvgb4q8cqjl58ir9nqb1d40fpj2jblf4gkxq8a45a88mb"))))
>      (build-system gnu-build-system)
>      (native-inputs
>       `(("pkg-config" ,pkg-config)))

Otherwise LGTM.

--
Mathieu Lirzin

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

* Re: [PATCH 5/7] gnu: evas-generic-loaders: Update to 1.15.0.
  2015-09-10 13:47 ` [PATCH 5/7] gnu: evas-generic-loaders: Update to 1.15.0 Efraim Flashner
@ 2015-09-10 17:19   ` Mathieu Lirzin
  0 siblings, 0 replies; 23+ messages in thread
From: Mathieu Lirzin @ 2015-09-10 17:19 UTC (permalink / raw)
  To: Efraim Flashner; +Cc: guix-devel

Efraim Flashner <efraim@flashner.co.il> writes:

> * gnu/packages/enlightenment.scm (evas-generic-loaders): Update to 1.15.0.
> ---
>  gnu/packages/enlightenment.scm | 18 +++++++++---------
>  1 file changed, 9 insertions(+), 9 deletions(-)
>

LGTM.

--
Mathieu Lirzin

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

* Re: [PATCH 6/7] gnu: emotion-generic-players: Update to 1.15.0.
  2015-09-10 13:47 ` [PATCH 6/7] gnu: emotion-generic-players: " Efraim Flashner
@ 2015-09-10 17:34   ` Mathieu Lirzin
  2015-09-10 17:52     ` Efraim Flashner
  0 siblings, 1 reply; 23+ messages in thread
From: Mathieu Lirzin @ 2015-09-10 17:34 UTC (permalink / raw)
  To: Efraim Flashner; +Cc: guix-devel

Efraim Flashner <efraim@flashner.co.il> writes:

> * gnu/packages/enlightenment.scm (emotion-generic-players):
>   Update to 1.15.0.
> ---
>  gnu/packages/enlightenment.scm | 17 +++++++++--------
>  1 file changed, 9 insertions(+), 8 deletions(-)
>

gnu/packages/enlightenment.scm:191:2: emotion-generic-players-1.15.0: tabulation on line 199, column 0
gnu/packages/enlightenment.scm:191:2: emotion-generic-players-1.15.0: tabulation on line 200, column 0

Otherwise LGTM.

--
Mathieu Lirzin

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

* Re: [PATCH 7/7] gnu: enlightenment: Update to 0.19.9.
  2015-09-10 13:47 ` [PATCH 7/7] gnu: enlightenment: Update to 0.19.9 Efraim Flashner
@ 2015-09-10 17:42   ` Mathieu Lirzin
  2015-09-10 17:51     ` Efraim Flashner
  0 siblings, 1 reply; 23+ messages in thread
From: Mathieu Lirzin @ 2015-09-10 17:42 UTC (permalink / raw)
  To: Efraim Flashner; +Cc: guix-devel

Efraim Flashner <efraim@flashner.co.il> writes:

> * gnu/packages/enlightenment (enlightenment): Update to 0.19.9.
>   Align package to 80 width columns.
   ^^^
   Like previous review.

> ---
>  gnu/packages/enlightenment.scm | 16 ++++++++--------
>  1 file changed, 8 insertions(+), 8 deletions(-)

gnu/packages/enlightenment.scm:270:2: enlightenment-0.19.9: tabulation on line 278, column 0

Otherwise LGTM.

--
Mathieu Lirzin

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

* Re: [PATCH 7/7] gnu: enlightenment: Update to 0.19.9.
  2015-09-10 17:42   ` Mathieu Lirzin
@ 2015-09-10 17:51     ` Efraim Flashner
  0 siblings, 0 replies; 23+ messages in thread
From: Efraim Flashner @ 2015-09-10 17:51 UTC (permalink / raw)
  To: Mathieu Lirzin; +Cc: guix-devel


[-- Attachment #1.1: Type: text/plain, Size: 785 bytes --]

On Thu, 10 Sep 2015 19:42:16 +0200
Mathieu Lirzin <mthl@openmailbox.org> wrote:

> Efraim Flashner <efraim@flashner.co.il> writes:
> 
> > * gnu/packages/enlightenment (enlightenment): Update to 0.19.9.
> >   Align package to 80 width columns.
>    ^^^
>    Like previous review.
> 
> > ---
> >  gnu/packages/enlightenment.scm | 16 ++++++++--------
> >  1 file changed, 8 insertions(+), 8 deletions(-)
> 
> gnu/packages/enlightenment.scm:270:2: enlightenment-0.19.9: tabulation on
> line 278, column 0
> 
> Otherwise LGTM.
> 
> --
> Mathieu Lirzin



-- 
Efraim Flashner   <efraim@flashner.co.il>   אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.2: 0007-gnu-enlightenment-Update-to-0.19.9.patch --]
[-- Type: text/x-patch, Size: 1559 bytes --]

From 28c02c062a3db97e0be2f201e006a2eab882aa5b Mon Sep 17 00:00:00 2001
From: Efraim Flashner <efraim@flashner.co.il>
Date: Thu, 10 Sep 2015 16:42:15 +0300
Subject: [PATCH 7/7] gnu: enlightenment: Update to 0.19.9.

* gnu/packages/enlightenment (enlightenment): Update to 0.19.9.
---
 gnu/packages/enlightenment.scm | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/enlightenment.scm b/gnu/packages/enlightenment.scm
index c33d8bd..ccc00b6 100644
--- a/gnu/packages/enlightenment.scm
+++ b/gnu/packages/enlightenment.scm
@@ -268,15 +268,15 @@ Libraries with some extra bells and whistles.")
 (define-public enlightenment
   (package
     (name "enlightenment")
-    (version "0.19.5")
+    (version "0.19.9")
     (source (origin
-              (method url-fetch)
-              (uri
-               (string-append
-                "https://download.enlightenment.org/rel/apps/enlightenment/enlightenment-"
-                version ".tar.xz"))
-              (sha256
-               (base32 "0j66x7x76fbgqfw6fi77v8qy50slw3jnsq3vvs82rrfvniabm8wc"))))
+             (method url-fetch)
+             (uri
+              (string-append
+               "https://download.enlightenment.org/rel/apps/enlightenment/"
+               "enlightenment-" version ".tar.xz"))
+             (sha256
+              (base32 "1ajpyw1bfbmxpniw041vbvrs9wqgzyw9kccx72nnfiy2wxspjcr5"))))
     (build-system gnu-build-system)
     (native-inputs
      `(("pkg-config" ,pkg-config)))
-- 
2.5.1


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

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

* Re: [PATCH 6/7] gnu: emotion-generic-players: Update to 1.15.0.
  2015-09-10 17:34   ` Mathieu Lirzin
@ 2015-09-10 17:52     ` Efraim Flashner
  0 siblings, 0 replies; 23+ messages in thread
From: Efraim Flashner @ 2015-09-10 17:52 UTC (permalink / raw)
  To: Mathieu Lirzin; +Cc: guix-devel


[-- Attachment #1.1: Type: text/plain, Size: 844 bytes --]

On Thu, 10 Sep 2015 19:34:37 +0200
Mathieu Lirzin <mthl@openmailbox.org> wrote:

> Efraim Flashner <efraim@flashner.co.il> writes:
> 
> > * gnu/packages/enlightenment.scm (emotion-generic-players):
> >   Update to 1.15.0.
> > ---
> >  gnu/packages/enlightenment.scm | 17 +++++++++--------
> >  1 file changed, 9 insertions(+), 8 deletions(-)
> >
> 
> gnu/packages/enlightenment.scm:191:2: emotion-generic-players-1.15.0:
> tabulation on line 199, column 0 gnu/packages/enlightenment.scm:191:2:
> emotion-generic-players-1.15.0: tabulation on line 200, column 0
> 
> Otherwise LGTM.
> 
> --
> Mathieu Lirzin



-- 
Efraim Flashner   <efraim@flashner.co.il>   אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.2: 0006-gnu-emotion-generic-players-Update-to-1.15.0.patch --]
[-- Type: text/x-patch, Size: 1654 bytes --]

From 7da62c0568f3f824c74c74bd28fec7dc5f5f6482 Mon Sep 17 00:00:00 2001
From: Efraim Flashner <efraim@flashner.co.il>
Date: Thu, 10 Sep 2015 16:34:44 +0300
Subject: [PATCH 6/7] gnu: emotion-generic-players: Update to 1.15.0.

* gnu/packages/enlightenment.scm (emotion-generic-players):
  Update to 1.15.0.
---
 gnu/packages/enlightenment.scm | 17 +++++++++--------
 1 file changed, 9 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/enlightenment.scm b/gnu/packages/enlightenment.scm
index a35e2d8..c33d8bd 100644
--- a/gnu/packages/enlightenment.scm
+++ b/gnu/packages/enlightenment.scm
@@ -189,15 +189,16 @@ files in Evas (EFL canvas library).")
 (define-public emotion-generic-players
   (package
     (name "emotion-generic-players")
-    (version "1.14.0")
+    (version "1.15.0")
     (source (origin
-              (method url-fetch)
-              (uri
-               (string-append
-                "https://download.enlightenment.org/rel/libs/emotion_generic_players/emotion_generic_players-"
-                version ".tar.xz"))
-              (sha256
-               (base32 "0685jzag98ykknycfdqn70zif3fmcfi6m8k9yp6d79r1h8gc49n4"))))
+             (method url-fetch)
+             (uri
+              (string-append
+               "https://download.enlightenment.org/rel/libs/"
+               "emotion_generic_players/emotion_generic_players-"
+               version ".tar.xz"))
+             (sha256
+              (base32 "0pszwmcygxnv1sfx0m79md2jmi4sng8mdb1xcr6h2z5c8685wvcz"))))
     (build-system gnu-build-system)
     (native-inputs
      `(("pkg-config" ,pkg-config)))
-- 
2.5.1


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

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

* Re: [PATCH 4/7] gnu: elementary: Update to 1.15.1.
  2015-09-10 17:09   ` Mathieu Lirzin
@ 2015-09-10 17:52     ` Efraim Flashner
  0 siblings, 0 replies; 23+ messages in thread
From: Efraim Flashner @ 2015-09-10 17:52 UTC (permalink / raw)
  To: Mathieu Lirzin; +Cc: guix-devel


[-- Attachment #1.1: Type: text/plain, Size: 1936 bytes --]

On Thu, 10 Sep 2015 19:09:40 +0200
Mathieu Lirzin <mthl@openmailbox.org> wrote:

> Efraim Flashner <efraim@flashner.co.il> writes:
> 
> > * gnu/packages/enlightenment.scm (elementary): Update to 1.15.1.
> >   Align package to 80 width columns.
>     ^^^
>     Like previous review.
> 
> > ---
> >  gnu/packages/enlightenment.scm | 16 ++++++++--------
> >  1 file changed, 8 insertions(+), 8 deletions(-)
> >
> > diff --git a/gnu/packages/enlightenment.scm
> > b/gnu/packages/enlightenment.scm index 6b1257a..11cad86 100644
> > --- a/gnu/packages/enlightenment.scm
> > +++ b/gnu/packages/enlightenment.scm
> > @@ -133,15 +133,15 @@ removable devices or support for multimedia.")
> >  (define-public elementary
> >    (package
> >      (name "elementary")
> > -    (version "1.14.2")
> > +    (version "1.15.1")
> >      (source (origin
> > -              (method url-fetch)
> > -              (uri
> > -               (string-append
> > -
> > "https://download.enlightenment.org/rel/libs/elementary/elementary-"
> > -                version ".tar.xz"))
> > -              (sha256
> > -               (base32
> > "1ck1jm9dfx2l72nklndqjfsxjqb0024b88naskld1dk9b8drs76b"))))
> > +             (method url-fetch)
> > +             (uri
> > +              (string-append
> > +               "https://download.enlightenment.org/rel/libs/elementary/"
> > +	       "elementary-" version ".tar.xz"))
>    ^^
>    Tabulation.
> > +             (sha256
> > +              (base32
> > "015b277bvgb4q8cqjl58ir9nqb1d40fpj2jblf4gkxq8a45a88mb")))) (build-system
> > gnu-build-system) (native-inputs
> >       `(("pkg-config" ,pkg-config)))
> 
> Otherwise LGTM.
> 
> --
> Mathieu Lirzin



-- 
Efraim Flashner   <efraim@flashner.co.il>   אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.2: 0004-gnu-elementary-Update-to-1.15.1.patch --]
[-- Type: text/x-patch, Size: 1538 bytes --]

From 8809a12d053e624520c70dcc675885ae1a3b8fa6 Mon Sep 17 00:00:00 2001
From: Efraim Flashner <efraim@flashner.co.il>
Date: Thu, 10 Sep 2015 16:28:17 +0300
Subject: [PATCH 4/7] gnu: elementary: Update to 1.15.1.

* gnu/packages/enlightenment.scm (elementary): Update to 1.15.1.
---
 gnu/packages/enlightenment.scm | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/enlightenment.scm b/gnu/packages/enlightenment.scm
index bebd963..bbd4933 100644
--- a/gnu/packages/enlightenment.scm
+++ b/gnu/packages/enlightenment.scm
@@ -133,15 +133,15 @@ removable devices or support for multimedia.")
 (define-public elementary
   (package
     (name "elementary")
-    (version "1.14.2")
+    (version "1.15.1")
     (source (origin
-              (method url-fetch)
-              (uri
-               (string-append
-                "https://download.enlightenment.org/rel/libs/elementary/elementary-"
-                version ".tar.xz"))
-              (sha256
-               (base32 "1ck1jm9dfx2l72nklndqjfsxjqb0024b88naskld1dk9b8drs76b"))))
+             (method url-fetch)
+             (uri
+              (string-append
+               "https://download.enlightenment.org/rel/libs/elementary/"
+               "elementary-" version ".tar.xz"))
+             (sha256
+              (base32 "015b277bvgb4q8cqjl58ir9nqb1d40fpj2jblf4gkxq8a45a88mb"))))
     (build-system gnu-build-system)
     (native-inputs
      `(("pkg-config" ,pkg-config)))
-- 
2.5.1


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

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

* Re: [PATCH 3/7] gnu: efl: Update to 1.15.1.
  2015-09-10 16:58   ` Mathieu Lirzin
@ 2015-09-10 17:52     ` Efraim Flashner
  0 siblings, 0 replies; 23+ messages in thread
From: Efraim Flashner @ 2015-09-10 17:52 UTC (permalink / raw)
  To: Mathieu Lirzin; +Cc: guix-devel


[-- Attachment #1.1: Type: text/plain, Size: 2594 bytes --]

On Thu, 10 Sep 2015 18:58:50 +0200
Mathieu Lirzin <mthl@openmailbox.org> wrote:

> Efraim Flashner <efraim@flashner.co.il> writes:
> 
> > * gnu/packages/enlightenment.scm (efl): Update to 1.15.1.
> >   Align package to 80 width columns.
>     ^^^
>     This is not necessary to notify indentation changes in commit
>     messages.
> 
> > ---
> >  gnu/packages/enlightenment.scm | 17 +++++++++--------
> >  1 file changed, 9 insertions(+), 8 deletions(-)
> >
> > diff --git a/gnu/packages/enlightenment.scm
> > b/gnu/packages/enlightenment.scm index 2470d1e..6b1257a 100644
> > --- a/gnu/packages/enlightenment.scm
> > +++ b/gnu/packages/enlightenment.scm
> > @@ -51,14 +51,14 @@
> >  (define-public efl
> >    (package
> >      (name "efl")
> > -    (version "1.14.2")
> > +    (version "1.15.1")
> >      (source (origin
> > -              (method url-fetch)
> > -              (uri (string-append
> > -
> > "https://download.enlightenment.org/rel/libs/efl/efl-"
> > -                    version ".tar.xz"))
> > -              (sha256
> > -               (base32
> > "0kg51v63ljq1z4dj65aiyxaqhq54gkl4hx53ifwbci6ihammandr"))))
> > +             (method url-fetch)
> > +             (uri (string-append
> > +                   "https://download.enlightenment.org/rel/libs/efl/efl-"
> > +                   version ".tar.xz"))
> > +             (sha256
> > +              (base32
> > "1n2l2n09lys5dph9lrnsv5z3qbgzp7bi0vidal2fvy18hflbbvsn")))) (build-system
> > gnu-build-system) (native-inputs
> >       `(("pkg-config" ,pkg-config)))
> > @@ -127,7 +127,8 @@
> >  for Enlightenment.  Libraries covers data serialization, wide support for
> >  graphics rendering, UI layout and themes, interaction with OS, access to
> >  removable devices or support for multimedia.")
> > -    (license (list license:bsd-2 license:lgpl2.1 license:zlib)))) ;
> > different parts under different licenses
> > +    (license (list license:bsd-2 license:lgpl2.1 license:zlib)))) 
> > +				;;; different parts under different
> > licenses
> 
> There is a trailing white space here. ";;;" is not adapted for this type of
> comment I would suggest this
> 
>     ;; Different parts are under different licenses.
>     (license (list license:bsd-2 license:lgpl2.1 license:zlib))))
> 
> Can you send the updated patch?
> 
> --
> Mathieu Lirzin



-- 
Efraim Flashner   <efraim@flashner.co.il>   אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.2: 0003-gnu-efl-Update-to-1.15.1.patch --]
[-- Type: text/x-patch, Size: 1914 bytes --]

From ebe9bd82af5b8d28ab69958f1caea89078007496 Mon Sep 17 00:00:00 2001
From: Efraim Flashner <efraim@flashner.co.il>
Date: Thu, 10 Sep 2015 16:23:37 +0300
Subject: [PATCH 3/7] gnu: efl: Update to 1.15.1.

* gnu/packages/enlightenment.scm (efl): Update to 1.15.1.
---
 gnu/packages/enlightenment.scm | 17 +++++++++--------
 1 file changed, 9 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/enlightenment.scm b/gnu/packages/enlightenment.scm
index 5d05254..bebd963 100644
--- a/gnu/packages/enlightenment.scm
+++ b/gnu/packages/enlightenment.scm
@@ -51,14 +51,14 @@
 (define-public efl
   (package
     (name "efl")
-    (version "1.14.2")
+    (version "1.15.1")
     (source (origin
-              (method url-fetch)
-              (uri (string-append
-                    "https://download.enlightenment.org/rel/libs/efl/efl-"
-                    version ".tar.xz"))
-              (sha256
-               (base32 "0kg51v63ljq1z4dj65aiyxaqhq54gkl4hx53ifwbci6ihammandr"))))
+             (method url-fetch)
+             (uri (string-append
+                   "https://download.enlightenment.org/rel/libs/efl/efl-"
+                   version ".tar.xz"))
+             (sha256
+              (base32 "1n2l2n09lys5dph9lrnsv5z3qbgzp7bi0vidal2fvy18hflbbvsn"))))
     (build-system gnu-build-system)
     (native-inputs
      `(("pkg-config" ,pkg-config)))
@@ -127,7 +127,8 @@
 for Enlightenment.  Libraries covers data serialization, wide support for
 graphics rendering, UI layout and themes, interaction with OS, access to
 removable devices or support for multimedia.")
-    (license (list license:bsd-2 license:lgpl2.1 license:zlib)))) ; different parts under different licenses
+    ;; Different parts are under different licenses.
+    (license (list license:bsd-2 license:lgpl2.1 license:zlib)))) 
 
 (define-public elementary
   (package
-- 
2.5.1


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

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

* Re: [PATCH 2/7] gnu: terminology: Update to 0.9.0.
  2015-09-10 16:57   ` Mathieu Lirzin
@ 2015-09-10 17:53     ` Efraim Flashner
  0 siblings, 0 replies; 23+ messages in thread
From: Efraim Flashner @ 2015-09-10 17:53 UTC (permalink / raw)
  To: Mathieu Lirzin; +Cc: guix-devel


[-- Attachment #1.1: Type: text/plain, Size: 1797 bytes --]

On Thu, 10 Sep 2015 18:57:36 +0200
Mathieu Lirzin <mthl@openmailbox.org> wrote:

> Efraim Flashner <efraim@flashner.co.il> writes:
> 
> > * gnu/packages/enlightenment.scm (terminology): Update to 0.9.0.
> > ---
> >  gnu/packages/enlightenment.scm | 8 ++++----
> >  1 file changed, 4 insertions(+), 4 deletions(-)
> >
> > diff --git a/gnu/packages/enlightenment.scm
> > b/gnu/packages/enlightenment.scm index 5e6693b..2470d1e 100644
> > --- a/gnu/packages/enlightenment.scm
> > +++ b/gnu/packages/enlightenment.scm
> > @@ -214,15 +214,15 @@ The only supported now is VLC.")
> >  (define-public terminology
> >    (package
> >      (name "terminology")
> > -    (version "0.8.0")
> > +    (version "0.9.0")
> >      (source (origin
> >                (method url-fetch)
> >                (uri
> >                 (string-append
> > -
> > "https://download.enlightenment.org/rel/apps/terminology/terminology-"
> > -                version ".tar.gz"))
> > +
> > "https://download.enlightenment.org/rel/apps/terminology/"
> 
> According to guix lint:
> gnu/packages/enlightenment.scm:217:2: terminology-0.9.0: tabulation on line
> 225, column 0
> 
> > +		"terminology-" version ".tar.xz"))
> >                (sha256
> > -               (base32
> > "0a767ixackzmhb2awrhjy7q6vsivsd54wc434i617xiw095x843s"))))
> > +               (base32
> > "0iwid9cvd96kwl0hjhbby84kkz5sgb4p8454nnkf7wjvdz2f9b96")))) (build-system
> > gnu-build-system) (native-inputs
> >       `(("pkg-config" ,pkg-config)))
> 
> Otherwise LGTM.
> 
> --
> Mathieu Lirzin



-- 
Efraim Flashner   <efraim@flashner.co.il>   אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.2: 0002-gnu-terminology-Update-to-0.9.0.patch --]
[-- Type: text/x-patch, Size: 1414 bytes --]

From c2e0f280794b8cb6d65612c52eb3d8d97a5a7c6c Mon Sep 17 00:00:00 2001
From: Efraim Flashner <efraim@flashner.co.il>
Date: Thu, 10 Sep 2015 15:49:30 +0300
Subject: [PATCH 2/7] gnu: terminology: Update to 0.9.0.

* gnu/packages/enlightenment.scm (terminology): Update to 0.9.0.
---
 gnu/packages/enlightenment.scm | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/enlightenment.scm b/gnu/packages/enlightenment.scm
index 5e6693b..5d05254 100644
--- a/gnu/packages/enlightenment.scm
+++ b/gnu/packages/enlightenment.scm
@@ -214,15 +214,15 @@ The only supported now is VLC.")
 (define-public terminology
   (package
     (name "terminology")
-    (version "0.8.0")
+    (version "0.9.0")
     (source (origin
               (method url-fetch)
               (uri
                (string-append
-                "https://download.enlightenment.org/rel/apps/terminology/terminology-"
-                version ".tar.gz"))
+                "https://download.enlightenment.org/rel/apps/terminology/"
+                "terminology-" version ".tar.xz"))
               (sha256
-               (base32 "0a767ixackzmhb2awrhjy7q6vsivsd54wc434i617xiw095x843s"))))
+               (base32 "0iwid9cvd96kwl0hjhbby84kkz5sgb4p8454nnkf7wjvdz2f9b96"))))
     (build-system gnu-build-system)
     (native-inputs
      `(("pkg-config" ,pkg-config)))
-- 
2.5.1


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

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

* Re: [PATCH 1/7] gnu: ncdu: Update to 1.11.
  2015-09-10 16:26   ` Mathieu Lirzin
@ 2015-09-10 17:53     ` Efraim Flashner
  2015-09-10 19:18     ` Ludovic Courtès
  1 sibling, 0 replies; 23+ messages in thread
From: Efraim Flashner @ 2015-09-10 17:53 UTC (permalink / raw)
  To: Mathieu Lirzin; +Cc: guix-devel


[-- Attachment #1.1: Type: text/plain, Size: 2207 bytes --]

On Thu, 10 Sep 2015 18:26:46 +0200
Mathieu Lirzin <mthl@openmailbox.org> wrote:

> Efraim Flashner <efraim@flashner.co.il> writes:
> 
> > * gnu/packages/ncdu.scm (ncdu): Update to 1.11.
> > ---
> >  gnu/packages/ncdu.scm | 6 +++---
> >  1 file changed, 3 insertions(+), 3 deletions(-)
> >
> > diff --git a/gnu/packages/ncdu.scm b/gnu/packages/ncdu.scm
> > index 6c3d617..0b3fc66 100644
> > --- a/gnu/packages/ncdu.scm
> > +++ b/gnu/packages/ncdu.scm
> > @@ -27,14 +27,14 @@
> >  (define-public ncdu
> >    (package
> >     (name "ncdu")
> > -   (version "1.10")
> > +   (version "1.11")
> >     (source (origin
> 
> 
> >  	    (method url-fetch)
> >  	    (uri (string-append "http://dev.yorhel.nl/download/ncdu-"
> >  				version ".tar.gz"))
> >  	    (sha256
> >  	     (base32
> > -	      "0rqc5wpqcbfqpcwxgh3jxwa0yw2py0hv0acpsf0a9g6v9144m6gm"))))
> > +	      "0yxv87hpal05p6nii6rlnai5a8958689l9vz020w4qvlwiragbnh"))))
> 
> Not related to this update but guix lint report undesired tabulations on
> these lines. It's fine to silently untabify them with this commit.
> 
> >     (inputs
> >      `(("ncurses" ,ncurses)))
> >     (build-system gnu-build-system)
> > @@ -44,5 +44,5 @@ run on a remote server where you don't have an entire
> > graphical setup, but have to do with a simple SSH connection. ncdu aims
> > to be fast, simple and easy to use, and should be able to run in any
> > minimal POSIX-like environment with ncurses installed.")
> > -   (license (x11-style
> > "http://g.blicky.net/ncdu.git/plain/COPYING?id=v1.10"))
> > +   (license (x11-style
> > "http://g.blicky.net/ncdu.git/plain/COPYING?id=v1.11"))
> 
> Since it has high probability to change every next version, I will be in
> favor of this
> 
>    (license (x11-style
>              (string-append
> "http://g.blicky.net/ncdu.git/plain/COPYING?id=v" version)))
> 
> Maybe there is something with doing that, what do others think?
> 
> --
> Mathieu Lirzin



-- 
Efraim Flashner   <efraim@flashner.co.il>   אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.2: 0001-gnu-ncdu-Update-to-1.11.patch --]
[-- Type: text/x-patch, Size: 1795 bytes --]

From 81c1868e2e38ba1c006f276e86f99d1b7bae9c85 Mon Sep 17 00:00:00 2001
From: Efraim Flashner <efraim@flashner.co.il>
Date: Thu, 10 Sep 2015 15:57:23 +0300
Subject: [PATCH 1/7] gnu: ncdu: Update to 1.11.

* gnu/packages/ncdu.scm (ncdu): Update to 1.11.
---
 gnu/packages/ncdu.scm | 18 ++++++++++--------
 1 file changed, 10 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/ncdu.scm b/gnu/packages/ncdu.scm
index 6c3d617..b5c1522 100644
--- a/gnu/packages/ncdu.scm
+++ b/gnu/packages/ncdu.scm
@@ -27,14 +27,14 @@
 (define-public ncdu
   (package
    (name "ncdu")
-   (version "1.10")
+   (version "1.11")
    (source (origin
-	    (method url-fetch)
-	    (uri (string-append "http://dev.yorhel.nl/download/ncdu-"
-				version ".tar.gz"))
-	    (sha256
-	     (base32
-	      "0rqc5wpqcbfqpcwxgh3jxwa0yw2py0hv0acpsf0a9g6v9144m6gm"))))
+            (method url-fetch)
+            (uri (string-append "http://dev.yorhel.nl/download/ncdu-"
+                                version ".tar.gz"))
+            (sha256
+             (base32
+              "0yxv87hpal05p6nii6rlnai5a8958689l9vz020w4qvlwiragbnh"))))
    (inputs
     `(("ncurses" ,ncurses)))
    (build-system gnu-build-system)
@@ -44,5 +44,7 @@ run on a remote server where you don't have an entire graphical setup, but have
 to do with a simple SSH connection. ncdu aims to be fast, simple and easy to
 use, and should be able to run in any minimal POSIX-like environment with
 ncurses installed.")
-   (license (x11-style "http://g.blicky.net/ncdu.git/plain/COPYING?id=v1.10"))
+   (license (x11-style 
+             (string-append "http://g.blicky.net/ncdu.git/plain/COPYING?id=v"
+                            version)))
    (home-page "http://dev.yorhel.nl/ncdu")))
-- 
2.5.1


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

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

* Re: [PATCH 1/7] gnu: ncdu: Update to 1.11.
  2015-09-10 16:26   ` Mathieu Lirzin
  2015-09-10 17:53     ` Efraim Flashner
@ 2015-09-10 19:18     ` Ludovic Courtès
  2015-09-10 19:23       ` Efraim Flashner
  1 sibling, 1 reply; 23+ messages in thread
From: Ludovic Courtès @ 2015-09-10 19:18 UTC (permalink / raw)
  To: Mathieu Lirzin; +Cc: guix-devel

Mathieu Lirzin <mthl@openmailbox.org> skribis:

> Efraim Flashner <efraim@flashner.co.il> writes:

[...]

>> -   (license (x11-style "http://g.blicky.net/ncdu.git/plain/COPYING?id=v1.10"))
>> +   (license (x11-style "http://g.blicky.net/ncdu.git/plain/COPYING?id=v1.11"))
>
> Since it has high probability to change every next version, I will be in
> favor of this
>
>    (license (x11-style
>              (string-append "http://g.blicky.net/ncdu.git/plain/COPYING?id=v"
>                             version)))

It can’t hurt, indeed.

(Though presumably the license doesn’t actually change at every version.)

Ludo’.

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

* Re: [PATCH 1/7] gnu: ncdu: Update to 1.11.
  2015-09-10 19:18     ` Ludovic Courtès
@ 2015-09-10 19:23       ` Efraim Flashner
  0 siblings, 0 replies; 23+ messages in thread
From: Efraim Flashner @ 2015-09-10 19:23 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: guix-devel

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

On Thu, 10 Sep 2015 21:18:45 +0200
ludo@gnu.org (Ludovic Courtès) wrote:

> Mathieu Lirzin <mthl@openmailbox.org> skribis:
> 
> > Efraim Flashner <efraim@flashner.co.il> writes:
> 
> [...]
> 
> >> -   (license (x11-style
> >> "http://g.blicky.net/ncdu.git/plain/COPYING?id=v1.10"))
> >> +   (license (x11-style
> >> "http://g.blicky.net/ncdu.git/plain/COPYING?id=v1.11"))
> >
> > Since it has high probability to change every next version, I will be in
> > favor of this
> >
> >    (license (x11-style
> >              (string-append
> > "http://g.blicky.net/ncdu.git/plain/COPYING?id=v" version)))
> 
> It can’t hurt, indeed.
> 
> (Though presumably the license doesn’t actually change at every version.)
> 
> Ludo’.

I compared the 1.10 license and the 1.11 license, and the only change was the
year in the copyright.

-- 
Efraim Flashner   <efraim@flashner.co.il>   אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

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

end of thread, other threads:[~2015-09-10 19:23 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-09-10 13:47 [PATCH 0/7] Misc updates Efraim Flashner
2015-09-10 13:47 ` [PATCH 1/7] gnu: ncdu: Update to 1.11 Efraim Flashner
2015-09-10 16:26   ` Mathieu Lirzin
2015-09-10 17:53     ` Efraim Flashner
2015-09-10 19:18     ` Ludovic Courtès
2015-09-10 19:23       ` Efraim Flashner
2015-09-10 13:47 ` [PATCH 2/7] gnu: terminology: Update to 0.9.0 Efraim Flashner
2015-09-10 16:57   ` Mathieu Lirzin
2015-09-10 17:53     ` Efraim Flashner
2015-09-10 13:47 ` [PATCH 3/7] gnu: efl: Update to 1.15.1 Efraim Flashner
2015-09-10 16:58   ` Mathieu Lirzin
2015-09-10 17:52     ` Efraim Flashner
2015-09-10 13:47 ` [PATCH 4/7] gnu: elementary: " Efraim Flashner
2015-09-10 17:09   ` Mathieu Lirzin
2015-09-10 17:52     ` Efraim Flashner
2015-09-10 13:47 ` [PATCH 5/7] gnu: evas-generic-loaders: Update to 1.15.0 Efraim Flashner
2015-09-10 17:19   ` Mathieu Lirzin
2015-09-10 13:47 ` [PATCH 6/7] gnu: emotion-generic-players: " Efraim Flashner
2015-09-10 17:34   ` Mathieu Lirzin
2015-09-10 17:52     ` Efraim Flashner
2015-09-10 13:47 ` [PATCH 7/7] gnu: enlightenment: Update to 0.19.9 Efraim Flashner
2015-09-10 17:42   ` Mathieu Lirzin
2015-09-10 17:51     ` Efraim Flashner

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).