r52504 - in /branches/upstream/libtime-piece-perl/current: Changes META.yml Piece.pm Piece.xs Seconds.pm
jawnsy-guest at users.alioth.debian.org
jawnsy-guest at users.alioth.debian.org
Thu Feb 11 01:56:25 UTC 2010
Author: jawnsy-guest
Date: Thu Feb 11 01:56:20 2010
New Revision: 52504
URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=52504
Log:
[svn-upgrade] Integrating new upstream version, libtime-piece-perl (1.19)
Modified:
branches/upstream/libtime-piece-perl/current/Changes
branches/upstream/libtime-piece-perl/current/META.yml
branches/upstream/libtime-piece-perl/current/Piece.pm
branches/upstream/libtime-piece-perl/current/Piece.xs
branches/upstream/libtime-piece-perl/current/Seconds.pm
Modified: branches/upstream/libtime-piece-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtime-piece-perl/current/Changes?rev=52504&op=diff
==============================================================================
--- branches/upstream/libtime-piece-perl/current/Changes (original)
+++ branches/upstream/libtime-piece-perl/current/Changes Thu Feb 11 01:56:20 2010
@@ -1,5 +1,11 @@
Time::Piece Changes
+
+1.19
+ - Fix for alloca broke FreeBSD
+
+1.18
+ - Fix for alloca on IRIX
1.17
- Force all to use internal strptime then everyone gets %z even OSX
Modified: branches/upstream/libtime-piece-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtime-piece-perl/current/META.yml?rev=52504&op=diff
==============================================================================
--- branches/upstream/libtime-piece-perl/current/META.yml (original)
+++ branches/upstream/libtime-piece-perl/current/META.yml Thu Feb 11 01:56:20 2010
@@ -1,6 +1,6 @@
--- #YAML:1.0
name: Time-Piece
-version: 1.17
+version: 1.19
abstract: Object Oriented time objects
license: ~
author:
Modified: branches/upstream/libtime-piece-perl/current/Piece.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtime-piece-perl/current/Piece.pm?rev=52504&op=diff
==============================================================================
--- branches/upstream/libtime-piece-perl/current/Piece.pm (original)
+++ branches/upstream/libtime-piece-perl/current/Piece.pm Thu Feb 11 01:56:20 2010
@@ -1,4 +1,4 @@
-# $Id: Piece.pm 91 2010-02-01 21:38:28Z matt $
+# $Id: Piece.pm 93 2010-02-10 22:37:00Z matt $
package Time::Piece;
@@ -21,7 +21,7 @@
':override' => 'internal',
);
-our $VERSION = '1.17';
+our $VERSION = '1.19';
bootstrap Time::Piece $VERSION;
Modified: branches/upstream/libtime-piece-perl/current/Piece.xs
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtime-piece-perl/current/Piece.xs?rev=52504&op=diff
==============================================================================
--- branches/upstream/libtime-piece-perl/current/Piece.xs (original)
+++ branches/upstream/libtime-piece-perl/current/Piece.xs Thu Feb 11 01:56:20 2010
@@ -313,6 +313,11 @@
#else
#define alloca _alloca
#endif
+#else
+#if defined(_SGIAPI) || defined( __sgi )
+/* required for IRIX */
+#include <alloca.h>
+#endif
#endif
/* strptime copied from freebsd with the following copyright: */
Modified: branches/upstream/libtime-piece-perl/current/Seconds.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtime-piece-perl/current/Seconds.pm?rev=52504&op=diff
==============================================================================
--- branches/upstream/libtime-piece-perl/current/Seconds.pm (original)
+++ branches/upstream/libtime-piece-perl/current/Seconds.pm Thu Feb 11 01:56:20 2010
@@ -1,4 +1,4 @@
-# $Id: Seconds.pm 44 2002-09-08 20:51:38Z matt $
+# $Id: Seconds.pm 69 2006-09-07 17:41:05Z matt $
package Time::Seconds;
use strict;
More information about the Pkg-perl-cvs-commits
mailing list