You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@lucy.apache.org by Marvin Humphrey <ma...@rectangular.com> on 2011/08/14 22:57:03 UTC

[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
 

Re: [lucy-dev] [VOTE] Apache Lucy (incubating) 0.2.1 RC 1

Posted by "David E. Wheeler" <da...@kineticode.com>.
On Aug 14, 2011, at 1:57 PM, Marvin Humphrey wrote:

> [ ] +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.

+1

Tested on Mac OS X 10.7 "Lion" with Perl v1.4.1.

Best,

David
---------------------------------------------------------------------
To unsubscribe, e-mail: general-unsubscribe@incubator.apache.org
For additional commands, e-mail: general-help@incubator.apache.org


Re: [lucy-dev] [VOTE] Apache Lucy (incubating) 0.2.1 RC 1

Posted by "David E. Wheeler" <da...@kineticode.com>.
On Aug 14, 2011, at 1:57 PM, Marvin Humphrey wrote:

> [ ] +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.

+1

Tested on Mac OS X 10.7 "Lion" with Perl v1.4.1.

Best,

David

Re: [lucy-dev] [VOTE] Apache Lucy (incubating) 0.2.1 RC 1

Posted by Joe Schaefer <jo...@yahoo.com>.
+1, tested on FreeBSD 9-BETA with perl 5.12.4.



----- Original Message -----
> From: Marvin Humphrey <ma...@rectangular.com>
> To: lucy-dev@incubator.apache.org
> Cc: general@incubator.apache.org
> 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
>

[lucy-dev] [RESULTS] Apache Lucy (incubating) 0.2.1 RC 1

Posted by Marvin Humphrey <ma...@rectangular.com>.
On Sun, Aug 14, 2011 at 01:57:03PM -0700, Marvin Humphrey wrote:
> Please vote on releasing this candidate as Apache Lucy (incubating) version
> 0.2.1.

This vote has passed with 4 +1 votes from Lucy PPMC members and 3 +1 votes
from Incubator PMC members.

    +1 Marvin Humphrey   *+
    +1 Chris Mattmann    *+
    +1 Joe Schaefer      *+
    +1 David E. Wheeler  *

    * indicates Lucy PPMC
    + indicates Incubator PMC

Thank you for voting!

Marvin Humphrey


[RESULTS] Apache Lucy (incubating) 0.2.1 RC 1

Posted by Marvin Humphrey <ma...@rectangular.com>.
On Sun, Aug 14, 2011 at 01:57:03PM -0700, Marvin Humphrey wrote:
> Please vote on releasing this candidate as Apache Lucy (incubating) version
> 0.2.1.

This vote has passed with 4 +1 votes from Lucy PPMC members and 3 +1 votes
from Incubator PMC members.

    +1 Marvin Humphrey   *+
    +1 Chris Mattmann    *+
    +1 Joe Schaefer      *+
    +1 David E. Wheeler  *

    * indicates Lucy PPMC
    + indicates Incubator PMC

Thank you for voting!

Marvin Humphrey


---------------------------------------------------------------------
To unsubscribe, e-mail: general-unsubscribe@incubator.apache.org
For additional commands, e-mail: general-help@incubator.apache.org


Re: [lucy-dev] [VOTE] Apache Lucy (incubating) 0.2.1 RC 1

Posted by "Mattmann, Chris A (388J)" <ch...@jpl.nasa.gov>.
+1 from me:

Verified signatures, verified MD5 checksum, and all tests pass on my local machine:

[chipotle:Apache/lucy-dev/0.2.1-incubating-release] mattmann% gpg --verify apache-lucy-incubating-0.2.1.tar.gz.asc 
gpg: Signature made Sun Aug 14 09:34:24 2011 PDT using RSA key ID D8408955
gpg: Good signature from "Marvin Humphrey (CODE SIGNING KEY) <ma...@apache.org>"
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: E9CB 1666 03BD A59C 48BA  09B7 94C0 E78B D840 8955
[chipotle:Apache/lucy-dev/0.2.1-incubating-release] mattmann% openssl md5 apache-lucy-incubating-0.2.1.tar.gz
MD5(apache-lucy-incubating-0.2.1.tar.gz)= c2c93e67311419ca8cdc66b99b8a8c59
[chipotle:Apache/lucy-dev/0.2.1-incubating-release] mattmann% cat *.md5
apache-lucy-incubating-0.2.1.tar.gz: C2 C9 3E 67 31 14 19 CA  8C DC 66 B9 9B 8A
                                     8C 59

All tests successful, 3 tests and 10 subtests skipped.
Files=169, Tests=10464, 17 wallclock secs (12.44 cusr +  1.70 csys = 14.14 CPU)
[chipotle:0.2.1-incubating-release/apache-lucy-incubating-0.2.1/perl] mattmann% 

Cheers,
Chris

On Aug 14, 2011, at 1:57 PM, Marvin Humphrey wrote:

> 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
> 


++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Chris Mattmann, Ph.D.
Senior Computer Scientist
NASA Jet Propulsion Laboratory Pasadena, CA 91109 USA
Office: 171-266B, Mailstop: 171-246
Email: chris.a.mattmann@nasa.gov
WWW:   http://sunset.usc.edu/~mattmann/
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Adjunct Assistant Professor, Computer Science Department
University of Southern California, Los Angeles, CA 90089 USA
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++


Re: [lucy-dev] [VOTE] Apache Lucy (incubating) 0.2.1 RC 1

Posted by "Mattmann, Chris A (388J)" <ch...@jpl.nasa.gov>.
+1 from me:

Verified signatures, verified MD5 checksum, and all tests pass on my local machine:

[chipotle:Apache/lucy-dev/0.2.1-incubating-release] mattmann% gpg --verify apache-lucy-incubating-0.2.1.tar.gz.asc 
gpg: Signature made Sun Aug 14 09:34:24 2011 PDT using RSA key ID D8408955
gpg: Good signature from "Marvin Humphrey (CODE SIGNING KEY) <ma...@apache.org>"
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: E9CB 1666 03BD A59C 48BA  09B7 94C0 E78B D840 8955
[chipotle:Apache/lucy-dev/0.2.1-incubating-release] mattmann% openssl md5 apache-lucy-incubating-0.2.1.tar.gz
MD5(apache-lucy-incubating-0.2.1.tar.gz)= c2c93e67311419ca8cdc66b99b8a8c59
[chipotle:Apache/lucy-dev/0.2.1-incubating-release] mattmann% cat *.md5
apache-lucy-incubating-0.2.1.tar.gz: C2 C9 3E 67 31 14 19 CA  8C DC 66 B9 9B 8A
                                     8C 59

All tests successful, 3 tests and 10 subtests skipped.
Files=169, Tests=10464, 17 wallclock secs (12.44 cusr +  1.70 csys = 14.14 CPU)
[chipotle:0.2.1-incubating-release/apache-lucy-incubating-0.2.1/perl] mattmann% 

Cheers,
Chris

On Aug 14, 2011, at 1:57 PM, Marvin Humphrey wrote:

> 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
> 


++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Chris Mattmann, Ph.D.
Senior Computer Scientist
NASA Jet Propulsion Laboratory Pasadena, CA 91109 USA
Office: 171-266B, Mailstop: 171-246
Email: chris.a.mattmann@nasa.gov
WWW:   http://sunset.usc.edu/~mattmann/
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Adjunct Assistant Professor, Computer Science Department
University of Southern California, Los Angeles, CA 90089 USA
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++


---------------------------------------------------------------------
To unsubscribe, e-mail: general-unsubscribe@incubator.apache.org
For additional commands, e-mail: general-help@incubator.apache.org