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 66A931581FB for ; Fri, 30 Aug 2024 14:48:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 96A23E29F7; Fri, 30 Aug 2024 14:48:14 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7FAEAE29F5 for ; Fri, 30 Aug 2024 14:48:14 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C7850343052 for ; Fri, 30 Aug 2024 14:48:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 44FD41F29 for ; Fri, 30 Aug 2024 14:48:11 +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: <1725029211.946404128476d2181cebe2354c2703b0f209cb4b.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: kde-frameworks/kuserfeedback/ X-VCS-Repository: repo/gentoo X-VCS-Files: kde-frameworks/kuserfeedback/kuserfeedback-1.3.0-r4.ebuild X-VCS-Directories: kde-frameworks/kuserfeedback/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 946404128476d2181cebe2354c2703b0f209cb4b X-VCS-Branch: master Date: Fri, 30 Aug 2024 14:48:11 +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: ebe9cda5-40b4-4c7d-b6ee-38b990e73f8f X-Archives-Hash: 5d8bc314df45528af8d09c97421d7108 commit: 946404128476d2181cebe2354c2703b0f209cb4b Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu Aug 29 23:13:27 2024 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Aug 30 14:46:51 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94640412 kde-frameworks/kuserfeedback: Empty revbump for $CATEGORY/$PN:6 stabilisation Signed-off-by: Andreas Sturmlechner gentoo.org> .../kuserfeedback/kuserfeedback-1.3.0-r4.ebuild | 63 ++++++++++++++++++++++ 1 file changed, 63 insertions(+) diff --git a/kde-frameworks/kuserfeedback/kuserfeedback-1.3.0-r4.ebuild b/kde-frameworks/kuserfeedback/kuserfeedback-1.3.0-r4.ebuild new file mode 100644 index 000000000000..5ed8d018e769 --- /dev/null +++ b/kde-frameworks/kuserfeedback/kuserfeedback-1.3.0-r4.ebuild @@ -0,0 +1,63 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +ECM_QTHELP="false" +ECM_TEST="forceoptional" +KFMIN=5.106.0 +QTMIN=5.15.9 +inherit ecm kde.org + +DESCRIPTION="Framework to collect user feedback for applications via telemetry and surveys" +SRC_URI="mirror://kde/stable/${PN}/${P}.tar.xz" + +LICENSE="MIT" +SLOT="5" +KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86" +IUSE="doc kf6compat" + +DEPEND=" + >=dev-qt/qtdeclarative-${QTMIN}:5 + >=dev-qt/qtgui-${QTMIN}:5 + >=dev-qt/qtnetwork-${QTMIN}:5 + >=dev-qt/qtsvg-${QTMIN}:5 + !kf6compat? ( + >=dev-qt/qtcharts-${QTMIN}:5 + >=dev-qt/qtprintsupport-${QTMIN}:5 + >=dev-qt/qtwidgets-${QTMIN}:5 + ) +" +RDEPEND="${DEPEND} + kf6compat? ( kde-frameworks/kuserfeedback:6 ) +" +BDEPEND=" + app-alternatives/yacc + app-alternatives/lex + >=dev-qt/linguist-tools-${QTMIN}:5 + doc? ( + >=dev-qt/qdoc-${QTMIN}:5 + >=dev-qt/qthelp-${QTMIN}:5 + ) +" + +PATCHES=( "${FILESDIR}/${P}-missing-include.patch" ) + +src_configure() { + local mycmakeargs=( + # disable server application + -DENABLE_PHP=NO + -DENABLE_PHP_UNIT=NO + -DENABLE_SURVEY_TARGET_EXPRESSIONS=YES + -DENABLE_DOCS=$(usex doc) + -DENABLE_CLI=$(usex !kf6compat) + -DENABLE_CONSOLE=$(usex !kf6compat) + ) + + ecm_src_configure +} + +CMAKE_SKIP_TESTS=( + # bugs: 921359, requires virtualx + openglinfosourcetest +)