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, 12 Feb 2018 15:50:44
Message-Id: 1518450633.8f08e293b5f5b951d0de6ae63c104c4dc91e4333.polynomial-c@gentoo
1 commit: 8f08e293b5f5b951d0de6ae63c104c4dc91e4333
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 12 15:46:31 2018 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 12 15:50:33 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f08e293
7
8 x11-plugins/enigmail: Prepared live ebuild for beta releases.
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11
12 x11-plugins/enigmail/enigmail-9999.ebuild | 13 +++++++++----
13 1 file changed, 9 insertions(+), 4 deletions(-)
14
15 diff --git a/x11-plugins/enigmail/enigmail-9999.ebuild b/x11-plugins/enigmail/enigmail-9999.ebuild
16 index ec95bc9fb44..66f465afa7c 100644
17 --- a/x11-plugins/enigmail/enigmail-9999.ebuild
18 +++ b/x11-plugins/enigmail/enigmail-9999.ebuild
19 @@ -1,23 +1,28 @@
20 -# Copyright 1999-2017 Gentoo Foundation
21 +# Copyright 1999-2018 Gentoo Foundation
22 # Distributed under the terms of the GNU General Public License v2
23
24 EAPI=6
25 PYTHON_COMPAT=( python2_7 )
26
27 -inherit git-r3 python-any-r1
28 +inherit python-any-r1
29
30 DESCRIPTION="Mozilla extension to provide GPG support in mail clients"
31 HOMEPAGE="http://www.enigmail.net/"
32
33 -KEYWORDS=""
34 SLOT="0"
35 LICENSE="MPL-2.0 GPL-3"
36 IUSE=""
37 if [[ ${PV} == *9999 ]]; then
38 + inherit git-r3
39 EGIT_REPO_URI="https://git.code.sf.net/p/enigmail/source"
40 S="${WORKDIR}/${P}"
41 else
42 - SRC_URI="http://www.enigmail.net/download/source/${P}.tar.gz"
43 + if [[ ${PV} = *_beta* ]] ; then
44 + SRC_URI="http://www.enigmail.net/download/beta/${P/_/-}.tar.gz"
45 + else
46 + SRC_URI="http://www.enigmail.net/download/source/${P}.tar.gz"
47 + KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
48 + fi
49 S="${WORKDIR}/${PN}"
50 fi