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/certbot/
Date: Tue, 14 Feb 2017 23:01:34
Message-Id: 1487113264.71c267ba734e02c6d2680299cf67d2b1306a4a9b.mrueg@gentoo
1 commit: 71c267ba734e02c6d2680299cf67d2b1306a4a9b
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 14 23:00:04 2017 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 14 23:01:04 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71c267ba
7
8 app-crypt/certbot: Version bump to 0.11.1
9
10 Package-Manager: portage-2.3.3
11
12 app-crypt/certbot/Manifest | 1 +
13 app-crypt/certbot/certbot-0.11.1.ebuild | 53 +++++++++++++++++++++++++++++++++
14 2 files changed, 54 insertions(+)
15
16 diff --git a/app-crypt/certbot/Manifest b/app-crypt/certbot/Manifest
17 index c81b914ef6..b15a8195cc 100644
18 --- a/app-crypt/certbot/Manifest
19 +++ b/app-crypt/certbot/Manifest
20 @@ -1 +1,2 @@
21 DIST certbot-0.10.1.tar.gz 823669 SHA256 c91b5fddb50dfd46545c12c1e96d1bb5e2794652c11421a6f5d9dad2bbca4d52 SHA512 4e45280b9cb6db3f8dcecfbf0cf64c990ea58d8607ed1aea9853c7248f8830301cc8685126eeb0d0c2ef0e23298c9070b291110d733e72867967bc9506900702 WHIRLPOOL ae08a9236adf69915c4a141106aa104563b1298f9fd3a32491ed8c45fddc9f32243154ba5bde9af7a8b74a95a1d2b7d337e4cbcc37f35ba997a7a50eb2f15200
22 +DIST certbot-0.11.1.tar.gz 817693 SHA256 89c45639746a79a22e32d86dbf9352cda1a4ea218aa1433d3aa61d90c715f52c SHA512 77ab66be8e9e16c3588f9a822db553c3ba8caf5bda91a810c0bccfd2bed144ccab06dae33551df474dba05a679045dc02966bc6f8facecdcba3f00c7b9773f0a WHIRLPOOL 5514e471ef9f7fd75321da7828927c34bec757bcd0c7477814da953286f6a0a414b5cf5969243df41100f172bb2f0b451019f7e1130123a2fac9fcd88a0abd99
23
24 diff --git a/app-crypt/certbot/certbot-0.11.1.ebuild b/app-crypt/certbot/certbot-0.11.1.ebuild
25 new file mode 100644
26 index 0000000000..c6bca773dc
27 --- /dev/null
28 +++ b/app-crypt/certbot/certbot-0.11.1.ebuild
29 @@ -0,0 +1,53 @@
30 +# Copyright 1999-2017 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=5
35 +PYTHON_COMPAT=(python2_7)
36 +
37 +if [[ ${PV} == 9999* ]]; then
38 + EGIT_REPO_URI="https://github.com/certbot/certbot.git"
39 + inherit git-r3
40 +else
41 + SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
42 + KEYWORDS="~amd64 ~arm ~x86"
43 +fi
44 +
45 +inherit distutils-r1
46 +
47 +DESCRIPTION="Let's encrypt client to automate deployment of X.509 certificates"
48 +HOMEPAGE="https://github.com/certbot/certbot https://letsencrypt.org/"
49 +
50 +LICENSE="Apache-2.0"
51 +SLOT="0"
52 +IUSE="test"
53 +
54 +CDEPEND=">=dev-python/setuptools-1.0[${PYTHON_USEDEP}]"
55 +RDEPEND="
56 + ${CDEPEND}
57 + ~app-crypt/acme-${PV}[${PYTHON_USEDEP}]
58 + >=dev-python/configargparse-0.9.3[${PYTHON_USEDEP}]
59 + dev-python/configobj[${PYTHON_USEDEP}]
60 + >=dev-python/cryptography-0.7[${PYTHON_USEDEP}]
61 + >=dev-python/parsedatetime-1.3[${PYTHON_USEDEP}]
62 + dev-python/pyopenssl[${PYTHON_USEDEP}]
63 + dev-python/pyrfc3339[${PYTHON_USEDEP}]
64 + dev-python/pytz[${PYTHON_USEDEP}]
65 + dev-python/six[${PYTHON_USEDEP}]
66 + dev-python/zope-component[${PYTHON_USEDEP}]
67 + dev-python/zope-interface[${PYTHON_USEDEP}]
68 + dev-python/mock[${PYTHON_USEDEP}]"
69 +DEPEND="
70 + ${CDEPEND}
71 + test? (
72 + >=dev-python/astroid-1.3.5[${PYTHON_USEDEP}]
73 + dev-python/coverage[${PYTHON_USEDEP}]
74 + dev-python/nose[${PYTHON_USEDEP}]
75 + dev-python/pep8[${PYTHON_USEDEP}]
76 + >=dev-python/pylint-1.4.2[${PYTHON_USEDEP}]
77 + dev-python/wheel[${PYTHON_USEDEP}]
78 + )"
79 +
80 +python_test() {
81 + nosetests -v ${PN} || die
82 +}