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 DCF94158015 for ; Mon, 18 Dec 2023 21:26:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 02FF12BC020; Mon, 18 Dec 2023 21:26:03 +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 BD66F2BC020 for ; Mon, 18 Dec 2023 21:26:02 +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 E2C72335D60 for ; Mon, 18 Dec 2023 21:26:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2595B1257 for ; Mon, 18 Dec 2023 21:26:00 +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: <1702934546.8081e99db838b448d5e0c0bf60c82f4612f008dc.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-r2.ebuild X-VCS-Directories: kde-frameworks/kuserfeedback/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 8081e99db838b448d5e0c0bf60c82f4612f008dc X-VCS-Branch: master Date: Mon, 18 Dec 2023 21:26:00 +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: e1aaa5f0-68be-43c6-b637-18e6d0c0f566 X-Archives-Hash: 3824ce15f1a067c6c89ccf3058791550 commit: 8081e99db838b448d5e0c0bf60c82f4612f008dc Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Dec 18 21:22:09 2023 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Dec 18 21:22:26 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8081e99d kde-frameworks/kuserfeedback: Drop unused dependencies Signed-off-by: Andreas Sturmlechner gentoo.org> .../kuserfeedback/kuserfeedback-1.3.0-r2.ebuild | 55 ++++++++++++++++++++++ 1 file changed, 55 insertions(+) diff --git a/kde-frameworks/kuserfeedback/kuserfeedback-1.3.0-r2.ebuild b/kde-frameworks/kuserfeedback/kuserfeedback-1.3.0-r2.ebuild new file mode 100644 index 000000000000..9600865a9cc5 --- /dev/null +++ b/kde-frameworks/kuserfeedback/kuserfeedback-1.3.0-r2.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2023 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=" + sys-devel/bison + sys-devel/flex + doc? ( + >=dev-qt/qdoc-${QTMIN}:5 + >=dev-qt/qthelp-${QTMIN}:5 + ) +" + +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 +}