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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6F8BB1382C5 for ; Thu, 1 Apr 2021 18:31:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ABE52E0982; Thu, 1 Apr 2021 18:31:58 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8ED5AE0982 for ; Thu, 1 Apr 2021 18:31:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 84855335D46 for ; Thu, 1 Apr 2021 18:31:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F16FD4A5 for ; Thu, 1 Apr 2021 18:31:55 +0000 (UTC) From: "Jian Lin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jian Lin" Message-ID: <1617298027.4cd4e0b239989be82768d2497b54f7954f3e35fe.jian@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: mail-client/mailspring-bin/ X-VCS-Repository: repo/proj/guru X-VCS-Files: mail-client/mailspring-bin/Manifest mail-client/mailspring-bin/mailspring-bin-1.8.0.ebuild mail-client/mailspring-bin/metadata.xml X-VCS-Directories: mail-client/mailspring-bin/ X-VCS-Committer: jian X-VCS-Committer-Name: Jian Lin X-VCS-Revision: 4cd4e0b239989be82768d2497b54f7954f3e35fe X-VCS-Branch: master Date: Thu, 1 Apr 2021 18:31:55 +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: 96a80d92-e1f1-4399-8573-7b63088dfab1 X-Archives-Hash: 27f6691c0ee844593fa25b9dacf69757 commit: 4cd4e0b239989be82768d2497b54f7954f3e35fe Author: Adel KARA SLIMANE karaslimane com> AuthorDate: Thu Apr 1 17:27:07 2021 +0000 Commit: Jian Lin outlook com> CommitDate: Thu Apr 1 17:27:07 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4cd4e0b2 mail-client/mailspring-bin: first EBUILD for version 1.8.0 Signed-off-by: Adel KARA SLIMANE karaslimane.com> Package-Manager: Portage-3.0.18, Repoman-3.0.2 mail-client/mailspring-bin/Manifest | 1 + .../mailspring-bin/mailspring-bin-1.8.0.ebuild | 42 ++++++++++++++++++++++ mail-client/mailspring-bin/metadata.xml | 16 +++++++++ 3 files changed, 59 insertions(+) diff --git a/mail-client/mailspring-bin/Manifest b/mail-client/mailspring-bin/Manifest new file mode 100644 index 000000000..893480734 --- /dev/null +++ b/mail-client/mailspring-bin/Manifest @@ -0,0 +1 @@ +DIST mailspring-1.8.0-amd64.deb 79747546 BLAKE2B ed47adc692455324d0a8ce13d6f5a54cacd64c40112192df5ff0dcfab47815eabc3c3964e588af4443dc863f1b53fc08f001fdadf6340017900a1bed40d8a9ab SHA512 e487a6eed6e5e1bbcece3f85fa3cf32d24e257f73d77b0170f2b970496d3d710a529d28d8b035bb6589d450fde7c2324de59bfa17c8502fc317d5250368fbbec diff --git a/mail-client/mailspring-bin/mailspring-bin-1.8.0.ebuild b/mail-client/mailspring-bin/mailspring-bin-1.8.0.ebuild new file mode 100644 index 000000000..b0d565fcf --- /dev/null +++ b/mail-client/mailspring-bin/mailspring-bin-1.8.0.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit unpacker + +DESCRIPTION="A beautiful, fast and fully open source mail client for Mac, Windows and Linux" +HOMEPAGE="https://getmailspring.com/" +SRC_URI="https://github.com/Foundry376/Mailspring/releases/download/${PV}/mailspring-${PV}-amd64.deb" +S="${WORKDIR}" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND=" + app-crypt/libsecret + app-text/tidy-html5 + dev-cpp/ctemplate + dev-libs/libgcrypt + dev-libs/nss + gnome-base/gconf + media-libs/libglvnd + net-dns/c-ares + sys-devel/libtool + virtual/udev + =x11-libs/gtk+-3* + x11-libs/libnotify + x11-libs/libxkbfile + x11-libs/libXtst + x11-misc/xdg-utils + || ( =dev-libs/glib-2* gnome-base/gvfs ) +" + +src_unpack(){ + unpack_deb ${A} +} + +src_install(){ + cp -R "${S}"/* "${D}" || die "Installing binary files failed" +} diff --git a/mail-client/mailspring-bin/metadata.xml b/mail-client/mailspring-bin/metadata.xml new file mode 100644 index 000000000..b5bd6cef7 --- /dev/null +++ b/mail-client/mailspring-bin/metadata.xml @@ -0,0 +1,16 @@ + + + + + Adel Kara Slimane + adel.ks@zegrapher.com + + + + Ben Gotow + ben@foundry376.com + + Foundry376/Mailspring + https://community.getmailspring.com/ + +