[Bps-public-commit] Number-RecordLocator branch, master, updated. 1f33cf2e5732babf3b7075b443c20e7463cac6da

jesse jesse at bestpractical.com
Wed Aug 12 20:33:47 EDT 2009


The branch, master has been updated
       via  1f33cf2e5732babf3b7075b443c20e7463cac6da (commit)
       via  a840bce1aa14c952b14d1780e466a6bfea1a37ad (commit)
       via  0bc9a265a400a2bdb466d866b8cccaf25993e8e4 (commit)
       via  80b7043d348ab7de3d1e35654524e26e60cc4a1d (commit)
       via  a9b28d9c3a436fbbcc17645331d3874f1f802aae (commit)
      from  60fd656db8aa0613702600fec660a3d82ce5ba91 (commit)

Summary of changes:
 .shipit                     |   10 ++++++++++
 Changes                     |    4 ++++
 MANIFEST                    |    1 +
 MANIFEST.SKIP               |   11 +++++++++++
 SIGNATURE                   |   42 ++++++++++++++++++++++++++++++++++++++++++
 lib/Number/RecordLocator.pm |    3 ++-
 t/00.load.t                 |    3 ++-
 7 files changed, 72 insertions(+), 2 deletions(-)
 create mode 100644 .shipit
 create mode 100644 MANIFEST.SKIP
 create mode 100644 SIGNATURE

- Log -----------------------------------------------------------------
commit a9b28d9c3a436fbbcc17645331d3874f1f802aae
Author: Jesse Vincent <jesse at bestpractical.com>
Date:   Wed Aug 12 19:23:06 2009 +0100

    support for 64 bit platforms
    
    Date: Tue, 11 Aug 2009 18:10:25 -0700
    From: Satoshi Tanimoto <tanimoto.satoshi at gmail.com>
    To: Jesse Vincent <jesse at bestpractical.com>
    Subject: Re: PATCH for Number::RecordLocator

diff --git a/lib/Number/RecordLocator.pm b/lib/Number/RecordLocator.pm
index df07ed9..32031f2 100644
--- a/lib/Number/RecordLocator.pm
+++ b/lib/Number/RecordLocator.pm
@@ -5,6 +5,7 @@ our $VERSION = '0.004';
 use warnings;
 use strict;
 use Carp;
+use bigint;
 
 use vars qw/%CHAR_TO_INT %INT_TO_CHAR $INITIALIZED %CHAR_REMAP/;
 
diff --git a/t/00.load.t b/t/00.load.t
index 12e2112..5f8d833 100644
--- a/t/00.load.t
+++ b/t/00.load.t
@@ -1,4 +1,4 @@
-use Test::More tests => 11;
+use Test::More tests => 12;
 
 BEGIN {
 use_ok( 'Number::RecordLocator' );
@@ -18,6 +18,7 @@ is ($gen->encode('123456'),'5RL2');
 is ($gen->decode('5RL2'), '123456');
 
 is($gen->decode($gen->encode('123456')), '123456');
+is($gen->decode($gen->encode('81289304929241823')), '81289304929241823');
 
 is($gen->decode('1234'),$gen->decode('I234'));
 is($gen->decode('10SB'),$gen->decode('IOFP'));

commit 80b7043d348ab7de3d1e35654524e26e60cc4a1d
Author: Jesse Vincent <jesse at bestpractical.com>
Date:   Wed Aug 12 19:24:21 2009 +0100

    update version and changes

diff --git a/Changes b/Changes
index d3b4ac7..880b3b2 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,9 @@
 Revision history for Number-RecordLocator
 
+0.005
+	Support for 64 bit platforms from Satoshi Tanimoto 
+		<tanimoto.satoshi at gmail.com>                             
+
 0.004 Fri Nov 28 12:21:18 EST 2008
     * Patch to add 'canonicalize' method 
         From: Sterling Hanenkamp <sterling at hanenkamp.com>                                                                                                           
diff --git a/lib/Number/RecordLocator.pm b/lib/Number/RecordLocator.pm
index 32031f2..b144335 100644
--- a/lib/Number/RecordLocator.pm
+++ b/lib/Number/RecordLocator.pm
@@ -1,6 +1,6 @@
 package Number::RecordLocator;
 
-our $VERSION = '0.004';
+our $VERSION = '0.005';
 
 use warnings;
 use strict;

commit 0bc9a265a400a2bdb466d866b8cccaf25993e8e4
Author: Jesse Vincent <jesse at bestpractical.com>
Date:   Wed Aug 12 20:24:29 2009 -0400

    releng work

diff --git a/.shipit b/.shipit
new file mode 100644
index 0000000..44c02c1
--- /dev/null
+++ b/.shipit
@@ -0,0 +1,10 @@
+# auto-generated shipit config file.
+steps = FindVersion, ChangeVersion, CheckChangeLog, DistTest, Commit, Tag, MakeDist, UploadCPAN, Twitter
+
+git.tagpattern = %v
+twitter.config = ~/.twitterrc
+
+# svn.tagpattern = MyProj-%v
+# svn.tagpattern = http://code.example.com/svn/tags/MyProj-%v
+
+# CheckChangeLog.files = ChangeLog, MyProj.CHANGES
diff --git a/MANIFEST.SKIP b/MANIFEST.SKIP
new file mode 100644
index 0000000..7fca686
--- /dev/null
+++ b/MANIFEST.SKIP
@@ -0,0 +1,11 @@
+TODO
+^Makefile$
+blib
+pm_to_blib
+.swp$
+~$
+.tmp$
+.bak$
+.git/
+.gitignore$
+.shipit$

commit a840bce1aa14c952b14d1780e466a6bfea1a37ad
Author: Jesse Vincent <jesse at bestpractical.com>
Date:   Wed Aug 12 20:25:16 2009 -0400

    manifest update

diff --git a/MANIFEST b/MANIFEST
index aad802f..0b6bfb0 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -11,6 +11,7 @@ inc/Module/Install/WriteAll.pm
 lib/Number/RecordLocator.pm
 Makefile.PL
 MANIFEST
+MANIFEST.SKIP
 META.yml			# Will be created by "make dist"
 README
 t/00.load.t

commit 1f33cf2e5732babf3b7075b443c20e7463cac6da
Author: Jesse Vincent <jesse at bestpractical.com>
Date:   Wed Aug 12 20:25:46 2009 -0400

    signature committed

diff --git a/SIGNATURE b/SIGNATURE
new file mode 100644
index 0000000..13eb019
--- /dev/null
+++ b/SIGNATURE
@@ -0,0 +1,42 @@
+This file contains message digests of all files listed in MANIFEST,
+signed via the Module::Signature module, version 0.55.
+
+To verify the content in this distribution, first make sure you have
+Module::Signature installed, then type:
+
+    % cpansign -v
+
+It will check each file's integrity, as well as the signature's
+validity.  If "==> Signature verified OK! <==" is not displayed,
+the distribution may already have been compromised, and you should
+not run its Makefile.PL or Build.PL.
+
+-----BEGIN PGP SIGNED MESSAGE-----
+Hash: SHA1
+
+SHA1 2c6ef4717f7df0571b8297d975bf51928828bc30 Changes
+SHA1 cc9fa118ad4ce1321da46ff02020c4b5c6ecbf87 MANIFEST
+SHA1 e476d8bd724d46eb9e255cc8afc98b92269e2255 MANIFEST.SKIP
+SHA1 f7cfee2fa3cc98e04342aa1b7793804320431177 META.yml
+SHA1 62024cc5924b4de214cb42c7bb7909d7793e9102 Makefile.PL
+SHA1 e46fccd0d121d84c2ee765a08580961923fa5c27 README
+SHA1 5c9e093b0facca46d50e3c69d5569aa7a98db0b8 inc/Module/Install.pm
+SHA1 465acb50b9006ce61f58a7bd02d0bb029ddceaa6 inc/Module/Install/Base.pm
+SHA1 8356d82167fc00550b4a3ceea8bd852a374d7509 inc/Module/Install/Can.pm
+SHA1 b47ce07fa6d6e38e3daa6cfc752b23f59a64754c inc/Module/Install/Fetch.pm
+SHA1 37ed4ccd7aba10119e6f2993b8082674ce2e5961 inc/Module/Install/Makefile.pm
+SHA1 4aa1c578faad51f31e62bed7b28d3d42b88219c3 inc/Module/Install/Metadata.pm
+SHA1 d7529d795a1304c88253b26a9089913edf31ae5e inc/Module/Install/Win32.pm
+SHA1 2a74aba5a78e7ab2776382e42106ebe941c2ac28 inc/Module/Install/WriteAll.pm
+SHA1 59b5aedd2aefd40fb6f37297416410c3f0fcd723 lib/Number/RecordLocator.pm
+SHA1 45bd69c5d4fc13c1d9e7ac3516ef927560a4649f t/00.load.t
+SHA1 adacabd951d930251c6c0efe06f1366dee04ff73 t/canonicalize.t
+SHA1 6da39b48ce64b584e4c3274bff96fc76ff484820 t/pod-coverage.t
+SHA1 0190346d7072d458c8a10a45c19f86db641dcc48 t/pod.t
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.4.9 (Darwin)
+
+iEYEARECAAYFAkqDXXYACgkQEi9d9xCOQEbDeACeOftbUgNKxqTO6xjvEn72QGC2
+4CkAnA3H4mfJz6ayaJgdAuvtIgUvF2i3
+=Q+kk
+-----END PGP SIGNATURE-----

-----------------------------------------------------------------------



More information about the Bps-public-commit mailing list