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, 01 Dec 2015 20:52:38
Message-Id: 1449003129.d0cac17662ed8976fded919ff4b55fe032fd6660.mrueg@gentoo
1 commit: d0cac17662ed8976fded919ff4b55fe032fd6660
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 1 20:52:09 2015 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 1 20:52:09 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0cac176
7
8 app-crypt/letsencrypt: Initial version
9
10 Package-Manager: portage-2.2.26
11
12 app-crypt/letsencrypt/letsencrypt-9999.ebuild | 40 +++++++++++++++++++++++++++
13 app-crypt/letsencrypt/metadata.xml | 8 ++++++
14 2 files changed, 48 insertions(+)
15
16 diff --git a/app-crypt/letsencrypt/letsencrypt-9999.ebuild b/app-crypt/letsencrypt/letsencrypt-9999.ebuild
17 new file mode 100644
18 index 0000000..c271da7
19 --- /dev/null
20 +++ b/app-crypt/letsencrypt/letsencrypt-9999.ebuild
21 @@ -0,0 +1,40 @@
22 +# Copyright 1999-2015 Gentoo Foundation
23 +# Distributed under the terms of the GNU General Public License v2
24 +# $Id$
25 +
26 +EAPI=5
27 +PYTHON_COMPAT=(python2_7)
28 +
29 +EGIT_REPO_URI="https://github.com/letsencrypt/letsencrypt.git"
30 +
31 +inherit git-r3 distutils-r1
32 +
33 +DESCRIPTION="Let's encrypt client to automate deployment of X.509 certificates"
34 +HOMEPAGE="https://github.com/letsencrypt/letsencrypt https://letsencrypt.org/"
35 +
36 +LICENSE="Apache-2.0"
37 +SLOT="0"
38 +KEYWORDS=""
39 +IUSE="test"
40 +
41 +RDEPEND=">=app-crypt/acme-${PV}[${PYTHON_USEDEP}]
42 + dev-python/configargparse[${PYTHON_USEDEP}]
43 + dev-python/configobj[${PYTHON_USEDEP}]
44 + >=dev-python/cryptography-0.7[${PYTHON_USEDEP}]
45 + dev-python/mock[${PYTHON_USEDEP}]
46 + dev-python/parsedatetime[${PYTHON_USEDEP}]
47 + >=dev-python/psutil-2.1.0[${PYTHON_USEDEP}]
48 + >=dev-python/pyopenssl-0.15[${PYTHON_USEDEP}]
49 + dev-python/pyrfc3339[${PYTHON_USEDEP}]
50 + >=dev-python/pythondialog-3.2.2:python-2[${PYTHON_USEDEP}]
51 + dev-python/pytz[${PYTHON_USEDEP}]
52 + dev-python/requests[${PYTHON_USEDEP}]
53 + dev-python/zope-component[${PYTHON_USEDEP}]
54 + dev-python/zope-interface[${PYTHON_USEDEP}]"
55 +DEPEND="test? ( ${RDEPEND}
56 + dev-python/nose[${PYTHON_USEDEP}] )
57 + dev-python/setuptools[${PYTHON_USEDEP}]"
58 +
59 +python_test() {
60 + nosetests -w ${PN}/tests || die
61 +}
62
63 diff --git a/app-crypt/letsencrypt/metadata.xml b/app-crypt/letsencrypt/metadata.xml
64 new file mode 100644
65 index 0000000..bfcb697
66 --- /dev/null
67 +++ b/app-crypt/letsencrypt/metadata.xml
68 @@ -0,0 +1,8 @@
69 +<?xml version="1.0" encoding="UTF-8"?>
70 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
71 +<pkgmetadata>
72 + <maintainer>
73 + <email>mrueg@g.o</email>
74 + <name>Manuel Rüger</name>
75 + </maintainer>
76 +</pkgmetadata>