diff options
author | Manuel Rüger <mrueg@gentoo.org> | 2016-10-24 23:47:54 +0200 |
---|---|---|
committer | Manuel Rüger <mrueg@gentoo.org> | 2016-10-24 23:48:34 +0200 |
commit | 071e1af15ef25155f6ca12ebe2713e48241d9590 (patch) | |
tree | cefd7b798000f3b513cdeb10fb90ef10dcf568cd /app-crypt/certbot-apache/certbot-apache-9999.ebuild | |
parent | app-crypt/certbot-apache: Initial version (diff) | |
download | gentoo-071e1af15ef25155f6ca12ebe2713e48241d9590.tar.gz gentoo-071e1af15ef25155f6ca12ebe2713e48241d9590.tar.bz2 gentoo-071e1af15ef25155f6ca12ebe2713e48241d9590.zip |
app-crypt/certbot-apache: Sync live
Package-Manager: portage-2.3.2
Diffstat (limited to 'app-crypt/certbot-apache/certbot-apache-9999.ebuild')
-rw-r--r-- | app-crypt/certbot-apache/certbot-apache-9999.ebuild | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/app-crypt/certbot-apache/certbot-apache-9999.ebuild b/app-crypt/certbot-apache/certbot-apache-9999.ebuild index 5714f37e9244..0363587af1bd 100644 --- a/app-crypt/certbot-apache/certbot-apache-9999.ebuild +++ b/app-crypt/certbot-apache/certbot-apache-9999.ebuild @@ -5,20 +5,27 @@ EAPI=5 PYTHON_COMPAT=(python2_7) -EGIT_REPO_URI="https://github.com/certbot/certbot.git" - -inherit git-r3 distutils-r1 +if [[ ${PV} == 9999* ]]; then + EGIT_REPO_URI="https://github.com/certbot/certbot.git" + inherit git-r3 + S=${WORKDIR}/${P}/${PN} +else + SRC_URI="https://github.com/${PN%-apache}/${PN%-apache}/archive/v${PV}.tar.gz -> ${PN%-apache}-${PV}.tar.gz" + KEYWORDS="~amd64" + S=${WORKDIR}/${PN%-apache}-${PV}/${PN} +fi + +inherit 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}] +RDEPEND="~app-crypt/certbot-${PV}[${PYTHON_USEDEP}] + ~app-crypt/acme-${PV}[${PYTHON_USEDEP}] dev-python/mock[${PYTHON_USEDEP}] dev-python/python-augeas[${PYTHON_USEDEP}] dev-python/zope-component[${PYTHON_USEDEP}] @@ -27,8 +34,6 @@ DEPEND="test? ( ${RDEPEND} dev-python/nose[${PYTHON_USEDEP}] ) dev-python/setuptools[${PYTHON_USEDEP}]" -S=${WORKDIR}/${P}/certbot-apache - python_test() { nosetests || die } |