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 CC3CE158090 for ; Fri, 4 Oct 2024 21:04:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F28D1E29E9; Fri, 4 Oct 2024 21:04:10 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CFA10E29E9 for ; Fri, 4 Oct 2024 21:04:10 +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 E12F8343083 for ; Fri, 4 Oct 2024 21:04:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 26F3227FA for ; Fri, 4 Oct 2024 21:04:07 +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: <1728075795.549f7778c65881e32c0b497002fd23e7d469aafe.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/signon-ui/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/signon-ui/signon-ui-0.15_p20231016-r2.ebuild X-VCS-Directories: net-libs/signon-ui/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 549f7778c65881e32c0b497002fd23e7d469aafe X-VCS-Branch: master Date: Fri, 4 Oct 2024 21:04:07 +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: 19e06f4b-ac45-4469-ac33-9f58e7294d1c X-Archives-Hash: 1c687555e1ec4ccd6c1f40042425825c commit: 549f7778c65881e32c0b497002fd23e7d469aafe Author: Andreas Sturmlechner gentoo org> AuthorDate: Fri Oct 4 18:42:09 2024 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Oct 4 21:03:15 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=549f7778 net-libs/signon-ui: Drop IUSE qt6 and broken/obsolete patch Thanks-to: Flavio Cappelli Closes: https://bugs.gentoo.org/939365 Signed-off-by: Andreas Sturmlechner gentoo.org> .../signon-ui/signon-ui-0.15_p20231016-r2.ebuild | 59 ++++++++++++++++++++++ 1 file changed, 59 insertions(+) diff --git a/net-libs/signon-ui/signon-ui-0.15_p20231016-r2.ebuild b/net-libs/signon-ui/signon-ui-0.15_p20231016-r2.ebuild new file mode 100644 index 000000000000..07986111cd8a --- /dev/null +++ b/net-libs/signon-ui/signon-ui-0.15_p20231016-r2.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit qmake-utils + +if [[ ${PV} = *9999* ]] ; then + EGIT_REPO_URI="https://gitlab.com/accounts-sso/signon-ui.git/" + inherit git-r3 +else + COMMIT=eef943f0edf3beee8ecb85d4a9dae3656002fc24 + SRC_URI="https://gitlab.com/accounts-sso/${PN}/-/archive/${COMMIT}/${PN}-${COMMIT}.tar.bz2 -> ${P}.tar.bz2" + S="${WORKDIR}/${PN}-${COMMIT}" + KEYWORDS="~amd64 ~arm64" +fi + +DESCRIPTION="Online accounts signon UI" +HOMEPAGE="https://gitlab.com/accounts-sso/signon-ui" + +LICENSE="GPL-2 GPL-3" +SLOT="0" +IUSE="test" + +RESTRICT="test" + +DEPEND=" + dev-libs/glib:2 + dev-qt/qtbase:6[dbus,gui,network,ssl,widgets] + dev-qt/qtdeclarative:6 + dev-qt/qtwebengine:6[qml] + >=net-libs/accounts-qt-1.17[qt6(+)] + net-libs/libproxy + >=net-libs/signond-8.61-r100[qt6(+)] + x11-libs/libnotify +" +RDEPEND="${DEPEND} + dev-qt/qtwebchannel:6 +" + +PATCHES=( + # thanks to openSUSE + "${FILESDIR}/${PN}-0.15_p20171022-webengine-cachedir-path.patch" + # downstream + "${FILESDIR}/${PN}-0.15_p20171022-drop-fno-rtti.patch" + "${FILESDIR}/${PN}-0.15_p20171022-disable-tests.patch" +) + +src_configure() { + eqmake6 PREFIX="${EPREFIX}"/usr +} + +src_compile() { + emake -j1 +} + +src_install() { + emake INSTALL_ROOT="${D}" -j1 install +}