Date: Mon, 26 Jun 2017 11:56:17 +0000 (UTC) From: "Carlos J. Puga Medina" <cpm@FreeBSD.org> 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 Message-ID: <201706261156.v5QBuH6b082021@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <rwestlun@gmail.com> 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',
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201706261156.v5QBuH6b082021>