You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucy.apache.org by nw...@apache.org on 2016/02/11 13:13:59 UTC

[2/2] lucy-clownfish git commit: Don't try to update version in generated Clownfish.pod

Don't try to update version in generated Clownfish.pod


Project: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/commit/0c5c166e
Tree: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/tree/0c5c166e
Diff: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/diff/0c5c166e

Branch: refs/heads/master
Commit: 0c5c166ee8a26c55c8190068c72f70d898d088cb
Parents: 997e246
Author: Nick Wellnhofer <we...@aevum.de>
Authored: Thu Feb 11 13:04:23 2016 +0100
Committer: Nick Wellnhofer <we...@aevum.de>
Committed: Thu Feb 11 13:04:23 2016 +0100

----------------------------------------------------------------------
 devel/bin/update_version | 6 ------
 1 file changed, 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/0c5c166e/devel/bin/update_version
----------------------------------------------------------------------
diff --git a/devel/bin/update_version b/devel/bin/update_version
index 932fa42..a6c792e 100755
--- a/devel/bin/update_version
+++ b/devel/bin/update_version
@@ -90,12 +90,6 @@ if ( $z == 0 && $dev == 0 ) {
 }
 write_file( 'runtime/perl/lib/Clownfish.pm', $buf );
 
-# Update Clownfish.pod.
-$buf = read_file('runtime/perl/lib/Clownfish.pod');
-$buf =~ s/(^=head1\s+VERSION\s+)([\d._]+)/$1$x_y_z_d_version/m
-    or die "no match";
-write_file( 'runtime/perl/lib/Clownfish.pod', $buf );
-
 # Update compiler Build.PL
 $buf = read_file('compiler/perl/Build.PL');
 $buf =~ s/(dist_version\ +=>\ +)'.+?'/$1'$x_y_z_d_version'/