Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 14 Jul 2016 07:16:49 +0000 (UTC)
From:      Matthew Seaman <matthew@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r418518 - in head/www/p5-RT-Extension-MandatoryOnTransition: . files
Message-ID:  <201607140716.u6E7Gn6K079207@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: matthew
Date: Thu Jul 14 07:16:48 2016
New Revision: 418518
URL: https://svnweb.freebsd.org/changeset/ports/418518

Log:
  Update to 0.12
  
  Reintroduce patch to fix broken DESTDIR handling: they'd fixed this
  previously and have now broken it again.  Reported upstream.
  
    https://rt.cpan.org/Public/Bug/Display.html?id=116138
  
  ChangeLog: http://cpansearch.perl.org/src/BPS/RT-Extension-MandatoryOnTransition-0.12/Changes

Added:
  head/www/p5-RT-Extension-MandatoryOnTransition/files/
  head/www/p5-RT-Extension-MandatoryOnTransition/files/patch-inc_Module_Install_RTx.pm   (contents, props changed)
Modified:
  head/www/p5-RT-Extension-MandatoryOnTransition/Makefile
  head/www/p5-RT-Extension-MandatoryOnTransition/distinfo

Modified: head/www/p5-RT-Extension-MandatoryOnTransition/Makefile
==============================================================================
--- head/www/p5-RT-Extension-MandatoryOnTransition/Makefile	Thu Jul 14 07:14:38 2016	(r418517)
+++ head/www/p5-RT-Extension-MandatoryOnTransition/Makefile	Thu Jul 14 07:16:48 2016	(r418518)
@@ -2,8 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	RT-Extension-MandatoryOnTransition
-DISTVERSION=	0.10
-PORTREVISION=	1
+DISTVERSION=	0.12
 CATEGORIES=	www net perl5
 MASTER_SITES=	CPAN
 PKGNAMEPREFIX=	p5-

Modified: head/www/p5-RT-Extension-MandatoryOnTransition/distinfo
==============================================================================
--- head/www/p5-RT-Extension-MandatoryOnTransition/distinfo	Thu Jul 14 07:14:38 2016	(r418517)
+++ head/www/p5-RT-Extension-MandatoryOnTransition/distinfo	Thu Jul 14 07:16:48 2016	(r418518)
@@ -1,2 +1,3 @@
-SHA256 (RT-Extension-MandatoryOnTransition-0.10.tar.gz) = 4d93a65b088332893a52777a951e9d831bc12f7b4f8d48473ca954bd93070d63
-SIZE (RT-Extension-MandatoryOnTransition-0.10.tar.gz) = 44390
+TIMESTAMP = 1468393946
+SHA256 (RT-Extension-MandatoryOnTransition-0.12.tar.gz) = 42d45e737061a6824bc0ff2c59f3b6ee07cffeb13e75171a4d356b99da4a88e1
+SIZE (RT-Extension-MandatoryOnTransition-0.12.tar.gz) = 45541

Added: head/www/p5-RT-Extension-MandatoryOnTransition/files/patch-inc_Module_Install_RTx.pm
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/p5-RT-Extension-MandatoryOnTransition/files/patch-inc_Module_Install_RTx.pm	Thu Jul 14 07:16:48 2016	(r418518)
@@ -0,0 +1,11 @@
+--- inc/Module/Install/RTx.pm.orig	2016-07-11 20:28:38 UTC
++++ inc/Module/Install/RTx.pm
+@@ -85,7 +85,7 @@ sub RTx {
+     my %index = map { $_ => 1 } @INDEX_DIRS;
+     $self->no_index( directory => $_ ) foreach grep !$index{$_}, @DIRS;
+ 
+-    my $args = join ', ', map "q($_)", map { ($_, $path{$_}) }
++    my $args = join ', ', map "q($_)", map { ($_, "\$(DESTDIR)$path{$_}") }
+         sort keys %path;
+ 
+     printf "%-10s => %s\n", $_, $path{$_} for sort keys %path;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201607140716.u6E7Gn6K079207>