Gentoo Archives: gentoo-commits

From: "Manuel Rüger" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/letsencrypt/
Date: Fri, 11 Dec 2015 22:49:18
Message-Id: 1449874132.3d7ff4c2d100ccb1aa688895e0318a706f547505.mrueg@gentoo
1 commit: 3d7ff4c2d100ccb1aa688895e0318a706f547505
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Fri Dec 11 22:48:38 2015 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Fri Dec 11 22:48:52 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d7ff4c2
7
8 app-crypt/letsencrypt: Add support for regular releases
9
10 Package-Manager: portage-2.2.26
11
12 app-crypt/letsencrypt/letsencrypt-9999.ebuild | 12 +++++++++---
13 1 file changed, 9 insertions(+), 3 deletions(-)
14
15 diff --git a/app-crypt/letsencrypt/letsencrypt-9999.ebuild b/app-crypt/letsencrypt/letsencrypt-9999.ebuild
16 index c271da7..72156f5 100644
17 --- a/app-crypt/letsencrypt/letsencrypt-9999.ebuild
18 +++ b/app-crypt/letsencrypt/letsencrypt-9999.ebuild
19 @@ -5,16 +5,22 @@
20 EAPI=5
21 PYTHON_COMPAT=(python2_7)
22
23 -EGIT_REPO_URI="https://github.com/letsencrypt/letsencrypt.git"
24 +if [[ ${PV} == 9999* ]]; then
25 + EGIT_REPO_URI="https://github.com/letsencrypt/letsencrypt.git"
26 + inherit git-r3
27 + KEYWORDS=""
28 +else
29 + SRC_URI="https://github.com/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
30 + KEYWORDS="~amd64"
31 +fi
32
33 -inherit git-r3 distutils-r1
34 +inherit distutils-r1
35
36 DESCRIPTION="Let's encrypt client to automate deployment of X.509 certificates"
37 HOMEPAGE="https://github.com/letsencrypt/letsencrypt https://letsencrypt.org/"
38
39 LICENSE="Apache-2.0"
40 SLOT="0"
41 -KEYWORDS=""
42 IUSE="test"
43
44 RDEPEND=">=app-crypt/acme-${PV}[${PYTHON_USEDEP}]