z572 pushed a commit to branch kde-team
in repository guix.
commit 556a6e7b74944e723a99608b92643108be4211fc
Author: Zheng Junjie <[email protected]>
AuthorDate: Sat Apr 6 23:07:12 2024 +0800
gnu: Add kplotting-6.
* gnu/packages/kde-frameworks.scm (kplotting-6): New variable.
(kplotting): Inherit above.
Change-Id: I07929866d016d160a8cbe2b9ee21e244ca60edba
---
gnu/packages/kde-frameworks.scm | 29 +++++++++++++++++++++++------
1 file changed, 23 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 97220e8706..1b22d95d57 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -1266,10 +1266,10 @@ to flat and hierarchical lists.")
(list extra-cmake-modules qttools-5))
(arguments '())))
-(define-public kplotting
+(define-public kplotting-6
(package
(name "kplotting")
- (version "5.114.0")
+ (version "6.1.0")
(source (origin
(method url-fetch)
(uri (string-append
@@ -1278,12 +1278,11 @@ to flat and hierarchical lists.")
name "-" version ".tar.xz"))
(sha256
(base32
- "17x58pplln0plqiyhjpzdiqxngylxq5gkc5gk7b91xzm783x2k0n"))))
+ "1ymifg5yjjag65pqpwhcr3k5isx5fq6dgqlv9aj840xj4nbk28dv"))))
(build-system qt-build-system)
(native-inputs
- (list extra-cmake-modules qttools-5))
- (inputs
- (list qtbase-5))
+ (list extra-cmake-modules qttools))
+ (arguments (list #:qtbase qtbase))
(home-page "https://community.kde.org/Frameworks")
(synopsis "Data plotting library")
(description "KPlotWidget is a QWidget-derived class that provides a
virtual
@@ -1293,6 +1292,24 @@ data being plotted. KPlotWidget automatically converts
everything to screen
pixel units.")
(license license:lgpl2.1+)))
+(define-public kplotting
+ (package
+ (inherit kplotting-6)
+ (name "kplotting")
+ (version "5.114.0")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://kde/stable/frameworks/"
+ (version-major+minor version) "/"
+ name "-" version ".tar.xz"))
+ (sha256
+ (base32
+ "17x58pplln0plqiyhjpzdiqxngylxq5gkc5gk7b91xzm783x2k0n"))))
+ (native-inputs
+ (list extra-cmake-modules qttools-5))
+ (arguments '())))
+
(define-public ksyntaxhighlighting
(package
(name "ksyntaxhighlighting")