Gentoo Archives: gentoo-commits

From: Lars Wendler <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-plugins/enigmail/
Date: Mon, 03 Jun 2019 14:02:13
Message-Id: 1559570521.b540cba997f66e5ea816d80de7a614a7193e131e.polynomial-c@gentoo
1 commit: b540cba997f66e5ea816d80de7a614a7193e131e
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jun 3 13:58:12 2019 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Mon Jun 3 14:02:01 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b540cba9
7
8 x11-plugins/enigmail: Removed old.
9
10 Package-Manager: Portage-2.3.67, Repoman-2.3.13
11 Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
12
13 x11-plugins/enigmail/Manifest | 1 -
14 x11-plugins/enigmail/enigmail-2.0.9.ebuild | 86 ------------------------------
15 2 files changed, 87 deletions(-)
16
17 diff --git a/x11-plugins/enigmail/Manifest b/x11-plugins/enigmail/Manifest
18 index 26589288f86..9af0c850917 100644
19 --- a/x11-plugins/enigmail/Manifest
20 +++ b/x11-plugins/enigmail/Manifest
21 @@ -1,4 +1,3 @@
22 DIST enigmail-2.0.10.tar.gz 2608628 BLAKE2B da35fb3b79b8d4a8895ccc431d6990beab328db3dae9da17dab681f11cdd80af43f30ee52ea0d387820dde82256afa394525cd5d20471b6db4493060ff34fa96 SHA512 cca49c768b330767e23ede2258bcaf7693f37a81e651a7c8a7fbb9c0dad0d4d6383582a45b608cbfc234fe33e053c291ad9df01589214c58678da621235c7e33
23 DIST enigmail-2.0.11.tar.gz 2613428 BLAKE2B a32c3dd49364973133f0bc9729ea80857a886cbd1ced065f32e6141e1e18602fa904a53a836496dd53cf7986c6f367b4aba57b8a4177c1aa1ae24668f18f74b4 SHA512 9e4836a8ce3310fef6398be538ef8def70413112d4141c13b8abdbdc2e1a7b75ed080c261cdb018f873a50a4c591b06d722dc7986474678c4a9072f7e3b729cf
24 DIST enigmail-2.0.8.tar.gz 2525691 BLAKE2B cd69efe72b661bb103837c987937e1cee64a5888795bda7126c59cf99a39c0245f505cdfd6538d54cec5dc3fc95c64bbeca3aebc4b0823249be4c0465d4d68a1 SHA512 9d2e95c2eae6ca22897eb8b2961964d96fd633e7d33a8c0c04a29b4cbc8585777598578abfb0484b96827ca165fe9c8b873e5e7f7cb3ba8cd0779ddc4f10e305
25 -DIST enigmail-2.0.9.tar.gz 2541100 BLAKE2B 0eb76f0da919135b0ea9bcb189251abb6eb9c288d26cabf3296427b10ca5b547a2e0c04468769e39f8306ac6831213a2d346915116e410c96a57a038d7c30055 SHA512 2053148b0e5e763dfc1f8decff0fea2a40ebd306e4844440bd9a3ced4e1f7ff2f16bccf72f85e73b7c51b40629489ad125b9bc166558e3b4144038ba45fcb197
26
27 diff --git a/x11-plugins/enigmail/enigmail-2.0.9.ebuild b/x11-plugins/enigmail/enigmail-2.0.9.ebuild
28 deleted file mode 100644
29 index e716fbf703a..00000000000
30 --- a/x11-plugins/enigmail/enigmail-2.0.9.ebuild
31 +++ /dev/null
32 @@ -1,86 +0,0 @@
33 -# Copyright 1999-2018 Gentoo Authors
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=7
37 -PYTHON_COMPAT=( python2_7 )
38 -
39 -inherit python-any-r1
40 -
41 -DESCRIPTION="Mozilla extension to provide GPG support in mail clients"
42 -HOMEPAGE="https://www.enigmail.net/"
43 -
44 -SLOT="0"
45 -LICENSE="MPL-2.0 GPL-3"
46 -IUSE=""
47 -if [[ ${PV} == *9999 ]]; then
48 - inherit git-r3
49 - EGIT_REPO_URI="https://git.code.sf.net/p/enigmail/source"
50 - S="${WORKDIR}/${P}"
51 -else
52 - if [[ ${PV} = *_beta* ]] ; then
53 - SRC_URI="https://www.enigmail.net/download/beta/${P/_/-}.tar.gz"
54 - else
55 - SRC_URI="https://www.enigmail.net/download/source/${P}.tar.gz"
56 - KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
57 - fi
58 - S="${WORKDIR}/${PN}"
59 -fi
60 -
61 -RDEPEND="|| (
62 - ( >=app-crypt/gnupg-2.0
63 - || (
64 - app-crypt/pinentry[gtk(-)]
65 - app-crypt/pinentry[qt5(-)]
66 - )
67 - )
68 - =app-crypt/gnupg-1.4*
69 - )
70 - !<mail-client/thunderbird-52.5.0
71 - !<www-client/seamonkey-2.49.5.0_p0
72 -"
73 -DEPEND="${RDEPEND}
74 - ${PYTHON_DEPS}
75 - app-arch/zip
76 - dev-lang/perl
77 - "
78 -
79 -PATCHES=(
80 - "${FILESDIR}/${PN}-no_pEp_auto_download.patch"
81 -)
82 -
83 -src_compile() {
84 - emake ipc public ui package lang stdlib
85 - emake xpi
86 -
87 -}
88 -
89 -src_install() {
90 - local emid=$(sed -n '/<em:id>/!d; s/.*\({.*}\).*/\1/; p; q' build/dist/install.rdf)
91 - [[ -n ${emid} ]] || die "Could not scrape EM:ID from install.rdf"
92 -
93 - mv build/enigmail*.xpi build/"${emid}.xpi" || die 'Could not rename XPI to match EM:ID'
94 -
95 - # thunderbird
96 - insinto "/usr/share/mozilla/extensions/{3550f703-e582-4d05-9a08-453d09bdfdc6}"
97 - doins build/"${emid}.xpi"
98 -
99 - # seamonkey
100 - insinto "/usr/share/mozilla/extensions/{92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a}"
101 - doins build/"${emid}.xpi"
102 -}
103 -
104 -pkg_postinst() {
105 - local peimpl=$(eselect --brief --colour=no pinentry show)
106 - case "${peimpl}" in
107 - *gtk*|*qt*) ;;
108 - *) ewarn "The pinentry front-end currently selected is not one supported by thunderbird."
109 - ewarn "You may be prompted for your password in an inaccessible shell!!"
110 - ewarn "Please use 'eselect pinentry' to select either the gtk or qt front-end"
111 - ;;
112 - esac
113 - if [[ -n ${REPLACING_VERSIONS} ]]; then
114 - elog
115 - elog "Please restart thunderbird and/or seamonkey in order for them to use"
116 - elog "the newly installed version of enigmail."
117 - fi
118 -}