From owner-svn-ports-all@FreeBSD.ORG Thu Jul 31 10:04:05 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E36DC88F; Thu, 31 Jul 2014 10:04:04 +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 D12DF2549; Thu, 31 Jul 2014 10:04:04 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s6VA44S0094361; Thu, 31 Jul 2014 10:04:04 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s6VA44Yd094355; Thu, 31 Jul 2014 10:04:04 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201407311004.s6VA44Yd094355@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Thu, 31 Jul 2014 10:04:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r363541 - head/net-im/p5-Jabber-Lite 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.18 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: Thu, 31 Jul 2014 10:04:05 -0000 Author: sunpoet Date: Thu Jul 31 10:04:03 2014 New Revision: 363541 URL: http://svnweb.freebsd.org/changeset/ports/363541 QAT: https://qat.redports.org/buildarchive/r363541/ Log: - Update to 0.8.1 - Add LICENSE - Add BUILD_DEPENDS - Sort PLIST - Reformat pkg-descr Changes: http://search.cpan.org/dist/Jabber-Lite/Changes Modified: head/net-im/p5-Jabber-Lite/Makefile head/net-im/p5-Jabber-Lite/distinfo head/net-im/p5-Jabber-Lite/pkg-descr head/net-im/p5-Jabber-Lite/pkg-plist Modified: head/net-im/p5-Jabber-Lite/Makefile ============================================================================== --- head/net-im/p5-Jabber-Lite/Makefile Thu Jul 31 10:03:56 2014 (r363540) +++ head/net-im/p5-Jabber-Lite/Makefile Thu Jul 31 10:04:03 2014 (r363541) @@ -2,20 +2,25 @@ # $FreeBSD$ PORTNAME= Jabber-Lite -PORTVERSION= 0.8 +PORTVERSION= 0.8.1 CATEGORIES= net-im perl5 MASTER_SITES= CPAN -MASTER_SITE_SUBDIR= Jabber +MASTER_SITE_SUBDIR= CPAN:BEECEE PKGNAMEPREFIX= p5- MAINTAINER= sunpoet@FreeBSD.org COMMENT= Standalone library for communicating with Jabber servers -RUN_DEPENDS= p5-Digest-SHA1>=0:${PORTSDIR}/security/p5-Digest-SHA1 \ - p5-Authen-SASL>=0:${PORTSDIR}/security/p5-Authen-SASL \ - p5-IO-Socket-SSL>=0:${PORTSDIR}/security/p5-IO-Socket-SSL +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +BUILD_DEPENDS= p5-Authen-SASL>=0:${PORTSDIR}/security/p5-Authen-SASL \ + p5-Digest-SHA1>=0:${PORTSDIR}/security/p5-Digest-SHA1 \ + p5-IO-Socket-SSL>=0:${PORTSDIR}/security/p5-IO-Socket-SSL \ + p5-Net-DNS>=0:${PORTSDIR}/dns/p5-Net-DNS +RUN_DEPENDS:= ${BUILD_DEPENDS} -USES= perl5 USE_PERL5= configure +USES= perl5 .include Modified: head/net-im/p5-Jabber-Lite/distinfo ============================================================================== --- head/net-im/p5-Jabber-Lite/distinfo Thu Jul 31 10:03:56 2014 (r363540) +++ head/net-im/p5-Jabber-Lite/distinfo Thu Jul 31 10:04:03 2014 (r363541) @@ -1,2 +1,2 @@ -SHA256 (Jabber-Lite-0.8.tar.gz) = 095cdd6b40b3fdc04841b3d265c24fc32fac2e8da1e6618e1c74931b9de44c45 -SIZE (Jabber-Lite-0.8.tar.gz) = 48732 +SHA256 (Jabber-Lite-0.8.1.tar.gz) = 1871cce002c242f50b72b10540ff675facf7b065fa08fba55c94ecabf6040e88 +SIZE (Jabber-Lite-0.8.1.tar.gz) = 49323 Modified: head/net-im/p5-Jabber-Lite/pkg-descr ============================================================================== --- head/net-im/p5-Jabber-Lite/pkg-descr Thu Jul 31 10:03:56 2014 (r363540) +++ head/net-im/p5-Jabber-Lite/pkg-descr Thu Jul 31 10:04:03 2014 (r363541) @@ -1,5 +1,5 @@ -Jabber::Lite is, as the name implies, a small 'lite' library for -dealing with Jabber servers, implemented entirely in perl. Whilst it -is small, it does try to be fairly complete for common tasks. +Jabber::Lite is, as the name implies, a small 'lite' library for dealing with +Jabber servers, implemented entirely in perl. Whilst it is small, it does try to +be fairly complete for common tasks. WWW: http://search.cpan.org/dist/Jabber-Lite/ Modified: head/net-im/p5-Jabber-Lite/pkg-plist ============================================================================== --- head/net-im/p5-Jabber-Lite/pkg-plist Thu Jul 31 10:03:56 2014 (r363540) +++ head/net-im/p5-Jabber-Lite/pkg-plist Thu Jul 31 10:04:03 2014 (r363541) @@ -1,6 +1,6 @@ -%%SITE_PERL%%/%%PERL_ARCH%%/auto/Jabber/Lite/.packlist %%SITE_PERL%%/Jabber/Lite.pm +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Jabber/Lite/.packlist %%PERL5_MAN3%%/Jabber::Lite.3.gz -@dirrmtry %%SITE_PERL%%/Jabber -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Jabber/Lite +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Jabber/Lite @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Jabber +@dirrmtry %%SITE_PERL%%/Jabber