gentoo-overlay/app-crypt/certbot-apache/certbot-apache-0.8.1.ebuild

43 lines
1.0 KiB
Bash

# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI="6"
PYTHON_COMPAT=(python2_7)
MY_PN="certbot"
MY_P="${MY_PN}-${PV}"
if [[ ${PV} == 9999* ]]; then
EGIT_REPO_URI="https://github.com/${MY_PN}/${MY_PN}.git"
inherit git-r3 distutils-r1
KEYWORDS=""
else
SRC_URI="https://github.com/${MY_PN}/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
inherit distutils-r1
KEYWORDS="~amd64"
fi
DESCRIPTION="Apache plugin for letsencrypt"
HOMEPAGE="https://github.com/certbot/certbot https://letsencrypt.org/"
LICENSE="Apache-2.0"
SLOT="0"
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}/${MY_P}/${PN}
python_test() {
nosetests -w ${PN/-/_}/tests || die
}