Skip to content

Commit

Permalink
security/py-{acme,certbot}: Update to 0.18.2
Browse files Browse the repository at this point in the history
certbot produces an error [1] when used with versions of pyOpenSSL > 17.2.0,
who's port was recently updated [2] to 17.3.0.

This version update contains a fix for that issue.

While I'm here, improve pkg-message usage invocation example and provide
a link to documentation

[1] certbot/certbot#5111
[2] http://svnweb.freebsd.org/changeset/ports/450350

Reported by:	Daniel Boothby (via private email)
Approved by:	cpm (py-acme maintainer)
  • Loading branch information
koobs committed Sep 25, 2017
1 parent 9932ed7 commit 4bf9d1e
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 16 deletions.
2 changes: 1 addition & 1 deletion security/py-acme/Makefile
Expand Up @@ -2,7 +2,7 @@
# $FreeBSD$

PORTNAME= acme
PORTVERSION= 0.18.1
PORTVERSION= 0.18.2
PORTEPOCH= 1
CATEGORIES= security python
MASTER_SITES= CHEESESHOP
Expand Down
6 changes: 3 additions & 3 deletions security/py-acme/distinfo
@@ -1,3 +1,3 @@
TIMESTAMP = 1505333278
SHA256 (acme-0.18.1.tar.gz) = 1e4c6c0a3fb9906f0d1389a39c76d730e2691d7f168a219e464237381ddcc667
SIZE (acme-0.18.1.tar.gz) = 94681
TIMESTAMP = 1506217356
SHA256 (acme-0.18.2.tar.gz) = 718efa9b3a7e6defcc7179e214a838d43a2bcef7dbd77667a2e505504e453ef6
SIZE (acme-0.18.2.tar.gz) = 94686
2 changes: 1 addition & 1 deletion security/py-certbot/Makefile
Expand Up @@ -2,7 +2,7 @@
# $FreeBSD$

PORTNAME= certbot
PORTVERSION= 0.18.1
PORTVERSION= 0.18.2
PORTEPOCH= 1
CATEGORIES= security python
MASTER_SITES= CHEESESHOP
Expand Down
6 changes: 3 additions & 3 deletions security/py-certbot/distinfo
@@ -1,3 +1,3 @@
TIMESTAMP = 1505333366
SHA256 (certbot-0.18.1.tar.gz) = ae0aaf0cc1af53713232a222fb20891475ec9ff9d128a277c4e0f92ea7c36b4c
SIZE (certbot-0.18.1.tar.gz) = 276600
TIMESTAMP = 1506217370
SHA256 (certbot-0.18.2.tar.gz) = 0122e6ee3fc1167fa91883b9f2ea1897f3d0d4612739f175827b5a3e8f259c9a
SIZE (certbot-0.18.2.tar.gz) = 276589
22 changes: 14 additions & 8 deletions security/py-certbot/pkg-message
@@ -1,19 +1,25 @@
===========================================================================

This port installs the "standalone" Python client only, which does not use and
This port installs the "standalone" client only, which does not use and
is not the certbot-auto bootstrap/wrapper script.

To obtain certificates, use the 'certonly' command as follows:
The simplest form of usage to obtain certificates is:

# sudo certbot certonly --standalone -d [server FQDN]
# sudo certbot certonly --standalone -d <domain>, [domain2, ... domainN]>

Note: The client currently requires the ability to bind on TCP port 80. If
you have a server running on this port, it will need to be temporarily stopped
so that the standalone server can listen on that port to complete
authentication.
NOTE:

The client requires the ability to bind on TCP port 80 or 443 (depending
on the --preferred-challenges option used). If a server is running on that
port, it will need to be temporarily stopped so that the standalone server
can listen on that port to complete the challenge authentication process.

For more information on the 'standalone' mode, see:

https://certbot.eff.org/docs/using.html#standalone

The certbot plugins to support apache and nginx certificate installation
will be made available soon in the following ports:
will be made available in the following ports:

* Apache plugin: security/py-certbot-apache
* Nginx plugin: security/py-certbot-nginx
Expand Down

0 comments on commit 4bf9d1e

Please sign in to comment.