Author: lkundrak Update of /cvs/pkgs/rpms/perl-KinoSearch/devel In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26049 Modified Files: .cvsignore perl-KinoSearch.spec sources Added Files: KinoSearch-0.164-ppc.patch Log Message: * Sun Mar 29 2009 Lubomir Rintel <lkundrak@xxxxx> - 0.164-1 - Update to 0.164 - Add missing Pod::Coverage BRs (Robert Scheck) - Fix a PowerPC signedness issue - Clarify licensing, re-add ApacheLicense2.0.txt KinoSearch-0.164-ppc.patch: --- NEW FILE KinoSearch-0.164-ppc.patch --- Fix signedness issue that caused testing to fail in ppc. Lubomir Rintel <lkundrak@xxxxx> diff -up KinoSearch-0.164/lib/KinoSearch/Store/InStream.pm.ppc KinoSearch-0.164/lib/KinoSearch/Store/InStream.pm --- KinoSearch-0.164/lib/KinoSearch/Store/InStream.pm.ppc 2009-03-03 23:43:28.000000000 +0100 +++ KinoSearch-0.164/lib/KinoSearch/Store/InStream.pm 2009-03-30 21:27:26.991644455 +0200 @@ -234,7 +234,7 @@ PPCODE: case 'B': /* unsigned byte */ aChar = instream->read_byte(instream); if (sym == 'b') - aIV = aChar; + aIV = (signed char)aChar; else aIV = (unsigned char)aChar; aSV = newSViv(aIV); Index: .cvsignore =================================================================== RCS file: /cvs/pkgs/rpms/perl-KinoSearch/devel/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- .cvsignore 14 Feb 2009 22:13:49 -0000 1.2 +++ .cvsignore 30 Mar 2009 19:49:00 -0000 1.3 @@ -1 +1 @@ -KinoSearch-0.163.tar.gz +KinoSearch-0.164.tar.gz Index: perl-KinoSearch.spec =================================================================== RCS file: /cvs/pkgs/rpms/perl-KinoSearch/devel/perl-KinoSearch.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- perl-KinoSearch.spec 26 Feb 2009 20:33:09 -0000 1.4 +++ perl-KinoSearch.spec 30 Mar 2009 19:49:00 -0000 1.5 @@ -1,11 +1,17 @@ Name: perl-KinoSearch -Version: 0.163 -Release: 4%{?dist} +Version: 0.164 +Release: 1%{?dist} Summary: Search engine library +# ApacheLicense2.0.txt included is included just becuase the upstream +# author decided to include it and is only for informative purposes. +# We believe that it doesn't apply, since author didn't use any Lucene +# code (according to mail in LICENSING.mbox) License: GPL+ or Artistic Group: Development/Libraries URL: http://search.cpan.org/dist/KinoSearch/ Source0: http://www.cpan.org/authors/id/C/CR/CREAMYG/KinoSearch-%{version}.tar.gz +Source1: LICENSING.mbox +Patch0: KinoSearch-0.164-ppc.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: perl(Compress::Zlib) BuildRequires: perl(ExtUtils::CBuilder) @@ -13,6 +19,8 @@ BuildRequires: perl(Lingua::Stem::Snowball) >= 0.94 BuildRequires: perl(Lingua::StopWords) >= 0.02 BuildRequires: perl(Module::Build) +BuildRequires: perl(Test::Pod::Coverage) >= 1.04 +BuildRequires: perl(Test::Pod) >= 1.14 Requires: perl(Compress::Zlib) Requires: perl(Lingua::Stem::Snowball) >= 0.94 Requires: perl(Lingua::StopWords) >= 0.02 @@ -25,6 +33,8 @@ %prep %setup -q -n KinoSearch-%{version} +%patch0 -p1 -b .ppc +cp %{SOURCE1} LICENSING.mbox %build %{__perl} Build.PL installdirs=vendor @@ -40,6 +50,7 @@ %{_fixperms} $RPM_BUILD_ROOT/* + %check ./Build test @@ -48,16 +59,16 @@ %files %defattr(-,root,root,-) -%doc Changes README +%doc Changes README ApacheLicense2.0.txt LICENSING.mbox %{perl_vendorarch}/* %{_mandir}/man3/* %changelog -* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@xxxxxxxxxxxxxxxxxxxxxxx> - 0.163-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild - -* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@xxxxxxxxxxxxxxxxxxxxxxx> - 0.163-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild +* Sun Mar 29 2009 Lubomir Rintel <lkundrak@xxxxx> - 0.164-1 +- Update to 0.164 +- Add missing Pod::Coverage BRs (Robert Scheck) +- Fix a PowerPC signedness issue +- Clarify licensing, re-add ApacheLicense2.0.txt * Sat Feb 14 2009 Ian Burrell <ianburrell@xxxxxxxxx> - 0.163-2 - remove empty KinoSearch.bs Index: sources =================================================================== RCS file: /cvs/pkgs/rpms/perl-KinoSearch/devel/sources,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- sources 14 Feb 2009 22:13:49 -0000 1.2 +++ sources 30 Mar 2009 19:49:00 -0000 1.3 @@ -1 +1 @@ -5522cae77847aa6fad24d12a50ba81a7 KinoSearch-0.163.tar.gz +9fd011170455974544af83005f0cb350 KinoSearch-0.164.tar.gz -- Fedora Extras Perl SIG http://www.fedoraproject.org/wiki/Extras/SIGs/Perl Fedora-perl-devel-list mailing list Fedora-perl-devel-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/fedora-perl-devel-list