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 3AC4D15800A for ; Wed, 23 Aug 2023 21:06:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 67D782BC01D; Wed, 23 Aug 2023 21:06:07 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 53A582BC01D for ; Wed, 23 Aug 2023 21:06:07 +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 46B5E335D46 for ; Wed, 23 Aug 2023 21:06:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 88E641077 for ; Wed, 23 Aug 2023 21:06:03 +0000 (UTC) From: "Marek Szuba" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marek Szuba" Message-ID: <1692824750.05df5805b608a906b01e871ca45114dec89fda68.marecki@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: mail-mta/proton-mail-bridge/ X-VCS-Repository: repo/gentoo X-VCS-Files: mail-mta/proton-mail-bridge/proton-mail-bridge-3.1.3.ebuild X-VCS-Directories: mail-mta/proton-mail-bridge/ X-VCS-Committer: marecki X-VCS-Committer-Name: Marek Szuba X-VCS-Revision: 05df5805b608a906b01e871ca45114dec89fda68 X-VCS-Branch: master Date: Wed, 23 Aug 2023 21:06:03 +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: 5e2d920e-b66c-46b1-a43c-28494441c9ae X-Archives-Hash: dbc9f919bcbe483e270c7a22a4da7dc7 commit: 05df5805b608a906b01e871ca45114dec89fda68 Author: Marek Szuba gentoo org> AuthorDate: Wed Aug 23 20:11:49 2023 +0000 Commit: Marek Szuba gentoo org> CommitDate: Wed Aug 23 21:05:50 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05df5805 mail-mta/proton-mail-bridge: remove IUSE=gui from 3.1.3 It never did anything anyway. We could of course simply drop this version, however this is the last one without built-in telemetry support so I'd rather keep it around for a while. Closes: https://bugs.gentoo.org/912887 Signed-off-by: Marek Szuba gentoo.org> .../proton-mail-bridge/proton-mail-bridge-3.1.3.ebuild | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/mail-mta/proton-mail-bridge/proton-mail-bridge-3.1.3.ebuild b/mail-mta/proton-mail-bridge/proton-mail-bridge-3.1.3.ebuild index 3b00a1442737..cc717399d90f 100644 --- a/mail-mta/proton-mail-bridge/proton-mail-bridge-3.1.3.ebuild +++ b/mail-mta/proton-mail-bridge/proton-mail-bridge-3.1.3.ebuild @@ -16,7 +16,6 @@ SRC_URI="https://github.com/ProtonMail/${MY_PN}/archive/refs/tags/v${PV}.tar.gz LICENSE="Apache-2.0 BSD BSD-2 GPL-3+ ISC LGPL-3+ MIT MPL-2.0 Unlicense" SLOT="0" KEYWORDS="~amd64" -IUSE="gui" # Quite a few tests require Internet access PROPERTIES="test_network" @@ -33,12 +32,7 @@ src_prepare() { } src_compile() { - if use gui; then - eerror "Since version 3.0.0, GUI support in ${PN} requires Qt6 and is therefore currently not available" - die "USE=gui requires Qt6" - else - emake build-nogui - fi + emake build-nogui } src_test() { @@ -53,11 +47,3 @@ src_install() { einstalldocs } - -pkg_postinst() { - use gui && xdg_icon_cache_update -} - -pkg_postrm() { - use gui && xdg_icon_cache_update -}