guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: python-efl: Update to 1.26.0.


From: guix-commits
Subject: branch master updated: gnu: python-efl: Update to 1.26.0.
Date: Tue, 13 Sep 2022 05:06:31 -0400

This is an automated email from the git hooks/post-receive script.

efraim pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new c2f9064f9b gnu: python-efl: Update to 1.26.0.
c2f9064f9b is described below

commit c2f9064f9b65ff71a6c0f19579501ddde03aa902
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Tue Sep 13 12:05:25 2022 +0300

    gnu: python-efl: Update to 1.26.0.
    
    * gnu/packages/enlightenment.scm (python-efl): Update to 1.26.0.
    [inputs]: Add python-packaging.
    [arguments]: Remove trailing #t from phases.
---
 gnu/packages/enlightenment.scm | 15 ++++++---------
 1 file changed, 6 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/enlightenment.scm b/gnu/packages/enlightenment.scm
index eae3f76301..4e3b0e05db 100644
--- a/gnu/packages/enlightenment.scm
+++ b/gnu/packages/enlightenment.scm
@@ -385,7 +385,7 @@ embedded systems.")
 (define-public python-efl
   (package
     (name "python-efl")
-    (version "1.25.0")
+    (version "1.26.0")
     (source
       (origin
         (method url-fetch)
@@ -393,7 +393,7 @@ embedded systems.")
                             "python/python-efl-" version ".tar.xz"))
         (sha256
          (base32
-          "0bk161xwlz4dlv56r68xwkm8snzfifaxd1j7w2wcyyk4fgvnvq4r"))
+          "0dj6f24n33hkpy0bkdclnzpxhvs8vpaxqaf7hkw0di19pjwrq25h"))
         (modules '((guix build utils)))
         ;; Remove files generated by Cython
         (snippet
@@ -404,8 +404,7 @@ embedded systems.")
                           (when (file-exists? generated-file)
                             (delete-file generated-file))))
                       (find-files "efl" "\\.pyx$"))
-            (delete-file "efl/eo/efl.eo_api.h")
-            #t))))
+            (delete-file "efl/eo/efl.eo_api.h")))))
     (build-system python-build-system)
     (arguments
      '(#:phases
@@ -418,20 +417,18 @@ embedded systems.")
           (lambda _
             (setenv "CFLAGS"
                     (string-append "-I" (assoc-ref %build-inputs "python-dbus")
-                                   "/include/dbus-1.0"))
-            #t))
+                                   "/include/dbus-1.0"))))
         (add-before 'check 'set-environment
           (lambda _
             ;; Some tests require write access to HOME.
             (setenv "HOME" "/tmp")
             ;; These tests try to connect to the internet.
             (delete-file "tests/ecore/test_09_file_download.py")
-            (delete-file "tests/ecore/test_11_con.py")
-            #t)))))
+            (delete-file "tests/ecore/test_11_con.py"))))))
     (native-inputs
      (list pkg-config python-cython))
     (inputs
-     (list efl python-dbus))
+     (list efl python-dbus python-packaging))
     (home-page "https://www.enlightenment.org/";)
     (synopsis "Python bindings for EFL")
     (description



reply via email to

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