unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Zheng Junjie <zhengjunjie@iscas.ac.cn>
To: 70395@debbugs.gnu.org
Subject: [bug#70395] [PATCH kde-team 08/63] gnu: Add kholidays-6.
Date: Mon, 15 Apr 2024 20:46:45 +0800	[thread overview]
Message-ID: <01e9e2994618a601209bb3b0915e76604b166a2b.1713184499.git.zhengjunjie@iscas.ac.cn> (raw)
In-Reply-To: <cover.1713184499.git.zhengjunjie@iscas.ac.cn>

* gnu/packages/kde-frameworks.scm (kholidays-6): New variable.
(kholidays): Inherit above.

Change-Id: Ic96df5ae5b04e6fdb47c9df127e2a3a1cf428d05
---
 gnu/packages/kde-frameworks.scm | 32 ++++++++++++++++++++++++--------
 1 file changed, 24 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 42045389e7..be84a1c7df 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -937,29 +937,45 @@ (define-public kguiaddons
 interfaces in the areas of colors, fonts, text, images, keyboard input.")
     (license (list license:gpl2+ license:lgpl2.1+))))
 
-(define-public kholidays
+(define-public kholidays-6
   (package
     (name "kholidays")
-    (version "5.114.0")
+    (version "6.1.0")
     (source (origin
               (method url-fetch)
               (uri (string-append
                     "mirror://kde/stable/frameworks/"
                     (version-major+minor version) "/"
                     name "-" version ".tar.xz"))
-       (sha256
-        (base32 "19r8dxglz5ll6iyvigsccil3ikvcsnyy5nwcpjvjr1c0brigcjmy"))))
+              (sha256
+               (base32 "02kkp6j7s9qppks9g7akbd1j468pwldvivh235bcsw2pmdciarl3"))))
     (build-system cmake-build-system)
-    (native-inputs
-     (list extra-cmake-modules qttools-5))
-    (inputs
-     (list qtbase-5 qtdeclarative-5))
+    (native-inputs (list extra-cmake-modules qttools))
+    (inputs (list qtbase qtdeclarative))
     (home-page "https://invent.kde.org/frameworks/kholidays")
     (synopsis "Library for regional holiday information")
     (description "This library provides a C++ API that determines holiday and
 other special events for a geographical region.")
     (license license:lgpl2.0+)))
 
+(define-public kholidays
+  (package
+    (inherit kholidays-6)
+    (name "kholidays")
+    (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 "19r8dxglz5ll6iyvigsccil3ikvcsnyy5nwcpjvjr1c0brigcjmy"))))
+    (native-inputs
+     (list extra-cmake-modules qttools-5))
+    (inputs
+     (list qtbase-5 qtdeclarative-5))))
+
 (define-public ki18n
   (package
     (name "ki18n")
-- 
2.41.0





  parent reply	other threads:[~2024-04-15 12:50 UTC|newest]

Thread overview: 65+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-04-15 12:44 [bug#70395] [PATCH kde-team 00/63] some kde patch Zheng Junjie
2024-04-15 12:46 ` [bug#70395] [PATCH kde-team 01/63] gnu: extra-cmake-modules: Update to 6.1.0 Zheng Junjie
2024-04-15 12:46 ` [bug#70395] [PATCH kde-team 02/63] gnu: Add kquickcharts-6 Zheng Junjie
2024-04-15 12:46 ` [bug#70395] [PATCH kde-team 03/63] gnu: Add attica-6 Zheng Junjie
2024-04-15 12:46 ` [bug#70395] [PATCH kde-team 04/63] gnu: Add kcodecs-6 Zheng Junjie
2024-04-15 12:46 ` [bug#70395] [PATCH kde-team 05/63] gnu: Add kcoreaddons-6 Zheng Junjie
2024-04-15 12:46 ` [bug#70395] [PATCH kde-team 06/63] gnu: Add kdbusaddons-6 Zheng Junjie
2024-04-15 12:46 ` [bug#70395] [PATCH kde-team 07/63] gnu: Add kdnssd-6 Zheng Junjie
2024-04-15 12:46 ` Zheng Junjie [this message]
2024-04-15 12:46 ` [bug#70395] [PATCH kde-team 09/63] gnu: Add ki18n-6 Zheng Junjie
2024-04-15 12:46 ` [bug#70395] [PATCH kde-team 10/63] gnu: Add kidletime-6 Zheng Junjie
2024-04-15 12:46 ` [bug#70395] [PATCH kde-team 11/63] gnu: Add kitemviews-6 Zheng Junjie
2024-04-15 12:46 ` [bug#70395] [PATCH kde-team 12/63] gnu: Add kguiaddons-6 Zheng Junjie
2024-04-15 12:46 ` [bug#70395] [PATCH kde-team 13/63] gnu: Add kplotting-6 Zheng Junjie
2024-04-15 12:46 ` [bug#70395] [PATCH kde-team 14/63] gnu: Add kwidgetsaddons-6 Zheng Junjie
2024-04-15 12:46 ` [bug#70395] [PATCH kde-team 15/63] gnu: Add kconfig-6 Zheng Junjie
2024-04-15 12:46 ` [bug#70395] [PATCH kde-team 16/63] gnu: Add kitemmodels-6 Zheng Junjie
2024-04-15 12:46 ` [bug#70395] [PATCH kde-team 17/63] gnu: Add ksyntaxhighlighting-6 Zheng Junjie
2024-04-15 12:46 ` [bug#70395] [PATCH kde-team 18/63] gnu: Add karchive-6 Zheng Junjie
2024-04-15 12:46 ` [bug#70395] [PATCH kde-team 19/63] gnu: Add kcalendarcore-6 Zheng Junjie
2024-04-15 12:46 ` [bug#70395] [PATCH kde-team 20/63] gnu: Add kcompletion-6 Zheng Junjie
2024-04-15 12:46 ` [bug#70395] [PATCH kde-team 21/63] gnu: Add kpty-6 Zheng Junjie
2024-04-15 12:46 ` [bug#70395] [PATCH kde-team 22/63] gnu: Add kwindowsystem-6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 23/63] gnu: Add networkmanager-qt-6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 24/63] gnu: Add oxygen-icons-6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 25/63] gnu: Add prison-6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 26/63] gnu: Add solid-6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 27/63] gnu: Add sonnet-6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 28/63] gnu: Add threadweaver-6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 29/63] gnu: Add kcolorscheme Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 30/63] gnu: Add kdoctools-6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 31/63] gnu: Add kcontacts-6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 32/63] gnu: Add kcrash-6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 33/63] gnu: Add knotifications-6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 34/63] gnu: Add kpackage-6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 35/63] gnu: Add kunitconversion-6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 36/63] gnu: Add syndication-6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 37/63] gnu: polkit-qt: Update to 0.200.0 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 38/63] gnu: Add polkit-qt6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 39/63] gnu: Add kauth-6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 40/63] gnu: Add kjobwidgets-6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 41/63] gnu: qca: Update to 2.3.8 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 42/63] gnu: Add qca-qt6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 43/63] gnu: pulseaudio-qt: Built with qt6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 44/63] gnu: Add kglobalaccel-6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 45/63] gnu: Add kconfigwidgets-6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 46/63] gnu: Add kiconthemes-6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 47/63] gnu: Add kservice-6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 48/63] gnu: phonon: Remove unneed phase Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 49/63] gnu: phonon: Enable qt6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 50/63] gnu: Add kwallet-6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 51/63] gnu: Add ktextwidgets-6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 52/63] gnu: Add kxmlgui-6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 53/63] gnu: qtbase: propagate libxkbcommon Zheng Junjie
2024-04-17 18:01   ` Maxim Cournoyer
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 54/63] gnu: Add kirigami-6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 55/63] gnu: Add qqc2-desktop-style-6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 56/63] gnu: Add modemmanager-qt-6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 57/63] gnu: libavif: Update to 1.0.4 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 58/63] gnu: libraw: Update to 0.21.2 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 59/63] gnu: Add kimageformats-6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 60/63] gnu: Add ksvg Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 61/63] gnu: Add kbookmarks-6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 62/63] gnu: Add kdesu-6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 63/63] gnu: Add kded-6 Zheng Junjie

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=01e9e2994618a601209bb3b0915e76604b166a2b.1713184499.git.zhengjunjie@iscas.ac.cn \
    --to=zhengjunjie@iscas.ac.cn \
    --cc=70395@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).