guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/03: gnu: python-efl: Update to 1.22.0.


From: guix-commits
Subject: 03/03: gnu: python-efl: Update to 1.22.0.
Date: Wed, 8 May 2019 12:55:33 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit e54a6543a09fe785824f7bdf47a6a8a7721190ce
Author: Efraim Flashner <address@hidden>
Date:   Wed May 8 19:45:58 2019 +0300

    gnu: python-efl: Update to 1.22.0.
    
    * gnu/packages/enlightenment.scm (python-efl): Update to 1.22.0.
    [source]: Use https.  Add snippet to remove files generated by cython.
---
 gnu/packages/enlightenment.scm | 16 +++++++++++++---
 1 file changed, 13 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/enlightenment.scm b/gnu/packages/enlightenment.scm
index 419bcbd..7bb358e 100644
--- a/gnu/packages/enlightenment.scm
+++ b/gnu/packages/enlightenment.scm
@@ -350,15 +350,25 @@ embedded systems.")
 (define-public python-efl
   (package
     (name "python-efl")
-    (version "1.21.0")
+    (version "1.22.0")
     (source
       (origin
         (method url-fetch)
-        (uri (string-append "http://download.enlightenment.org/rel/bindings/";
+        (uri (string-append "https://download.enlightenment.org/rel/bindings/";
                             "python/python-efl-" version ".tar.xz"))
         (sha256
          (base32
-          "08x2cv8hnf004c3711250wrax21ffj5y8951pvk77h98als4pq47"))))
+          "1qhy63c3fs2bxkx2np5z14hyxbr12ii030crsjnhpbyw3mic0s63"))
+        (modules '((guix build utils)))
+        ;; Remove files generated by Cython
+        (snippet
+          '(begin
+             (copy-file "efl/dbus_mainloop/e_dbus.c" 
"efl/dbus_mainloop/e_dbus.q")
+             (for-each delete-file (find-files "efl" ".*\\.c$"))
+             (delete-file "efl/eo/efl.eo_api.h")
+             (copy-file "efl/dbus_mainloop/e_dbus.q" 
"efl/dbus_mainloop/e_dbus.c")
+             (delete-file "efl/dbus_mainloop/e_dbus.q")
+             #t))))
     (build-system python-build-system)
     (arguments
      '(#:phases



reply via email to

[Prev in Thread] Current Thread [Next in Thread]