From d8efffe0f7739ab1974a35f0daba04be8f103bd0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Tue, 8 Dec 2020 14:07:19 -0500 Subject: [PATCH] certbot: update to 1.10.1. Also preserve the certbot.tests module in the package, because it is required for tests in certbot-apache and certbot-nginx. Adds ~60 kB. --- srcpkgs/certbot/template | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/srcpkgs/certbot/template b/srcpkgs/certbot/template index 75360357aeb..4732173b143 100644 --- a/srcpkgs/certbot/template +++ b/srcpkgs/certbot/template @@ -1,6 +1,6 @@ # Template file for 'certbot' pkgname=certbot -version=1.10.0 +version=1.10.1 revision=1 build_style=python3-module hostmakedepends="python3-setuptools" @@ -8,15 +8,14 @@ depends="python3-acme python3-ConfigArgParse python3-configobj python3-cryptography python3-distro python3-josepy python3-parsedatetime python3-pyrfc3339 python3-pytz python3-setuptools python3-zope.component python3-zope.interface" -checkdepends="$depends python3-py python3-pluggy python3-wcwidth - python3-more-itertools python3-pytest" +checkdepends="python3-pytest $depends" short_desc="Let's Encrypt certificate renewal automation utility" maintainer="Alex Childs " license="Apache-2.0" homepage="https://certbot.eff.org/" distfiles="${PYPI_SITE}/c/certbot/certbot-${version}.tar.gz" -checksum=5d79bd451756112a7db2cdb25d193de9baf3df85211ed9587685be32b779bbfc +checksum=0d9ee3fc09e0d03b2d1b1f1c4916e61ecfc6904b4216ddef4e6a5ca1424d9cb7 -post_install() { - rm -rf ${DESTDIR}/${py3_sitelib}/certbot/tests +do_check() { + python3 -m pytest }