From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id B39201384B4 for ; Fri, 11 Dec 2015 23:00:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 60A5D21C09A; Fri, 11 Dec 2015 23:00:35 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D28F021C09A for ; Fri, 11 Dec 2015 23:00:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 70ACB340836 for ; Fri, 11 Dec 2015 23:00:32 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 97BF6A34 for ; Fri, 11 Dec 2015 23:00:30 +0000 (UTC) From: "Manuel Rüger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Manuel Rüger" Message-ID: <1449874813.4f2bd3997d4c9f3e6c96e9373983dc0503191162.mrueg@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/letsencrypt/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/letsencrypt/Manifest app-crypt/letsencrypt/letsencrypt-0.1.0-r1.ebuild X-VCS-Directories: app-crypt/letsencrypt/ X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: 4f2bd3997d4c9f3e6c96e9373983dc0503191162 X-VCS-Branch: master Date: Fri, 11 Dec 2015 23:00:30 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 00b73896-63be-484b-89d3-be38d0eaf314 X-Archives-Hash: eb1842c34dca7c12e3a9d6e7bf46545b commit: 4f2bd3997d4c9f3e6c96e9373983dc0503191162 Author: Manuel Rüger gentoo org> AuthorDate: Fri Dec 11 22:59:18 2015 +0000 Commit: Manuel Rüger gentoo org> CommitDate: Fri Dec 11 23:00:13 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f2bd399 app-crypt/letsencrypt: Initial version Package-Manager: portage-2.2.26 app-crypt/letsencrypt/Manifest | 1 + app-crypt/letsencrypt/letsencrypt-0.1.0-r1.ebuild | 46 +++++++++++++++++++++++ 2 files changed, 47 insertions(+) diff --git a/app-crypt/letsencrypt/Manifest b/app-crypt/letsencrypt/Manifest new file mode 100644 index 0000000..327e5a2 --- /dev/null +++ b/app-crypt/letsencrypt/Manifest @@ -0,0 +1 @@ +DIST letsencrypt-0.1.0.tar.gz 524821 SHA256 1c1ac7b41e5e0fc0e41a7ef159ac9147a4aafff54453d57b519eb05bf52ade14 SHA512 6a786290362741ac97dcb4b59bc4cba56f3e8b5193bbc10be19086d462f76e6124259c42bac36afe9eb818f4bb9edec34f8e2a02bd8c855e3b35404f4ee81f96 WHIRLPOOL cdc41a3466de54ab8ddfeedea9935205d78383028769dcfbc876be0c2ef80c2d14f5d0e4a9c56a751163718f5ababb07848822989a060de7031ea8ebdf6424a0 diff --git a/app-crypt/letsencrypt/letsencrypt-0.1.0-r1.ebuild b/app-crypt/letsencrypt/letsencrypt-0.1.0-r1.ebuild new file mode 100644 index 0000000..72156f5 --- /dev/null +++ b/app-crypt/letsencrypt/letsencrypt-0.1.0-r1.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +PYTHON_COMPAT=(python2_7) + +if [[ ${PV} == 9999* ]]; then + EGIT_REPO_URI="https://github.com/letsencrypt/letsencrypt.git" + inherit git-r3 + KEYWORDS="" +else + SRC_URI="https://github.com/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64" +fi + +inherit distutils-r1 + +DESCRIPTION="Let's encrypt client to automate deployment of X.509 certificates" +HOMEPAGE="https://github.com/letsencrypt/letsencrypt https://letsencrypt.org/" + +LICENSE="Apache-2.0" +SLOT="0" +IUSE="test" + +RDEPEND=">=app-crypt/acme-${PV}[${PYTHON_USEDEP}] + dev-python/configargparse[${PYTHON_USEDEP}] + dev-python/configobj[${PYTHON_USEDEP}] + >=dev-python/cryptography-0.7[${PYTHON_USEDEP}] + dev-python/mock[${PYTHON_USEDEP}] + dev-python/parsedatetime[${PYTHON_USEDEP}] + >=dev-python/psutil-2.1.0[${PYTHON_USEDEP}] + >=dev-python/pyopenssl-0.15[${PYTHON_USEDEP}] + dev-python/pyrfc3339[${PYTHON_USEDEP}] + >=dev-python/pythondialog-3.2.2:python-2[${PYTHON_USEDEP}] + dev-python/pytz[${PYTHON_USEDEP}] + dev-python/requests[${PYTHON_USEDEP}] + dev-python/zope-component[${PYTHON_USEDEP}] + dev-python/zope-interface[${PYTHON_USEDEP}]" +DEPEND="test? ( ${RDEPEND} + dev-python/nose[${PYTHON_USEDEP}] ) + dev-python/setuptools[${PYTHON_USEDEP}]" + +python_test() { + nosetests -w ${PN}/tests || die +}