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, 02 Mar 2016 21:50:39
Message-Id: 1456955400.e9955c1907fefbbfa45462e3c1299fb9bae75d70.mrueg@gentoo
1 commit: e9955c1907fefbbfa45462e3c1299fb9bae75d70
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Wed Mar 2 21:50:00 2016 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Wed Mar 2 21:50:00 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9955c19
7
8 app-crypt/letsencrypt: Remove old
9
10 Package-Manager: portage-2.2.27
11
12 app-crypt/letsencrypt/Manifest | 1 -
13 app-crypt/letsencrypt/letsencrypt-0.4.0.ebuild | 46 --------------------------
14 2 files changed, 47 deletions(-)
15
16 diff --git a/app-crypt/letsencrypt/Manifest b/app-crypt/letsencrypt/Manifest
17 index c177294..8ce784e 100644
18 --- a/app-crypt/letsencrypt/Manifest
19 +++ b/app-crypt/letsencrypt/Manifest
20 @@ -1,2 +1 @@
21 -DIST letsencrypt-0.4.0.tar.gz 634899 SHA256 d7df1faedd6f5c1ffc26fd855350fc3a107dd9fe5c1c2aa4c340024fe807a0f3 SHA512 f04c3fa49619e4e182ec8d10c6e05045d1e0e1a146bad75d9382cbfc6663ad0726c9beb496f0251e43d0dd45d78220c57dda0be8c2d946a515ab2c9f0359a549 WHIRLPOOL 64b531b31214fa6f7460ce3288dc573d281d350fe631447de8f0f18b74d38cb374438f678e7782c5bc72019766f4fe8668a6ff5f809560d09a713fa4eb58f9f8
22 DIST letsencrypt-0.4.1.tar.gz 672827 SHA256 750c4a2966ec21009e4f7d510eceb3f97f941f6c19eda8b58b7030ef8518cef9 SHA512 8b782ddf352c33c513e26bff0525932c9ab154a7a2545093be8958f851418700b449b3092fb8c4e1d45f6ededed979650c2593668a2dd1294760666702271182 WHIRLPOOL 6ba5bc2c1646880d8d24baad4311b8fd761765e7c8a2e8c5755627d31aad85634af545415098c0bbf28ef7ee9610709f7a6cf72d07ec7a11df6ef1fca6b3eb62
23
24 diff --git a/app-crypt/letsencrypt/letsencrypt-0.4.0.ebuild b/app-crypt/letsencrypt/letsencrypt-0.4.0.ebuild
25 deleted file mode 100644
26 index 0ef00d4..0000000
27 --- a/app-crypt/letsencrypt/letsencrypt-0.4.0.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=""
41 -else
42 - SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
43 - KEYWORDS="~amd64"
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 -}