unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* [PATCH 0/3] Add KDevelop.
@ 2016-12-12 19:09 Thomas Danckaert
  2016-12-12 19:09 ` [PATCH 1/3] gnu: libksysguard: Correct inputs Thomas Danckaert
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Thomas Danckaert @ 2016-12-12 19:09 UTC (permalink / raw)
  To: post, guix-devel; +Cc: Thomas Danckaert

This patch series adds a package for the KDevelop IDE.

KDevelop needs some QT_PLUGIN_PATH and QML2_IMPORT_PATH entries.  For now I
used wrap-program for this.  If a user tries to start KDevelop while kdeinit5
is already running without the correct QT_PLUGIN_PATH and QML2_IMPORT_PATH
entries, KDevelop won't work correctly (the solution is to force restart
kdeinit5 with the correct environment).

Best,

Thomas

Thomas Danckaert (3):
  gnu: libksysguard: Correct inputs.
  gnu: Add kdevplatform.
  gnu: Add kdevelop.

 gnu/packages/kde.scm | 174 ++++++++++++++++++++++++++++++++++++++++++++++++---
 1 file changed, 167 insertions(+), 7 deletions(-)

-- 
2.7.4

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [PATCH 1/3] gnu: libksysguard: Correct inputs.
  2016-12-12 19:09 [PATCH 0/3] Add KDevelop Thomas Danckaert
@ 2016-12-12 19:09 ` Thomas Danckaert
  2016-12-15 16:07   ` Ludovic Courtès
  2016-12-12 19:09 ` [PATCH 2/3] gnu: Add kdevplatform Thomas Danckaert
  2016-12-12 19:09 ` [PATCH 3/3] gnu: Add kdevelop Thomas Danckaert
  2 siblings, 1 reply; 7+ messages in thread
From: Thomas Danckaert @ 2016-12-12 19:09 UTC (permalink / raw)
  To: post, guix-devel; +Cc: Thomas Danckaert

* gnu/packages/kde.scm (libksysguard)[inputs]: Remove kdbusaddons,
  kdoctools, kinit, knewstruff, knotifications, kio; add kauth,
  kcompletion, kconfig, kcoreaddons, kwidgetsaddons.
---
 gnu/packages/kde.scm | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/kde.scm b/gnu/packages/kde.scm
index 9099c5f..55386f0 100644
--- a/gnu/packages/kde.scm
+++ b/gnu/packages/kde.scm
@@ -105,14 +105,13 @@ used in KDE development tools Kompare and KDevelop.")
     (inputs
      `(("kconfigwidgets" ,kconfigwidgets)
        ("kiconthemes" ,kiconthemes)
-       ("kdbusaddons" ,kdbusaddons)
-       ("kdoctools" ,kdoctools)
-       ("kinit" ,kinit)
-       ("knewstuff" ,knewstuff)
-       ("knotifications" ,knotifications)
        ("kwindowsystem" ,kwindowsystem)
-       ("kio" ,kio)
        ("ki18n" ,ki18n)
+       ("kauth" ,kauth)
+       ("kcompletion" ,kcompletion)
+       ("kconfig" ,kconfig)
+       ("kcoreaddons" ,kcoreaddons)
+       ("kwidgetsaddons" ,kwidgetsaddons)
        ("kservice" ,kservice)
        ("qtbase" ,qtbase)
        ("qtscript" ,qtscript)
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [PATCH 2/3] gnu: Add kdevplatform.
  2016-12-12 19:09 [PATCH 0/3] Add KDevelop Thomas Danckaert
  2016-12-12 19:09 ` [PATCH 1/3] gnu: libksysguard: Correct inputs Thomas Danckaert
@ 2016-12-12 19:09 ` Thomas Danckaert
  2016-12-15 16:09   ` Ludovic Courtès
  2016-12-12 19:09 ` [PATCH 3/3] gnu: Add kdevelop Thomas Danckaert
  2 siblings, 1 reply; 7+ messages in thread
From: Thomas Danckaert @ 2016-12-12 19:09 UTC (permalink / raw)
  To: post, guix-devel; +Cc: Thomas Danckaert

* gnu/packages/kde.scm (kdevplatform): New variable.
---
 gnu/packages/kde.scm | 77 +++++++++++++++++++++++++++++++++++++++++++++++++++-
 1 file changed, 76 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/kde.scm b/gnu/packages/kde.scm
index 55386f0..95b2150 100644
--- a/gnu/packages/kde.scm
+++ b/gnu/packages/kde.scm
@@ -23,12 +23,15 @@
   #:use-module ((guix licenses) #:prefix license:)
   #:use-module (guix packages)
   #:use-module (guix utils)
+  #:use-module (gnu packages apr)
+  #:use-module (gnu packages boost)
   #:use-module (gnu packages compression)
   #:use-module (gnu packages documentation)
   #:use-module (gnu packages kde-frameworks)
   #:use-module (gnu packages pkg-config)
   #:use-module (gnu packages tls)
-  #:use-module (gnu packages qt))
+  #:use-module (gnu packages qt)
+  #:use-module (gnu packages version-control))
 
 (define-public kdevelop-pg-qt
   (package
@@ -53,6 +56,78 @@
 for some KDevelop language plugins (Ruby, PHP, CSS...).")
     (license license:lgpl2.0+)))
 
+(define-public kdevplatform
+  (package
+    (name "kdevplatform")
+    (version "5.0.2")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (string-append "https://github.com/KDE/kdevplatform/archive/v" version ".tar.gz"))
+        (sha256
+         (base32
+          "1m8c0ixv91diyy9bvq53d4jik4zrnf7bix7clad4ywxnlpcs4ahr"))))
+    (build-system cmake-build-system)
+    (native-inputs
+     `(("extra-cmake-modules" ,extra-cmake-modules)
+       ("pkg-config" ,pkg-config)))
+    (inputs
+     `(("apr" ,apr)
+       ("apr-util" ,apr-util)
+       ("boost" ,boost)
+       ("karchive" ,karchive)
+       ("kconfigwidgets" ,kconfigwidgets)
+       ("kcmutils" ,kcmutils)
+       ("kiconthemes" ,kiconthemes)
+       ("kdeclarative" ,kdeclarative)
+       ("kdoctools" ,kdoctools)
+       ("kguiaddons" ,kguiaddons)
+       ("kinit" ,kinit)
+       ("kitemmodels" ,kitemmodels)
+       ("knewstuff" ,knewstuff)
+       ("knotifications" ,knotifications)
+       ("knotifyconfig" ,knotifyconfig)
+       ("kwindowsystem" ,kwindowsystem)
+       ("kio" ,kio)
+       ("ki18n" ,ki18n)
+       ("kparts" ,kparts)
+       ("kservice" ,kservice)
+       ("grantlee" ,grantlee)
+       ("libkomparediff2" ,libkomparediff2)
+       ("sonnet" ,sonnet)
+       ("threadweaver" ,threadweaver)
+       ("ktexteditor" ,ktexteditor)
+       ("qtbase" ,qtbase)
+       ("qtdeclarative" ,qtdeclarative)
+       ("qtscript" ,qtscript)
+       ("qtwebkit" ,qtwebkit)
+       ("qtx11extras" ,qtx11extras)
+       ("plasma" ,plasma-framework)
+       ("subversion" ,subversion)
+       ("zlib" ,zlib)))
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         (delete 'check)
+         (add-after 'install 'check ;; add-after 'install
+                    (lambda* (#:key outputs #:allow-other-keys)
+                      (let ((out (assoc-ref outputs "out")))
+                        (setenv "CTEST_OUTPUT_ON_FAILURE" "1")
+                        (setenv "QT_PLUGIN_PATH"
+                                (string-append out "/lib/plugins:"
+                                               (getenv "QT_PLUGIN_PATH")))
+                        (setenv "XDG_DATA_DIRS"
+                                (string-append out "/share:"
+                                               (getenv "XDG_DATA_DIRS")))
+                        (zero?
+                         (system* "ctest" "-R" ;; almost all tests require a display
+                                  "filteringstrategy|kdevvarlengtharray|kdevhash"))))))))
+    (home-page "https://github.com/KDE/kdevplatform")
+    (synopsis "Framework to build IDE-like applications, such as KDevelop.")
+    (description "KDevPlatform is the basis of KDevelop and contains some
+plugins, as well as code to create plugins, or complete applications.")
+    (license license:gpl3+)))
+
 (define-public libkomparediff2
   (package
     (name "libkomparediff2")
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [PATCH 3/3] gnu: Add kdevelop.
  2016-12-12 19:09 [PATCH 0/3] Add KDevelop Thomas Danckaert
  2016-12-12 19:09 ` [PATCH 1/3] gnu: libksysguard: Correct inputs Thomas Danckaert
  2016-12-12 19:09 ` [PATCH 2/3] gnu: Add kdevplatform Thomas Danckaert
@ 2016-12-12 19:09 ` Thomas Danckaert
  2016-12-15 16:12   ` Ludovic Courtès
  2 siblings, 1 reply; 7+ messages in thread
From: Thomas Danckaert @ 2016-12-12 19:09 UTC (permalink / raw)
  To: post, guix-devel; +Cc: Thomas Danckaert

* gnu/packages/kde.scm (kdevelop): New variable.
---
 gnu/packages/kde.scm | 86 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 86 insertions(+)

diff --git a/gnu/packages/kde.scm b/gnu/packages/kde.scm
index 95b2150..4332137 100644
--- a/gnu/packages/kde.scm
+++ b/gnu/packages/kde.scm
@@ -27,12 +27,98 @@
   #:use-module (gnu packages boost)
   #:use-module (gnu packages compression)
   #:use-module (gnu packages documentation)
+  #:use-module (gnu packages gl)
+  #:use-module (gnu packages gnome)
   #:use-module (gnu packages kde-frameworks)
+  #:use-module (gnu packages llvm)
   #:use-module (gnu packages pkg-config)
   #:use-module (gnu packages tls)
   #:use-module (gnu packages qt)
   #:use-module (gnu packages version-control))
 
+(define-public kdevelop
+  (package
+    (name "kdevelop")
+    (version "5.0.2")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (string-append "mirror://kde/stable/kdevelop"
+                            "/" version "/src/kdevelop-"
+                            version ".tar.xz"))
+        (sha256
+         (base32
+          "0rl6csmzf14gf0r0mk7z2lj7cq8fggf5qmlbxq6j68vp2q0pj0cv"))))
+    (build-system cmake-build-system)
+    (native-inputs
+     `(("extra-cmake-modules" ,extra-cmake-modules)
+       ("pkg-config" ,pkg-config)))
+    (inputs
+     `(("kdevplatform" ,kdevplatform)
+       ("kdevelop-pg-qt" ,kdevelop-pg-qt)
+       ("qtbase" ,qtbase)
+       ("qtdeclarative" ,qtdeclarative)
+       ("qtquickcontrols" ,qtquickcontrols)
+       ("qttools" ,qttools)
+       ("qtwebkit" ,qtwebkit)
+       ("karchive" ,karchive)
+       ("kcmutils" ,kcmutils)
+       ("kconfig" ,kconfig)
+       ("kdeclarative" ,kdeclarative)
+       ("kdoctools" ,kdoctools)
+       ("kguiaddons" ,kguiaddons)
+       ("ki18n" ,ki18n)
+       ("kio" ,kio)
+       ("kiconthemes" ,kiconthemes)
+       ("kitemmodels" ,kitemmodels)
+       ("kitemviews" ,kitemviews)
+       ("kjobwidgets" ,kjobwidgets)
+       ("knotifyconfig" ,knotifyconfig)
+       ("knotifications" ,knotifications)
+       ("kparts" ,kparts)
+       ("kcrash" ,kcrash)
+       ("knewstuff" ,knewstuff)
+       ("krunner" ,krunner)
+       ("kxmlgui" ,kxmlgui)
+       ("libksysguard" ,libksysguard)
+       ("threadweaver" ,threadweaver)
+       ("ktexteditor" ,ktexteditor)
+       ("kwindowsystem" ,kwindowsystem)
+       ("plasma" ,plasma-framework)
+       ("grantlee" ,grantlee)
+       ("libepoxy" ,libepoxy)
+       ("clang" ,clang)
+       ("shared-mime-info" ,shared-mime-info)))
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         (delete 'check) ;; there are some issues with the test suite
+         (add-after 'install 'wrap-executable
+           (lambda* (#:key inputs outputs #:allow-other-keys)
+             (let* ((out  (assoc-ref outputs "out"))
+                    (kdevplatform (assoc-ref inputs "kdevplatform"))
+                    (kio (assoc-ref inputs "kio"))
+                    (qtquickcontrols (assoc-ref inputs "qtquickcontrols"))
+                    (qtdeclarative (assoc-ref inputs "qtdeclarative"))
+                    (plugins "/lib/plugins")
+                    (qml "/qml"))
+               (wrap-program (string-append out "/bin/kdevelop")
+                 `("QT_PLUGIN_PATH" ":" prefix
+                   (,(string-append out plugins)
+                    ,(string-append kdevplatform plugins)
+                    ,(string-append kio plugins)))
+                 `("QML2_IMPORT_PATH" ":" prefix
+                   (,(string-append qtquickcontrols qml)
+                    ,(string-append qtdeclarative qml))))))))))
+    (home-page "https://kdevelop.org")
+    (synopsis "IDE for C, C++, Python, Javascript and PHP")
+    (description "The KDevelop IDE provides semantic syntax highlighting, as
+well as code navigation and completion for C, C++ (using Clang/LLVM), QML,
+JavaScript, Python and PHP.  It also integrates with a debugger, different
+build systems (CMake, QMake, custom Makefiles) and version control
+software (Git, Subversion, Mercurial, CVS and Bazaar).")
+    (license license:lgpl2.1+)))
+
 (define-public kdevelop-pg-qt
   (package
     (name "kdevelop-pg-qt")
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [PATCH 1/3] gnu: libksysguard: Correct inputs.
  2016-12-12 19:09 ` [PATCH 1/3] gnu: libksysguard: Correct inputs Thomas Danckaert
@ 2016-12-15 16:07   ` Ludovic Courtès
  0 siblings, 0 replies; 7+ messages in thread
From: Ludovic Courtès @ 2016-12-15 16:07 UTC (permalink / raw)
  To: Thomas Danckaert; +Cc: guix-devel, post

Thomas Danckaert <thomas.danckaert@gmail.com> skribis:

> * gnu/packages/kde.scm (libksysguard)[inputs]: Remove kdbusaddons,
>   kdoctools, kinit, knewstruff, knotifications, kio; add kauth,
>   kcompletion, kconfig, kcoreaddons, kwidgetsaddons.

Applied!

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH 2/3] gnu: Add kdevplatform.
  2016-12-12 19:09 ` [PATCH 2/3] gnu: Add kdevplatform Thomas Danckaert
@ 2016-12-15 16:09   ` Ludovic Courtès
  0 siblings, 0 replies; 7+ messages in thread
From: Ludovic Courtès @ 2016-12-15 16:09 UTC (permalink / raw)
  To: Thomas Danckaert; +Cc: guix-devel, post

Thomas Danckaert <thomas.danckaert@gmail.com> skribis:

> * gnu/packages/kde.scm (kdevplatform): New variable.

Applied with changes to placate ‘guix lint’ (period at the end of
synopsis, wrong source file name.)

Thanks!

Ludo’.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH 3/3] gnu: Add kdevelop.
  2016-12-12 19:09 ` [PATCH 3/3] gnu: Add kdevelop Thomas Danckaert
@ 2016-12-15 16:12   ` Ludovic Courtès
  0 siblings, 0 replies; 7+ messages in thread
From: Ludovic Courtès @ 2016-12-15 16:12 UTC (permalink / raw)
  To: Thomas Danckaert; +Cc: guix-devel, post

Thomas Danckaert <thomas.danckaert@gmail.com> skribis:

> * gnu/packages/kde.scm (kdevelop): New variable.

Applied with qttools as a native input to make ‘guix lint’ happy.

Thank you!

Ludo’.

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2016-12-15 16:12 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-12-12 19:09 [PATCH 0/3] Add KDevelop Thomas Danckaert
2016-12-12 19:09 ` [PATCH 1/3] gnu: libksysguard: Correct inputs Thomas Danckaert
2016-12-15 16:07   ` Ludovic Courtès
2016-12-12 19:09 ` [PATCH 2/3] gnu: Add kdevplatform Thomas Danckaert
2016-12-15 16:09   ` Ludovic Courtès
2016-12-12 19:09 ` [PATCH 3/3] gnu: Add kdevelop Thomas Danckaert
2016-12-15 16:12   ` Ludovic Courtès

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).