svn commit: r397967 - in head/security: . py-acme

Kurt Jaeger pi at FreeBSD.org
Sat Sep 26 12:37:45 UTC 2015


Author: pi
Date: Sat Sep 26 12:37:43 2015
New Revision: 397967
URL: https://svnweb.freebsd.org/changeset/ports/397967

Log:
  New port: security/py-acme
  
  Implements the Automated Certificate Management Environment (ACME)
  
  WWW: https://github.com/letsencrypt/letsencrypt/tree/master/acme
  
  PR:		203364
  Submitted by:	Carlos J Puga Medina <cpm at fbsd.es>, pi

Added:
  head/security/py-acme/
  head/security/py-acme/Makefile   (contents, props changed)
  head/security/py-acme/distinfo   (contents, props changed)
  head/security/py-acme/pkg-descr   (contents, props changed)
Modified:
  head/security/Makefile

Modified: head/security/Makefile
==============================================================================
--- head/security/Makefile	Sat Sep 26 12:29:04 2015	(r397966)
+++ head/security/Makefile	Sat Sep 26 12:37:43 2015	(r397967)
@@ -785,6 +785,7 @@
     SUBDIR += py-Products.PluggableAuthService
     SUBDIR += py-RestrictedPython
     SUBDIR += py-SecretStorage
+    SUBDIR += py-acme
     SUBDIR += py-artifacts
     SUBDIR += py-bcrypt
     SUBDIR += py-borg.localrole

Added: head/security/py-acme/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/py-acme/Makefile	Sat Sep 26 12:37:43 2015	(r397967)
@@ -0,0 +1,33 @@
+# Created by: Carlos J Puga Medina <cpm at fbsd.es>
+# $FreeBSD$
+
+PORTNAME=	acme
+PORTVERSION=	0.0.b1
+CATEGORIES=	security python
+
+MAINTAINER=	cpm at fbsd.es
+COMMENT=	ACME implementation
+
+LICENSE=	APACHE20
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}asn1>0:${PORTSDIR}/devel/py-asn1 \
+		${PYTHON_PKGNAMEPREFIX}cryptography>=0.8:${PORTSDIR}/security/py-cryptography \
+		${PYTHON_PKGNAMEPREFIX}mock>=1.0.1:${PORTSDIR}/devel/py-mock \
+		${PYTHON_PKGNAMEPREFIX}ndg_httpsclient>=0.4.0:${PORTSDIR}/net/py-ndg_httpsclient \
+		${PYTHON_PKGNAMEPREFIX}pyrfc3339>=0.2:${PORTSDIR}/devel/py-pyrfc3339 \
+		${PYTHON_PKGNAMEPREFIX}pytz>=2015.4:${PORTSDIR}/devel/py-pytz \
+		${PYTHON_PKGNAMEPREFIX}requests>0:${PORTSDIR}/www/py-requests \
+		${PYTHON_PKGNAMEPREFIX}six>=1.9.0:${PORTSDIR}/devel/py-six \
+		${PYTHON_PKGNAMEPREFIX}werkzeug>=0.9:${PORTSDIR}/www/py-werkzeug
+
+USES=		gmake python
+USE_PYTHON=	autoplist distutils
+
+WRKSRC=		${WRKDIR}/letsencrypt-22260a8/acme
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	letsencrypt
+GH_PROJECT=	letsencrypt
+GH_TAGNAME=	22260a8
+
+.include <bsd.port.mk>

Added: head/security/py-acme/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/py-acme/distinfo	Sat Sep 26 12:37:43 2015	(r397967)
@@ -0,0 +1,2 @@
+SHA256 (letsencrypt-letsencrypt-0.0.b1-22260a8_GH0.tar.gz) = 510e19965ff425d6dd46abb988da77bb41df3a9d6532fc71a36c380498c0584d
+SIZE (letsencrypt-letsencrypt-0.0.b1-22260a8_GH0.tar.gz) = 317170

Added: head/security/py-acme/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/py-acme/pkg-descr	Sat Sep 26 12:37:43 2015	(r397967)
@@ -0,0 +1,3 @@
+Implements the Automated Certificate Management Environment (ACME)
+
+WWW: https://github.com/letsencrypt/letsencrypt/tree/master/acme


More information about the svn-ports-all mailing list