guix-commits
[Top][All Lists]
Advanced

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

01/05: gnu: python-pyqtwebengine: Use 'python-version'.


From: guix-commits
Subject: 01/05: gnu: python-pyqtwebengine: Use 'python-version'.
Date: Sat, 11 Apr 2020 09:53:45 -0400 (EDT)

mbakke pushed a commit to branch master
in repository guix.

commit 67950de7e8a1ef6e142bb1a05cdff9155b85e227
Author: Marius Bakke <address@hidden>
AuthorDate: Sat Apr 11 15:16:46 2020 +0200

    gnu: python-pyqtwebengine: Use 'python-version'.
    
    * gnu/packages/qt.scm (python-pyqtwebengine)[arguments]: Add (guix build
    python-build-system) to #:modules.  Adjust #:imported-modules accordingly.
    Rewrite #:phases to use it instead of rolling their own, or hard-coding.
---
 gnu/packages/qt.scm | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm
index 8696dc4..9c517d0 100644
--- a/gnu/packages/qt.scm
+++ b/gnu/packages/qt.scm
@@ -2040,7 +2040,10 @@ contain over 620 classes.")
        ("qtwebengine" ,qtwebengine)))
     (arguments
      `(#:modules ((srfi srfi-1)
+                  ((guix build python-build-system) #:select (python-version))
                   ,@%gnu-build-system-modules)
+       #:imported-modules ((guix build python-build-system)
+                           ,@%gnu-build-system-modules)
        #:phases
        (modify-phases %standard-phases
          (replace 'configure
@@ -2050,13 +2053,8 @@ contain over 620 classes.")
                     (pyqt-sipdir (string-append
                                   (assoc-ref inputs "python-pyqt") 
"/share/sip"))
                     (python (assoc-ref inputs "python"))
-                    (python-version
-                     (last (string-split python #\-)))
-                    (python-major+minor
-                     (string-join
-                      (take (string-split python-version #\.) 2) "."))
                     (lib (string-append out "/lib/python"
-                                        python-major+minor
+                                        (python-version python)
                                         "/site-packages/PyQt5"))
                     (stubs (string-append lib "/PyQt5")))
 
@@ -2075,7 +2073,9 @@ contain over 620 classes.")
            (lambda* (#:key inputs outputs #:allow-other-keys)
              (let* ((__init__.py (string-append
                                   (assoc-ref outputs "out")
-                                  
"/lib/python3.7/site-packages/PyQt5/__init__.py")))
+                                  "/lib/python"
+                                  (python-version (assoc-ref inputs "python"))
+                                  "/site-packages/PyQt5/__init__.py")))
                (with-output-to-file __init__.py
                  (lambda _ (display "
 from pkgutil import extend_path



reply via email to

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