1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00

- Update to 0.18.0.

- Drop backports.ssl-match-hostname related patches as it's only used
  now for Python versions that we do not ship
This commit is contained in:
Roman Bogorodskiy 2015-08-15 15:45:10 +00:00
parent 01544d40ec
commit e4e5871355
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=394323
4 changed files with 3 additions and 44 deletions

View File

@ -2,8 +2,7 @@
# $FreeBSD$
PORTNAME= libcloud
PORTVERSION= 0.17.0
PORTREVISION= 2
PORTVERSION= 0.18.0
CATEGORIES= net python
MASTER_SITES= APACHE/${PORTNAME}
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}

View File

@ -1,2 +1,2 @@
SHA256 (apache-libcloud-0.17.0.tar.bz2) = 22a6360fccbd956398e3236dceacc469c397d0d8c0caad33352f224b352bd943
SIZE (apache-libcloud-0.17.0.tar.bz2) = 663406
SHA256 (apache-libcloud-0.18.0.tar.bz2) = af87e9ccd5577f7a7cf8b0f642889c40738561eb7ab2f23039c0d3d648b80d2a
SIZE (apache-libcloud-0.18.0.tar.bz2) = 764395

View File

@ -1,11 +0,0 @@
--- libcloud/httplib_ssl.py.orig 2015-02-07 21:51:40 UTC
+++ libcloud/httplib_ssl.py
@@ -23,7 +23,7 @@ import ssl
import base64
import warnings
-from backports.ssl_match_hostname import match_hostname, CertificateError
+from ssl import match_hostname, CertificateError
import libcloud.security
from libcloud.utils.py3 import b

View File

@ -1,29 +0,0 @@
--- 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',