Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: kde-frameworks/syntax-highlighting/
Date: Sat, 09 Apr 2022 16:07:48
Message-Id: 1649520184.d1931347cc7edf74cd49387a7b753bd7683a4631.asturm@gentoo
1 commit: d1931347cc7edf74cd49387a7b753bd7683a4631
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 9 15:45:51 2022 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 9 16:03:04 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1931347
7
8 kde-frameworks/syntax-highlighting: Bash/Zsh: fix expression
9
10 ...closing parenthesis in regex
11
12 Upstream commit fcd703aefdcdaad88b9a82deee0878f5effd025b
13 KDE-bug: https://bugs.kde.org/show_bug.cgi?id=450478
14
15 Package-Manager: Portage-3.0.30, Repoman-3.0.3
16 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
17
18 kde-frameworks/syntax-highlighting/Manifest | 1 +
19 .../syntax-highlighting-5.92.0-r1.ebuild | 34 ++++++++++++++++++++++
20 2 files changed, 35 insertions(+)
21
22 diff --git a/kde-frameworks/syntax-highlighting/Manifest b/kde-frameworks/syntax-highlighting/Manifest
23 index 3b65988a992a..d7c6c9e11a94 100644
24 --- a/kde-frameworks/syntax-highlighting/Manifest
25 +++ b/kde-frameworks/syntax-highlighting/Manifest
26 @@ -1,2 +1,3 @@
27 DIST syntax-highlighting-5.90.0.tar.xz 2392656 BLAKE2B 5e297123f30bcb1a282501fbc13a8cdeb3c58528b1ba0d58838d742339c8786b68d8ccad6753e582335eccb2085e477eaac012bbf80047fbe1a7cef4d9e57ddc SHA512 4a2d4b88fc55963d18d8cf6a6be668256f39c7cd3b74468058e1b21e91a972306ccb8de0bd441bf8f23c926ecdf48af7ea97df79af8076b5a52045b331e8bc03
28 +DIST syntax-highlighting-5.92.0-fix-bash.patch.xz 3048 BLAKE2B c342f0e01930d9a8577a2d36588deeab767e6730a721e5462af202284ba0d96837479b6e880401749390ecadb877d379c1b1ce38588198178e7e22e2f133ee0d SHA512 9bace711c744c0041fadb3bffc530ff3f8c2d0739792999e0de48b66fd4802943c77b24342489f2db26b0f92f9eafab96edb0170083eb95c7c26e62e2e44beb4
29 DIST syntax-highlighting-5.92.0.tar.xz 2394744 BLAKE2B b445efecf6c5be17efac2c8247a901f3be1ce576fdb1100fe5da22aceb67ee1161c798de222f08ed611c82a35cba34b6167fd2ad3b150d91a9c46ab8fb299cc1 SHA512 bec8064f041fa6b57e57eb33eeed457ccf4e329f9b9b2ae494e000c26e54d4e966d1368b9772a638e7c8318192e701dfa06f5b3b508e13f32a8ff130582e5d96
30
31 diff --git a/kde-frameworks/syntax-highlighting/syntax-highlighting-5.92.0-r1.ebuild b/kde-frameworks/syntax-highlighting/syntax-highlighting-5.92.0-r1.ebuild
32 new file mode 100644
33 index 000000000000..201b91881c24
34 --- /dev/null
35 +++ b/kde-frameworks/syntax-highlighting/syntax-highlighting-5.92.0-r1.ebuild
36 @@ -0,0 +1,34 @@
37 +# Copyright 1999-2022 Gentoo Authors
38 +# Distributed under the terms of the GNU General Public License v2
39 +
40 +EAPI=8
41 +
42 +ECM_TEST="forceoptional"
43 +QTMIN=5.15.2
44 +inherit ecm kde.org
45 +
46 +DESCRIPTION="Framework for syntax highlighting"
47 +SRC_URI+=" https://dev.gentoo.org/~asturm/distfiles/${P}-fix-bash.patch.xz"
48 +
49 +LICENSE="MIT"
50 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
51 +IUSE="nls"
52 +
53 +DEPEND="
54 + >=dev-qt/qtdeclarative-${QTMIN}:5
55 + >=dev-qt/qtgui-${QTMIN}:5
56 + >=dev-qt/qtnetwork-${QTMIN}:5
57 + >=dev-qt/qtxmlpatterns-${QTMIN}:5
58 +"
59 +RDEPEND="${DEPEND}"
60 +BDEPEND="
61 + dev-lang/perl
62 + nls? ( >=dev-qt/linguist-tools-${QTMIN}:5 )
63 +"
64 +
65 +PATCHES=( "${WORKDIR}/${P}-fix-bash.patch" ) # KDE-bugs 450478
66 +
67 +src_install() {
68 + ecm_src_install
69 + dobin "${BUILD_DIR}"/bin/katehighlightingindexer
70 +}