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, 09 Jul 2016 13:48:04
Message-Id: 1468072055.9d9048a3b7d15f70b82039fd01bcf8db83c4ac55.mrueg@gentoo
1 commit: 9d9048a3b7d15f70b82039fd01bcf8db83c4ac55
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 9 13:47:35 2016 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 9 13:47:35 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d9048a3
7
8 app-crypt/certbot: Version bump to 0.8.1
9
10 Gentoo-Bug: #585256
11
12 Package-Manager: portage-2.3.0
13
14 app-crypt/certbot/Manifest | 1 +
15 app-crypt/certbot/certbot-0.8.1.ebuild | 47 ++++++++++++++++++++++++++++++++++
16 2 files changed, 48 insertions(+)
17
18 diff --git a/app-crypt/certbot/Manifest b/app-crypt/certbot/Manifest
19 index 2375ee5..549e16b 100644
20 --- a/app-crypt/certbot/Manifest
21 +++ b/app-crypt/certbot/Manifest
22 @@ -1 +1,2 @@
23 DIST certbot-0.6.0.tar.gz 686826 SHA256 58eaa6be4ae90af07d682296e42dbac924b5602c51002445059596313e182a09 SHA512 966fdbff13ac9651ebb5fafae86a58a45538d57a43eb6d157358bbecef4286634bb61dd13b94e0ca5b006980a35cc5fe55b4a12efdeadc2530653d844516c926 WHIRLPOOL 0bd424395b9002a04f6c900b208aea758f74e9864d75f6aa87fc30573f046c63f9791aa8bcce0a5452831192d1579e9b52fda5ed77befd6e4f361dab976d6369
24 +DIST certbot-0.8.1.tar.gz 698305 SHA256 1fb4834eba306a656f26257f86ed298df354cdecb1b0bde316a9d23a1e19db01 SHA512 8b21d270b5ee847086369b956b3346fdddd50ab0e4490d988e7ca535f4d4101e2859e99bc5f77ac920afd3a6a9210e407b155c89c28d282dc0544735a27e3eaa WHIRLPOOL 909a3f6f63fac84bf6fe8fb35b9aba46c06912af01d5f702eee5b6aeab49d4f2a92fa05e4f060da11ac6cbc89047e92457f626d6c82aa0de0f1127ca79924fc7
25
26 diff --git a/app-crypt/certbot/certbot-0.8.1.ebuild b/app-crypt/certbot/certbot-0.8.1.ebuild
27 new file mode 100644
28 index 0000000..df9530c
29 --- /dev/null
30 +++ b/app-crypt/certbot/certbot-0.8.1.ebuild
31 @@ -0,0 +1,47 @@
32 +# Copyright 1999-2016 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +# $Id$
35 +
36 +EAPI=5
37 +PYTHON_COMPAT=(python2_7)
38 +
39 +if [[ ${PV} == 9999* ]]; then
40 + EGIT_REPO_URI="https://github.com/certbot/certbot.git"
41 + inherit git-r3
42 + KEYWORDS=""
43 +else
44 + SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
45 + KEYWORDS="~amd64 ~arm"
46 +fi
47 +
48 +inherit distutils-r1
49 +
50 +DESCRIPTION="Let's encrypt client to automate deployment of X.509 certificates"
51 +HOMEPAGE="https://github.com/certbot/certbot https://letsencrypt.org/"
52 +
53 +LICENSE="Apache-2.0"
54 +SLOT="0"
55 +IUSE="test"
56 +
57 +RDEPEND="=app-crypt/acme-${PV}[${PYTHON_USEDEP}]
58 + >=dev-python/configargparse-0.10.0[${PYTHON_USEDEP}]
59 + dev-python/configobj[${PYTHON_USEDEP}]
60 + >=dev-python/cryptography-1.3[${PYTHON_USEDEP}]
61 + dev-python/mock[${PYTHON_USEDEP}]
62 + >=dev-python/parsedatetime-1.3[${PYTHON_USEDEP}]
63 + >=dev-python/psutil-3.0.1[${PYTHON_USEDEP}]
64 + >=dev-python/pyopenssl-0.15[${PYTHON_USEDEP}]
65 + dev-python/pyrfc3339[${PYTHON_USEDEP}]
66 + >=dev-python/pythondialog-3.2.2:python-2[${PYTHON_USEDEP}]
67 + dev-python/pytz[${PYTHON_USEDEP}]
68 + dev-python/requests[${PYTHON_USEDEP}]
69 + dev-python/six[${PYTHON_USEDEP}]
70 + dev-python/zope-component[${PYTHON_USEDEP}]
71 + dev-python/zope-interface[${PYTHON_USEDEP}]"
72 +DEPEND="test? ( ${RDEPEND}
73 + dev-python/nose[${PYTHON_USEDEP}] )
74 + dev-python/setuptools[${PYTHON_USEDEP}]"
75 +
76 +python_test() {
77 + nosetests -w ${PN}/tests || die
78 +}