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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 71EE31581EC for ; Fri, 22 Nov 2024 22:30:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A03F0E0871; Fri, 22 Nov 2024 22:30:58 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 85115E0871 for ; Fri, 22 Nov 2024 22:30:58 +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 95D773406BF for ; Fri, 22 Nov 2024 22:30:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DC41C1295 for ; Fri, 22 Nov 2024 22:30:55 +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: <1732314385.b3cba3044ec1a391b11922274fff05c4d0149908.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/kaqaz/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/kaqaz/kaqaz-1.2.0-r5.ebuild X-VCS-Directories: x11-misc/kaqaz/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: b3cba3044ec1a391b11922274fff05c4d0149908 X-VCS-Branch: master Date: Fri, 22 Nov 2024 22:30:55 +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: 8664101c-5d3f-459c-a1de-601d5e88c004 X-Archives-Hash: 4ef8059a8e9aa8de7bb37bb51a7dea38 commit: b3cba3044ec1a391b11922274fff05c4d0149908 Author: Andreas Sturmlechner gentoo org> AuthorDate: Fri Nov 22 20:57:50 2024 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Nov 22 22:26:25 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3cba304 x11-misc/kaqaz: update EAPI 7 -> 8, drop unused dev-qt/qtsensors Build system actually is not wired up to build those parts using it. Signed-off-by: Andreas Sturmlechner gentoo.org> x11-misc/kaqaz/kaqaz-1.2.0-r5.ebuild | 50 ++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) diff --git a/x11-misc/kaqaz/kaqaz-1.2.0-r5.ebuild b/x11-misc/kaqaz/kaqaz-1.2.0-r5.ebuild new file mode 100644 index 000000000000..3c58668d1b08 --- /dev/null +++ b/x11-misc/kaqaz/kaqaz-1.2.0-r5.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit qmake-utils + +DESCRIPTION="Note manager" +HOMEPAGE="https://github.com/sialan-labs/kaqaz/" +SRC_URI="https://github.com/sialan-labs/kaqaz/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND=" + dev-qt/qtcore:5 + dev-qt/qtdeclarative:5 + dev-qt/qtgui:5 + dev-qt/qtmultimedia:5[qml] + dev-qt/qtnetwork:5[ssl] + dev-qt/qtpositioning:5 + dev-qt/qtsingleapplication[X] + dev-qt/qtsql:5[sqlite] + dev-qt/qtwidgets:5 + dev-qt/qtxml:5 +" +RDEPEND="${DEPEND} + dev-qt/qtgraphicaleffects:5 + dev-qt/qtquickcontrols:5 +" + +PATCHES=( + "${FILESDIR}/${P}-qt55.patch" + "${FILESDIR}/${P}-unbundle-qtsingleapplication.patch" +) + +src_prepare() { + default + rm -r sialantools/qtsingleapplication || die +} + +src_configure() { + eqmake5 +} + +src_install() { + emake install INSTALL_ROOT="${D}" +}