From owner-svn-ports-all@freebsd.org Sat Aug 1 19:00:13 2015 Return-Path: Delivered-To: svn-ports-all@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 63F7B9B08BB; Sat, 1 Aug 2015 19:00:13 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 3AA34101F; Sat, 1 Aug 2015 19:00:13 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.14.9/8.14.9) with ESMTP id t71J0D03087005; Sat, 1 Aug 2015 19:00:13 GMT (envelope-from novel@FreeBSD.org) Received: (from novel@localhost) by repo.freebsd.org (8.14.9/8.14.9/Submit) id t71J0ClS087003; Sat, 1 Aug 2015 19:00:12 GMT (envelope-from novel@FreeBSD.org) Message-Id: <201508011900.t71J0ClS087003@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: novel set sender to novel@FreeBSD.org using -f From: Roman Bogorodskiy Date: Sat, 1 Aug 2015 19:00:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393399 - in head/net/py-libcloud: . 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-all@freebsd.org X-Mailman-Version: 2.1.20 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: Sat, 01 Aug 2015 19:00:13 -0000 Author: novel Date: Sat Aug 1 19:00:11 2015 New Revision: 393399 URL: https://svnweb.freebsd.org/changeset/ports/393399 Log: Drop backports.ssl-match-hostname from requirements. We're not using it since r389589 anyway. PR: 201901 Submitted by: Kurt Jaeger Added: head/net/py-libcloud/files/patch-setup.py (contents, props changed) Modified: head/net/py-libcloud/Makefile Modified: head/net/py-libcloud/Makefile ============================================================================== --- head/net/py-libcloud/Makefile Sat Aug 1 18:53:15 2015 (r393398) +++ head/net/py-libcloud/Makefile Sat Aug 1 19:00:11 2015 (r393399) @@ -3,7 +3,7 @@ PORTNAME= libcloud PORTVERSION= 0.17.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net python MASTER_SITES= APACHE/${PORTNAME} PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Added: head/net/py-libcloud/files/patch-setup.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-libcloud/files/patch-setup.py Sat Aug 1 19:00:11 2015 (r393399) @@ -0,0 +1,29 @@ +--- setup.py.orig 2014-11-19 16:00:24 UTC ++++ setup.py +@@ -47,7 +47,6 @@ DOC_TEST_MODULES = ['libcloud.compute.dr + SUPPORTED_VERSIONS = ['2.5', '2.6', '2.7', 'PyPy', '3.x'] + + TEST_REQUIREMENTS = [ +- 'backports.ssl_match_hostname', + 'mock' + ] + +@@ -222,10 +221,6 @@ class CoverageCommand(Command): + + forbid_publish() + +-install_requires = ['backports.ssl_match_hostname'] +-if pre_python26: +- install_requires.extend(['ssl', 'simplejson']) +- + setup( + name='apache-libcloud', + version=read_version_string(), +@@ -234,7 +229,6 @@ setup( + ' and documentation, please see http://libcloud.apache.org', + author='Apache Software Foundation', + author_email='dev@libcloud.apache.org', +- install_requires=install_requires, + packages=get_packages('libcloud'), + package_dir={ + 'libcloud': 'libcloud',