Gentoo Archives: gentoo-commits

From: Matt Thode <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/certbot/
Date: Sat, 03 Sep 2016 18:40:54
Message-Id: 1472927982.8182efedd893e69a86020eeeaad3e85f4404ac2e.prometheanfire@gentoo
1 commit: 8182efedd893e69a86020eeeaad3e85f4404ac2e
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 3 18:39:21 2016 +0000
4 Commit: Matt Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 3 18:39:42 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8182efed
7
8 app-crypt/certbot: fixing the deps
9
10 Package-Manager: portage-2.2.28
11
12 app-crypt/certbot/certbot-0.8.1-r1.ebuild | 56 +++++++++++++++++++++++++++++++
13 1 file changed, 56 insertions(+)
14
15 diff --git a/app-crypt/certbot/certbot-0.8.1-r1.ebuild b/app-crypt/certbot/certbot-0.8.1-r1.ebuild
16 new file mode 100644
17 index 00000000..3f4ec97
18 --- /dev/null
19 +++ b/app-crypt/certbot/certbot-0.8.1-r1.ebuild
20 @@ -0,0 +1,56 @@
21 +# Copyright 1999-2016 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +# $Id$
24 +
25 +EAPI=5
26 +PYTHON_COMPAT=(python2_7)
27 +
28 +if [[ ${PV} == 9999* ]]; then
29 + EGIT_REPO_URI="https://github.com/certbot/certbot.git"
30 + inherit git-r3
31 + KEYWORDS=""
32 +else
33 + SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
34 + KEYWORDS="~amd64 ~arm ~x86"
35 +fi
36 +
37 +inherit distutils-r1
38 +
39 +DESCRIPTION="Let's encrypt client to automate deployment of X.509 certificates"
40 +HOMEPAGE="https://github.com/certbot/certbot https://letsencrypt.org/"
41 +
42 +LICENSE="Apache-2.0"
43 +SLOT="0"
44 +IUSE="test"
45 +
46 +RDEPEND="
47 + =app-crypt/acme-${PV}[${PYTHON_USEDEP}]
48 + >=dev-python/configargparse-0.9.3[${PYTHON_USEDEP}]
49 + dev-python/configobj[${PYTHON_USEDEP}]
50 + >=dev-python/cryptography-0.7[${PYTHON_USEDEP}]
51 + >=dev-python/parsedatetime-1.3[${PYTHON_USEDEP}]
52 + dev-python/pyopenssl[${PYTHON_USEDEP}]
53 + dev-python/pyrfc3339[${PYTHON_USEDEP}]
54 + dev-python/pytz[${PYTHON_USEDEP}]
55 + dev-python/six[${PYTHON_USEDEP}]
56 + dev-python/zope-component[${PYTHON_USEDEP}]
57 + dev-python/zope-interface[${PYTHON_USEDEP}]
58 + $(python_gen_cond_dep '>=dev-python/pythondialog-3.2.2:python-2' python2_7)
59 + dev-python/mock[${PYTHON_USEDEP}]"
60 + # for when py3 support is added
61 + # $(python_gen_cond_dep '>=dev-python/pythondialog-3.2.2:0' python3_*)
62 +DEPEND="
63 + >=dev-python/setuptools-1.0[${PYTHON_USEDEP}]
64 + test? (
65 + >=dev-python/astroid-1.3.5
66 + dev-python/coverage
67 + dev-python/nose
68 + dev-python/pep8
69 + >=dev-python/psutil-2.2.1
70 + >=dev-python/pylint-1.4.2
71 + dev-python/wheel
72 + )"
73 +
74 +python_test() {
75 + nosetests -w ${PN}/tests || die
76 +}