From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B917F158083 for ; Sat, 31 Aug 2024 10:44:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 166B9E29CF; Sat, 31 Aug 2024 10:44:23 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 00C8FE29CF for ; Sat, 31 Aug 2024 10:44:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A93683430AD for ; Sat, 31 Aug 2024 10:44:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1E7C3DA2 for ; Sat, 31 Aug 2024 10:44:18 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1725101050.351f26432767e6685ca261cb95d8ed13d1ca8162.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: kde-frameworks/kirigami/ X-VCS-Repository: repo/gentoo X-VCS-Files: kde-frameworks/kirigami/kirigami-5.116.0-r1.ebuild X-VCS-Directories: kde-frameworks/kirigami/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 351f26432767e6685ca261cb95d8ed13d1ca8162 X-VCS-Branch: master Date: Sat, 31 Aug 2024 10:44:18 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 8923fc0d-c025-4918-8b03-2783e291be06 X-Archives-Hash: 1f25ed2a003899bb239fd4bc771b9821 commit: 351f26432767e6685ca261cb95d8ed13d1ca8162 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Aug 31 10:36:39 2024 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Aug 31 10:44:10 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=351f2643 kde-frameworks/kirigami: Drop examples from 5.116.0 Now that KF6 is close to stabilisation, let's take care of those users enabling USE=examples globally. In this case, simply KF6 based examples trump older KF5 based ones, no special handling worth putting effort into. Bug: https://bugs.gentoo.org/934478 Signed-off-by: Andreas Sturmlechner gentoo.org> kde-frameworks/kirigami/kirigami-5.116.0-r1.ebuild | 52 ++++++++++++++++++++++ 1 file changed, 52 insertions(+) diff --git a/kde-frameworks/kirigami/kirigami-5.116.0-r1.ebuild b/kde-frameworks/kirigami/kirigami-5.116.0-r1.ebuild new file mode 100644 index 000000000000..136cd68024e5 --- /dev/null +++ b/kde-frameworks/kirigami/kirigami-5.116.0-r1.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +ECM_EXAMPLES="false" +ECM_QTHELP="false" +ECM_TEST="true" +KDE_ORG_TAR_PN="${PN}2" +QTMIN=5.15.9 +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 ~arm arm64 ~loong ~ppc64 ~riscv x86" +IUSE="openmp" + +# requires package to already be installed +RESTRICT="test" + +DEPEND=" + >=dev-qt/qtconcurrent-${QTMIN}:5 + >=dev-qt/qtdbus-${QTMIN}:5 + >=dev-qt/qtdeclarative-${QTMIN}:5 + >=dev-qt/qtgui-${QTMIN}:5 + >=dev-qt/qtnetwork-${QTMIN}:5 + >=dev-qt/qtquickcontrols2-${QTMIN}:5 + >=dev-qt/qtsvg-${QTMIN}:5 +" +RDEPEND="${DEPEND} + >=dev-qt/qtgraphicaleffects-${QTMIN}:5 +" +BDEPEND=">=dev-qt/linguist-tools-${QTMIN}:5" + +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=OFF + $(cmake_use_find_package openmp OpenMP) + ) + + ecm_src_configure +}