diff --git a/mail-client/mailspring-bin/Manifest b/mail-client/mailspring-bin/Manifest index c413f5965f..a318a27578 100644 --- a/mail-client/mailspring-bin/Manifest +++ b/mail-client/mailspring-bin/Manifest @@ -1,4 +1,2 @@ -DIST mailspring-1.18.0-amd64.deb 127111166 BLAKE2B 582c76e666aa260d1b7f46ae1b0967ef5513e8cbdc8d884862e54886945cd4b419976ea71935662aaa4d3a13134ad710d3d95fb1dfd35c4ec7d92db6cdc87644 SHA512 4ab8c4def28ea3dd3b74a6d188ce0cf8c0d7bbd7bb6737c8c6e1861fd566284023e38281add703744b8fdc50f892a03041bb50b82510c0240de2e89af46853b2 -DIST mailspring-1.18.0-arm64.deb 125722708 BLAKE2B 5afb1df1375c270d3701ea2be28a55415b72748745cf6f058a1fb9da63e79768e9d71199ba3e2bb11680ebedde488cd8b8b4bc7f915424e7126c7f0a88cc5648 SHA512 73511426aac334e0da059098cfeef091bd8af1a0dc0f993c8df12d87625730924bdb595872816e04d9c83f16a92b413a6224ebc956ff1630109213ef2f7da749 DIST mailspring-1.19.1-amd64.deb 140368484 BLAKE2B 214d42d01604c6d843d788d41bdc5d0c30722546b081941ac1734cd0f60a630290024a2f492a929fe49fae8befa39012338b0d3a1bf8fefcb491c117f3d97628 SHA512 b016a8bd18bee82d59a6ea10ac688c1b84266bde10becfdfdcb2b0af357a5f5acc235cf98413a239d467bab3fbda62d80873df2b6fc260b77601616d626feaf1 DIST mailspring-1.19.1-arm64.deb 138714700 BLAKE2B 8abd920849905f65bf9aef869c2d4278764d36d03de41dfff3726039948759a818939c246d4aa0c559d6209f66048a648f2cc134e661cce1e40619d6a1d51439 SHA512 3d418de99c947b403c02b7772eba223b3016e265bc6eac09fb23b9453d2565f0c5ac7766d163b9c3d54794fcc0f9f8a89644c4b867514722cb5f6f23e480e0a9 diff --git a/mail-client/mailspring-bin/mailspring-bin-1.18.0.ebuild b/mail-client/mailspring-bin/mailspring-bin-1.18.0.ebuild deleted file mode 100644 index 4ec98900f2..0000000000 --- a/mail-client/mailspring-bin/mailspring-bin-1.18.0.ebuild +++ /dev/null @@ -1,70 +0,0 @@ -# Copyright 1999-2026 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit unpacker xdg - -DESCRIPTION="A beautiful, fast and fully open source mail client for Mac, Windows and Linux" -HOMEPAGE="https://getmailspring.com/" -SRC_URI=" - amd64? ( https://github.com/Foundry376/Mailspring/releases/download/${PV}/mailspring-${PV}-amd64.deb ) - arm64? ( https://github.com/Foundry376/Mailspring/releases/download/${PV}/mailspring-${PV}-arm64.deb ) -" -S="${WORKDIR}" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~arm64" -IUSE="+wayland" - -RDEPEND=" - app-accessibility/at-spi2-core:2 - app-crypt/mit-krb5 - dev-build/libtool - dev-libs/expat - dev-libs/glib:2 - dev-libs/nspr - dev-libs/nss - dev-libs/openssl - gnome-base/gvfs - media-libs/alsa-lib - media-libs/mesa - net-misc/curl - net-print/cups - sys-apps/dbus - sys-libs/db:5.3 - x11-libs/cairo - x11-libs/gtk+:3 - x11-libs/libX11 - x11-libs/libxcb - x11-libs/libXcomposite - x11-libs/libXdamage - x11-libs/libXext - x11-libs/libXfixes - x11-libs/libxkbcommon - x11-libs/libXrandr - x11-libs/pango - x11-misc/xdg-utils -" - -QA_PREBUILT="*" - -src_unpack(){ - unpack_deb ${A} -} - -src_prepare(){ - default - if use wayland; then - sed -i "s|Exec=mailspring %U|Exec=mailspring --ozone-platform-hint=auto --enable-wayland-ime %U|g" \ - "${S}/usr/share/applications/Mailspring.desktop" || die - fi - - mv "${S}/usr/share/doc/mailspring" "${S}/usr/share/doc/${PF}" || die - mv "${S}/usr/share/appdata" "${S}/usr/share/metainfo" || die -} - -src_install(){ - cp -R "${S}"/* "${D}" || die "Installing binary files failed" -}