pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/security Update py-certbot and py-acme to 0.14.0.
details: https://anonhg.NetBSD.org/pkgsrc/rev/db45e32b0e11
branches: trunk
changeset: 362304:db45e32b0e11
user: fhajny <fhajny%pkgsrc.org@localhost>
date: Thu May 11 08:23:35 2017 +0000
description:
Update py-certbot and py-acme to 0.14.0.
Use ALTERNATIVES to handle different Python versions better.
0.14.0 - 2017-05-04
Added
- Python 3.3+ support for all Certbot packages. certbot-auto still
currently only supports Python 2, but the acme, certbot,
certbot-apache, and certbot-nginx packages on PyPI now fully support
Python 2.6, 2.7, and 3.3+.
- Certbot's Apache plugin now handles multiple virtual hosts per file.
- Lockfiles to prevent multiple versions of Certbot running
simultaneously.
Changed
- When converting an HTTP virtual host to HTTPS in Apache, Certbot
only copies the virtual host rather than the entire contents of the
file it's contained in.
- The Nginx plugin now includes SSL/TLS directives in a separate file
located in Certbot's configuration directory rather than copying the
contents of the file into every modified server block.
Fixed
- Ensure logging is configured before parts of Certbot attempt to log
any messages.
- Support for the --quiet flag in certbot-auto.
- Reverted a change made in a previous release to make the acme and
certbot packages always depend on argparse. This dependency is
conditional again on the user's Python version.
- Small bugs in the Nginx plugin such as properly handling empty
server blocks and setting server_names_hash_bucket_size during
challenges.
diffstat:
security/py-acme/ALTERNATIVES | 1 +
security/py-acme/Makefile | 10 ++++++----
security/py-acme/PLIST | 4 ++--
security/py-certbot/ALTERNATIVES | 1 +
security/py-certbot/Makefile | 10 +++-------
security/py-certbot/Makefile.common | 4 ++--
security/py-certbot/PLIST | 11 ++++++++---
security/py-certbot/distinfo | 10 +++++-----
8 files changed, 28 insertions(+), 23 deletions(-)
diffs (164 lines):
diff -r 3910d2803210 -r db45e32b0e11 security/py-acme/ALTERNATIVES
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/security/py-acme/ALTERNATIVES Thu May 11 08:23:35 2017 +0000
@@ -0,0 +1,1 @@
+bin/jws @PREFIX@/bin/jws@PYVERSSUFFIX@
diff -r 3910d2803210 -r db45e32b0e11 security/py-acme/Makefile
--- a/security/py-acme/Makefile Wed May 10 18:24:13 2017 +0000
+++ b/security/py-acme/Makefile Thu May 11 08:23:35 2017 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.6 2017/04/11 06:32:32 fhajny Exp $
+# $NetBSD: Makefile,v 1.7 2017/05/11 08:23:35 fhajny Exp $
PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/certbot/acme/}
-PKGREVISION= 1
CATEGORIES= security
COMMENT= ACME protocol implementation in Python
@@ -10,9 +9,9 @@
.include "../../security/py-certbot/Makefile.common"
-DEPENDS+= ${PYPKGPREFIX}-argparse-[0-9]*:../../devel/py-argparse
DEPENDS+= ${PYPKGPREFIX}-cryptography>=0.8:../../security/py-cryptography
DEPENDS+= ${PYPKGPREFIX}-OpenSSL>=0.15:../../security/py-OpenSSL
+DEPENDS+= ${PYPKGPREFIX}-mock-[0-9]*:../../devel/py-mock
DEPENDS+= ${PYPKGPREFIX}-pytz-[0-9]*:../../time/py-pytz
DEPENDS+= ${PYPKGPREFIX}-requests>2.10:../../devel/py-requests
DEPENDS+= ${PYPKGPREFIX}-rfc3339-[0-9]*:../../time/py-rfc3339
@@ -21,10 +20,13 @@
EGG_NAME= ${DISTNAME:S/certbot/acme/}
# TEST_DEPENDS
-BUILD_DEPENDS+= ${PYPKGPREFIX}-mock-[0-9]*:../../devel/py-mock
BUILD_DEPENDS+= ${PYPKGPREFIX}-pbr-[0-9]*:../../devel/py-pbr
PYSETUPSUBDIR= acme
+post-install:
+ ${MV} ${DESTDIR}${PREFIX}/bin/jws \
+ ${DESTDIR}${PREFIX}/bin/jws${PYVERSSUFFIX}
+
.include "../../lang/python/egg.mk"
.include "../../mk/bsd.pkg.mk"
diff -r 3910d2803210 -r db45e32b0e11 security/py-acme/PLIST
--- a/security/py-acme/PLIST Wed May 10 18:24:13 2017 +0000
+++ b/security/py-acme/PLIST Thu May 11 08:23:35 2017 +0000
@@ -1,5 +1,5 @@
-@comment $NetBSD: PLIST,v 1.4 2017/02/07 14:03:14 wiz Exp $
-bin/jws
+@comment $NetBSD: PLIST,v 1.5 2017/05/11 08:23:35 fhajny Exp $
+bin/jws${PYVERSSUFFIX}
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
diff -r 3910d2803210 -r db45e32b0e11 security/py-certbot/ALTERNATIVES
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/security/py-certbot/ALTERNATIVES Thu May 11 08:23:35 2017 +0000
@@ -0,0 +1,1 @@
+bin/certbot @PREFIX@/bin/certbot@PYVERSSUFFIX@
diff -r 3910d2803210 -r db45e32b0e11 security/py-certbot/Makefile
--- a/security/py-certbot/Makefile Wed May 10 18:24:13 2017 +0000
+++ b/security/py-certbot/Makefile Thu May 11 08:23:35 2017 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.4 2017/04/10 10:29:38 fhajny Exp $
+# $NetBSD: Makefile,v 1.5 2017/05/11 08:23:35 fhajny Exp $
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
-PKGREVISION= 1
CATEGORIES= security
COMMENT= Client for the Let's Encrypt CA
@@ -10,14 +9,9 @@
EGG_NAME= ${DISTNAME}
-# Only supports Python 2.6 and 2.7 so far
-# https://github.com/certbot/certbot#system-requirements
-PYTHON_VERSIONS_ACCEPTED= 27
-
.include "Makefile.common"
DEPENDS+= ${PYPKGPREFIX}-acme-${PKGVERSION_NOREV}{nb*,}:../../security/py-acme
-DEPENDS+= ${PYPKGPREFIX}-argparse-[0-9]*:../../devel/py-argparse
DEPENDS+= ${PYPKGPREFIX}-configargparse>=0.9.3:../../devel/py-configargparse
DEPENDS+= ${PYPKGPREFIX}-configobj-[0-9]*:../../devel/py-configobj
DEPENDS+= ${PYPKGPREFIX}-cryptography>=0.7:../../security/py-cryptography
@@ -52,6 +46,8 @@
INSTALLATION_DIRS+= share/examples/certbot
post-install:
+ ${MV} ${DESTDIR}${PREFIX}/bin/certbot \
+ ${DESTDIR}${PREFIX}/bin/certbot${PYVERSSUFFIX}
${INSTALL_DATA} ${WRKSRC}/examples/cli.ini \
${DESTDIR}${PREFIX}/share/examples/certbot
diff -r 3910d2803210 -r db45e32b0e11 security/py-certbot/Makefile.common
--- a/security/py-certbot/Makefile.common Wed May 10 18:24:13 2017 +0000
+++ b/security/py-certbot/Makefile.common Thu May 11 08:23:35 2017 +0000
@@ -1,9 +1,9 @@
-# $NetBSD: Makefile.common,v 1.9 2017/04/06 19:51:15 fhajny Exp $
+# $NetBSD: Makefile.common,v 1.10 2017/05/11 08:23:35 fhajny Exp $
#
# used by security/py-acme/Makefile
# used by security/py-certbot/Makefile
-DISTNAME= certbot-0.13.0
+DISTNAME= certbot-0.14.0
MASTER_SITES= ${MASTER_SITE_GITHUB:=certbot/}
HOMEPAGE= https://letsencrypt.org/
diff -r 3910d2803210 -r db45e32b0e11 security/py-certbot/PLIST
--- a/security/py-certbot/PLIST Wed May 10 18:24:13 2017 +0000
+++ b/security/py-certbot/PLIST Thu May 11 08:23:35 2017 +0000
@@ -1,5 +1,5 @@
-@comment $NetBSD: PLIST,v 1.7 2017/04/06 19:51:15 fhajny Exp $
-bin/certbot
+@comment $NetBSD: PLIST,v 1.8 2017/05/11 08:23:35 fhajny Exp $
+bin/certbot${PYVERSSUFFIX}
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
@@ -69,6 +69,9 @@
${PYSITELIB}/certbot/interfaces.py
${PYSITELIB}/certbot/interfaces.pyc
${PYSITELIB}/certbot/interfaces.pyo
+${PYSITELIB}/certbot/lock.py
+${PYSITELIB}/certbot/lock.pyc
+${PYSITELIB}/certbot/lock.pyo
${PYSITELIB}/certbot/log.py
${PYSITELIB}/certbot/log.pyc
${PYSITELIB}/certbot/log.pyo
@@ -198,6 +201,9 @@
${PYSITELIB}/certbot/tests/hook_test.py
${PYSITELIB}/certbot/tests/hook_test.pyc
${PYSITELIB}/certbot/tests/hook_test.pyo
+${PYSITELIB}/certbot/tests/lock_test.py
+${PYSITELIB}/certbot/tests/lock_test.pyc
+${PYSITELIB}/certbot/tests/lock_test.pyo
${PYSITELIB}/certbot/tests/log_test.py
${PYSITELIB}/certbot/tests/log_test.pyc
${PYSITELIB}/certbot/tests/log_test.pyo
@@ -231,7 +237,6 @@
${PYSITELIB}/certbot/tests/testdata/csr-6sans.pem
${PYSITELIB}/certbot/tests/testdata/csr-nonames.pem
${PYSITELIB}/certbot/tests/testdata/csr-nosans.pem
-${PYSITELIB}/certbot/tests/testdata/csr-san.der
${PYSITELIB}/certbot/tests/testdata/csr-san.pem
${PYSITELIB}/certbot/tests/testdata/csr.der
${PYSITELIB}/certbot/tests/testdata/csr.pem
diff -r 3910d2803210 -r db45e32b0e11 security/py-certbot/distinfo
--- a/security/py-certbot/distinfo Wed May 10 18:24:13 2017 +0000
+++ b/security/py-certbot/distinfo Thu May 11 08:23:35 2017 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.9 2017/04/06 19:51:15 fhajny Exp $
+$NetBSD: distinfo,v 1.10 2017/05/11 08:23:35 fhajny Exp $
-SHA1 (certbot-0.13.0.tar.gz) = ac2ea402d61bbd528fb3278131e42e797f9b190f
-RMD160 (certbot-0.13.0.tar.gz) = c7ac22572f072c0d06654b1db7fd6d4bbf3018da
-SHA512 (certbot-0.13.0.tar.gz) = c0bc38b48f0c9731236bba9f4c05da960bfc038be629c5f4c63e80812595c6e0fb679ff901a8bf160efa119b532b5a629435ed595e3b1049f7a15f2c2dd8eb40
-Size (certbot-0.13.0.tar.gz) = 827956 bytes
+SHA1 (certbot-0.14.0.tar.gz) = a9797f51e00b83b4950e42a56e25bef670a2d09b
+RMD160 (certbot-0.14.0.tar.gz) = ba3e6295e992d424d8efeda642ad4671bc737f27
+SHA512 (certbot-0.14.0.tar.gz) = da278e1ac75464c2dfe3d7d649c1010468f5c873f366fc308a9e2ba5b1210f2d03e07d84ffd7a499d9a39d3f66518e7ca87964c1ef121173d3172a0803ad02c5
+Size (certbot-0.14.0.tar.gz) = 850922 bytes
Home |
Main Index |
Thread Index |
Old Index