ports/157772: [maintainer] www/p5-RT-Extension-SLA update to 0.04

Matthew Seaman m.seaman at infracaninophile.co.uk
Sat Jun 11 18:30:11 UTC 2011


>Number:         157772
>Category:       ports
>Synopsis:       [maintainer] www/p5-RT-Extension-SLA update to 0.04
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Sat Jun 11 18:30:10 UTC 2011
>Closed-Date:
>Last-Modified:
>Originator:     Matthew Seaman
>Release:        FreeBSD 8.2-STABLE amd64
>Organization:
Infracaninophile
>Environment:
System: FreeBSD lucid-nonsense.infracaninophile.co.uk 8.2-STABLE FreeBSD 8.2-STABLE #43 r222794: Tue Jun 7 01:02:00 BST 2011 root at lucid-nonsense.infracaninophile.co.uk:/usr/obj/usr/src/sys/LUCID-NONSENSE amd64


	
>Description:

Upgrade to version 0.04

>From the ChangeLog:

0.04 Fri Jun  3 02:02:15 MSD 2011

    * RT 4.0 compatibility fix

Note to committer:

   Removed file:

       files/patch-inc-module_autoinstall.pm

>How-To-Repeat:
	
>Fix:

	

--- p5-RT-Extension-SLA.diff begins here ---
Index: Makefile
===================================================================
RCS file: /home/ncvs/ports/www/p5-RT-Extension-SLA/Makefile,v
retrieving revision 1.11
diff -u -u -r1.11 Makefile
--- Makefile	16 Dec 2010 02:34:05 -0000	1.11
+++ Makefile	11 Jun 2011 18:20:56 -0000
@@ -6,8 +6,7 @@
 #
 
 PORTNAME=	RT-Extension-SLA
-PORTVERSION=	0.03
-PORTREVISION=	3
+PORTVERSION=	0.04
 CATEGORIES=	www perl5
 MASTER_SITES=	CPAN
 PKGNAMEPREFIX=	p5-
@@ -15,6 +14,8 @@
 MAINTAINER=	m.seaman at infracaninophile.co.uk
 COMMENT=	RT extension to automate due dates using service levels
 
+LICENSE=	GPLv2
+
 BUILD_DEPENDS=	${SITE_PERL}/Business/Hours.pm:${PORTSDIR}/misc/p5-Business-Hours
 RUN_DEPENDS=	${BUILD_DEPENDS}
 
Index: distinfo
===================================================================
RCS file: /home/ncvs/ports/www/p5-RT-Extension-SLA/distinfo,v
retrieving revision 1.3
diff -u -u -r1.3 distinfo
--- distinfo	19 Mar 2011 12:35:58 -0000	1.3
+++ distinfo	11 Jun 2011 18:20:56 -0000
@@ -1,2 +1,2 @@
-SHA256 (RT-Extension-SLA-0.03.tar.gz) = 8ce76da627f42870f5aff351c8df030844a7e85229c060a06ab46e1939db1f6f
-SIZE (RT-Extension-SLA-0.03.tar.gz) = 37029
+SHA256 (RT-Extension-SLA-0.04.tar.gz) = 1e024a353cdeec0b1ef0dc0e1711129a678add8530fee67466e40c0095c774ab
+SIZE (RT-Extension-SLA-0.04.tar.gz) = 41584
Index: files/patch-inc-module_autoinstall.pm
===================================================================
RCS file: files/patch-inc-module_autoinstall.pm
diff -N files/patch-inc-module_autoinstall.pm
--- files/patch-inc-module_autoinstall.pm	10 May 2009 23:17:05 -0000	1.1
+++ /dev/null	1 Jan 1970 00:00:00 -0000
@@ -1,79 +0,0 @@
---- inc/Module/AutoInstall.pm-old	2009-04-24 22:01:47.000000000 +0100
-+++ inc/Module/AutoInstall.pm	2009-05-03 08:15:51.000000000 +0100
-@@ -115,8 +115,6 @@
-         )[0]
-     );
- 
--    $UnderCPAN = _check_lock(1);    # check for $UnderCPAN
--
-     while ( my ( $feature, $modules ) = splice( @args, 0, 2 ) ) {
-         my ( @required, @tests, @skiptests );
-         my $default  = 1;
-@@ -186,7 +184,6 @@
-             !$SkipInstall
-             and (
-                 $CheckOnly
--                or ($mandatory and $UnderCPAN)
-                 or _prompt(
-                     qq{==> Auto-install the }
-                       . ( @required / 2 )
-@@ -217,6 +214,8 @@
-         }
-     }
- 
-+    $UnderCPAN = _check_lock();    # check for $UnderCPAN
-+
-     if ( @Missing and not( $CheckOnly or $UnderCPAN ) ) {
-         require Config;
-         print
-@@ -238,7 +237,7 @@
- # Check to see if we are currently running under CPAN.pm and/or CPANPLUS;
- # if we are, then we simply let it taking care of our dependencies
- sub _check_lock {
--    return unless @Missing or @_;
-+    return unless @Missing;
- 
-     if ($ENV{PERL5_CPANPLUS_IS_RUNNING}) {
-         print <<'END_MESSAGE';
-@@ -314,7 +313,7 @@
-         @modules = @newmod;
-     }
- 
--    if ( _has_cpanplus() and not $ENV{PERL_AUTOINSTALL_PREFER_CPAN} ) {
-+    if ( _has_cpanplus() ) {
-         _install_cpanplus( \@modules, \@config );
-     } else {
-         _install_cpan( \@modules, \@config );
-@@ -707,7 +706,7 @@
-       if $Config;
- 
-     $PostambleActions = (
--        ($missing and not $UnderCPAN)
-+        $missing
-         ? "\$(PERL) $0 --config=$config --installdeps=$missing"
-         : "\$(NOECHO) \$(NOOP)"
-     );
-@@ -747,7 +746,7 @@
- sub postamble {
-     $PostambleUsed = 1;
- 
--    return <<"END_MAKE";
-+    return << ".";
- 
- config :: installdeps
- \t\$(NOECHO) \$(NOOP)
-@@ -758,7 +757,7 @@
- installdeps ::
- \t$PostambleActions
- 
--END_MAKE
-+.
- 
- }
- 
-@@ -766,4 +765,4 @@
- 
- __END__
- 
--#line 1004
-+#line 1003
--- p5-RT-Extension-SLA.diff ends here ---


>Release-Note:
>Audit-Trail:
>Unformatted:



More information about the freebsd-ports-bugs mailing list