+1, tested on FreeBSD 9-BETA with perl 5.12.4.
----- Original Message ----- > From: Marvin Humphrey <[email protected]> > To: [email protected] > Cc: [email protected] > Sent: Sunday, August 14, 2011 4:57 PM > Subject: [lucy-dev] [VOTE] Apache Lucy (incubating) 0.2.1 RC 1 > > Hello, > > Release candidate 1 for Apache Lucy (incubating) version 0.2.1 can > be found at: > > http://people.apache.org/~marvin/apache-lucy-incubating-0.2.1-rc1/ > > This bugfix release fixes a single issue: LUCY-174, "Filepath naming glitch > breaks CPAN build process". The diff between the contents of the 0.2.0 > tarball and 0.2.1rc1 is below my sig. > > Though our usual procedure is to hold Apache Lucy PPMC release votes on > lucy-dev before running the lazy consensus vote on general@incubator, this > time we are making an exception and running the votes concurrently in order to > expedite the process. > > Please vote on releasing this candidate as Apache Lucy (incubating) version > 0.2.1. The vote will be held open for the next 72 hours. > > [ ] +1 Release RC 1 as Apache Lucy (incubating) version 0.2.1. > [ ] +0 > [ ] -1 Do not release RC 1 as Apache Lucy (incubating) version 0.2.1 > because... > > Thanks! > > PS: Here is my +1. Tested on CentOS 5 with Perl 5.10.0 and OS X Snow Leopard > with Perl 5.12.2. > > Marvin Humphrey > > > $ diff -ur apache-lucy-incubating-0.2.0/CHANGES > apache-lucy-incubating-0.2.1/CHANGES > --- apache-lucy-incubating-0.2.0/CHANGES 2011-07-18 14:26:58.000000000 > -0700 > +++ apache-lucy-incubating-0.2.1/CHANGES 2011-08-14 08:30:49.000000000 > -0700 > @@ -1,5 +1,12 @@ > Revision history for Lucy > > +0.2.1 2011-08-14 > + > + Bugfixes: > + > + * [LUCY-174] - Filepath naming glitch breaks CPAN build process > + > + > 0.2.0 2011-07-24 > > Bugfixes: > diff -ur apache-lucy-incubating-0.2.0/perl/Build.PL > apache-lucy-incubating-0.2.1/perl/Build.PL > --- apache-lucy-incubating-0.2.0/perl/Build.PL 2011-07-18 14:26:58.000000000 > -0700 > +++ apache-lucy-incubating-0.2.1/perl/Build.PL 2011-08-14 08:30:49.000000000 > -0700 > @@ -24,7 +24,7 @@ > license => 'apache', > dist_author => > 'The Apache Lucy Project <lucy-dev at incubator dot apache dot > org>', > - dist_version => '0.2.0', > + dist_version => '0.2.1', > requires => { > 'JSON::XS' => 1.53, > 'perl' => '5.8.3', > diff -ur apache-lucy-incubating-0.2.0/perl/buildlib/Lucy/Build.pm > apache-lucy-incubating-0.2.1/perl/buildlib/Lucy/Build.pm > --- apache-lucy-incubating-0.2.0/perl/buildlib/Lucy/Build.pm 2011-07-17 > 22:11:28.000000000 -0700 > +++ apache-lucy-incubating-0.2.1/perl/buildlib/Lucy/Build.pm 2011-08-14 > 08:22:12.000000000 -0700 > @@ -492,8 +492,8 @@ > for my $c_file (@$c_files) { > my $o_file = $c_file; > my $ccs_file = $c_file; > - $o_file =~ s/\.c/$Config{_o}/; > - $ccs_file =~ s/\.c/.ccs/; > + $o_file =~ s/\.c$/$Config{_o}/ or die "no match"; > + $ccs_file =~ s/\.c$/.ccs/ or die "no match"; > push @objects, $o_file; > next if $self->up_to_date( $c_file, $o_file ); > $self->add_to_cleanup($o_file); > diff -ur apache-lucy-incubating-0.2.0/perl/lib/Lucy.pm > apache-lucy-incubating-0.2.1/perl/lib/Lucy.pm > --- apache-lucy-incubating-0.2.0/perl/lib/Lucy.pm 2011-07-18 > 14:26:58.000000000 -0700 > +++ apache-lucy-incubating-0.2.1/perl/lib/Lucy.pm 2011-08-14 > 08:30:49.000000000 -0700 > @@ -21,12 +21,12 @@ > use 5.008003; > use Exporter; > > -our $VERSION = '0.002000'; > +our $VERSION = '0.002001'; > $VERSION = eval $VERSION; > > use XSLoader; > # This loads a large number of disparate subs. > -BEGIN { XSLoader::load( 'Lucy', '0.002000' ) } > +BEGIN { XSLoader::load( 'Lucy', '0.002001' ) } > > BEGIN { > push our @ISA, 'Exporter'; > diff -ur apache-lucy-incubating-0.2.0/perl/lib/Lucy.pod > apache-lucy-incubating-0.2.1/perl/lib/Lucy.pod > --- apache-lucy-incubating-0.2.0/perl/lib/Lucy.pod 2011-07-18 > 14:26:58.000000000 -0700 > +++ apache-lucy-incubating-0.2.1/perl/lib/Lucy.pod 2011-08-14 > 08:30:49.000000000 -0700 > @@ -19,7 +19,7 @@ > > =head1 VERSION > > -0.2.0 > +0.2.1 > > =head1 SYNOPSIS >
