guix-commits
[Top][All Lists]
Advanced

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

02/02: gnu: python-notmuch2: Use new style.


From: guix-commits
Subject: 02/02: gnu: python-notmuch2: Use new style.
Date: Wed, 23 Mar 2022 16:14:53 -0400 (EDT)

lilyp pushed a commit to branch master
in repository guix.

commit 7258c90572588341abc22b4edabd2dbf33a6f718
Author: Liliana Marie Prikler <liliana.prikler@gmail.com>
AuthorDate: Wed Mar 23 21:12:38 2022 +0100

    gnu: python-notmuch2: Use new style.
    
    * gnu/packages/mail.scm (python-notmuch2)[version]: Explicitly inherit from
    notmuch.
    [arguments]: Use list of G-Expressions.
---
 gnu/packages/mail.scm | 54 ++++++++++++++++++++++++++-------------------------
 1 file changed, 28 insertions(+), 26 deletions(-)

diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm
index 6380412330..ee5e576a18 100644
--- a/gnu/packages/mail.scm
+++ b/gnu/packages/mail.scm
@@ -1486,34 +1486,36 @@ and search library.")
   (package
     (inherit python-notmuch)
     (name "python-notmuch2")
+    (version (package-version notmuch))
     (propagated-inputs (list python-cffi))
     (arguments
-     `(#:phases
-       (modify-phases %standard-phases
-         ;; This python package lives in a subdirectory of the notmuch source
-         ;; tree, so chdir into it before building.
-         (add-after 'unpack 'enter-python-dir
-           (lambda _ (chdir "bindings/python-cffi")))
-         ;; python-build-system does not invoke the configure script
-         ;; so _notmuch_config.py is missing
-         (add-after 'enter-python-dir 'create-notmuch-config
-           (lambda* (#:key inputs #:allow-other-keys)
-             (with-output-to-file "_notmuch_config.py"
-               (lambda _
-                 (display
-                  (string-append
-                   "NOTMUCH_INCLUDE_DIR="
-                   "'" (dirname (search-input-file inputs 
"include/notmuch.h")) "'\n"
-                   "NOTMUCH_LIB_DIR="
-                   "'" (dirname (search-input-file inputs 
"lib/libnotmuch.so")) "'"))))))
-         ;; version.txt is not included in notmuch, so we patch in the version 
number
-         (add-after 'create-notmuch-config 'patch-setup.py
-           (lambda _
-             (substitute* "setup.py"
-               (("NOTMUCH_VERSION_FILE")
-                "'/dev/null'")
-               (("version=VERSION,")
-                (string-append "version='" ,(package-version this-package) 
"',"))))))))
+     (list
+      #:phases
+      #~(modify-phases %standard-phases
+          ;; This python package lives in a subdirectory of the notmuch source
+          ;; tree, so chdir into it before building.
+          (add-after 'unpack 'enter-python-dir
+            (lambda _ (chdir "bindings/python-cffi")))
+          ;; python-build-system does not invoke the configure script
+          ;; so _notmuch_config.py is missing
+          (add-after 'enter-python-dir 'create-notmuch-config
+            (lambda* (#:key inputs #:allow-other-keys)
+              (with-output-to-file "_notmuch_config.py"
+                (lambda _
+                  (display
+                   (string-append
+                    "NOTMUCH_INCLUDE_DIR="
+                    "'" (dirname (search-input-file inputs 
"include/notmuch.h")) "'\n"
+                    "NOTMUCH_LIB_DIR="
+                    "'" (dirname (search-input-file inputs 
"lib/libnotmuch.so")) "'"))))))
+          ;; version.txt is not included in notmuch, so we patch in the 
version number
+          (add-after 'create-notmuch-config 'patch-setup.py
+            (lambda _
+              (substitute* "setup.py"
+                (("NOTMUCH_VERSION_FILE")
+                 "'/dev/null'")
+                (("version=VERSION,")
+                 (string-append "version='" #$version "',"))))))))
     (synopsis "Pythonic bindings for the notmuch mail database using CFFI")
     (license license:gpl3+)))
 



reply via email to

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