diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2022-04-09 17:45:51 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2022-04-09 18:03:04 +0200 |
commit | d1931347cc7edf74cd49387a7b753bd7683a4631 (patch) | |
tree | 8547a56663de3839907a712a44f9d941cb5afe39 /kde-frameworks/syntax-highlighting | |
parent | kde-frameworks/ktexteditor: Drop 5.92.0 (r0) (diff) | |
download | gentoo-d1931347cc7edf74cd49387a7b753bd7683a4631.tar.gz gentoo-d1931347cc7edf74cd49387a7b753bd7683a4631.tar.bz2 gentoo-d1931347cc7edf74cd49387a7b753bd7683a4631.zip |
kde-frameworks/syntax-highlighting: Bash/Zsh: fix expression
...closing parenthesis in regex
Upstream commit fcd703aefdcdaad88b9a82deee0878f5effd025b
KDE-bug: https://bugs.kde.org/show_bug.cgi?id=450478
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-frameworks/syntax-highlighting')
-rw-r--r-- | kde-frameworks/syntax-highlighting/Manifest | 1 | ||||
-rw-r--r-- | kde-frameworks/syntax-highlighting/syntax-highlighting-5.92.0-r1.ebuild | 34 |
2 files changed, 35 insertions, 0 deletions
diff --git a/kde-frameworks/syntax-highlighting/Manifest b/kde-frameworks/syntax-highlighting/Manifest index 3b65988a992a..d7c6c9e11a94 100644 --- a/kde-frameworks/syntax-highlighting/Manifest +++ b/kde-frameworks/syntax-highlighting/Manifest @@ -1,2 +1,3 @@ DIST syntax-highlighting-5.90.0.tar.xz 2392656 BLAKE2B 5e297123f30bcb1a282501fbc13a8cdeb3c58528b1ba0d58838d742339c8786b68d8ccad6753e582335eccb2085e477eaac012bbf80047fbe1a7cef4d9e57ddc SHA512 4a2d4b88fc55963d18d8cf6a6be668256f39c7cd3b74468058e1b21e91a972306ccb8de0bd441bf8f23c926ecdf48af7ea97df79af8076b5a52045b331e8bc03 +DIST syntax-highlighting-5.92.0-fix-bash.patch.xz 3048 BLAKE2B c342f0e01930d9a8577a2d36588deeab767e6730a721e5462af202284ba0d96837479b6e880401749390ecadb877d379c1b1ce38588198178e7e22e2f133ee0d SHA512 9bace711c744c0041fadb3bffc530ff3f8c2d0739792999e0de48b66fd4802943c77b24342489f2db26b0f92f9eafab96edb0170083eb95c7c26e62e2e44beb4 DIST syntax-highlighting-5.92.0.tar.xz 2394744 BLAKE2B b445efecf6c5be17efac2c8247a901f3be1ce576fdb1100fe5da22aceb67ee1161c798de222f08ed611c82a35cba34b6167fd2ad3b150d91a9c46ab8fb299cc1 SHA512 bec8064f041fa6b57e57eb33eeed457ccf4e329f9b9b2ae494e000c26e54d4e966d1368b9772a638e7c8318192e701dfa06f5b3b508e13f32a8ff130582e5d96 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 new file mode 100644 index 000000000000..201b91881c24 --- /dev/null +++ b/kde-frameworks/syntax-highlighting/syntax-highlighting-5.92.0-r1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +ECM_TEST="forceoptional" +QTMIN=5.15.2 +inherit ecm kde.org + +DESCRIPTION="Framework for syntax highlighting" +SRC_URI+=" https://dev.gentoo.org/~asturm/distfiles/${P}-fix-bash.patch.xz" + +LICENSE="MIT" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86" +IUSE="nls" + +DEPEND=" + >=dev-qt/qtdeclarative-${QTMIN}:5 + >=dev-qt/qtgui-${QTMIN}:5 + >=dev-qt/qtnetwork-${QTMIN}:5 + >=dev-qt/qtxmlpatterns-${QTMIN}:5 +" +RDEPEND="${DEPEND}" +BDEPEND=" + dev-lang/perl + nls? ( >=dev-qt/linguist-tools-${QTMIN}:5 ) +" + +PATCHES=( "${WORKDIR}/${P}-fix-bash.patch" ) # KDE-bugs 450478 + +src_install() { + ecm_src_install + dobin "${BUILD_DIR}"/bin/katehighlightingindexer +} |