forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
app-crypt/certbot: Version bump to 0.9.3
Package-Manager: portage-2.3.2
- Loading branch information
Showing
2 changed files
with
58 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST certbot-0.8.1.tar.gz 698305 SHA256 1fb4834eba306a656f26257f86ed298df354cdecb1b0bde316a9d23a1e19db01 SHA512 8b21d270b5ee847086369b956b3346fdddd50ab0e4490d988e7ca535f4d4101e2859e99bc5f77ac920afd3a6a9210e407b155c89c28d282dc0544735a27e3eaa WHIRLPOOL 909a3f6f63fac84bf6fe8fb35b9aba46c06912af01d5f702eee5b6aeab49d4f2a92fa05e4f060da11ac6cbc89047e92457f626d6c82aa0de0f1127ca79924fc7 | ||
DIST certbot-0.9.3.tar.gz 794146 SHA256 5c40cfcf3a17624e34dcb733148bd247c4f0cee189766fe0fb6d29571d4068bb SHA512 a951e639515fc037721d8b086e53100dcc86974a96c61c7173b2a9c0582bb59380efe219caf3fd1517fcdf28dde4a1f66bba84b51e2a2027df114818ff4d7565 WHIRLPOOL 45c7b17cffc971acf3b6998c5702abd91c067e095acd9a4264109e711b869ac1db9e7d2a4ff9d86d680f5579b6a2fbca610a6905c81e549f72a10adf17f19da2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
# Copyright 1999-2016 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/certbot/certbot.git" | ||
inherit git-r3 | ||
KEYWORDS="" | ||
else | ||
SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" | ||
KEYWORDS="~amd64 ~arm ~x86" | ||
fi | ||
|
||
inherit distutils-r1 | ||
|
||
DESCRIPTION="Let's encrypt client to automate deployment of X.509 certificates" | ||
HOMEPAGE="https://github.com/certbot/certbot https://letsencrypt.org/" | ||
|
||
LICENSE="Apache-2.0" | ||
SLOT="0" | ||
IUSE="test" | ||
|
||
RDEPEND=" | ||
=app-crypt/acme-${PV}[${PYTHON_USEDEP}] | ||
>=dev-python/configargparse-0.9.3[${PYTHON_USEDEP}] | ||
dev-python/configobj[${PYTHON_USEDEP}] | ||
>=dev-python/cryptography-0.7[${PYTHON_USEDEP}] | ||
>=dev-python/parsedatetime-1.3[${PYTHON_USEDEP}] | ||
dev-python/pyopenssl[${PYTHON_USEDEP}] | ||
dev-python/pyrfc3339[${PYTHON_USEDEP}] | ||
dev-python/pytz[${PYTHON_USEDEP}] | ||
dev-python/six[${PYTHON_USEDEP}] | ||
>=dev-python/psutil-2.2.1[${PYTHON_USEDEP}] | ||
dev-python/zope-component[${PYTHON_USEDEP}] | ||
dev-python/zope-interface[${PYTHON_USEDEP}] | ||
$(python_gen_cond_dep '>=dev-python/pythondialog-3.2.2:python-2' python2_7) | ||
dev-python/mock[${PYTHON_USEDEP}]" | ||
# for when py3 support is added | ||
# $(python_gen_cond_dep '>=dev-python/pythondialog-3.2.2:0' python3_*) | ||
DEPEND=" | ||
>=dev-python/setuptools-1.0[${PYTHON_USEDEP}] | ||
test? ( | ||
>=dev-python/astroid-1.3.5[${PYTHON_USEDEP}] | ||
dev-python/coverage[${PYTHON_USEDEP}] | ||
dev-python/nose[${PYTHON_USEDEP}] | ||
dev-python/pep8[${PYTHON_USEDEP}] | ||
>=dev-python/psutil-2.2.1[${PYTHON_USEDEP}] | ||
>=dev-python/pylint-1.4.2[${PYTHON_USEDEP}] | ||
dev-python/wheel[${PYTHON_USEDEP}] | ||
)" | ||
|
||
python_test() { | ||
nosetests -v ${PN} || die | ||
} |