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