From owner-svn-ports-all@freebsd.org Thu Feb 22 14:29:21 2018 Return-Path: Delivered-To: svn-ports-all@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 08BF5F084E2; Thu, 22 Feb 2018 14:29:21 +0000 (UTC) (envelope-from mat@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 A753285444; Thu, 22 Feb 2018 14:29:20 +0000 (UTC) (envelope-from mat@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 89CF1CAD; Thu, 22 Feb 2018 14:29:20 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w1METKKb030374; Thu, 22 Feb 2018 14:29:20 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w1METK5A030371; Thu, 22 Feb 2018 14:29:20 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201802221429.w1METK5A030371@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Thu, 22 Feb 2018 14:29:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r462595 - in head/security: py-acme py-certbot X-SVN-Group: ports-head X-SVN-Commit-Author: mat X-SVN-Commit-Paths: in head/security: py-acme py-certbot X-SVN-Commit-Revision: 462595 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Feb 2018 14:29:21 -0000 Author: mat Date: Thu Feb 22 14:29:19 2018 New Revision: 462595 URL: https://svnweb.freebsd.org/changeset/ports/462595 Log: As all the acme/certbot have the same version, store it in one place. Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D14262 Added: head/security/py-acme/version.mk (contents, props changed) Modified: head/security/py-acme/Makefile (contents, props changed) head/security/py-certbot/Makefile (contents, props changed) Modified: head/security/py-acme/Makefile ============================================================================== --- head/security/py-acme/Makefile Thu Feb 22 14:27:41 2018 (r462594) +++ head/security/py-acme/Makefile Thu Feb 22 14:29:19 2018 (r462595) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= acme -PORTVERSION= 0.21.1 +PORTVERSION= ${ACME_VERSION} PORTEPOCH= 1 CATEGORIES= security python MASTER_SITES= CHEESESHOP @@ -33,4 +33,5 @@ NO_ARCH= yes do-test: @cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test +.include "version.mk" .include Added: head/security/py-acme/version.mk ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-acme/version.mk Thu Feb 22 14:29:19 2018 (r462595) @@ -0,0 +1 @@ +ACME_VERSION= 0.21.1 Modified: head/security/py-certbot/Makefile ============================================================================== --- head/security/py-certbot/Makefile Thu Feb 22 14:27:41 2018 (r462594) +++ head/security/py-certbot/Makefile Thu Feb 22 14:29:19 2018 (r462595) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= certbot -PORTVERSION= 0.21.1 +PORTVERSION= ${ACME_VERSION} PORTEPOCH= 1 CATEGORIES= security python MASTER_SITES= CHEESESHOP @@ -14,7 +14,7 @@ COMMENT= Let's Encrypt client LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}acme>=${PORTVERSION}:security/py-acme@${FLAVOR} \ +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}acme>=${ACME_VERSION}:security/py-acme@${FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}configargparse>=0.9.3:devel/py-configargparse@${FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}configobj>0:devel/py-configobj@${FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}cryptography>=1.2:security/py-cryptography@${FLAVOR} \ @@ -42,4 +42,5 @@ post-patch: do-test: @cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test +.include "${.CURDIR}/../py-acme/version.mk" .include