emacs-bug-tracker
[Top][All Lists]
Advanced

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

[debbugs-tracker] bug#27755: closed ([PATCH 1/4] gnu: Add qscintilla.)


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#27755: closed ([PATCH 1/4] gnu: Add qscintilla.)
Date: Sat, 22 Jul 2017 21:51:01 +0000

Your message dated Sat, 22 Jul 2017 23:50:17 +0200
with message-id <address@hidden>
and subject line Re: [PATCH 4/4] gnu: Add openmolar.
has caused the debbugs.gnu.org bug report #27755,
regarding [PATCH 1/4] gnu: Add qscintilla.
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
27755: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=27755
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH 1/4] gnu: Add qscintilla. Date: Tue, 18 Jul 2017 16:36:42 +0200
* gnu/packages/qt.scm (qscintilla): New variable.

Co-authored-by: Quiliro <address@hidden>
---
 gnu/packages/qt.scm | 41 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 41 insertions(+)

diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm
index 65067efe7..5e5e5cdb3 100644
--- a/gnu/packages/qt.scm
+++ b/gnu/packages/qt.scm
@@ -5,6 +5,8 @@
 ;;; Copyright © 2015, 2016, 2017 Efraim Flashner <address@hidden>
 ;;; Copyright © 2016, 2017 ng0 <address@hidden>
 ;;; Copyright © 2016 Thomas Danckaert <address@hidden>
+;;; Copyright © 2017 Ricardo Wurmus <address@hidden>
+;;; Copyright © 2017 Quiliro <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -1374,6 +1376,45 @@ contain over 620 classes.")
            (inputs
             `(("python" ,python-2)))))
 
+(define-public qscintilla
+  (package
+    (name "qscintilla")
+    (version "2.10.1")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "mirror://sourceforge/pyqt/QScintilla2/"
+                                  "QScintilla-" version "/QScintilla_gpl-"
+                                  version ".tar.gz"))
+              (sha256
+               (base32
+                "0r7s7ndblv3jc0xig1y4l64b6mfr879cdv3zwdndn27rj6fqmycp"))))
+    (build-system gnu-build-system)
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         (replace 'configure
+           (lambda* (#:key outputs #:allow-other-keys)
+             (let ((out (assoc-ref outputs "out")))
+               (chdir "Qt4Qt5")
+               (substitute* "qscintilla.pro"
+                 (("\\$\\$\\[QT_INSTALL_LIBS\\]")
+                  (string-append out "/lib"))
+                 (("\\$\\$\\[QT_INSTALL_HEADERS\\]")
+                  (string-append out "/include"))
+                 (("\\$\\$\\[QT_INSTALL_TRANSLATIONS\\]")
+                  (string-append out "/translations"))
+                 (("\\$\\$\\[QT_INSTALL_DATA\\]") out)
+                 (("\\$\\$\\[QT_HOST_DATA\\]") out))
+               (zero? (system* "qmake"))))))))
+    (native-inputs `(("qtbase" ,qtbase)))
+    (home-page "http://www.riverbankcomputing.co.uk/software/qscintilla/intro";)
+    (synopsis "Qt port of the Scintilla C++ editor control")
+    (description "QScintilla is a port to Qt of Neil Hodgson's Scintilla C++
+editor control.  QScintilla includes features especially useful when editing
+and debugging source code.  These include support for syntax styling, error
+indicators, code completion and call tips.")
+    (license license:gpl3+)))
+
 (define-public qtkeychain
   (package
     (name "qtkeychain")
-- 
2.13.0





--- End Message ---
--- Begin Message --- Subject: Re: [PATCH 4/4] gnu: Add openmolar. Date: Sat, 22 Jul 2017 23:50:17 +0200 User-agent: mu4e 0.9.18; emacs 25.2.1
I’ve just pushed these four patches to master (commit a68a83f01).
Closing this bug.

Thank you, Quiliro, for your patience and congratulations on getting
your first few packages into Guix!

--
Ricardo

GPG: BCA6 89B6 3655 3801 C3C6  2150 197A 5888 235F ACAC
https://elephly.net



--- End Message ---

reply via email to

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