pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc



Module Name:    pkgsrc
Committed By:   jlam
Date:           Wed Aug 23 17:54:53 UTC 2017

Modified Files:
        pkgsrc/devel/p5-PPI-PowerToys: Makefile
        pkgsrc/sysutils/p5-Monitoring-Plugin: Makefile
        pkgsrc/textproc/p5-Text-Xslate: Makefile
        pkgsrc/www/SpeedyCGI: Makefile

Log Message:
Add PERL_USE_UNSAFE_INC=1 to a few Perl module Makefiles.

The following packages fail to build due to "." not being in @INC:

    devel/p5-PPI-PowerToys
    sysutils/p5-Monitoring-Plugin
    textproc/p5-Text-Xslate
    www/SpeedyCGI

Pass PERL_USE_UNSAFE_INC=1 through MAKE_ENV to allow the configure
and build to proceed.

This needs to be revisited when perl-5.30.0 is released and that
environment variable is removed from Perl.


To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 pkgsrc/devel/p5-PPI-PowerToys/Makefile
cvs rdiff -u -r1.1 -r1.2 pkgsrc/sysutils/p5-Monitoring-Plugin/Makefile
cvs rdiff -u -r1.27 -r1.28 pkgsrc/textproc/p5-Text-Xslate/Makefile
cvs rdiff -u -r1.22 -r1.23 pkgsrc/www/SpeedyCGI/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/p5-PPI-PowerToys/Makefile
diff -u pkgsrc/devel/p5-PPI-PowerToys/Makefile:1.11 pkgsrc/devel/p5-PPI-PowerToys/Makefile:1.12
--- pkgsrc/devel/p5-PPI-PowerToys/Makefile:1.11 Mon Jun  5 14:23:25 2017
+++ pkgsrc/devel/p5-PPI-PowerToys/Makefile      Wed Aug 23 17:54:52 2017
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.11 2017/06/05 14:23:25 ryoon Exp $
+# $NetBSD: Makefile,v 1.12 2017/08/23 17:54:52 jlam Exp $
 #
 
 DISTNAME=      PPI-PowerToys-0.14
@@ -25,5 +25,8 @@ USE_LANGUAGES=                # empty
 PERL5_PACKLIST=                auto/PPI/PowerToys/.packlist
 PERL5_MODULE_TYPE=     Module::Install::Bundled
 
+# XXX Kick can down the road and hope the developer fixes this issue.
+MAKE_ENV+=     PERL_USE_UNSAFE_INC=1
+
 .include "../../lang/perl5/module.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/sysutils/p5-Monitoring-Plugin/Makefile
diff -u pkgsrc/sysutils/p5-Monitoring-Plugin/Makefile:1.1 pkgsrc/sysutils/p5-Monitoring-Plugin/Makefile:1.2
--- pkgsrc/sysutils/p5-Monitoring-Plugin/Makefile:1.1   Mon Jul  3 16:29:43 2017
+++ pkgsrc/sysutils/p5-Monitoring-Plugin/Makefile       Wed Aug 23 17:54:52 2017
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.1 2017/07/03 16:29:43 bsiegert Exp $
+# $NetBSD: Makefile,v 1.2 2017/08/23 17:54:52 jlam Exp $
 
 DISTNAME=      Monitoring-Plugin-0.39
 PKGNAME=       p5-${DISTNAME}
@@ -17,5 +17,8 @@ DEPENDS+=     p5-Math-Calc-Units>=1.07:../..
 
 PERL5_PACKLIST=        auto/Monitoring/Plugin/.packlist
 
+# XXX Kick can down the road and hope the developer fixes this issue.
+MAKE_ENV+=     PERL_USE_UNSAFE_INC=1
+
 .include "../../lang/perl5/module.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/textproc/p5-Text-Xslate/Makefile
diff -u pkgsrc/textproc/p5-Text-Xslate/Makefile:1.27 pkgsrc/textproc/p5-Text-Xslate/Makefile:1.28
--- pkgsrc/textproc/p5-Text-Xslate/Makefile:1.27        Mon Jun  5 14:24:53 2017
+++ pkgsrc/textproc/p5-Text-Xslate/Makefile     Wed Aug 23 17:54:53 2017
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.27 2017/06/05 14:24:53 ryoon Exp $
+# $NetBSD: Makefile,v 1.28 2017/08/23 17:54:53 jlam Exp $
 
 DISTNAME=      Text-Xslate-3.4.0
 PKGNAME=       p5-${DISTNAME}
@@ -24,5 +24,8 @@ DEPENDS+=     p5-Test-LeakTrace>=0:../../dev
 PERL5_PACKLIST=        auto/Text/Xslate/.packlist
 USE_LANGUAGES= c
 
+# XXX Kick can down the road and hope the developer fixes this issue.
+MAKE_ENV+=     PERL_USE_UNSAFE_INC=1
+
 .include "../../lang/perl5/module.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/www/SpeedyCGI/Makefile
diff -u pkgsrc/www/SpeedyCGI/Makefile:1.22 pkgsrc/www/SpeedyCGI/Makefile:1.23
--- pkgsrc/www/SpeedyCGI/Makefile:1.22  Tue Feb  7 12:13:12 2017
+++ pkgsrc/www/SpeedyCGI/Makefile       Wed Aug 23 17:54:53 2017
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.22 2017/02/07 12:13:12 wiz Exp $
+# $NetBSD: Makefile,v 1.23 2017/08/23 17:54:53 jlam Exp $
 
 DISTNAME=      CGI-SpeedyCGI-2.22
 PKGNAME=       SpeedyCGI-2.22
@@ -12,7 +12,10 @@ COMMENT=     Speed up perl scripts by runnin
 
 MAKE_JOBS_SAFE=                no
 
-PERL5_PACKLIST=                auto/CGI/SpeedyCGI/.packlist
+PERL5_PACKLIST=        auto/CGI/SpeedyCGI/.packlist
+
+# XXX Kick can down the road and hope the developer fixes this issue.
+MAKE_ENV+=             PERL_USE_UNSAFE_INC=1
 
 SUBST_CLASSES+=                run
 SUBST_STAGE.run=       post-patch



Home | Main Index | Thread Index | Old Index