r63235 - in /trunk/libmath-random-mt-perl: Changes META.yml MT.pm debian/changelog mt.h

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Sun Oct 3 18:40:05 UTC 2010


Author: jawnsy-guest
Date: Sun Oct  3 18:39:44 2010
New Revision: 63235

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=63235
Log:
IGNORE-VERSION 1.12-1
(only change: fix for Mac OS X)
* New upstream release

Modified:
    trunk/libmath-random-mt-perl/Changes
    trunk/libmath-random-mt-perl/META.yml
    trunk/libmath-random-mt-perl/MT.pm
    trunk/libmath-random-mt-perl/debian/changelog
    trunk/libmath-random-mt-perl/mt.h

Modified: trunk/libmath-random-mt-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmath-random-mt-perl/Changes?rev=63235&op=diff
==============================================================================
--- trunk/libmath-random-mt-perl/Changes (original)
+++ trunk/libmath-random-mt-perl/Changes Sun Oct  3 18:39:44 2010
@@ -1,3 +1,9 @@
+1.12    2010-09-29      Abhijit Menon-Sen <ams at toroid.org>
+
+    * Fix OS X build failure reported by Daniel Barker and fixed by
+      Tokuhiro Matsuno.
+
+
 1.11    2010-05-08      Abhijit Menon-Sen <ams at toroid.org>
 
     * Fix tests broken by overly optimistic floating point comparison

Modified: trunk/libmath-random-mt-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmath-random-mt-perl/META.yml?rev=63235&op=diff
==============================================================================
--- trunk/libmath-random-mt-perl/META.yml (original)
+++ trunk/libmath-random-mt-perl/META.yml Sun Oct  3 18:39:44 2010
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               Math-Random-MT
-version:            1.11
+version:            1.12
 abstract:           The Mersenne Twister PRNG
 author:  []
 license:            unknown

Modified: trunk/libmath-random-mt-perl/MT.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmath-random-mt-perl/MT.pm?rev=63235&op=diff
==============================================================================
--- trunk/libmath-random-mt-perl/MT.pm (original)
+++ trunk/libmath-random-mt-perl/MT.pm Sun Oct  3 18:39:44 2010
@@ -7,7 +7,7 @@
 
 my $gen = undef;
 @ISA = qw( DynaLoader );
-$VERSION = '1.11';
+$VERSION = '1.12';
 
 bootstrap Math::Random::MT $VERSION;
 

Modified: trunk/libmath-random-mt-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmath-random-mt-perl/debian/changelog?rev=63235&op=diff
==============================================================================
--- trunk/libmath-random-mt-perl/debian/changelog (original)
+++ trunk/libmath-random-mt-perl/debian/changelog Sun Oct  3 18:39:44 2010
@@ -1,7 +1,7 @@
-libmath-random-mt-perl (1.11-1) UNRELEASED; urgency=low
+libmath-random-mt-perl (1.12-1) UNRELEASED; urgency=low
 
-  IGNORE-VERSION 1.11-1
-  (only change: applies our patch)
+  IGNORE-VERSION 1.12-1
+  (only change: fix for Mac OS X)
 
   [ Salvatore Bonaccorso ]
   * New upstream release
@@ -9,7 +9,10 @@
   [ gregor herrmann ]
   * Remove patch, applied upstream.
 
- -- Salvatore Bonaccorso <salvatore.bonaccorso at gmail.com>  Sat, 08 May 2010 22:01:12 +0200
+  [ Jonathan Yu ]
+  * New upstream release
+
+ -- Jonathan Yu <jawnsy at cpan.org>  Sun, 03 Oct 2010 14:32:28 -0400
 
 libmath-random-mt-perl (1.10-2) unstable; urgency=low
 

Modified: trunk/libmath-random-mt-perl/mt.h
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmath-random-mt-perl/mt.h?rev=63235&op=diff
==============================================================================
--- trunk/libmath-random-mt-perl/mt.h (original)
+++ trunk/libmath-random-mt-perl/mt.h Sun Oct  3 18:39:44 2010
@@ -3,7 +3,7 @@
 
 #if defined(_MSC_VER) && (_MSC_VER <= 1300)
 typedef unsigned __int32 uint32_t;
-#elif defined(__linux__) || defined(__GLIBC__) || defined(__WIN32__)
+#elif defined(__linux__) || defined(__GLIBC__) || defined(__WIN32__) || defined(__APPLE__)
 #include <stdint.h>
 #elif defined(__osf__)
 #include <inttypes.h>




More information about the Pkg-perl-cvs-commits mailing list