From owner-svn-ports-all@FreeBSD.ORG Thu Jul 31 10:04:20 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 CED25B30; Thu, 31 Jul 2014 10:04:20 +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 B0DA82555; Thu, 31 Jul 2014 10:04:20 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s6VA4Ki5094748; Thu, 31 Jul 2014 10:04:20 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s6VA4K2k094744; Thu, 31 Jul 2014 10:04:20 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201407311004.s6VA4K2k094744@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Thu, 31 Jul 2014 10:04:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r363544 - head/devel/p5-Luka 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:20 -0000 Author: sunpoet Date: Thu Jul 31 10:04:19 2014 New Revision: 363544 URL: http://svnweb.freebsd.org/changeset/ports/363544 QAT: https://qat.redports.org/buildarchive/r363544/ Log: - Add LICENSE - Fix *_DEPENDS: p5-Test-Exception is a test-only dependency - Sort PLIST - Bump PORTREVISION for dependency change - Reformat pkg-descr - Fix WWW Modified: head/devel/p5-Luka/Makefile head/devel/p5-Luka/pkg-descr head/devel/p5-Luka/pkg-plist Modified: head/devel/p5-Luka/Makefile ============================================================================== --- head/devel/p5-Luka/Makefile Thu Jul 31 10:04:14 2014 (r363543) +++ head/devel/p5-Luka/Makefile Thu Jul 31 10:04:19 2014 (r363544) @@ -3,6 +3,7 @@ PORTNAME= Luka PORTVERSION= 1.08 +PORTREVISION= 1 CATEGORIES= devel perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:TPG @@ -11,18 +12,21 @@ PKGNAMEPREFIX= p5- MAINTAINER= sunpoet@FreeBSD.org COMMENT= Exception handling and reporting framework -RUN_DEPENDS= p5-Class-Std>=0:${PORTSDIR}/devel/p5-Class-Std \ +LICENSE= GPLv2 GPLv3 +LICENSE_COMB= dual + +BUILD_DEPENDS= p5-Class-Std>=0:${PORTSDIR}/devel/p5-Class-Std \ p5-Config-IniFiles>=0:${PORTSDIR}/devel/p5-Config-IniFiles \ p5-Error>=0:${PORTSDIR}/lang/p5-Error \ p5-Exception-Class>=0:${PORTSDIR}/devel/p5-Exception-Class \ p5-Mail-SendEasy>=0:${PORTSDIR}/mail/p5-Mail-SendEasy \ p5-Sub-Uplevel>=0:${PORTSDIR}/devel/p5-Sub-Uplevel \ p5-Sys-Hostname-Long>=0:${PORTSDIR}/sysutils/p5-Sys-Hostname-Long \ - p5-Test-Exception>=0:${PORTSDIR}/devel/p5-Test-Exception \ p5-What>=0:${PORTSDIR}/net/p5-What -BUILD_DEPENDS:= ${RUN_DEPENDS} +RUN_DEPENDS:= ${BUILD_DEPENDS} +TEST_DEPENDS= p5-Test-Exception>=0:${PORTSDIR}/devel/p5-Test-Exception -USES= perl5 USE_PERL5= configure +USES= perl5 .include Modified: head/devel/p5-Luka/pkg-descr ============================================================================== --- head/devel/p5-Luka/pkg-descr Thu Jul 31 10:04:14 2014 (r363543) +++ head/devel/p5-Luka/pkg-descr Thu Jul 31 10:04:19 2014 (r363544) @@ -1,22 +1,21 @@ -Luka is an exception handling and reporting framework. It's useful to -look at it as an event handling framework. +Luka is an exception handling and reporting framework. It's useful to look at it +as an event handling framework. It comes from operational understanding of networks. -Scenario that Luka is addressing is following: on a network with -multiple hosts running multiple applications, it is very difficult to -track operational status of all the functionality that those -applications and hosts are meant to deliver. In order to make it -easier, we decided to specify the error handling and reporting data -model that each component delivering functionality has to conform to. -What is a component? In most cases, it is a script, often run from -cronjob, in some cases it is a class in an application. In all cases, -a component has to successfully complete a task on which functionality -of an application, or entire network, relies on. +Scenario that Luka is addressing is following: on a network with multiple hosts +running multiple applications, it is very difficult to track operational status +of all the functionality that those applications and hosts are meant to deliver. +In order to make it easier, we decided to specify the error handling and +reporting data model that each component delivering functionality has to conform +to. What is a component? In most cases, it is a script, often run from cronjob, +in some cases it is a class in an application. In all cases, a component has to +successfully complete a task on which functionality of an application, or entire +network, relies on. -It is common practice that programmers choose their way of handling -errors and reporting. Luka is an attempt to standardize that process. -Its primary goal is to make it easier for smaller number of people to -keep larger number of applications and networks running. +It is common practice that programmers choose their way of handling errors and +reporting. Luka is an attempt to standardize that process. Its primary goal is +to make it easier for smaller number of people to keep larger number of +applications and networks running. -WWW: http://port.home.page/ +WWW: http://search.cpan.org/dist/Luka/ Modified: head/devel/p5-Luka/pkg-plist ============================================================================== --- head/devel/p5-Luka/pkg-plist Thu Jul 31 10:04:14 2014 (r363543) +++ head/devel/p5-Luka/pkg-plist Thu Jul 31 10:04:19 2014 (r363544) @@ -1,13 +1,13 @@ -%%SITE_PERL%%/%%PERL_ARCH%%/auto/Luka/.packlist %%SITE_PERL%%/Luka.pm %%SITE_PERL%%/Luka/Conf.pm %%SITE_PERL%%/Luka/Error.pm %%SITE_PERL%%/Luka/ExceptionBase.pm %%SITE_PERL%%/Luka/Exceptions.pm %%SITE_PERL%%/Luka/Mailer.pm +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Luka/.packlist %%PERL5_MAN3%%/Luka.3.gz %%PERL5_MAN3%%/Luka::Conf.3.gz %%PERL5_MAN3%%/Luka::Exceptions.3.gz %%PERL5_MAN3%%/Luka::Mailer.3.gz -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Luka -@dirrmtry %%SITE_PERL%%/Luka +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Luka +@dirrm %%SITE_PERL%%/Luka