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/letsencrypt/
Date: Wed, 04 May 2016 12:28:47
Message-Id: 1462364909.f8d2969c5c969ff3300454849e04072a411b9dcc.mrueg@gentoo
1 commit: f8d2969c5c969ff3300454849e04072a411b9dcc
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Wed May 4 12:28:29 2016 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Wed May 4 12:28:29 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8d2969c
7
8 app-crypt/letsencrypt: Remove old
9
10 Package-Manager: portage-2.2.28
11
12 app-crypt/letsencrypt/Manifest | 1 -
13 app-crypt/letsencrypt/letsencrypt-0.4.2.ebuild | 46 --------------------------
14 2 files changed, 47 deletions(-)
15
16 diff --git a/app-crypt/letsencrypt/Manifest b/app-crypt/letsencrypt/Manifest
17 index b896cef..a53d222 100644
18 --- a/app-crypt/letsencrypt/Manifest
19 +++ b/app-crypt/letsencrypt/Manifest
20 @@ -1,2 +1 @@
21 -DIST letsencrypt-0.4.2.tar.gz 674494 SHA256 0f55c0f292829a9c6c1da7a57860290285cfa5da8615a87b8c268a946ab656b2 SHA512 cce6a69b7903b65aa93aa794fa5353701944d6d0736393f68e3f17316116929efa864310fb7275d62c94ab30921cae694fb7c2cd13c08164344c2e3a533cd434 WHIRLPOOL 1e6a482090e92b6fafb43a74c3956be0f25c37edd90e43a240e41aba15a97ff2c881f63eba920da4b7c2b24ef0d912df739c9918c6fb7f35892646d5e20b71c0
22 DIST letsencrypt-0.5.0.tar.gz 650853 SHA256 503535fa356c45b46a166ea84875bb1fd43e994afee1485bbc3b6849d46c5d43 SHA512 bffa5123a702c02d74c21453a5f5583055986132eb4ae58b72d066c1c5514a1b6832fc381490998c107fbfc1ac8cd403b19b9a1c87006db4e6081e686c2a2fd0 WHIRLPOOL cd72b3f5d6aa95fe983c16d2c71038777ec37a5fdd74a4b51b31cfb72e16e5868c9dc3ec701a30da80e7b99e9409a0fb183f4eba76c58a86434bae0a32dd8169
23
24 diff --git a/app-crypt/letsencrypt/letsencrypt-0.4.2.ebuild b/app-crypt/letsencrypt/letsencrypt-0.4.2.ebuild
25 deleted file mode 100644
26 index d25da2c..0000000
27 --- a/app-crypt/letsencrypt/letsencrypt-0.4.2.ebuild
28 +++ /dev/null
29 @@ -1,46 +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/letsencrypt/letsencrypt.git"
39 - inherit git-r3
40 - KEYWORDS="~arm"
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/letsencrypt/letsencrypt 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-0.7[${PYTHON_USEDEP}]
59 - dev-python/mock[${PYTHON_USEDEP}]
60 - dev-python/parsedatetime[${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/zope-component[${PYTHON_USEDEP}]
68 - dev-python/zope-interface[${PYTHON_USEDEP}]"
69 -DEPEND="test? ( ${RDEPEND}
70 - dev-python/nose[${PYTHON_USEDEP}] )
71 - dev-python/setuptools[${PYTHON_USEDEP}]"
72 -
73 -python_test() {
74 - nosetests -w ${PN}/tests || die
75 -}