update to certbot 0.25.1
This commit is contained in:
parent
f5ef31a8e3
commit
0f5f232882
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile.inc,v 1.37 2018/03/20 14:47:54 sthen Exp $
|
||||
# $OpenBSD: Makefile.inc,v 1.38 2018/06/22 00:03:15 sthen Exp $
|
||||
|
||||
HOMEPAGE?= https://letsencrypt.org/
|
||||
MAINTAINER?= Stuart Henderson <sthen@openbsd.org>
|
||||
@ -8,7 +8,7 @@ CATEGORIES?= security/letsencrypt security
|
||||
MODPY_PI?= Yes
|
||||
MODPY_SETUPTOOLS?= Yes
|
||||
|
||||
MODPY_EGG_VERSION?= 0.22.2
|
||||
MODPY_EGG_VERSION?= 0.25.1
|
||||
|
||||
MODULES?= lang/python
|
||||
|
||||
|
@ -1,2 +1,2 @@
|
||||
SHA256 (certbot-0.22.2.tar.gz) = 5uNjkpPng5fzH32Z48Y6/4LZHisNUNFG7jx3+DBGS+8=
|
||||
SIZE (certbot-0.22.2.tar.gz) = 292258
|
||||
SHA256 (certbot-0.25.1.tar.gz) = XCPlGGEzuxr9gFvl4M0vt7lYYqiwRZyeytSuYPkz5U4=
|
||||
SIZE (certbot-0.25.1.tar.gz) = 305393
|
||||
|
@ -1,4 +1,4 @@
|
||||
@comment $OpenBSD: PLIST,v 1.18 2017/09/09 14:17:10 sthen Exp $
|
||||
@comment $OpenBSD: PLIST,v 1.19 2018/06/22 00:03:15 sthen Exp $
|
||||
@extraunexec rm -rf /var/log/certbot/*
|
||||
bin/certbot
|
||||
bin/letsencrypt
|
||||
@ -102,6 +102,10 @@ lib/python${MODPY_VERSION}/site-packages/certbot/plugins/standalone.py
|
||||
lib/python${MODPY_VERSION}/site-packages/certbot/plugins/standalone.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/certbot/plugins/standalone_test.py
|
||||
lib/python${MODPY_VERSION}/site-packages/certbot/plugins/standalone_test.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/certbot/plugins/storage.py
|
||||
lib/python${MODPY_VERSION}/site-packages/certbot/plugins/storage.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/certbot/plugins/storage_test.py
|
||||
lib/python${MODPY_VERSION}/site-packages/certbot/plugins/storage_test.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/certbot/plugins/util.py
|
||||
lib/python${MODPY_VERSION}/site-packages/certbot/plugins/util.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/certbot/plugins/util_test.py
|
||||
@ -169,6 +173,8 @@ lib/python${MODPY_VERSION}/site-packages/certbot/tests/ocsp_test.py
|
||||
lib/python${MODPY_VERSION}/site-packages/certbot/tests/ocsp_test.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/certbot/tests/renewal_test.py
|
||||
lib/python${MODPY_VERSION}/site-packages/certbot/tests/renewal_test.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/certbot/tests/renewupdater_test.py
|
||||
lib/python${MODPY_VERSION}/site-packages/certbot/tests/renewupdater_test.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/certbot/tests/reporter_test.py
|
||||
lib/python${MODPY_VERSION}/site-packages/certbot/tests/reporter_test.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/certbot/tests/reverter_test.py
|
||||
@ -208,6 +214,8 @@ lib/python${MODPY_VERSION}/site-packages/certbot/tests/util.py
|
||||
lib/python${MODPY_VERSION}/site-packages/certbot/tests/util.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/certbot/tests/util_test.py
|
||||
lib/python${MODPY_VERSION}/site-packages/certbot/tests/util_test.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/certbot/updater.py
|
||||
lib/python${MODPY_VERSION}/site-packages/certbot/updater.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/certbot/util.py
|
||||
lib/python${MODPY_VERSION}/site-packages/certbot/util.pyc
|
||||
share/examples/certbot/
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.15 2018/03/16 19:48:46 sthen Exp $
|
||||
# $OpenBSD: Makefile,v 1.16 2018/06/22 00:03:15 sthen Exp $
|
||||
|
||||
COMMENT= ACME protocol implementation
|
||||
|
||||
@ -17,16 +17,23 @@ RUN_DEPENDS= devel/py-asn1${MODPY_FLAVOR} \
|
||||
textproc/py-pyRFC3339${MODPY_FLAVOR} \
|
||||
www/py-ndg-httpsclient${MODPY_FLAVOR} \
|
||||
www/py-requests${MODPY_FLAVOR} \
|
||||
www/py-requests-toolbelt${MODPY_FLAVOR} \
|
||||
www/py-werkzeug${MODPY_FLAVOR}
|
||||
|
||||
BUILD_DEPENDS= ${RUN_DEPENDS}
|
||||
SUBST_VARS= MODPY_FLAVOR
|
||||
|
||||
# weird hangs in network-listening tests.
|
||||
TEST_IS_INTERACTIVE= Yes
|
||||
## XXX
|
||||
# imported module 'acme.jws_test' has this __file__ attribute:
|
||||
# /usr/obj/ports/py-acme-0.25.1/acme-0.25.1/acme/jws_test.py
|
||||
# which is not the same as the test file we want to collect:
|
||||
# /usr/obj/ports/py-acme-0.25.1/acme-0.25.1/lib/acme/jws_test.py
|
||||
NO_TEST= Yes
|
||||
|
||||
TEST_DEPENDS= devel/py-funcsigs${MODPY_FLAVOR} \
|
||||
devel/py-nose${MODPY_FLAVOR} \
|
||||
devel/py-mock${MODPY_FLAVOR}
|
||||
# weird hangs in network-listening tests.
|
||||
#TEST_IS_INTERACTIVE= Yes
|
||||
#
|
||||
#TEST_DEPENDS= devel/py-funcsigs${MODPY_FLAVOR} \
|
||||
# devel/py-mock${MODPY_FLAVOR}
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,2 +1,2 @@
|
||||
SHA256 (acme-0.22.2.tar.gz) = Ds0Oo2n1PVvHRNbnJxf5ry4c61WNEJ29QzFIhRAnrbQ=
|
||||
SIZE (acme-0.22.2.tar.gz) = 77965
|
||||
SHA256 (acme-0.25.1.tar.gz) = R7Xz9z1pt7HRP5GKos11qAkwaaaL7PSvOOQo5GE7JzQ=
|
||||
SIZE (acme-0.25.1.tar.gz) = 79987
|
||||
|
@ -1,4 +1,4 @@
|
||||
@comment $OpenBSD: PLIST,v 1.8 2018/03/16 19:48:46 sthen Exp $
|
||||
@comment $OpenBSD: PLIST,v 1.9 2018/06/22 00:03:15 sthen Exp $
|
||||
@pkgpath security/py-acme${MODPY_FLAVOR}
|
||||
lib/python${MODPY_VERSION}/site-packages/acme/
|
||||
lib/python${MODPY_VERSION}/site-packages/acme-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info/
|
||||
@ -22,6 +22,8 @@ lib/python${MODPY_VERSION}/site-packages/acme/${MODPY_PYCACHE}fields.${MODPY_PYC
|
||||
lib/python${MODPY_VERSION}/site-packages/acme/${MODPY_PYCACHE}fields_test.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/acme/${MODPY_PYCACHE}jws.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/acme/${MODPY_PYCACHE}jws_test.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/acme/${MODPY_PYCACHE}magic_typing.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/acme/${MODPY_PYCACHE}magic_typing_test.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/acme/${MODPY_PYCACHE}messages.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/acme/${MODPY_PYCACHE}messages_test.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/acme/${MODPY_PYCACHE}standalone.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
@ -41,6 +43,8 @@ lib/python${MODPY_VERSION}/site-packages/acme/fields.py
|
||||
lib/python${MODPY_VERSION}/site-packages/acme/fields_test.py
|
||||
lib/python${MODPY_VERSION}/site-packages/acme/jws.py
|
||||
lib/python${MODPY_VERSION}/site-packages/acme/jws_test.py
|
||||
lib/python${MODPY_VERSION}/site-packages/acme/magic_typing.py
|
||||
lib/python${MODPY_VERSION}/site-packages/acme/magic_typing_test.py
|
||||
lib/python${MODPY_VERSION}/site-packages/acme/messages.py
|
||||
lib/python${MODPY_VERSION}/site-packages/acme/messages_test.py
|
||||
lib/python${MODPY_VERSION}/site-packages/acme/standalone.py
|
||||
|
Loading…
Reference in New Issue
Block a user