blob: cc4171fa56a2dbbd1552b60fe5279b1a055f2bb9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# $NetBSD: Makefile,v 1.11 2022/01/13 19:31:24 wiz Exp $
DISTNAME= acme-tiny-5.0.1
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
PKGREVISION= 2
CATEGORIES= security python
MASTER_SITES= ${MASTER_SITE_PYPI:=a/acme-tiny/}
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
DEPENDS+= openssl-[0-9]*:../../security/openssl
USE_LANGUAGES= # none
USE_PKG_RESOURCES= yes
PYTHON_VERSIONED_DEPENDENCIES= setuptools_scm:build
post-install:
cd ${DESTDIR}${PREFIX}/bin && \
${MV} acme-tiny acme-tiny-${PYVERSSUFFIX} || ${TRUE}
.include "../../lang/python/egg.mk"
.include "../../lang/python/versioned_dependencies.mk"
.include "../../mk/bsd.pkg.mk"
|