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.80.0 version bump
Signed-off-by: Andreas Sturmlechner <[email protected]>
- Loading branch information
Showing
2 changed files
with
34 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 kitemmodels-5.77.0.tar.xz 402720 BLAKE2B 8442d0d5c586722b2f1cdaf393b121157a582d47cdbdaaa05a5f492405175ffa1d66a91679428d0c3d9dc7884eacec8160bde21fe0fd93c527a6ef4d7ec2b72a SHA512 cd4391bd1168ab1015896a0037d8b55195ebc1e19813e05b4021234a797c199f8d18e50851dd4ea2ad8b4cb3ea49945343d4ba26f2afbb7c7762b815120a2185 | ||
DIST kitemmodels-5.79.0.tar.xz 402684 BLAKE2B b678588a223770c9b82bd4377779bfcf9f261881aafca9b8dc6b840be175fb785f06ff8b0d754cedd0c3d4d52985a073e387d28e207752e9f1f5ff3c696ad41f SHA512 11834f075978d4befe65dac5f53b4660fa2ed3a88abaf8535d430419918f27b81a0c1196ef93fec3cb5d5a9594335a666720e3dc4bb946b29227753b3815d001 | ||
DIST kitemmodels-5.80.0.tar.xz 402920 BLAKE2B 05e8cc29f4f7214c24f8bc8de38499eaa95cb806b81eb0aea1fbbb8aedb433607c3af725c526bfc80deb5461264eca35fd3a08f618c7d3179121e319883c777d SHA512 5cbbe75c977cbb8be78175bd51eb5f770309ce833e941fc6f217f9782be6c61255f340b2c4a0d89035522d280b54fc1b1b913e9cb0101cc17bbd37bd4e012a22 |
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,33 @@ | ||
# Copyright 1999-2021 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=7 | ||
|
||
QTMIN=5.15.2 | ||
VIRTUALX_REQUIRED="test" | ||
inherit ecm kde.org | ||
|
||
DESCRIPTION="Framework providing data models to help with tasks such as sorting and filtering" | ||
|
||
LICENSE="LGPL-2+" | ||
KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" | ||
IUSE="qml" | ||
|
||
RDEPEND=" | ||
qml? ( >=dev-qt/qtdeclarative-${QTMIN}:5 ) | ||
" | ||
DEPEND="${RDEPEND} | ||
test? ( >=dev-qt/qtwidgets-${QTMIN}:5 ) | ||
" | ||
|
||
src_configure() { | ||
local mycmakeargs=( | ||
-DCMAKE_DISABLE_FIND_PACKAGE_PythonModuleGeneration=ON # bug 746866 | ||
$(cmake_use_find_package qml Qt5Qml) | ||
) | ||
ecm_src_configure | ||
} | ||
|
||
src_test() { | ||
LC_NUMERIC="C" ecm_src_test # bug 708820 | ||
} |