From: Zheng Junjie <zhengjunjie@iscas.ac.cn>
To: 70395@debbugs.gnu.org
Subject: [bug#70395] [PATCH kde-team 17/63] gnu: Add ksyntaxhighlighting-6.
Date: Mon, 15 Apr 2024 20:46:54 +0800 [thread overview]
Message-ID: <cc26d4b8cea92176aaf10d520c5864ab6263962c.1713184499.git.zhengjunjie@iscas.ac.cn> (raw)
In-Reply-To: <cover.1713184499.git.zhengjunjie@iscas.ac.cn>
* gnu/packages/kde-frameworks.scm (ksyntaxhighlighting-6): New variable.
(ksyntaxhighlighting): Inherit above.
Change-Id: I7c6cfa1f98137a7ee61ea4d7081c9af5da68cbea
---
gnu/packages/kde-frameworks.scm | 57 ++++++++++++++++++++++-----------
1 file changed, 38 insertions(+), 19 deletions(-)
diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 4ac8ffa1c6..bb38fd33ce 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -1343,10 +1343,10 @@ (define-public kplotting
(list extra-cmake-modules qttools-5))
(arguments '())))
-(define-public ksyntaxhighlighting
+(define-public ksyntaxhighlighting-6
(package
(name "ksyntaxhighlighting")
- (version "5.114.0")
+ (version "6.1.0")
(source (origin
(method url-fetch)
(uri (string-append
@@ -1355,27 +1355,25 @@ (define-public ksyntaxhighlighting
"syntax-highlighting-" version ".tar.xz"))
(sha256
(base32
- "1skblg2m0sar63qrgkjsg0w9scixggm5qj7lp4gzjn4hwq6m3n63"))))
+ "1dnacxfrr0llsv2zkn55iywrp3lm8xb7w5fn2pb9fghf5c2ljx0y"))))
(build-system cmake-build-system)
(native-inputs
- (list extra-cmake-modules perl qttools-5
- ;; Optional, for compile-time validation of syntax definition files:
- qtxmlpatterns))
+ (list extra-cmake-modules perl qttools))
(inputs
- (list qtbase-5))
+ (list qtbase qtdeclarative))
(arguments
- `(#:phases
- (modify-phases %standard-phases
- (add-after 'patch-source-shebangs 'unpatch-source-shebang
- (lambda _
- ;; revert the patch-shebang phase on scripts which are
- ;; in fact test data
- (substitute* '("autotests/input/highlight.sh"
- "autotests/folding/highlight.sh.fold")
- (((which "sh")) " /bin/sh")) ;; space in front!
- (substitute* '("autotests/input/highlight.pl"
- "autotests/folding/highlight.pl.fold")
- (((which "perl")) "/usr/bin/perl")))))))
+ (list #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'patch-source-shebangs 'unpatch-source-shebang
+ (lambda _
+ ;; revert the patch-shebang phase on scripts which are
+ ;; in fact test data
+ (substitute* '("autotests/input/highlight.sh"
+ "autotests/folding/highlight.sh.fold")
+ (((which "sh")) " /bin/sh")) ;; space in front!
+ (substitute* '("autotests/input/highlight.pl"
+ "autotests/folding/highlight.pl.fold")
+ (((which "perl")) "/usr/bin/perl")))))))
(home-page "https://community.kde.org/Frameworks")
(synopsis "Syntax highlighting engine for Kate syntax definitions")
(description "This is a stand-alone implementation of the Kate syntax
@@ -1386,6 +1384,27 @@ (define-public ksyntaxhighlighting
(properties `((upstream-name . "syntax-highlighting")))
(license license:lgpl2.1+)))
+(define-public ksyntaxhighlighting
+ (package
+ (inherit ksyntaxhighlighting-6)
+ (name "ksyntaxhighlighting")
+ (version "5.114.0")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://kde/stable/frameworks/"
+ (version-major+minor version) "/"
+ "syntax-highlighting-" version ".tar.xz"))
+ (sha256
+ (base32
+ "1skblg2m0sar63qrgkjsg0w9scixggm5qj7lp4gzjn4hwq6m3n63"))))
+ (native-inputs
+ (list extra-cmake-modules perl qttools-5
+ ;; Optional, for compile-time validation of syntax definition files:
+ qtxmlpatterns))
+ (inputs
+ (list qtbase-5))))
+
(define-public plasma-wayland-protocols
(package
(name "plasma-wayland-protocols")
--
2.41.0
next prev parent reply other threads:[~2024-04-15 12:53 UTC|newest]
Thread overview: 66+ 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 ` [bug#70395] [PATCH kde-team 08/63] gnu: Add kholidays-6 Zheng Junjie
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 ` Zheng Junjie [this message]
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
2024-10-05 17:50 ` bug#70395: [PATCH kde-team 00/63] some kde patch 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
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=cc26d4b8cea92176aaf10d520c5864ab6263962c.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 external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.