Gentoo Archives: gentoo-commits

From: Adel KARA SLIMANE <adel@×××××××××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: mail-client/mailspring-bin/
Date: Sat, 17 Apr 2021 13:32:46
Message-Id: 1618666344.0893fcd21ba70d80a376ba8cc4cddee756c3a641.adel@gentoo
1 commit: 0893fcd21ba70d80a376ba8cc4cddee756c3a641
2 Author: Adel KARA SLIMANE <adel <AT> karaslimane <DOT> com>
3 AuthorDate: Sat Apr 17 13:31:53 2021 +0000
4 Commit: Adel KARA SLIMANE <adel <AT> karaslimane <DOT> com>
5 CommitDate: Sat Apr 17 13:32:24 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0893fcd2
7
8 mail-client/mailspring-bin: version bump
9
10 Signed-off-by: Adel KARA SLIMANE <adel <AT> karaslimane.com>
11 Package-Manager: Portage-3.0.18, Repoman-3.0.2
12
13 mail-client/mailspring-bin/Manifest | 1 +
14 .../mailspring-bin/mailspring-bin-1.9.1.ebuild | 52 ++++++++++++++++++++++
15 2 files changed, 53 insertions(+)
16
17 diff --git a/mail-client/mailspring-bin/Manifest b/mail-client/mailspring-bin/Manifest
18 index ccbc6bc89..5b8689b5a 100644
19 --- a/mail-client/mailspring-bin/Manifest
20 +++ b/mail-client/mailspring-bin/Manifest
21 @@ -1,2 +1,3 @@
22 DIST mailspring-1.8.0-amd64.deb 79747546 BLAKE2B ed47adc692455324d0a8ce13d6f5a54cacd64c40112192df5ff0dcfab47815eabc3c3964e588af4443dc863f1b53fc08f001fdadf6340017900a1bed40d8a9ab SHA512 e487a6eed6e5e1bbcece3f85fa3cf32d24e257f73d77b0170f2b970496d3d710a529d28d8b035bb6589d450fde7c2324de59bfa17c8502fc317d5250368fbbec
23 DIST mailspring-1.9.0-amd64.deb 87900812 BLAKE2B 53f6526590e2274540f89818e70771e769ffb48186f6e1c77ab72ae5ce09bf3e053d6b45905463b79d3b0fd2dbf3e8d75175fd6a56f724a45ae7bc7ad2a76ce4 SHA512 7c35236a60046204b2c4fb3f8899a97972773327d8b61cba55a10793740bb37751a176f3dd0ba0c8ede2facb63f95cf077ea94e3e6b66a14b003602bd8e408a8
24 +DIST mailspring-1.9.1-amd64.deb 87784166 BLAKE2B bf4ce5c58212277d4fa2ef9c9cb28e6eb09eb0748ad2fa128c0b1f3836e51b8bca9329b540f7b7554f539aa2624e3fa8746d8537388aceaec92a34aaf41b3100 SHA512 cfdc5ad468c094bebef84e8b39ac49acc1164485a4a9994d919c38eea5b497b73dd96bcf1a5fca495e6c6585bf7d70dd8a56663d33536d5bc981d0d79a487b3d
25
26 diff --git a/mail-client/mailspring-bin/mailspring-bin-1.9.1.ebuild b/mail-client/mailspring-bin/mailspring-bin-1.9.1.ebuild
27 new file mode 100644
28 index 000000000..a544d22bc
29 --- /dev/null
30 +++ b/mail-client/mailspring-bin/mailspring-bin-1.9.1.ebuild
31 @@ -0,0 +1,52 @@
32 +# Copyright 1999-2021 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +inherit unpacker xdg
38 +
39 +DESCRIPTION="A beautiful, fast and fully open source mail client for Mac, Windows and Linux"
40 +HOMEPAGE="https://getmailspring.com/"
41 +SRC_URI="https://github.com/Foundry376/Mailspring/releases/download/${PV}/mailspring-${PV}-amd64.deb"
42 +S="${WORKDIR}"
43 +
44 +LICENSE="GPL-3"
45 +SLOT="0"
46 +KEYWORDS="~amd64"
47 +
48 +RDEPEND="
49 + app-crypt/libsecret
50 + app-crypt/mit-krb5
51 + app-text/tidy-html5
52 + dev-cpp/ctemplate
53 + dev-libs/libgcrypt
54 + dev-libs/nss
55 + dev-libs/openssl
56 + dev-libs/openssl-compat
57 + gnome-base/gconf
58 + media-libs/alsa-lib
59 + media-libs/libglvnd
60 + net-dns/c-ares
61 + net-print/cups
62 + sys-devel/libtool
63 + virtual/udev
64 + =x11-libs/gtk+-3*
65 + x11-libs/libnotify
66 + x11-libs/libxkbfile
67 + x11-libs/libXtst
68 + x11-libs/libXScrnSaver
69 + x11-misc/xdg-utils
70 + || ( =dev-libs/glib-2* gnome-base/gvfs )
71 +"
72 +
73 +QA_PREBUILT="*"
74 +
75 +src_unpack(){
76 + unpack_deb ${A}
77 +}
78 +
79 +src_install(){
80 + cp -R "${S}"/* "${D}" || die "Installing binary files failed"
81 + mv "${D}/usr/share/doc/mailspring" "${D}/usr/share/doc/${PF}" || die
82 + mv "${D}/usr/share/appdata" "${D}/usr/share/metainfo" || die
83 +}