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: Tue, 02 Feb 2016 17:49:28
Message-Id: 1454435349.3fb4c91353706c38f9edffac92e9ad6039fe6ea0.mrueg@gentoo
1 commit: 3fb4c91353706c38f9edffac92e9ad6039fe6ea0
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 2 17:49:09 2016 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 2 17:49:09 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3fb4c913
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.2.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 66cfd27..f38a307 100644
18 --- a/app-crypt/letsencrypt/Manifest
19 +++ b/app-crypt/letsencrypt/Manifest
20 @@ -1,2 +1 @@
21 -DIST letsencrypt-0.2.0.tar.gz 564016 SHA256 71324323eb6c9fe9a2cee95f012a44e9c7bdc8c9dfe14c26d56129306f188650 SHA512 a00618c0f3ae78cfdb70adfea81ff9d672123fa38585cfda8ed44659be14bd37143f2c5bc076b92d116356437ea08af079142a4ae09a8a6ad06f2793276b973e WHIRLPOOL cd413fd1ca4d2e462bcc573c8b0403010cfc27dca577c56c1465e5d794e7769a0621bac361078762eec12f2296d968421572cb8794cb1a49824b37292dbab572
22 DIST letsencrypt-0.3.0.tar.gz 627761 SHA256 a21e496ab130cf9fcaeef69019a4eef7aaf86dad84131d601db531add4f98e1a SHA512 c3fbb6d8a50ee9a84b425d16f28626cecb3b50a5149c1263d02d447854d9117c6fe4f3f2eef7f026c9d7692a499a054895a2b007da9f768c203ea91836382f36 WHIRLPOOL fa87cb033c4a45737abeb706312ac9c4fa2ab921c07cc05f1feaeb4f083727f4ba1a819035345e5dfead536d762025ef8a4eeaa6d039b64efa3350f2a64e64a5
23
24 diff --git a/app-crypt/letsencrypt/letsencrypt-0.2.0.ebuild b/app-crypt/letsencrypt/letsencrypt-0.2.0.ebuild
25 deleted file mode 100644
26 index baf81fa..0000000
27 --- a/app-crypt/letsencrypt/letsencrypt-0.2.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-2.1.0[${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 -}