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.3.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,2 +1,3 @@ | ||
DIST kirigami-6.2.1.tar.xz 469224 BLAKE2B 6886a9df0920334d9627754b67fde63267d3a9990b72c7273cad9329e6543a337ed5b070a76f80e37df4b3d4473a79dbf76e8d1bed0731343e826f4e39476094 SHA512 57e7f6facede8764ee792ebd41f24bf2b53651cc2bfae7c2c58e3e821a27c2021c8f2161ddc76b2b20a26d310a48045335405a753487f98c46c050df8dc0f9e0 | ||
DIST kirigami-6.3.0.tar.xz 550984 BLAKE2B c7d13175d984e6c35cb67d6c89a95ec325de396d30d31efdffe79e8c6a412ba3632779877efa41b598dce228680659f946e1ef86be63775446f9bfe9952ca562 SHA512 e12e3a3cd9ec4afc54c72091a4e72af181ee9d9d7cbbc5e2a799a037626e1ea6bd721a61ef2f410a9ac0c3af07a5626fe7954118b523eb339157af5923d8c228 | ||
DIST kirigami2-5.116.0.tar.xz 383660 BLAKE2B 80252358b33f1876506738d68f233703c15f955dc020709ffb66b75cc7bb13585ac1bb5a7a2076f42909b8a515f5f8cf64fb14a7536aefe8fd42bfd293c66384 SHA512 bb1f7525cb77dc2849bc9782be9b4522b4559b78e8ad88c9cd9953a6d9736cbe63a33a76fadebd9a1fb04f15007e5141aa465991b99117f7c2f26e09c722b66e |
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 | ||
} |