forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
kde-frameworks/ktexteditor: 5.70.1 version bump
See also: https://mail.kde.org/pipermail/release-team/2020-May/011888.html KDE-Bug: https://bugs.kde.org/show_bug.cgi?id=421375 Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Andreas Sturmlechner <[email protected]>
- Loading branch information
Showing
2 changed files
with
60 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
DIST ktexteditor-5.67.0.tar.xz 2332752 BLAKE2B 81914ea853b8b9eab0b4a453fe9e4a56b2df4f076399f68a14a27137bd6143c710d70ea3c8d5863459f9ff462833ad8e4c54c5abfd9f561da8c732578ea8ad05 SHA512 8a485d0e9c78b090285c1ed447cef859dd717097ecaad4a002f08933e3536664cdec2eac21a9968195da08369398b84ce77db49e5762b1900b219902b13a28b0 | ||
DIST ktexteditor-5.70.0.tar.xz 2345148 BLAKE2B f9f4259f86798287860efd404fa2d236bd6599ab1a94b24fcd8655f5e6dbcfb6ba3b49f021761f6f14c720bbfe0873b3f199e59a7a1e2078819d8df9240a48b0 SHA512 5afef03b3d490bcfa1b3ba0ddbddad86959431ab8bb7595c77b4331c4f3981ae4425fecab4a864252c3cf29c7e20f34fa3d3a5a2ed1c6b1bb3e015d59c59031b | ||
DIST ktexteditor-5.70.1.tar.xz 2345148 BLAKE2B 079985f3cf2f8c68185aa3c89ff18fb0cdc2b8ab38815de6feff83824b74f312d96ed110e41ee360b80d64191db1422f0f1e4a5b002a1457ecd320d20f25b98d SHA512 6bc47ed6d0c10c52bacb3f183a2a724dfa9d9b3fdb6545469bf8f3e0ec710eff611f657301805efaeb202dbce3ad0c2360a095d41546e7300aa6811dcd4ff193 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
# Copyright 1999-2020 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=7 | ||
|
||
PVCUT=$(ver_cut 1-2) | ||
QTMIN=5.12.3 | ||
VIRTUALX_REQUIRED="test" | ||
inherit ecm kde.org | ||
|
||
DESCRIPTION="Framework providing a full text editor component" | ||
|
||
LICENSE="LGPL-2+" | ||
KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" | ||
IUSE="editorconfig git" | ||
|
||
BDEPEND=" | ||
test? ( >=kde-frameworks/kservice-${PVCUT}:5 ) | ||
" | ||
DEPEND=" | ||
>=dev-qt/qtdeclarative-${QTMIN}:5 | ||
>=dev-qt/qtgui-${QTMIN}:5 | ||
>=dev-qt/qtprintsupport-${QTMIN}:5 | ||
>=dev-qt/qtwidgets-${QTMIN}:5 | ||
>=dev-qt/qtxml-${QTMIN}:5 | ||
=kde-frameworks/karchive-${PVCUT}*:5 | ||
=kde-frameworks/kauth-${PVCUT}*:5 | ||
=kde-frameworks/kcodecs-${PVCUT}*:5 | ||
=kde-frameworks/kcompletion-${PVCUT}*:5 | ||
=kde-frameworks/kconfig-${PVCUT}*:5 | ||
=kde-frameworks/kconfigwidgets-${PVCUT}*:5 | ||
=kde-frameworks/kcoreaddons-${PVCUT}*:5 | ||
=kde-frameworks/kguiaddons-${PVCUT}*:5 | ||
=kde-frameworks/ki18n-${PVCUT}*:5 | ||
=kde-frameworks/kiconthemes-${PVCUT}*:5 | ||
=kde-frameworks/kio-${PVCUT}*:5 | ||
=kde-frameworks/kitemviews-${PVCUT}*:5 | ||
=kde-frameworks/kjobwidgets-${PVCUT}*:5 | ||
=kde-frameworks/kparts-${PVCUT}*:5 | ||
=kde-frameworks/ktextwidgets-${PVCUT}*:5 | ||
=kde-frameworks/kwidgetsaddons-${PVCUT}*:5 | ||
=kde-frameworks/kxmlgui-${PVCUT}*:5 | ||
=kde-frameworks/sonnet-${PVCUT}*:5 | ||
=kde-frameworks/syntax-highlighting-${PVCUT}*:5 | ||
editorconfig? ( app-text/editorconfig-core-c ) | ||
git? ( dev-libs/libgit2:= ) | ||
" | ||
RDEPEND="${DEPEND}" | ||
|
||
RESTRICT+=" test" | ||
|
||
src_configure() { | ||
local mycmakeargs=( | ||
$(cmake_use_find_package editorconfig EditorConfig) | ||
$(cmake_use_find_package git LibGit2) | ||
) | ||
|
||
ecm_src_configure | ||
} |