[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#70395] [PATCH kde-team 36/63] gnu: Add syndication-6.
From: |
Zheng Junjie |
Subject: |
[bug#70395] [PATCH kde-team 36/63] gnu: Add syndication-6. |
Date: |
Mon, 15 Apr 2024 20:47:13 +0800 |
* gnu/packages/kde-frameworks.scm (syndication-6): New variable.
(syndication): Inherit above.
Change-Id: Ic1c97ced5ce2083ba09212787bed59295531ed81
---
gnu/packages/kde-frameworks.scm | 26 ++++++++++++++++++++++----
1 file changed, 22 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 1b1aa1ad7c..089ed0f4c3 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -2940,10 +2940,10 @@ (define-public kunitconversion
(inputs
(list ki18n qtbase-5))))
-(define-public syndication
+(define-public syndication-6
(package
(name "syndication")
- (version "5.114.0")
+ (version "6.1.0")
(source (origin
(method url-fetch)
(uri (string-append
@@ -2952,12 +2952,12 @@ (define-public syndication
name "-" version ".tar.xz"))
(sha256
(base32
- "13rjb1zm9yd8vbm9h7avqih5v0rr2srqwglm29l7mcnankqlh4n7"))))
+ "10wn5z1xqjs9bfy37f6ilr0j3z3rgcs91dp7iccc291h5r53km89"))))
(build-system cmake-build-system)
(native-inputs
(list extra-cmake-modules))
(inputs
- (list kcodecs qtbase-5))
+ (list kcodecs-6 qtbase))
(home-page "https://community.kde.org/Frameworks")
(synopsis "RSS/Atom parser library")
(description "@code{syndication} supports RSS (0.9/1.0, 0.91..2.0) and
@@ -2966,6 +2966,24 @@ (define-public syndication
between feed formats.")
(license license:lgpl2.1+)))
+(define-public syndication
+ (package
+ (inherit syndication-6)
+ (name "syndication")
+ (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
+ "13rjb1zm9yd8vbm9h7avqih5v0rr2srqwglm29l7mcnankqlh4n7"))))
+ (native-inputs
+ (list extra-cmake-modules))
+ (inputs
+ (list kcodecs qtbase-5))))
;; Tier 3
;;
--
2.41.0
- [bug#70395] [PATCH kde-team 42/63] gnu: Add qca-qt6., (continued)
- [bug#70395] [PATCH kde-team 42/63] gnu: Add qca-qt6., Zheng Junjie, 2024/04/15
- [bug#70395] [PATCH kde-team 49/63] gnu: phonon: Enable qt6., Zheng Junjie, 2024/04/15
- [bug#70395] [PATCH kde-team 31/63] gnu: Add kcontacts-6., Zheng Junjie, 2024/04/15
- [bug#70395] [PATCH kde-team 41/63] gnu: qca: Update to 2.3.8., Zheng Junjie, 2024/04/15
- [bug#70395] [PATCH kde-team 29/63] gnu: Add kcolorscheme., Zheng Junjie, 2024/04/15
- [bug#70395] [PATCH kde-team 54/63] gnu: Add kirigami-6., Zheng Junjie, 2024/04/15
- [bug#70395] [PATCH kde-team 39/63] gnu: Add kauth-6., Zheng Junjie, 2024/04/15
- [bug#70395] [PATCH kde-team 15/63] gnu: Add kconfig-6., Zheng Junjie, 2024/04/15
- [bug#70395] [PATCH kde-team 19/63] gnu: Add kcalendarcore-6., Zheng Junjie, 2024/04/15
- [bug#70395] [PATCH kde-team 51/63] gnu: Add ktextwidgets-6., Zheng Junjie, 2024/04/15
- [bug#70395] [PATCH kde-team 36/63] gnu: Add syndication-6.,
Zheng Junjie <=