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/kitemmodels: 5.109.0 version bump
Signed-off-by: Andreas Sturmlechner <[email protected]>
- Loading branch information
Showing
2 changed files
with
32 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 +1,2 @@ | ||
DIST kitemmodels-5.108.0.tar.xz 407176 BLAKE2B 3fe1809ce75ddcdb31bff13e89f7a6aa0f959412fd352f865e6aa1ae9d111aad65cef3c07d46bd3f04060dc1e518ee40d423f7b6e8bbe3a5f3d9ae1602f16ad8 SHA512 26ad954449d894f8c45b220b68f4191409b7973910451fdebc59fd8030fe69357ac06907e391744aaf631033bcc0c4a4abe274714583019fd1074202cc47fa88 | ||
DIST kitemmodels-5.109.0.tar.xz 407360 BLAKE2B cf7fec580dc7a4e83c4bd7c605e51097a3cdee66f3a898c2411e1e156d73b75743fb66747a3693d219cbde6eb3f67498fc98c7382100dc0e0c72a2ad8f5f0c61 SHA512 d24fab98390a4fc253fbd39ce925e9147a73715854ff3d84abb794079eaecf67015f932fa88e909519b3dc560324c70606143fd55712741aece3609dbd453e0b |
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,31 @@ | ||
# Copyright 1999-2023 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
QTMIN=5.15.9 | ||
inherit ecm frameworks.kde.org | ||
|
||
DESCRIPTION="Framework providing data models to help with tasks such as sorting and filtering" | ||
|
||
LICENSE="LGPL-2+" | ||
KEYWORDS="~amd64 ~arm ~arm64 ~loong ~riscv" | ||
IUSE="qml" | ||
|
||
RDEPEND=" | ||
qml? ( >=dev-qt/qtdeclarative-${QTMIN}:5 ) | ||
" | ||
DEPEND="${RDEPEND} | ||
test? ( >=dev-qt/qtwidgets-${QTMIN}:5 ) | ||
" | ||
|
||
src_configure() { | ||
local mycmakeargs=( | ||
$(cmake_use_find_package qml Qt5Qml) | ||
) | ||
ecm_src_configure | ||
} | ||
|
||
src_test() { | ||
LC_NUMERIC="C" ecm_src_test # bug 708820 | ||
} |