From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 66CC1138D57 for ; Mon, 24 Oct 2016 21:48:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C8736E090B; Mon, 24 Oct 2016 21:48:46 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B3F20E090B for ; Mon, 24 Oct 2016 21:48:46 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A0B343416AE for ; Mon, 24 Oct 2016 21:48:45 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6856C248E for ; Mon, 24 Oct 2016 21:48:44 +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: <1477345711.af8790152a2a9b950040467a30aea970be94a3e2.mrueg@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/certbot-apache/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/certbot-apache/certbot-apache-0.9.3.ebuild X-VCS-Directories: app-crypt/certbot-apache/ X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: af8790152a2a9b950040467a30aea970be94a3e2 X-VCS-Branch: master Date: Mon, 24 Oct 2016 21:48:44 +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: 937552f7-37dd-4430-934a-13e4feca5157 X-Archives-Hash: 8caae68d97691741818e659688312826 commit: af8790152a2a9b950040467a30aea970be94a3e2 Author: Manuel Rüger gentoo org> AuthorDate: Mon Oct 24 21:46:54 2016 +0000 Commit: Manuel Rüger gentoo org> CommitDate: Mon Oct 24 21:48:31 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af879015 app-crypt/certbot-apache: Initial version Package-Manager: portage-2.3.2 .../certbot-apache/certbot-apache-0.9.3.ebuild | 34 ++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/app-crypt/certbot-apache/certbot-apache-0.9.3.ebuild b/app-crypt/certbot-apache/certbot-apache-0.9.3.ebuild new file mode 100644 index 00000000..5714f37 --- /dev/null +++ b/app-crypt/certbot-apache/certbot-apache-0.9.3.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +PYTHON_COMPAT=(python2_7) + +EGIT_REPO_URI="https://github.com/certbot/certbot.git" + +inherit git-r3 distutils-r1 + +DESCRIPTION="Apache plugin for certbot (Let's Encrypt Client)" +HOMEPAGE="https://github.com/certbot/certbot https://letsencrypt.org/" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="" +IUSE="test" + +RDEPEND="app-crypt/certbot[${PYTHON_USEDEP}] + app-crypt/acme[${PYTHON_USEDEP}] + dev-python/mock[${PYTHON_USEDEP}] + dev-python/python-augeas[${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}]" + +S=${WORKDIR}/${P}/certbot-apache + +python_test() { + nosetests || die +}