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