svn commit: r244422 - in user/des/tinderbox: . www

Dag-Erling Smørgrav des at FreeBSD.org
Wed Dec 19 11:01:31 UTC 2012


Author: des
Date: Wed Dec 19 11:01:30 2012
New Revision: 244422
URL: http://svnweb.freebsd.org/changeset/base/244422

Log:
  Bump the Perl version requirement from 5.6.1 to 5.10.1.  Although I
  don't currently use any constructs that aren't supported in 5.6.1, I
  haven't run this code on anything older than 5.10 in a good long
  while.  5.10.1 happens to be the oldest version to implement the
  current semantics of the smartmatch operator, which is the newest
  language feature I'm likely to need.

Modified:
  user/des/tinderbox/tbmaster.pl
  user/des/tinderbox/tinderbox.pl
  user/des/tinderbox/www/index.cgi

Modified: user/des/tinderbox/tbmaster.pl
==============================================================================
--- user/des/tinderbox/tbmaster.pl	Wed Dec 19 10:55:32 2012	(r244421)
+++ user/des/tinderbox/tbmaster.pl	Wed Dec 19 11:01:30 2012	(r244422)
@@ -27,7 +27,7 @@
 # $FreeBSD$
 #
 
-use 5.006_001;
+use v5.10.1;
 use strict;
 use Fcntl qw(:DEFAULT :flock);
 use POSIX;

Modified: user/des/tinderbox/tinderbox.pl
==============================================================================
--- user/des/tinderbox/tinderbox.pl	Wed Dec 19 10:55:32 2012	(r244421)
+++ user/des/tinderbox/tinderbox.pl	Wed Dec 19 11:01:30 2012	(r244422)
@@ -27,7 +27,7 @@
 # $FreeBSD$
 #
 
-use 5.006_001;
+use v5.10.1;
 use strict;
 use Fcntl qw(:DEFAULT :flock);
 use POSIX;

Modified: user/des/tinderbox/www/index.cgi
==============================================================================
--- user/des/tinderbox/www/index.cgi	Wed Dec 19 10:55:32 2012	(r244421)
+++ user/des/tinderbox/www/index.cgi	Wed Dec 19 11:01:30 2012	(r244422)
@@ -27,7 +27,7 @@
 # $FreeBSD$
 #
 
-use 5.006_001;
+use v5.10.1;
 use strict;
 use POSIX qw(strftime);
 use Sys::Hostname;


More information about the svn-src-user mailing list