From owner-svn-ports-head@freebsd.org Mon Jun 26 11:56:18 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8681BDA83D4; Mon, 26 Jun 2017 11:56:18 +0000 (UTC) (envelope-from cpm@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 mx1.freebsd.org (Postfix) with ESMTPS id 629557575D; Mon, 26 Jun 2017 11:56:18 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5QBuHN8082025; Mon, 26 Jun 2017 11:56:17 GMT (envelope-from cpm@FreeBSD.org) Received: (from cpm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5QBuH6b082021; Mon, 26 Jun 2017 11:56:17 GMT (envelope-from cpm@FreeBSD.org) Message-Id: <201706261156.v5QBuH6b082021@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cpm set sender to cpm@FreeBSD.org using -f From: "Carlos J. Puga Medina" Date: Mon, 26 Jun 2017 11:56:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444364 - in head/security: py-acme py-acme/files py-certbot py-certbot/files X-SVN-Group: ports-head 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.23 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: Mon, 26 Jun 2017 11:56:18 -0000 Author: cpm Date: Mon Jun 26 11:56:17 2017 New Revision: 444364 URL: https://svnweb.freebsd.org/changeset/ports/444364 Log: security/py-{acme,certbot}: fix missing dependency on py-mock Common: - Move py-mock requirement to dev_extras in setup.py - Bump PORTREVISION PR: 220274 Submitted by: cpm Reported by: Randy Westlund Approved by: koobs (maintainer, py-certbot) MFH: 2017Q2 Added: head/security/py-acme/files/ head/security/py-acme/files/patch-setup.py (contents, props changed) head/security/py-certbot/files/ head/security/py-certbot/files/patch-setup.py (contents, props changed) Modified: head/security/py-acme/Makefile head/security/py-certbot/Makefile Modified: head/security/py-acme/Makefile ============================================================================== --- head/security/py-acme/Makefile Mon Jun 26 10:34:50 2017 (r444363) +++ head/security/py-acme/Makefile Mon Jun 26 11:56:17 2017 (r444364) @@ -3,6 +3,7 @@ PORTNAME= acme PORTVERSION= 0.15.0 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= security python MASTER_SITES= CHEESESHOP Added: head/security/py-acme/files/patch-setup.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-acme/files/patch-setup.py Mon Jun 26 11:56:17 2017 (r444364) @@ -0,0 +1,18 @@ +--- setup.py.orig 2017-06-26 10:16:14 UTC ++++ setup.py +@@ -12,7 +12,6 @@ install_requires = [ + # rsa_recover_prime_factors (>=0.8) + 'cryptography>=0.8', + # Connection.set_tlsext_host_name (>=0.13) +- 'mock', + 'PyOpenSSL>=0.13', + 'pyrfc3339', + 'pytz', +@@ -35,6 +34,7 @@ if sys.version_info < (2, 7): + ]) + + dev_extras = [ ++ 'mock', + 'nose', + 'tox', + ] Modified: head/security/py-certbot/Makefile ============================================================================== --- head/security/py-certbot/Makefile Mon Jun 26 10:34:50 2017 (r444363) +++ head/security/py-certbot/Makefile Mon Jun 26 11:56:17 2017 (r444364) @@ -3,6 +3,7 @@ PORTNAME= certbot PORTVERSION= 0.15.0 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= security python MASTER_SITES= CHEESESHOP Added: head/security/py-certbot/files/patch-setup.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-certbot/files/patch-setup.py Mon Jun 26 11:56:17 2017 (r444364) @@ -0,0 +1,18 @@ +--- setup.py.orig 2017-06-26 10:13:14 UTC ++++ setup.py +@@ -42,7 +42,6 @@ install_requires = [ + 'ConfigArgParse>=0.9.3', + 'configobj', + 'cryptography>=1.2', # load_pem_x509_certificate +- 'mock', + 'parsedatetime>=1.3', # Calendar.parseDT + 'PyOpenSSL', + 'pyrfc3339', +@@ -67,6 +66,7 @@ dev_extras = [ + 'astroid==1.3.5', + 'coverage', + 'ipdb', ++ 'mock', + 'nose', + 'pylint==1.4.2', # upstream #248 + 'tox',