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 227F1138334 for ; Sat, 20 Apr 2019 23:27:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D1A31E0ABD; Sat, 20 Apr 2019 23:20:33 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A6A17E0AB4 for ; Sat, 20 Apr 2019 23:20:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2370B341F01 for ; Sat, 20 Apr 2019 07:02:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F06FD576 for ; Sat, 20 Apr 2019 07:02:29 +0000 (UTC) From: "Robin H. Johnson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Robin H. Johnson" Message-ID: <1555743747.5cb501ebcbcf690f77672d86a1c7117375b50036.robbat2@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/acme/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/acme/acme-0.33.1-r1.ebuild app-crypt/acme/acme-9999.ebuild app-crypt/acme/metadata.xml X-VCS-Directories: app-crypt/acme/ X-VCS-Committer: robbat2 X-VCS-Committer-Name: Robin H. Johnson X-VCS-Revision: 5cb501ebcbcf690f77672d86a1c7117375b50036 X-VCS-Branch: master Date: Sat, 20 Apr 2019 07:02:29 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 848b8d44-22b6-49f8-a003-90f37722eb93 X-Archives-Hash: 2d927085fb8aa7f70272868f16ed8976 commit: 5cb501ebcbcf690f77672d86a1c7117375b50036 Author: Robin H. Johnson gentoo org> AuthorDate: Sat Apr 20 07:02:07 2019 +0000 Commit: Robin H. Johnson gentoo org> CommitDate: Sat Apr 20 07:02:27 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5cb501eb app-crypt/acme: docs & missing indirect dep on dev-python/idna Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Robin H. Johnson gentoo.org> .../{acme-9999.ebuild => acme-0.33.1-r1.ebuild} | 24 ++++++++++++++++++++-- app-crypt/acme/acme-9999.ebuild | 24 ++++++++++++++++++++-- app-crypt/acme/metadata.xml | 1 + 3 files changed, 45 insertions(+), 4 deletions(-) diff --git a/app-crypt/acme/acme-9999.ebuild b/app-crypt/acme/acme-0.33.1-r1.ebuild similarity index 69% copy from app-crypt/acme/acme-9999.ebuild copy to app-crypt/acme/acme-0.33.1-r1.ebuild index 9df5e0dbdae..bfa507fa149 100644 --- a/app-crypt/acme/acme-9999.ebuild +++ b/app-crypt/acme/acme-0.33.1-r1.ebuild @@ -21,10 +21,11 @@ HOMEPAGE="https://github.com/certbot/certbot https://letsencrypt.org/" LICENSE="Apache-2.0" SLOT="0" -IUSE="test" +IUSE="doc test" RDEPEND=" - >=dev-python/cryptography-1.2.3[${PYTHON_USEDEP}] + >=dev-python/cryptography-1.3.4[${PYTHON_USEDEP}] + >=dev-python/idna-2.0.0[${PYTHON_USEDEP}] >=dev-python/josepy-1.1.0[${PYTHON_USEDEP}] dev-python/mock[${PYTHON_USEDEP}] >=dev-python/pyopenssl-0.13.1[${PYTHON_USEDEP}] @@ -35,14 +36,33 @@ RDEPEND=" >=dev-python/six-1.9.0[${PYTHON_USEDEP}] " DEPEND=" + doc? ( + dev-python/sphinx[${PYTHON_USEDEP}] + dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}] + ) test? ( ${RDEPEND} dev-python/pytest[${PYTHON_USEDEP}] dev-python/pytest-xdist[${PYTHON_USEDEP}] + dev-python/tox[${PYTHON_USEDEP}] ) >=dev-python/setuptools-1.0[${PYTHON_USEDEP}] " +src_compile() { + python_foreach_impl run_in_build_dir default + if use doc ; then + cd docs || die + sphinx-build -b html -d _build/doctrees . _build/html + fi +} + python_test() { nosetests -w ${PN} || die } + +python_install_all() { + use doc && local HTML_DOCS=( docs/_build/html/. ) + + distutils-r1_python_install_all +} diff --git a/app-crypt/acme/acme-9999.ebuild b/app-crypt/acme/acme-9999.ebuild index 9df5e0dbdae..bfa507fa149 100644 --- a/app-crypt/acme/acme-9999.ebuild +++ b/app-crypt/acme/acme-9999.ebuild @@ -21,10 +21,11 @@ HOMEPAGE="https://github.com/certbot/certbot https://letsencrypt.org/" LICENSE="Apache-2.0" SLOT="0" -IUSE="test" +IUSE="doc test" RDEPEND=" - >=dev-python/cryptography-1.2.3[${PYTHON_USEDEP}] + >=dev-python/cryptography-1.3.4[${PYTHON_USEDEP}] + >=dev-python/idna-2.0.0[${PYTHON_USEDEP}] >=dev-python/josepy-1.1.0[${PYTHON_USEDEP}] dev-python/mock[${PYTHON_USEDEP}] >=dev-python/pyopenssl-0.13.1[${PYTHON_USEDEP}] @@ -35,14 +36,33 @@ RDEPEND=" >=dev-python/six-1.9.0[${PYTHON_USEDEP}] " DEPEND=" + doc? ( + dev-python/sphinx[${PYTHON_USEDEP}] + dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}] + ) test? ( ${RDEPEND} dev-python/pytest[${PYTHON_USEDEP}] dev-python/pytest-xdist[${PYTHON_USEDEP}] + dev-python/tox[${PYTHON_USEDEP}] ) >=dev-python/setuptools-1.0[${PYTHON_USEDEP}] " +src_compile() { + python_foreach_impl run_in_build_dir default + if use doc ; then + cd docs || die + sphinx-build -b html -d _build/doctrees . _build/html + fi +} + python_test() { nosetests -w ${PN} || die } + +python_install_all() { + use doc && local HTML_DOCS=( docs/_build/html/. ) + + distutils-r1_python_install_all +} diff --git a/app-crypt/acme/metadata.xml b/app-crypt/acme/metadata.xml index d18839cc8da..d0f0d1620b5 100644 --- a/app-crypt/acme/metadata.xml +++ b/app-crypt/acme/metadata.xml @@ -6,6 +6,7 @@ Matthew Thode + acme letsencrypt/letsencrypt