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: Fri, 11 Dec 2015 23:00:38
Message-Id: 1449874813.4f2bd3997d4c9f3e6c96e9373983dc0503191162.mrueg@gentoo
1 commit: 4f2bd3997d4c9f3e6c96e9373983dc0503191162
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Fri Dec 11 22:59:18 2015 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Fri Dec 11 23:00:13 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f2bd399
7
8 app-crypt/letsencrypt: Initial version
9
10 Package-Manager: portage-2.2.26
11
12 app-crypt/letsencrypt/Manifest | 1 +
13 app-crypt/letsencrypt/letsencrypt-0.1.0-r1.ebuild | 46 +++++++++++++++++++++++
14 2 files changed, 47 insertions(+)
15
16 diff --git a/app-crypt/letsencrypt/Manifest b/app-crypt/letsencrypt/Manifest
17 new file mode 100644
18 index 0000000..327e5a2
19 --- /dev/null
20 +++ b/app-crypt/letsencrypt/Manifest
21 @@ -0,0 +1 @@
22 +DIST letsencrypt-0.1.0.tar.gz 524821 SHA256 1c1ac7b41e5e0fc0e41a7ef159ac9147a4aafff54453d57b519eb05bf52ade14 SHA512 6a786290362741ac97dcb4b59bc4cba56f3e8b5193bbc10be19086d462f76e6124259c42bac36afe9eb818f4bb9edec34f8e2a02bd8c855e3b35404f4ee81f96 WHIRLPOOL cdc41a3466de54ab8ddfeedea9935205d78383028769dcfbc876be0c2ef80c2d14f5d0e4a9c56a751163718f5ababb07848822989a060de7031ea8ebdf6424a0
23
24 diff --git a/app-crypt/letsencrypt/letsencrypt-0.1.0-r1.ebuild b/app-crypt/letsencrypt/letsencrypt-0.1.0-r1.ebuild
25 new file mode 100644
26 index 0000000..72156f5
27 --- /dev/null
28 +++ b/app-crypt/letsencrypt/letsencrypt-0.1.0-r1.ebuild
29 @@ -0,0 +1,46 @@
30 +# Copyright 1999-2015 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}/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[${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 +}