gnu: qscintilla: Update to 2.10.2.

* gnu/packages/qt.scm (qscintilla, python-qscintilla, python-pyqt+qscintilla):
Update to 2.10.2.
This commit is contained in:
Kei Kebreau 2018-01-23 17:44:53 -05:00
parent f3a13a21e5
commit 0af6ffdd8d
No known key found for this signature in database
GPG Key ID: E6A5EE3C19467A0D

View File

@ -1657,7 +1657,7 @@ contain over 620 classes.")
(define-public qscintilla (define-public qscintilla
(package (package
(name "qscintilla") (name "qscintilla")
(version "2.10.1") (version "2.10.2")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (string-append "mirror://sourceforge/pyqt/QScintilla2/" (uri (string-append "mirror://sourceforge/pyqt/QScintilla2/"
@ -1665,7 +1665,7 @@ contain over 620 classes.")
version ".tar.gz")) version ".tar.gz"))
(sha256 (sha256
(base32 (base32
"0r7s7ndblv3jc0xig1y4l64b6mfr879cdv3zwdndn27rj6fqmycp")))) "1l2ylsv6s3wfhyx7qr5cxgkwwwhvbrpd2k7akgm9bvbyf4h1vcql"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
`(#:phases `(#:phases
@ -1685,7 +1685,7 @@ contain over 620 classes.")
(string-append out "/lib/qt$${QT_MAJOR_VERSION}")) (string-append out "/lib/qt$${QT_MAJOR_VERSION}"))
(("\\$\\$\\[QT_HOST_DATA\\]") (("\\$\\$\\[QT_HOST_DATA\\]")
(string-append out "/lib/qt$${QT_MAJOR_VERSION}"))) (string-append out "/lib/qt$${QT_MAJOR_VERSION}")))
(zero? (system* "qmake")))))))) (invoke "qmake")))))))
(native-inputs `(("qtbase" ,qtbase))) (native-inputs `(("qtbase" ,qtbase)))
(home-page "http://www.riverbankcomputing.co.uk/software/qscintilla/intro") (home-page "http://www.riverbankcomputing.co.uk/software/qscintilla/intro")
(synopsis "Qt port of the Scintilla C++ editor control") (synopsis "Qt port of the Scintilla C++ editor control")
@ -1715,8 +1715,8 @@ indicators, code completion and call tips.")
(replace 'configure (replace 'configure
(lambda* (#:key outputs configure-flags #:allow-other-keys) (lambda* (#:key outputs configure-flags #:allow-other-keys)
(chdir "Python") (chdir "Python")
(and (zero? (apply system* "python3" "configure.py" (and (apply invoke "python3" "configure.py"
configure-flags)) configure-flags)
;; Install to the right directory ;; Install to the right directory
(begin (begin
(substitute* '("Makefile" (substitute* '("Makefile"