public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Dennis Lamm" <expeditioneer@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: mail-mta/proton-mail-bridge/
Date: Mon, 09 Jun 2025 07:19:45 +0000 (UTC)	[thread overview]
Message-ID: <1749453548.f7fa8ea046e0f5bc0868b51f9c46cc25a0ee3d23.expeditioneer@gentoo> (raw)

commit:     f7fa8ea046e0f5bc0868b51f9c46cc25a0ee3d23
Author:     Filip Kobierski <fkobi <AT> pm <DOT> me>
AuthorDate: Sun Jun  8 12:17:18 2025 +0000
Commit:     Dennis Lamm <expeditioneer <AT> gentoo <DOT> org>
CommitDate: Mon Jun  9 07:19:08 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7fa8ea0

mail-mta/proton-mail-bridge: drop 3.20.0-r0

Signed-off-by: Filip Kobierski <fkobi <AT> pm.me>
Part-of: https://github.com/gentoo/gentoo/pull/42498
Closes: https://github.com/gentoo/gentoo/pull/42498
Signed-off-by: Dennis Lamm <expeditioneer <AT> gentoo.org>

 .../proton-mail-bridge-3.20.0.ebuild               | 117 ---------------------
 1 file changed, 117 deletions(-)

diff --git a/mail-mta/proton-mail-bridge/proton-mail-bridge-3.20.0.ebuild b/mail-mta/proton-mail-bridge/proton-mail-bridge-3.20.0.ebuild
deleted file mode 100644
index 93e153e9e392..000000000000
--- a/mail-mta/proton-mail-bridge/proton-mail-bridge-3.20.0.ebuild
+++ /dev/null
@@ -1,117 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake desktop go-env go-module systemd xdg-utils
-
-MY_PN="${PN/-mail/}"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="Serves Proton Mail to IMAP/SMTP clients"
-HOMEPAGE="https://proton.me/mail/bridge https://github.com/ProtonMail/proton-bridge/"
-SRC_URI="https://github.com/ProtonMail/${MY_PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
-SRC_URI+=" https://dev.gentoo.org/~expeditioneer/distfiles/${CATEGORY}/${PN}/${P}-vendor.tar.xz"
-S="${WORKDIR}"/${MY_P}
-
-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"
-RESTRICT="test"
-
-RDEPEND="
-	app-crypt/libsecret
-	gui? (
-		>=dev-libs/protobuf-21.12:=
-		>=dev-libs/sentry-native-0.6.5-r1
-		dev-qt/qtbase:6=[gui,icu,widgets]
-		dev-qt/qtdeclarative:6=[widgets]
-		dev-qt/qtsvg:6=
-		media-libs/mesa
-		net-libs/grpc:=
-	)
-"
-DEPEND="${RDEPEND}"
-
-PATCHES=(
-	"${FILESDIR}"/${PN}-3.15.1-gui_gentoo.patch
-)
-
-src_unpack() {
-	default
-
-	if [[ -d "${WORKDIR}"/vendor ]]; then # if we ship the dependencies
-		mv "${WORKDIR}"/vendor "${S}"/vendor || die # move them into the tree
-	fi
-
-	go-env_set_compile_environment
-}
-
-src_prepare() {
-	xdg_environment_reset
-	default
-	if use gui; then
-		# prepare desktop file
-		local desktopFilePath="${S}"/dist/${MY_PN}.desktop
-		sed -i 's/protonmail/proton-mail/g' ${desktopFilePath} || die
-		sed -i 's/Exec=proton-mail-bridge/Exec=proton-mail-bridge-gui/g' ${desktopFilePath} || die
-
-		# build GUI
-		local PATCHES=()
-		BUILD_DIR="${WORKDIR}"/gui_build \
-			CMAKE_USE_DIR="${S}"/internal/frontend/bridge-gui/bridge-gui \
-			cmake_src_prepare
-	fi
-}
-
-src_configure() {
-	if use gui; then
-		local mycmakeargs=(
-			-DBRIDGE_APP_FULL_NAME="Proton Mail Bridge"
-			-DBRIDGE_APP_VERSION="${PV}+git"
-			-DBRIDGE_REPO_ROOT="${S}"
-			-DBRIDGE_TAG="NOTAG"
-			-DBRIDGE_VENDOR="Gentoo Linux"
-			-DCMAKE_DISABLE_PRECOMPILE_HEADERS=OFF
-		)
-		BUILD_DIR="${WORKDIR}"/gui_build \
-			CMAKE_USE_DIR="${S}"/internal/frontend/bridge-gui/bridge-gui \
-			cmake_src_configure
-	fi
-}
-
-src_compile() {
-	emake -Onone build-nogui
-
-	if use gui; then
-		BUILD_DIR="${WORKDIR}"/gui_build \
-			CMAKE_USE_DIR="${S}"/internal/frontend/bridge-gui/bridge-gui \
-			cmake_src_compile
-	fi
-}
-
-src_test() {
-	emake -Onone test
-}
-
-src_install() {
-	exeinto /usr/bin
-	newexe bridge ${PN}
-
-	if use gui; then
-		BUILD_DIR="${WORKDIR}"/gui_build \
-			CMAKE_USE_DIR="${S}"/internal/frontend/bridge-gui/bridge-gui \
-			cmake_src_install
-		mv "${ED}"/usr/bin/bridge-gui "${ED}"/usr/bin/${PN}-gui || die
-		newicon {"${S}"/dist/bridge,${PN}}.svg
-		newmenu {dist/${MY_PN},${PN}}.desktop
-	fi
-
-	systemd_newuserunit "${FILESDIR}"/${PN}.service-r1 ${PN}.service
-
-	einstalldocs
-}


             reply	other threads:[~2025-06-09  7:19 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-06-09  7:19 Dennis Lamm [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-08-31 18:00 [gentoo-commits] repo/gentoo:master commit in: mail-mta/proton-mail-bridge/ Dennis Lamm
2025-08-31 17:53 Dennis Lamm
2025-06-09 15:12 Dennis Lamm
2025-06-09  7:19 Dennis Lamm
2025-06-09  7:19 Dennis Lamm
2025-06-05 18:53 Dennis Lamm
2025-06-05 18:53 Dennis Lamm
2025-03-14  5:39 Sam James
2025-01-06  4:16 Sam James
2025-01-06  4:16 Sam James
2025-01-06  4:16 Sam James
2024-12-30 14:04 Sam James
2024-12-30 14:04 Sam James
2024-04-18 22:39 Marek Szuba
2024-04-18 22:39 Marek Szuba
2024-03-29 13:23 Marek Szuba
2024-01-24 16:43 Marek Szuba
2024-01-24 16:43 Marek Szuba
2023-12-16 21:39 Marek Szuba
2023-10-24 23:16 Marek Szuba
2023-08-23 21:06 Marek Szuba
2023-08-23 21:06 Marek Szuba
2023-08-21 22:31 Marek Szuba
2023-08-21 18:16 Marek Szuba
2023-08-09 18:14 Piotr Karbowski
2023-04-10 13:47 Marek Szuba

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1749453548.f7fa8ea046e0f5bc0868b51f9c46cc25a0ee3d23.expeditioneer@gentoo \
    --to=expeditioneer@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox