[Bps-public-commit] Shipwright branch, master, updated. 0cc48c0ad3a09288524391bde1ba450366ef693d

? sunnavy sunnavy at bestpractical.com
Thu Mar 17 02:11:51 EDT 2011


The branch, master has been updated
       via  0cc48c0ad3a09288524391bde1ba450366ef693d (commit)
       via  c7d1529b23fba4fdccdff3227fb4e458603cf33c (commit)
       via  5910340f523c859c00c635f24065813fb7a9e639 (commit)
      from  4163cdcb23b995088555e2d24e98122aeccc21d6 (commit)

Summary of changes:
 Changes                   |   10 +++++++++-
 META.yml                  |    2 +-
 lib/Shipwright.pm         |    2 +-
 lib/Shipwright/Backend.pm |    6 +++---
 4 files changed, 14 insertions(+), 6 deletions(-)

- Log -----------------------------------------------------------------
commit 5910340f523c859c00c635f24065813fb7a9e639
Author: sunnavy <sunnavy at bestpractical.com>
Date:   Thu Mar 17 13:58:51 2011 +0800

    tiny clean

diff --git a/lib/Shipwright/Backend.pm b/lib/Shipwright/Backend.pm
index e69ab72..724a34b 100644
--- a/lib/Shipwright/Backend.pm
+++ b/lib/Shipwright/Backend.pm
@@ -19,11 +19,11 @@ sub new {
         $args{repository} = 'svk:'. $args{repository};
     }
 
-    my ($backend, $subtype);
+    my $backend;
     if ( $args{repository} =~ /^([a-z]+)(?:\+([a-z]+))?:/ ) {
-        ($backend, $subtype) = ($1, $2);
+        ($backend) = $1;
     } else {
-        confess_or_die "invalid repository, doesn't start from xxx: or xxx+yyy:";
+        confess_or_die "invalid repository, doesn't start with xxx: or xxx+yyy:";
     }
 
     my $module = find_module(__PACKAGE__, $backend);

commit c7d1529b23fba4fdccdff3227fb4e458603cf33c
Author: sunnavy <sunnavy at bestpractical.com>
Date:   Thu Mar 17 14:10:54 2011 +0800

    release 2.4.23

diff --git a/Changes b/Changes
index 4371d4b..2136323 100644
--- a/Changes
+++ b/Changes
@@ -1,6 +1,12 @@
 Revision history for Shipwright
 
-2.4.23
+2.4.23 Thu Mar 17 14:03:45 CST 2011
+
+* clean warnings for perl 5.13+
+* fix bugs when importing from shipyard.
+* no branch specification support when importing from another shipyard:
+    import all branches or none at all
+* tweak to suit rpm(thanks to Robin Lee).
 
 2.4.22 Wed Feb 23 11:32:58 CST 2011
 

commit 0cc48c0ad3a09288524391bde1ba450366ef693d
Author: sunnavy <sunnavy at bestpractical.com>
Date:   Thu Mar 17 14:11:34 2011 +0800

    bump to 2.4.24

diff --git a/Changes b/Changes
index 2136323..f27906f 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,7 @@
 Revision history for Shipwright
 
+2.4.24
+
 2.4.23 Thu Mar 17 14:03:45 CST 2011
 
 * clean warnings for perl 5.13+
diff --git a/META.yml b/META.yml
index 5f6180a..1aa2d1c 100644
--- a/META.yml
+++ b/META.yml
@@ -56,4 +56,4 @@ requires:
 resources:
   license: http://dev.perl.org/licenses/
   repository: git://github.com/bestpractical/shipwright.git
-version: 2.004023
+version: 2.004024
diff --git a/lib/Shipwright.pm b/lib/Shipwright.pm
index 4b0dacf..9c01e9f 100644
--- a/lib/Shipwright.pm
+++ b/lib/Shipwright.pm
@@ -2,7 +2,7 @@ package Shipwright;
 
 use warnings;
 use strict;
-use version; our $VERSION = qv('2.4.23');
+use version; our $VERSION = qv('2.4.24');
 
 use base qw/Shipwright::Base/;
 

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



More information about the Bps-public-commit mailing list