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/ktextwidgets: 5.87.0 version bump
Signed-off-by: Andreas Sturmlechner <[email protected]>
- Loading branch information
Showing
2 changed files
with
39 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 ktextwidgets-5.85.0.tar.xz 326548 BLAKE2B 23a584eec7a0a8d2ac713a824d64df98b80c39c809e17b366c78f5a2eca2e8e3010dad3fbcf49956f463ea7a554d918e6995678511f16de655ae8358ef19eaaa SHA512 c17b5fcebd03ee1852f461c406cfe0894264a8b9aaf7f86a6ad6b90a7c764222f511ec58db29765fa74dc82c8b9fa518d7613ed39e5eb837e62db3be17390737 | ||
DIST ktextwidgets-5.86.0.tar.xz 326588 BLAKE2B d5129883e04b3464c3b8893d4f86f2ae9566a9d9d7ee99919f9cba1475761fba2821e77f9c0dccd87bd32660ffe9ece4d9a2dfeb7c3de81af8660023444d6d7f SHA512 cb443f2053bd5e7a829cc7c9517c3366496f1da09f4c1a2c97f611ab169aaada44b56bdb3df90e7c01f4f4035ff057642c66f0e89e9b8c94ab2983d9341e9503 | ||
DIST ktextwidgets-5.87.0.tar.xz 326976 BLAKE2B 045004be766cb1eec27bf23b47441338315fb18da16194bdb82bd9496d525126594d57e07ddee3c90bfa73126fb06f2e73ec100bc80a2238e459027254a088d3 SHA512 4fb0000eb89a2a352d9fd88c3f1c9a33b1a32c420fa3fac43c2fd7b63949c899986b8ac325acb51acfe7f9cdc03280819bd66cdf578268db575fd127389a0aa6 |
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,38 @@ | ||
# Copyright 1999-2021 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
ECM_DESIGNERPLUGIN="true" | ||
PVCUT=$(ver_cut 1-2) | ||
QTMIN=5.15.2 | ||
VIRTUALX_REQUIRED="test" | ||
inherit ecm kde.org | ||
|
||
DESCRIPTION="Framework providing an assortment of widgets for displaying and editing text" | ||
LICENSE="LGPL-2+ LGPL-2.1+" | ||
KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86" | ||
IUSE="speech" | ||
|
||
DEPEND=" | ||
>=dev-qt/qtgui-${QTMIN}:5 | ||
>=dev-qt/qtwidgets-${QTMIN}:5 | ||
=kde-frameworks/kcompletion-${PVCUT}*:5 | ||
=kde-frameworks/kconfig-${PVCUT}*:5 | ||
=kde-frameworks/kconfigwidgets-${PVCUT}*:5 | ||
=kde-frameworks/kcoreaddons-${PVCUT}*:5 | ||
=kde-frameworks/ki18n-${PVCUT}*:5 | ||
=kde-frameworks/kservice-${PVCUT}*:5 | ||
=kde-frameworks/kwidgetsaddons-${PVCUT}*:5 | ||
=kde-frameworks/sonnet-${PVCUT}*:5 | ||
speech? ( >=dev-qt/qtspeech-${QTMIN}:5 ) | ||
" | ||
RDEPEND="${DEPEND}" | ||
|
||
src_configure() { | ||
local mycmakeargs=( | ||
$(cmake_use_find_package speech Qt5TextToSpeech) | ||
) | ||
|
||
ecm_src_configure | ||
} |