svn commit: r394393 - in head/lang: perl5-devel perl5.20 perl5.22

Mathieu Arnold mat at FreeBSD.org
Sun Aug 16 08:51:07 UTC 2015


Author: mat
Date: Sun Aug 16 08:51:04 2015
New Revision: 394393
URL: https://svnweb.freebsd.org/changeset/ports/394393

Log:
  Add a pkg-message to Perl 5.20+ about the /usr/bin/perl symlink.
  
  Sponsored by:	Absolight

Added:
  head/lang/perl5-devel/pkg-message   (contents, props changed)
  head/lang/perl5.20/pkg-message   (contents, props changed)
  head/lang/perl5.22/pkg-message   (contents, props changed)
Modified:
  head/lang/perl5-devel/Makefile
  head/lang/perl5.20/Makefile
  head/lang/perl5.22/Makefile

Modified: head/lang/perl5-devel/Makefile
==============================================================================
--- head/lang/perl5-devel/Makefile	Sun Aug 16 08:21:20 2015	(r394392)
+++ head/lang/perl5-devel/Makefile	Sun Aug 16 08:51:04 2015	(r394393)
@@ -2,6 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	perl
+PORTREVISION=	1
 # XXX Remove second line, uncomment first
 #DISTVERSION=	${PERL_VERSION}
 DISTVERSION=	${GH_TAGNAME:C/^v//:C/-g[0-9a-f]*$//}

Added: head/lang/perl5-devel/pkg-message
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/lang/perl5-devel/pkg-message	Sun Aug 16 08:51:04 2015	(r394393)
@@ -0,0 +1,11 @@
+The /usr/bin/perl symlink has been removed starting with Perl 5.20.
+For shebangs, you should either use:
+
+#!/usr/local/bin/perl
+
+or
+
+#!/usr/bin/env perl
+
+The first one will only work if you have a /usr/local/bin/perl,
+the second will work as long as perl is in PATH.

Modified: head/lang/perl5.20/Makefile
==============================================================================
--- head/lang/perl5.20/Makefile	Sun Aug 16 08:21:20 2015	(r394392)
+++ head/lang/perl5.20/Makefile	Sun Aug 16 08:51:04 2015	(r394393)
@@ -3,7 +3,7 @@
 
 PORTNAME=	perl
 PORTVERSION=	${PERL_VERSION}
-PORTREVISION=	5
+PORTREVISION=	6
 CATEGORIES=	lang devel perl5
 MASTER_SITES=	CPAN/../../src/5.0
 DIST_SUBDIR=	perl

Added: head/lang/perl5.20/pkg-message
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/lang/perl5.20/pkg-message	Sun Aug 16 08:51:04 2015	(r394393)
@@ -0,0 +1,11 @@
+The /usr/bin/perl symlink has been removed starting with Perl 5.20.
+For shebangs, you should either use:
+
+#!/usr/local/bin/perl
+
+or
+
+#!/usr/bin/env perl
+
+The first one will only work if you have a /usr/local/bin/perl,
+the second will work as long as perl is in PATH.

Modified: head/lang/perl5.22/Makefile
==============================================================================
--- head/lang/perl5.22/Makefile	Sun Aug 16 08:21:20 2015	(r394392)
+++ head/lang/perl5.22/Makefile	Sun Aug 16 08:51:04 2015	(r394393)
@@ -3,7 +3,7 @@
 
 PORTNAME=	perl
 DISTVERSION=	${PERL_VERSION}
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	lang devel perl5
 MASTER_SITES=	CPAN/../../src/5.0 CPAN/../by-authors/id/R/RJ/RJBS
 DIST_SUBDIR=	perl

Added: head/lang/perl5.22/pkg-message
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/lang/perl5.22/pkg-message	Sun Aug 16 08:51:04 2015	(r394393)
@@ -0,0 +1,11 @@
+The /usr/bin/perl symlink has been removed starting with Perl 5.20.
+For shebangs, you should either use:
+
+#!/usr/local/bin/perl
+
+or
+
+#!/usr/bin/env perl
+
+The first one will only work if you have a /usr/local/bin/perl,
+the second will work as long as perl is in PATH.


More information about the svn-ports-all mailing list