diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2018-07-04 16:04:56 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2018-07-11 11:08:48 +0300 |
commit | e3232b2627644734deb26f51eaeaee8e185cc919 (patch) | |
tree | ae5474ed786003a2648f7f575855fe75ae5049a9 /gnu/packages/qt.scm | |
parent | f79c7e9747d941a5baa7ef3d881ad1a48eca6c1a (diff) | |
download | patches-e3232b2627644734deb26f51eaeaee8e185cc919.tar patches-e3232b2627644734deb26f51eaeaee8e185cc919.tar.gz |
gnu: python-sip: Update to 4.19.11.
* gnu/packages/qt.scm (python-sip): Update to 4.19.11.
[arguments]: Substitute INVOKE for SYSTEM*. Add flag to build private
sip module PyQt5.sip.
Diffstat (limited to 'gnu/packages/qt.scm')
-rw-r--r-- | gnu/packages/qt.scm | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm index 000c5fb02f..47e07912e4 100644 --- a/gnu/packages/qt.scm +++ b/gnu/packages/qt.scm @@ -1597,7 +1597,7 @@ message."))) (define-public python-sip (package (name "python-sip") - (version "4.19.8") + (version "4.19.11") (source (origin (method url-fetch) @@ -1606,7 +1606,7 @@ message."))) "sip-" version "/sip-" version ".tar.gz")) (sha256 (base32 - "1g4pq9vj753r2s061jc4y9ydzgb48ibhc9bdvmb8mlyllwp7mbvy")))) + "1q2rirsh4616r20kw7csagzcnwahiqsr2r9q0ycnd58fa569pm36")))) (build-system gnu-build-system) (native-inputs `(("python" ,python-wrapper))) @@ -1631,11 +1631,11 @@ message."))) (lib (string-append out "/lib/python" python-major+minor "/site-packages"))) - (zero? - (system* "python" "configure.py" - "--bindir" bin - "--destdir" lib - "--incdir" include)))))))) + (invoke "python" "configure.py" + "--sip-module" "PyQt5.sip" ; for python-pyqt + "--bindir" bin + "--destdir" lib + "--incdir" include))))))) (home-page "https://www.riverbankcomputing.com/software/sip/intro") (synopsis "Python binding creator for C and C++ libraries") (description |