From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 564FC15808A for ; Wed, 06 Aug 2025 20:33:39 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 3410B3420B6 for ; Wed, 06 Aug 2025 20:33:39 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 468591104DB; Wed, 06 Aug 2025 20:33:34 +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) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 3B1A91104DB for ; Wed, 06 Aug 2025 20:33:34 +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 E89F3342057 for ; Wed, 06 Aug 2025 20:33:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5BC38322F for ; Wed, 06 Aug 2025 20:33:32 +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: <1754512398.caf8a765022948891091cbf1c6412865587407c4.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/qtkeychain/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/qtkeychain/qtkeychain-0.15.0-r1.ebuild X-VCS-Directories: dev-libs/qtkeychain/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: caf8a765022948891091cbf1c6412865587407c4 X-VCS-Branch: master Date: Wed, 06 Aug 2025 20:33:32 +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: d86e923d-b2b0-484f-9ae9-fac86b746025 X-Archives-Hash: 48e85967f292affc4e7df322df43b958 commit: caf8a765022948891091cbf1c6412865587407c4 Author: Andreas Sturmlechner gentoo org> AuthorDate: Wed Aug 6 16:19:54 2025 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Aug 6 20:33:18 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=caf8a765 dev-libs/qtkeychain: Drop IUSE qt5, qt6 to only leave Qt6 impl Last revdep requiring Qt5 is gone. Bug: https://bugs.gentoo.org/955181 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-libs/qtkeychain/qtkeychain-0.15.0-r1.ebuild | 49 +++++++++++++++++++++++++ 1 file changed, 49 insertions(+) diff --git a/dev-libs/qtkeychain/qtkeychain-0.15.0-r1.ebuild b/dev-libs/qtkeychain/qtkeychain-0.15.0-r1.ebuild new file mode 100644 index 000000000000..fe6d93b9a49f --- /dev/null +++ b/dev-libs/qtkeychain/qtkeychain-0.15.0-r1.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="Qt API for storing passwords securely" +HOMEPAGE="https://github.com/frankosterfeld/qtkeychain" + +if [[ ${PV} != *9999* ]]; then + SRC_URI="https://github.com/frankosterfeld/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="amd64 arm64 ~loong ~ppc64 ~riscv x86" +else + inherit git-r3 + EGIT_REPO_URI="https://github.com/frankosterfeld/${PN}.git" +fi + +LICENSE="BSD-2" +SLOT="0/1" +IUSE="keyring test" + +# tests require DBus +RESTRICT="test !test? ( test )" + +RDEPEND=" + dev-qt/qtbase:6[dbus] + keyring? ( + app-crypt/libsecret + dev-libs/glib:2 + ) +" +DEPEND="${RDEPEND}" +BDEPEND="dev-qt/qttools:6[linguist]" + +DOCS=( ChangeLog ReadMe.md ) + +src_configure() { + local mycmakeargs=( + -DECM_MKSPECS_INSTALL_DIR="${EPREFIX}"/usr/$(get_libdir)/qt6/mkspecs + -DBUILD_TEST_APPLICATION=OFF + -DBUILD_TRANSLATIONS=ON + -DBUILD_WITH_QT6=ON + -DLIBSECRET_SUPPORT=$(usex keyring) + -DBUILD_TESTING=$(usex test) + ) + + cmake_src_configure +}