From owner-svn-ports-head@freebsd.org Sat Jul 28 02:54:21 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 74F8010607D7; Sat, 28 Jul 2018 02:54:21 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2A4C876020; Sat, 28 Jul 2018 02:54:21 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 0B9C520AC4; Sat, 28 Jul 2018 02:54:21 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w6S2sKRX078918; Sat, 28 Jul 2018 02:54:20 GMT (envelope-from miwi@FreeBSD.org) Received: (from miwi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w6S2sKuv078914; Sat, 28 Jul 2018 02:54:20 GMT (envelope-from miwi@FreeBSD.org) Message-Id: <201807280254.w6S2sKuv078914@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: miwi set sender to miwi@FreeBSD.org using -f From: Martin Wilke Date: Sat, 28 Jul 2018 02:54:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r475485 - in head/security: . py-certbot-dns-ovh X-SVN-Group: ports-head X-SVN-Commit-Author: miwi X-SVN-Commit-Paths: in head/security: . py-certbot-dns-ovh X-SVN-Commit-Revision: 475485 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 28 Jul 2018 02:54:21 -0000 Author: miwi Date: Sat Jul 28 02:54:19 2018 New Revision: 475485 URL: https://svnweb.freebsd.org/changeset/ports/475485 Log: This is the OVH DNS Authenticator plugin for Certbot. WWW: https://github.com/certbot/certbot PR: 229746 Submitted by: tremere@cainites.net Sponsored by: iXsystems Inc. Added: head/security/py-certbot-dns-ovh/ head/security/py-certbot-dns-ovh/Makefile (contents, props changed) head/security/py-certbot-dns-ovh/distinfo (contents, props changed) head/security/py-certbot-dns-ovh/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Sat Jul 28 02:53:30 2018 (r475484) +++ head/security/Makefile Sat Jul 28 02:54:19 2018 (r475485) @@ -918,6 +918,7 @@ SUBDIR += py-certbot-dns-linode SUBDIR += py-certbot-dns-luadns SUBDIR += py-certbot-dns-nsone + SUBDIR += py-certbot-dns-ovh SUBDIR += py-certbot-dns-rfc2136 SUBDIR += py-certbot-dns-route53 SUBDIR += py-certbot-dns-sakuracloud Added: head/security/py-certbot-dns-ovh/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-certbot-dns-ovh/Makefile Sat Jul 28 02:54:19 2018 (r475485) @@ -0,0 +1,33 @@ +# $FreeBSD$ + +PORTNAME= certbot-dns-ovh +PORTVERSION= ${ACME_VERSION} +PORTREVISION= 0 +CATEGORIES= security python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= python@FreeBSD.org +COMMENT= OVH DNS Authenticator plugin for Certbot + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}acme>=${ACME_VERSION},1:security/py-acme@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}certbot>=${ACME_VERSION},1:security/py-certbot@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}dns-lexicon>=2.2.1:dns/py-dns-lexicon@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}mock>0:devel/py-mock@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}zope.interface>0:devel/py-zope.interface@${PY_FLAVOR} + +USES= python +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +OPTIONS_DEFINE= DOCS + +DOCS_BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sphinx>0:textproc/py-sphinx@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}sphinx_rtd_theme>0:textproc/py-sphinx_rtd_theme@${PY_FLAVOR} + +.include "${.CURDIR}/../py-acme/version.mk" +.include Added: head/security/py-certbot-dns-ovh/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-certbot-dns-ovh/distinfo Sat Jul 28 02:54:19 2018 (r475485) @@ -0,0 +1,3 @@ +TIMESTAMP = 1532432404 +SHA256 (certbot-dns-ovh-0.26.1.tar.gz) = f004d4ac45d3f4ddb4b8a73072225530e8164ad1c715bbca90120a56ba02cd85 +SIZE (certbot-dns-ovh-0.26.1.tar.gz) = 11889 Added: head/security/py-certbot-dns-ovh/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-certbot-dns-ovh/pkg-descr Sat Jul 28 02:54:19 2018 (r475485) @@ -0,0 +1,3 @@ +This is the OVH DNS Authenticator plugin for Certbot. + +WWW: https://github.com/certbot/certbot