From owner-svn-ports-head@FreeBSD.ORG Tue Nov 11 21:26:35 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 56761BA9; Tue, 11 Nov 2014 21:26:35 +0000 (UTC) Received: from svn.freebsd.org (svn.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 28D1BEDE; Tue, 11 Nov 2014 21:26:35 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sABLQZ6V020272; Tue, 11 Nov 2014 21:26:35 GMT (envelope-from zi@FreeBSD.org) Received: (from zi@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sABLQYTE020270; Tue, 11 Nov 2014 21:26:34 GMT (envelope-from zi@FreeBSD.org) Message-Id: <201411112126.sABLQYTE020270@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: zi set sender to zi@FreeBSD.org using -f From: Ryan Steinmetz Date: Tue, 11 Nov 2014 21:26:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r372466 - in head/net/vmware-vsphere-cli: . 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.18-1 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: Tue, 11 Nov 2014 21:26:35 -0000 Author: zi Date: Tue Nov 11 21:26:34 2014 New Revision: 372466 URL: https://svnweb.freebsd.org/changeset/ports/372466 QAT: https://qat.redports.org/buildarchive/r372466/ Log: - Work around issue with modern versions of perl/libwww - Bump PORTREVISION Added: head/net/vmware-vsphere-cli/files/patch-lib__VMware__share__VMware__VICommon.pm (contents, props changed) Modified: head/net/vmware-vsphere-cli/Makefile Modified: head/net/vmware-vsphere-cli/Makefile ============================================================================== --- head/net/vmware-vsphere-cli/Makefile Tue Nov 11 21:15:35 2014 (r372465) +++ head/net/vmware-vsphere-cli/Makefile Tue Nov 11 21:26:34 2014 (r372466) @@ -3,7 +3,7 @@ PORTNAME= vmware-vsphere-cli PORTVERSION= 5.5.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net perl5 MASTER_SITES= #http://communities.vmware.com/community/vmtn/developer/downloads DISTNAME= VMware-vSphere-Perl-SDK-${PORTVERSION}-${DISTREL}.i386 Added: head/net/vmware-vsphere-cli/files/patch-lib__VMware__share__VMware__VICommon.pm ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/vmware-vsphere-cli/files/patch-lib__VMware__share__VMware__VICommon.pm Tue Nov 11 21:26:34 2014 (r372466) @@ -0,0 +1,43 @@ +--- lib/VMware/share/VMware/VICommon.pm.orig 2014-11-11 21:22:23 UTC ++++ lib/VMware/share/VMware/VICommon.pm +@@ -424,16 +424,6 @@ + my $url = shift; + my %supportedapiversions; + if ($url =~ s|http(s?)://(.*)/sdk.*|http$1://$2/sdk/vimService.wsdl|i) { +- if ($1 eq "s") { +- eval { +- require Crypt::SSLeay; +- Crypt::SSLeay->import(); +- }; +- if ($@) { +- die "Crypt::SSLeay is required for https connections, but could not be loaded: $@"; +- } +- } +- + my $temp_addr = $2; + if ($temp_addr =~ /:/) { + if (($temp_addr =~ tr/:/:/) > 1) { +@@ -501,23 +491,11 @@ + + sub query_server_version { + BEGIN { +- #To remove SSL Warning, switching from IO::Socket::SSL to Net::SSL +- $ENV{PERL_NET_HTTPS_SSL_SOCKET_CLASS} = "Net::SSL"; + #To remove host verification + $ENV{PERL_LWP_SSL_VERIFY_HOSTNAME} = 0; + } + my $url = shift; + if ($url =~ s|http(s?)://(.*)/sdk.*|http$1://$2/sdk/vimService.wsdl|i) { +- # bug 288336 +- if ($1 eq "s") { +- eval { +- require Crypt::SSLeay; +- Crypt::SSLeay->import(); +- }; +- if ($@) { +- die "Crypt::SSLeay is required for https connections, but could not be loaded: $@"; +- } +- } + # no IPv6 support yet + my $temp_addr = $2; + if ($temp_addr =~ /:/) {