From owner-svn-ports-head@FreeBSD.ORG Tue Mar 25 05:23:00 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 80E39824; Tue, 25 Mar 2014 05:23:00 +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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 622CA98C; Tue, 25 Mar 2014 05:23:00 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s2P5N0Vw003627; Tue, 25 Mar 2014 05:23:00 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s2P5Mx31003614; Tue, 25 Mar 2014 05:22:59 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201403250522.s2P5Mx31003614@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Tue, 25 Mar 2014 05:22:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r349103 - in head/security: . p5-Net-SSLGlue 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.17 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, 25 Mar 2014 05:23:00 -0000 Author: sunpoet Date: Tue Mar 25 05:22:59 2014 New Revision: 349103 URL: http://svnweb.freebsd.org/changeset/ports/349103 QAT: https://qat.redports.org/buildarchive/r349103/ Log: - Add p5-Net-SSLGlue 1.052 Some commonly used Perl modules don't have SSL support at all, even if the protocol supports it. Others have SSL support, but most of them don't do proper checking of the server's certificate. The Net::SSLGlue::* modules try to add SSL support or proper certificate checking to these modules. Currently support for the following modules is available: - Net::SMTP - add SSL from beginning or using STARTTLS - Net::POP3 - add SSL from beginning or using STLS - Net::FTP - add SSL and IPv6 support to Net::FTP - Net::LDAP - add proper certificate checking - LWP - add proper certificate checking There is also a Net::SSLGlue::Socket package which combines SSL and non-SSL and IPv6 capabilities to make it easier to enhance modules based on IO::Socket::INET. WWW: http://search.cpan.org/dist/Net-SSLGlue/ Added: head/security/p5-Net-SSLGlue/ head/security/p5-Net-SSLGlue/Makefile (contents, props changed) head/security/p5-Net-SSLGlue/distinfo (contents, props changed) head/security/p5-Net-SSLGlue/pkg-descr (contents, props changed) head/security/p5-Net-SSLGlue/pkg-plist (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Tue Mar 25 02:19:10 2014 (r349102) +++ head/security/Makefile Tue Mar 25 05:22:59 2014 (r349103) @@ -575,6 +575,7 @@ SUBDIR += p5-Net-Radius-Server SUBDIR += p5-Net-SAML SUBDIR += p5-Net-SSL-ExpireDate + SUBDIR += p5-Net-SSLGlue SUBDIR += p5-Net-SSLeay SUBDIR += p5-Net-Server-Mail-ESMTP-AUTH SUBDIR += p5-Net-SinFP Added: head/security/p5-Net-SSLGlue/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/p5-Net-SSLGlue/Makefile Tue Mar 25 05:22:59 2014 (r349103) @@ -0,0 +1,22 @@ +# Created by: Sunpoet Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= Net-SSLGlue +PORTVERSION= 1.052 +CATEGORIES= security net perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Add/extend SSL support for common perl modules + +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +BUILD_DEPENDS= p5-IO-Socket-SSL>=1.190:${PORTSDIR}/security/p5-IO-Socket-SSL +RUN_DEPENDS:= ${BUILD_DEPENDS} + +USE_PERL5= configure +USES= perl5 + +.include Added: head/security/p5-Net-SSLGlue/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/p5-Net-SSLGlue/distinfo Tue Mar 25 05:22:59 2014 (r349103) @@ -0,0 +1,2 @@ +SHA256 (Net-SSLGlue-1.052.tar.gz) = 1480bde91c6b3d98013632df88a5ea3c3a8aacc605ca76955e77d2d798205b67 +SIZE (Net-SSLGlue-1.052.tar.gz) = 18712 Added: head/security/p5-Net-SSLGlue/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/p5-Net-SSLGlue/pkg-descr Tue Mar 25 05:22:59 2014 (r349103) @@ -0,0 +1,18 @@ +Some commonly used Perl modules don't have SSL support at all, even if the +protocol supports it. Others have SSL support, but most of them don't do proper +checking of the server's certificate. + +The Net::SSLGlue::* modules try to add SSL support or proper certificate +checking to these modules. Currently support for the following modules is +available: +- Net::SMTP - add SSL from beginning or using STARTTLS +- Net::POP3 - add SSL from beginning or using STLS +- Net::FTP - add SSL and IPv6 support to Net::FTP +- Net::LDAP - add proper certificate checking +- LWP - add proper certificate checking + +There is also a Net::SSLGlue::Socket package which combines SSL and non-SSL and +IPv6 capabilities to make it easier to enhance modules based on +IO::Socket::INET. + +WWW: http://search.cpan.org/dist/Net-SSLGlue/ Added: head/security/p5-Net-SSLGlue/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/p5-Net-SSLGlue/pkg-plist Tue Mar 25 05:22:59 2014 (r349103) @@ -0,0 +1,19 @@ +%%SITE_PERL%%/Net/SSLGlue.pm +%%SITE_PERL%%/Net/SSLGlue/FTP.pm +%%SITE_PERL%%/Net/SSLGlue/LDAP.pm +%%SITE_PERL%%/Net/SSLGlue/LWP.pm +%%SITE_PERL%%/Net/SSLGlue/POP3.pm +%%SITE_PERL%%/Net/SSLGlue/SMTP.pm +%%SITE_PERL%%/Net/SSLGlue/Socket.pm +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Net/SSLGlue/.packlist +%%PERL5_MAN3%%/Net::SSLGlue.3.gz +%%PERL5_MAN3%%/Net::SSLGlue::FTP.3.gz +%%PERL5_MAN3%%/Net::SSLGlue::LDAP.3.gz +%%PERL5_MAN3%%/Net::SSLGlue::LWP.3.gz +%%PERL5_MAN3%%/Net::SSLGlue::POP3.3.gz +%%PERL5_MAN3%%/Net::SSLGlue::SMTP.3.gz +%%PERL5_MAN3%%/Net::SSLGlue::Socket.3.gz +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Net/SSLGlue +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Net +@dirrm %%SITE_PERL%%/Net/SSLGlue +@dirrmtry %%SITE_PERL%%/Net