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/kirigami: 6.1.0 version bump
Signed-off-by: Andreas Sturmlechner <[email protected]>
- Loading branch information
Showing
2 changed files
with
50 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,3 +1,4 @@ | ||
DIST kirigami-6.0.0-patchset.tar.xz 1488 BLAKE2B 1ff8a9e65f5b1de74155860fc887c6723d224a90173c21a9a19a7625eb27e8c9ab974521478c2f42be7a315d7be0bf065c109f76f27d1926657ac88ccc5f9ea4 SHA512 5018d4ab3e0d2a3c3a71795b5b8404f2de37855fe791a60322fc04afe895fd94c3b3a61255b805e324a20e936cbdf8eb140eea1679e2cf0e97fd538d987a1bee | ||
DIST kirigami-6.0.0.tar.xz 371664 BLAKE2B 4d50f4b803d1042c0c69a6e31a4acd3d87d0269b45e60330aa7ea00c45f89504b61c86ed03f01834aeb4b7925fe720419b556d3c3cfaa45693a8a380bf8a816b SHA512 b94307d71f71ff59f670e98782924f54f4d4b32e41c21f29701946b2430131ed8e7e5d38e0145c601d2b50ecf3ab2e2e2a1bbad2e446fb533ffc5b9f3e464d62 | ||
DIST kirigami-6.1.0.tar.xz 472340 BLAKE2B 1e4ddbdd4dc74d03c5afa982e4769b1b0e104d3bd947018031f3c115afb8e06d7e6133cbadc0f41238524de9c1d4615422a923b4859cf3af61c2f5087864d62d SHA512 2a75af0bc010120913f092f14760817c197298da4f6fc4780f5ab222de8e385864f4c88b9907acf4b03fea53759f1e2a39a2b62bcd78b8c2c1bc52129c04d207 | ||
DIST kirigami2-5.115.0.tar.xz 383944 BLAKE2B ce95794319ebbda40d384896da4e94dcf5137d176b0c3cab53bf5223ed48e0c95486002010c74008b42857ce7d27d4840c2af0395e957d0eade18bc2f5796f87 SHA512 b99d9829f864ae59b0ae4064e0b0b24a0f33ce2c35c60b4609fd9746bb322cab26d3f9afe6ba0893b486d4c546ead98c5ba42dc33271d2fdf47e34caef35ea90 |
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,49 @@ | ||
# Copyright 1999-2024 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
ECM_EXAMPLES="true" | ||
ECM_QTHELP="false" | ||
ECM_TEST="true" | ||
QTMIN=6.6.2 | ||
inherit ecm frameworks.kde.org toolchain-funcs | ||
|
||
DESCRIPTION="Lightweight user interface framework for mobile and convergent applications" | ||
HOMEPAGE="https://techbase.kde.org/Kirigami" | ||
|
||
LICENSE="LGPL-2+" | ||
KEYWORDS="~amd64" | ||
IUSE="openmp" | ||
|
||
# requires package to already be installed | ||
RESTRICT="test" | ||
|
||
# slot op: Uses Qt6::GuiPrivate for qguiapplication_p.h | ||
DEPEND=" | ||
>=dev-qt/qtbase-${QTMIN}:6=[concurrent,dbus,gui,network] | ||
>=dev-qt/qtdeclarative-${QTMIN}:6 | ||
>=dev-qt/qtsvg-${QTMIN}:6 | ||
" | ||
RDEPEND="${DEPEND} | ||
examples? ( !${CATEGORY}/${PN}:5[examples] ) | ||
>=dev-qt/qt5compat-${QTMIN}:6[qml] | ||
" | ||
BDEPEND=">=dev-qt/qttools-${QTMIN}:6[linguist]" | ||
|
||
pkg_pretend() { | ||
[[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp | ||
} | ||
|
||
pkg_setup() { | ||
[[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp | ||
} | ||
|
||
src_configure() { | ||
local mycmakeargs=( | ||
-DBUILD_EXAMPLES=$(usex examples) | ||
$(cmake_use_find_package openmp OpenMP) | ||
) | ||
|
||
ecm_src_configure | ||
} |