mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-06 00:48:18 -07:00
mail-mta/proton-mail-bridge: drop 3.6.1
Signed-off-by: Marek Szuba <marecki@gentoo.org>
This commit is contained in:
@@ -1,4 +1,2 @@
|
||||
DIST proton-mail-bridge-3.10.0-deps.tar.xz 246860004 BLAKE2B 56000b5aeb30a1dbd4f35b2b3b309bd4ab80c1ace7a7261b303231c196b698afe38754a6e779ca4313acc1fec0e7136a1783c16625f26c041f0aa4c7baa77c19 SHA512 8f314727eb1796f7c69e777ce708f45a534e352becd89a51c90cb2c9cf5367f28d6f4b34d42dce85443aca66ed3bb89404e6add19486596044fd00810f8cb65f
|
||||
DIST proton-mail-bridge-3.10.0.tar.gz 5176242 BLAKE2B a319dab8a9b6b74afe1792ee61cd2c6d3e7e93a7459477cde0b5d796e19a67be2f45766decfdc9e1ba0827a969fbb1c95557d3a6b52d9340eeec5ecbc1b4b6c5 SHA512 65d07b15053fc9b67f4792a506b5e8c07896c166bcfe34751625c98f79ab01f00da29cdb029e5276c4624af7f787392347c7555c15edb4d05be1b0415f50bbd6
|
||||
DIST proton-mail-bridge-3.6.1-deps.tar.xz 245805016 BLAKE2B 7aeab4896c9dfcba8c2c3164f441fb57f0febbdc0c49f7555cda3d930443efec85d8748a43ed2ed23982594c6f5e4b8e319cd2524bfa21797a8259252397f5a9 SHA512 46a5601606fe99af0ffcc8ba1e325d17b527d15225f6f4c339de0f828e0a17e71304886a58ccf2dde83638e83bc87abb7ef9817db44014cc38132dc65d752fdf
|
||||
DIST proton-mail-bridge-3.6.1.tar.gz 5015293 BLAKE2B 7a6bb687fd1130612a49d4336404229daece91a24a37952b3128462b81cfe83636b935d584b479d294037d0303406f2c79a6798725d7b62f55eefa9294047ba9 SHA512 39e11815cdfdcd741ba04ee6776ce4bd959715d8d5bb8345b7f7b1a66b5fa5b66890ebc0353b1f5566a822e0ad1c4757fd022b67f4c66e91113b5e700db04abd
|
||||
|
||||
@@ -1,120 +0,0 @@
|
||||
# Copyright 1999-2024 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit cmake go-module systemd xdg-utils
|
||||
|
||||
MY_PN="${PN/-mail/}"
|
||||
MY_P="${MY_PN}-${PV}"
|
||||
|
||||
DESCRIPTION="Serves ProtonMail 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
|
||||
https://dev.gentoo.org/~marecki/dists/${CATEGORY}/${PN}/${P}-deps.tar.xz"
|
||||
|
||||
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.3.2-gui_gentoo.patch
|
||||
)
|
||||
|
||||
S="${WORKDIR}"/${MY_P}
|
||||
|
||||
src_prepare() {
|
||||
xdg_environment_reset
|
||||
default
|
||||
if use gui; then
|
||||
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
|
||||
# TODO:
|
||||
# - auto-sync version number between the two executables
|
||||
# - can we leave BRIDGE_TAG unset? Seems it gets displayed in some info box
|
||||
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 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 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
|
||||
fi
|
||||
|
||||
systemd_newuserunit "${FILESDIR}"/${PN}.service-r1 ${PN}.service
|
||||
|
||||
einstalldocs
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
if [[ -n "${REPLACING_VERSIONS}" ]]; then
|
||||
local oldver
|
||||
for oldver in ${REPLACING_VERSIONS}; do
|
||||
if ver_test "${oldver}" -lt 3.2.0; then
|
||||
ewarn "Please note that since version 3.2.0, ${PN} by default shares usage statistics with upstream."
|
||||
ewarn "For details, please see"
|
||||
ewarn
|
||||
ewarn " https://proton.me/support/share-usage-statistics"
|
||||
ewarn
|
||||
ewarn "This behaviour can be disabled through ${PN}-gui, under Advanced Settings."
|
||||
ewarn
|
||||
break
|
||||
fi
|
||||
done
|
||||
fi
|
||||
}
|
||||
Reference in New Issue
Block a user