diff options
author | eadler <eadler@FreeBSD.org> | 2013-06-02 06:46:52 +0800 |
---|---|---|
committer | eadler <eadler@FreeBSD.org> | 2013-06-02 06:46:52 +0800 |
commit | a0d1c70df2985ae6a722a0c950925a58273715e4 (patch) | |
tree | 6ab872b3a0bf3f91a48a33ff53b77a79f29f96df /textproc/p5-Time-Human | |
parent | a44f9aa626d003718d09722d4184b0629146c8b0 (diff) | |
download | freebsd-ports-gnome-a0d1c70df2985ae6a722a0c950925a58273715e4.tar.gz freebsd-ports-gnome-a0d1c70df2985ae6a722a0c950925a58273715e4.tar.zst freebsd-ports-gnome-a0d1c70df2985ae6a722a0c950925a58273715e4.zip |
The patch is not needed for any perl version newer than 5.6.
Discussed on: #perl on freenode
Diffstat (limited to 'textproc/p5-Time-Human')
-rw-r--r-- | textproc/p5-Time-Human/files/Human.pm-5005.patch | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/textproc/p5-Time-Human/files/Human.pm-5005.patch b/textproc/p5-Time-Human/files/Human.pm-5005.patch deleted file mode 100644 index 4cef9635b715..000000000000 --- a/textproc/p5-Time-Human/files/Human.pm-5005.patch +++ /dev/null @@ -1,57 +0,0 @@ ---- Human.pm.orig Sun Feb 11 22:58:56 2007 -+++ Human.pm Sun Feb 11 23:00:27 2007 -@@ -1,12 +1,13 @@ - package Time::Human; - --require 5.005_62; -+require 5.005_03; - use strict; --use warnings; - - require Exporter; - --our @ISA = qw(Exporter); -+use vars qw/@ISA $VERSION %EXPORT_TAGS @EXPORT_OK @EXPORT -+ %templates $Language $Evening $Night/; -+@ISA = qw(Exporter); - - # Items to export into callers namespace by default. Note: do not export - # names by default without a very good reason. Use EXPORT_OK instead. -@@ -15,19 +16,19 @@ - # This allows declaration use Time::Human ':all'; - # If you do not need this, moving things directly into @EXPORT or @EXPORT_OK - # will save memory. --our %EXPORT_TAGS = ( 'all' => [ qw( -+%EXPORT_TAGS = ( 'all' => [ qw( - humantime - ) ] ); - --our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } ); -+@EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } ); - --our @EXPORT = qw( -+@EXPORT = qw( - humanize - - ); --our $VERSION = '1.03'; -+$VERSION = '1.03'; - --our %templates = ( -+%templates = ( - - English => { - numbers => [ qw(one two three four five six seven eight nine ten eleven twelve) ], -@@ -43,9 +44,9 @@ - } - ); - --our $Language = "English"; --our $Evening = 18; --our $Night = 22; -+$Language = "English"; -+$Evening = 18; -+$Night = 22; - - # Preloaded methods go here. - |