f9f12a52cc
- apparently the Let's Encrypt test server is rejecting example.com emails - added official python 3.7 support in setup.py - fixed #226, start using POST-as-GET for GET requests - fixed additional POST-as-GET - addresses #205, a situation where polling may hang indefinitely - Also accept critical SAN extensions. - fixed #222, we shouldn't delete the challenge files on errors, but we should clean them up on success
28 lines
873 B
Makefile
28 lines
873 B
Makefile
# $NetBSD: Makefile,v 1.4 2019/07/22 01:36:14 schmonz Exp $
|
|
|
|
DISTNAME= acme-tiny-4.1.0
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= security
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=diafygi/}
|
|
|
|
MAINTAINER= khorben@defora.org
|
|
HOMEPAGE= https://github.com/diafygi/acme-tiny/
|
|
COMMENT= Tiny script to issue and renew TLS certs from Let's Encrypt
|
|
LICENSE= mit
|
|
|
|
GITHUB_PROJECT= acme-tiny
|
|
GITHUB_TAG= ${PKGVERSION_NOREV}
|
|
|
|
NO_BUILD= yes
|
|
INSTALLATION_DIRS=bin share/doc/${PYPKGPREFIX}-acme-tiny
|
|
PLIST_SUBST+= PYPKGPREFIX=${PYPKGPREFIX}
|
|
|
|
REPLACE_PYTHON= acme_tiny.py
|
|
|
|
do-install:
|
|
${INSTALL} -m 0755 ${WRKSRC}/acme_tiny.py ${DESTDIR}${PREFIX}/bin/acme_tiny
|
|
${INSTALL} -m 0644 ${WRKSRC}/README.md ${DESTDIR}${PREFIX}/share/doc/${PYPKGPREFIX}-acme-tiny/README.md
|
|
|
|
.include "../../lang/python/application.mk"
|
|
.include "../../security/openssl/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|