[Bps-public-commit] Shipwright branch, master, updated. cefb35baea5cc23c0ca12e8aa6c4283fec357e9e
? sunnavy
sunnavy at bestpractical.com
Mon Aug 23 22:02:32 EDT 2010
The branch, master has been updated
via cefb35baea5cc23c0ca12e8aa6c4283fec357e9e (commit)
via 797055918b8d31fd8ce6d74233c4c76d43f4a145 (commit)
via c96bd75b037cfac2915ced9990bf4917ca912e61 (commit)
from ec296db97bf9f57526881b21ae4eda3fe63dffce (commit)
Summary of changes:
Changes | 6 +++++-
META.yml | 2 +-
lib/Shipwright.pm | 2 +-
share/bin/shipwright-utility | 5 ++++-
4 files changed, 11 insertions(+), 4 deletions(-)
- Log -----------------------------------------------------------------
commit c96bd75b037cfac2915ced9990bf4917ca912e61
Author: sunnavy <sunnavy at bestpractical.com>
Date: Tue Aug 24 10:02:30 2010 +0800
release 2.4.15
diff --git a/Changes b/Changes
index 087f82f..58eab98 100644
--- a/Changes
+++ b/Changes
@@ -1,6 +1,10 @@
Revision history for Shipwright
-2.4.15
+2.4.15 Tue Aug 24 00:19:00 UTC 2010
+
+* fix CleanINC name
+* make scripts happy in solaris
+* tweak shipwright-builder: show a few last lines of build.log to screen to help debug
2.4.14 Thu Jun 24 13:23:04 UTC 2010
commit 797055918b8d31fd8ce6d74233c4c76d43f4a145
Author: sunnavy <sunnavy at bestpractical.com>
Date: Tue Aug 24 10:03:19 2010 +0800
generate-tar-file fix
diff --git a/share/bin/shipwright-utility b/share/bin/shipwright-utility
index 5b23871..b9d7aae 100755
--- a/share/bin/shipwright-utility
+++ b/share/bin/shipwright-utility
@@ -141,7 +141,10 @@ else {
close $tar;
}
-chdir 'fs';
+opendir my $dh, '.' or die $!;
+my ( $tarpath ) = grep { $_ && $_ !~ /^\./ && $_ !~ /\.tar\.gz$/} readdir $dh;
+chdir $tarpath or die $!;
+
if ( system( $^X, catfile( 'bin', 'shipwright-builder' ), @ARGV ) ) {
# error happens
$dir->unlink_on_destroy(0);
commit cefb35baea5cc23c0ca12e8aa6c4283fec357e9e
Author: sunnavy <sunnavy at bestpractical.com>
Date: Tue Aug 24 10:04:53 2010 +0800
bump to 2.4.16
diff --git a/META.yml b/META.yml
index dbce3fc..9c108ac 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.004015
+version: 2.004016
diff --git a/lib/Shipwright.pm b/lib/Shipwright.pm
index 86af5c0..fe88238 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.15');
+use version; our $VERSION = qv('2.4.16');
use base qw/Class::Accessor::Fast/;
-----------------------------------------------------------------------
More information about the Bps-public-commit
mailing list