unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* [PATCH] updating enlightenment packages
@ 2015-06-25 17:57 Efraim Flashner
  2015-06-28 20:28 ` Ludovic Courtès
  0 siblings, 1 reply; 8+ messages in thread
From: Efraim Flashner @ 2015-06-25 17:57 UTC (permalink / raw)
  To: guix-devel


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

Not a big patch, but my first! I saw that the enlightenment packages were a
bit out ouf date, so I updated them and tested the building on my computer.


Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
---
 gnu/packages/enlightenment.scm | 28 ++++++++++++++--------------
 1 file changed, 14 insertions(+), 14 deletions(-)


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.2: 0001-updating-enlightenment-packages.patch --]
[-- Type: text/x-patch, Size: 3827 bytes --]

diff --git a/gnu/packages/enlightenment.scm b/gnu/packages/enlightenment.scm
index c642300..e8e3776 100644
--- a/gnu/packages/enlightenment.scm
+++ b/gnu/packages/enlightenment.scm
@@ -50,14 +50,14 @@
 (define-public efl
   (package
     (name "efl")
-    (version "1.13.0")
+    (version "1.14.1")
     (source (origin
               (method url-fetch)
               (uri (string-append
                     "http://download.enlightenment.org/rel/libs/efl/efl-"
-                    version ".tar.gz"))
+                    version ".tar.xz"))
               (sha256
-               (base32 "0mwkxsfi5masiy6qfmdqy1j15cfz7nz8g8jq2bf3w501rpa9gxvz"))))
+               (base32 "1q4vddn9v0iahp77s23sx8k77j8xsnvgdk928cvli6xvaqwm62pl"))))
     (build-system gnu-build-system)
     (native-inputs
      `(("pkg-config" ,pkg-config)))
@@ -131,15 +131,15 @@ removable devices or support for multimedia.")
 (define-public elementary
   (package
     (name "elementary")
-    (version "1.13.0")
+    (version "1.14.1")
     (source (origin
               (method url-fetch)
               (uri
                (string-append
                 "http://download.enlightenment.org/rel/libs/elementary/elementary-"
-                version ".tar.gz"))
+                version ".tar.xz"))
               (sha256
-               (base32 "133p4yaynmy37yhk2gxwlc8a2n2wy7cbh4rd7nsnl5929wqb9waj"))))
+               (base32 "13s951av0zqcnd8zf86n5drf5gir75xvp8c5y0m6lcfk5n7ddk27"))))
     (build-system gnu-build-system)
     (native-inputs
      `(("pkg-config" ,pkg-config)))
@@ -156,7 +156,7 @@ full capabilities of EFL.")
 (define-public evas-generic-loaders
   (package
     (name "evas-generic-loaders")
-    (version "1.13.2")
+    (version "1.14.0")
     (source (origin
               (method url-fetch)
               (uri
@@ -165,7 +165,7 @@ full capabilities of EFL.")
                 "evas_generic_loaders/evas_generic_loaders-"
                 version ".tar.xz"))
               (sha256
-               (base32 "1z5vjabs3psvqs3251mpyl1wgbdv1grn30yf682vamdqc5ckfa69"))))
+               (base32 "18b6xmbf81bly4mlwlzwr17g2m8dzznbhsdjk6pbb3nw4wn3y88l"))))
     (build-system gnu-build-system)
     (native-inputs
      `(("pkg-config" ,pkg-config)))
@@ -187,15 +187,15 @@ files in Evas (EFL canvas library).")
 (define-public emotion-generic-players
   (package
     (name "emotion-generic-players")
-    (version "1.13.0")
+    (version "1.14.0")
     (source (origin
               (method url-fetch)
               (uri
                (string-append
                 "http://download.enlightenment.org/rel/libs/emotion_generic_players/emotion_generic_players-"
-                version ".tar.gz"))
+                version ".tar.xz"))
               (sha256
-               (base32 "0gin3cjhfj75v0gjsvv7harbj4fs4r7r1sfi74ncxzna71nrd8r3"))))
+               (base32 "0685jzag98ykknycfdqn70zif3fmcfi6m8k9yp6d79r1h8gc49n4"))))
     (build-system gnu-build-system)
     (native-inputs
      `(("pkg-config" ,pkg-config)))
@@ -240,15 +240,15 @@ contents and more.")
 (define-public enlightenment
   (package
     (name "enlightenment")
-    (version "0.19.4")
+    (version "0.19.5")
     (source (origin
               (method url-fetch)
               (uri
                (string-append
                 "http://download.enlightenment.org/rel/apps/enlightenment/enlightenment-"
-                version ".tar.gz"))
+                version ".tar.xz"))
               (sha256
-               (base32 "01pg3ng4m3vmwzzivlssdmvhf72bsvcmm3xwf45849cibllaib8v"))))
+               (base32 "0j66x7x76fbgqfw6fi77v8qy50slw3jnsq3vvs82rrfvniabm8wc"))))
     (build-system gnu-build-system)
     (native-inputs
      `(("pkg-config" ,pkg-config)))

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

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

* Re: [PATCH] updating enlightenment packages
  2015-06-25 17:57 [PATCH] updating enlightenment packages Efraim Flashner
@ 2015-06-28 20:28 ` Ludovic Courtès
  2015-06-29 17:43   ` [PATCH 1/5] gnu: efl: Update to 1.14.2 Efraim Flashner
                     ` (4 more replies)
  0 siblings, 5 replies; 8+ messages in thread
From: Ludovic Courtès @ 2015-06-28 20:28 UTC (permalink / raw)
  To: Efraim Flashner; +Cc: guix-devel

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

> Not a big patch, but my first! I saw that the enlightenment packages were a
> bit out ouf date, so I updated them and tested the building on my computer.

Then this looks good!

One last thing: We write commit logs in GNU ChangeLog-style format, with
an initial subject line that follows a simple convention.  See

  http://www.gnu.org/prep/standards/html_node/Change-Logs.html

for an explanation and

  http://git.savannah.gnu.org/cgit/guix.git/log

for examples.

Could you submit an updated patch?

TIA!

Ludo’.

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

* [PATCH 1/5] gnu: efl: Update to 1.14.2.
  2015-06-28 20:28 ` Ludovic Courtès
@ 2015-06-29 17:43   ` Efraim Flashner
  2015-06-29 17:44   ` [PATCH 2/5] gnu: elementary: " Efraim Flashner
                     ` (3 subsequent siblings)
  4 siblings, 0 replies; 8+ messages in thread
From: Efraim Flashner @ 2015-06-29 17:43 UTC (permalink / raw)
  To: guix-devel


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


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


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

diff --git a/gnu/packages/enlightenment.scm b/gnu/packages/enlightenment.scm
index c642300..37ab08e 100644
--- a/gnu/packages/enlightenment.scm
+++ b/gnu/packages/enlightenment.scm
@@ -50,14 +50,14 @@
 (define-public efl
   (package
     (name "efl")
-    (version "1.13.0")
+    (version "1.14.2")
     (source (origin
               (method url-fetch)
               (uri (string-append
                     "http://download.enlightenment.org/rel/libs/efl/efl-"
-                    version ".tar.gz"))
+                    version ".tar.xz"))
               (sha256
-               (base32 "0mwkxsfi5masiy6qfmdqy1j15cfz7nz8g8jq2bf3w501rpa9gxvz"))))
+               (base32 "0kg51v63ljq1z4dj65aiyxaqhq54gkl4hx53ifwbci6ihammandr"))))
     (build-system gnu-build-system)
     (native-inputs
      `(("pkg-config" ,pkg-config)))

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

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

* [PATCH 2/5] gnu: elementary: Update to 1.14.2.
  2015-06-28 20:28 ` Ludovic Courtès
  2015-06-29 17:43   ` [PATCH 1/5] gnu: efl: Update to 1.14.2 Efraim Flashner
@ 2015-06-29 17:44   ` Efraim Flashner
  2015-06-29 17:44   ` [PATCH 3/5] gnu: evas-generic-loaders: Update to 1.14.0 Efraim Flashner
                     ` (2 subsequent siblings)
  4 siblings, 0 replies; 8+ messages in thread
From: Efraim Flashner @ 2015-06-29 17:44 UTC (permalink / raw)
  To: guix-devel


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


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


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

diff --git a/gnu/packages/enlightenment.scm b/gnu/packages/enlightenment.scm
index 37ab08e..975d2e0 100644
--- a/gnu/packages/enlightenment.scm
+++ b/gnu/packages/enlightenment.scm
@@ -131,15 +131,15 @@ removable devices or support for multimedia.")
 (define-public elementary
   (package
     (name "elementary")
-    (version "1.13.0")
+    (version "1.14.2")
     (source (origin
               (method url-fetch)
               (uri
                (string-append
                 "http://download.enlightenment.org/rel/libs/elementary/elementary-"
-                version ".tar.gz"))
+                version ".tar.xz"))
               (sha256
-               (base32 "133p4yaynmy37yhk2gxwlc8a2n2wy7cbh4rd7nsnl5929wqb9waj"))))
+               (base32 "1ck1jm9dfx2l72nklndqjfsxjqb0024b88naskld1dk9b8drs76b"))))
     (build-system gnu-build-system)
     (native-inputs
      `(("pkg-config" ,pkg-config)))

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

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

* [PATCH 3/5] gnu: evas-generic-loaders: Update to 1.14.0.
  2015-06-28 20:28 ` Ludovic Courtès
  2015-06-29 17:43   ` [PATCH 1/5] gnu: efl: Update to 1.14.2 Efraim Flashner
  2015-06-29 17:44   ` [PATCH 2/5] gnu: elementary: " Efraim Flashner
@ 2015-06-29 17:44   ` Efraim Flashner
  2015-06-29 17:44   ` [PATCH 4/5] gnu: emotion-generic-loaders: " Efraim Flashner
  2015-06-29 17:44   ` [PATCH 5/5] gnu: enlightenment: Update to 0.19.5 Efraim Flashner
  4 siblings, 0 replies; 8+ messages in thread
From: Efraim Flashner @ 2015-06-29 17:44 UTC (permalink / raw)
  To: guix-devel


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


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


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.2: 0003-gnu-evas-generic-loaders-Update-to-1.14.0.patch --]
[-- Type: text/x-patch, Size: 888 bytes --]

diff --git a/gnu/packages/enlightenment.scm b/gnu/packages/enlightenment.scm
index 975d2e0..53e8c8d 100644
--- a/gnu/packages/enlightenment.scm
+++ b/gnu/packages/enlightenment.scm
@@ -156,7 +156,7 @@ full capabilities of EFL.")
 (define-public evas-generic-loaders
   (package
     (name "evas-generic-loaders")
-    (version "1.13.2")
+    (version "1.14.0")
     (source (origin
               (method url-fetch)
               (uri
@@ -165,7 +165,7 @@ full capabilities of EFL.")
                 "evas_generic_loaders/evas_generic_loaders-"
                 version ".tar.xz"))
               (sha256
-               (base32 "1z5vjabs3psvqs3251mpyl1wgbdv1grn30yf682vamdqc5ckfa69"))))
+               (base32 "18b6xmbf81bly4mlwlzwr17g2m8dzznbhsdjk6pbb3nw4wn3y88l"))))
     (build-system gnu-build-system)
     (native-inputs
      `(("pkg-config" ,pkg-config)))

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

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

* [PATCH 4/5] gnu: emotion-generic-loaders: Update to 1.14.0.
  2015-06-28 20:28 ` Ludovic Courtès
                     ` (2 preceding siblings ...)
  2015-06-29 17:44   ` [PATCH 3/5] gnu: evas-generic-loaders: Update to 1.14.0 Efraim Flashner
@ 2015-06-29 17:44   ` Efraim Flashner
  2015-06-29 17:44   ` [PATCH 5/5] gnu: enlightenment: Update to 0.19.5 Efraim Flashner
  4 siblings, 0 replies; 8+ messages in thread
From: Efraim Flashner @ 2015-06-29 17:44 UTC (permalink / raw)
  To: guix-devel


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


* gnu/packages/enlightenment.scm (emotion-generic-loaders): Update
  to 1.14.0.
---
 gnu/packages/enlightenment.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.2: 0004-gnu-emotion-generic-loaders-Update-to-1.14.0.patch --]
[-- Type: text/x-patch, Size: 976 bytes --]

diff --git a/gnu/packages/enlightenment.scm b/gnu/packages/enlightenment.scm
index 53e8c8d..c13af20 100644
--- a/gnu/packages/enlightenment.scm
+++ b/gnu/packages/enlightenment.scm
@@ -187,15 +187,15 @@ files in Evas (EFL canvas library).")
 (define-public emotion-generic-players
   (package
     (name "emotion-generic-players")
-    (version "1.13.0")
+    (version "1.14.0")
     (source (origin
               (method url-fetch)
               (uri
                (string-append
                 "http://download.enlightenment.org/rel/libs/emotion_generic_players/emotion_generic_players-"
-                version ".tar.gz"))
+                version ".tar.xz"))
               (sha256
-               (base32 "0gin3cjhfj75v0gjsvv7harbj4fs4r7r1sfi74ncxzna71nrd8r3"))))
+               (base32 "0685jzag98ykknycfdqn70zif3fmcfi6m8k9yp6d79r1h8gc49n4"))))
     (build-system gnu-build-system)
     (native-inputs
      `(("pkg-config" ,pkg-config)))

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

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

* [PATCH 5/5] gnu: enlightenment: Update to 0.19.5.
  2015-06-28 20:28 ` Ludovic Courtès
                     ` (3 preceding siblings ...)
  2015-06-29 17:44   ` [PATCH 4/5] gnu: emotion-generic-loaders: " Efraim Flashner
@ 2015-06-29 17:44   ` Efraim Flashner
  2015-07-04 15:31     ` Ludovic Courtès
  4 siblings, 1 reply; 8+ messages in thread
From: Efraim Flashner @ 2015-06-29 17:44 UTC (permalink / raw)
  To: guix-devel


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


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


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

diff --git a/gnu/packages/enlightenment.scm b/gnu/packages/enlightenment.scm
index c13af20..37b64d7 100644
--- a/gnu/packages/enlightenment.scm
+++ b/gnu/packages/enlightenment.scm
@@ -240,15 +240,15 @@ contents and more.")
 (define-public enlightenment
   (package
     (name "enlightenment")
-    (version "0.19.4")
+    (version "0.19.5")
     (source (origin
               (method url-fetch)
               (uri
                (string-append
                 "http://download.enlightenment.org/rel/apps/enlightenment/enlightenment-"
-                version ".tar.gz"))
+                version ".tar.xz"))
               (sha256
-               (base32 "01pg3ng4m3vmwzzivlssdmvhf72bsvcmm3xwf45849cibllaib8v"))))
+               (base32 "0j66x7x76fbgqfw6fi77v8qy50slw3jnsq3vvs82rrfvniabm8wc"))))
     (build-system gnu-build-system)
     (native-inputs
      `(("pkg-config" ,pkg-config)))

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

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

* Re: [PATCH 5/5] gnu: enlightenment: Update to 0.19.5.
  2015-06-29 17:44   ` [PATCH 5/5] gnu: enlightenment: Update to 0.19.5 Efraim Flashner
@ 2015-07-04 15:31     ` Ludovic Courtès
  0 siblings, 0 replies; 8+ messages in thread
From: Ludovic Courtès @ 2015-07-04 15:31 UTC (permalink / raw)
  To: Efraim Flashner; +Cc: guix-devel

Thanks, I’ve applied all 5 patches (I tried Enlightenment with ‘guix
system vm’, and it looks nice.)

Please use ‘git send-email’ in the future (I had to manually apply the
patch and enter the commit message since ‘git am’ would fail to parse
the message.)

Ludo’.

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

end of thread, other threads:[~2015-07-04 15:31 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-06-25 17:57 [PATCH] updating enlightenment packages Efraim Flashner
2015-06-28 20:28 ` Ludovic Courtès
2015-06-29 17:43   ` [PATCH 1/5] gnu: efl: Update to 1.14.2 Efraim Flashner
2015-06-29 17:44   ` [PATCH 2/5] gnu: elementary: " Efraim Flashner
2015-06-29 17:44   ` [PATCH 3/5] gnu: evas-generic-loaders: Update to 1.14.0 Efraim Flashner
2015-06-29 17:44   ` [PATCH 4/5] gnu: emotion-generic-loaders: " Efraim Flashner
2015-06-29 17:44   ` [PATCH 5/5] gnu: enlightenment: Update to 0.19.5 Efraim Flashner
2015-07-04 15:31     ` Ludovic Courtès

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