rpms/perl-Imager/FC-5 .cvsignore, 1.4, 1.5 perl-Imager.spec, 1.3, 1.4 sources, 1.4, 1.5

Steven Pritchard (steve) fedora-extras-commits at redhat.com
Tue May 1 23:07:42 UTC 2007


Author: steve

Update of /cvs/extras/rpms/perl-Imager/FC-5
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv13954

Modified Files:
	.cvsignore perl-Imager.spec sources 
Log Message:
Sync with devel.


Index: .cvsignore
===================================================================
RCS file: /cvs/extras/rpms/perl-Imager/FC-5/.cvsignore,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- .cvsignore	7 Apr 2006 20:57:57 -0000	1.4
+++ .cvsignore	1 May 2007 23:07:08 -0000	1.5
@@ -1 +1 @@
-Imager-0.50.tar.gz
+Imager-0.57.tar.gz


Index: perl-Imager.spec
===================================================================
RCS file: /cvs/extras/rpms/perl-Imager/FC-5/perl-Imager.spec,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- perl-Imager.spec	7 Apr 2006 20:57:57 -0000	1.3
+++ perl-Imager.spec	1 May 2007 23:07:08 -0000	1.4
@@ -1,26 +1,37 @@
 Name:           perl-Imager
-Version:        0.50
+Version:        0.57
 Release:        1%{?dist}
-Summary:        Imager - Perl extension for Generating 24 bit Images
-
-Group:          Development/Libraries
+Summary:        Perl extension for Generating 24 bit Images
 License:        GPL or Artistic
+Group:          Development/Libraries
 URL:            http://search.cpan.org/dist/Imager/
-Source0:        http://search.cpan.org/CPAN/authors/id/T/TO/TONYC/Imager-%{version}.tar.gz
+Source0:        http://www.cpan.org/authors/id/T/TO/TONYC/Imager-%{version}.tar.gz
 BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
-
-BuildRequires:  perl(ExtUtils::Depends), perl(Parse::RecDescent)
-BuildRequires:  libungif-devel, libpng-devel, freetype-devel, libtiff-devel
-BuildRequires:  libjpeg-devel, t1lib-devel
+BuildRequires:  perl(ExtUtils::Depends)
+BuildRequires:  perl(ExtUtils::MakeMaker)
+BuildRequires:  perl(Parse::RecDescent)
+BuildRequires:  perl(Inline)
+BuildRequires:  perl(Test::Pod) >= 1.00
+BuildRequires:  perl(Test::Pod::Coverage) >= 1.08
+BuildRequires:  freetype-devel
+BuildRequires:  gdbm-devel
+BuildRequires:  libjpeg-devel
+BuildRequires:  libpng-devel
+BuildRequires:  libtiff-devel
+BuildRequires:  libungif-devel
+BuildRequires:  t1lib-devel
+BuildRequires:  rgb
 Requires:       perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
 
 %description
-Imager is a module for creating and altering images. It can read and write
-various image formats, draw primitive shapes like lines,and polygons, blend
-multiple images together in various ways, scale, crop, render text and more.
+Imager is a module for creating and altering images. It can read and
+write various image formats, draw primitive shapes like lines,and
+polygons, blend multiple images together in various ways, scale, crop,
+render text and more.
 
 %prep
 %setup -q -n Imager-%{version}
+
 %{__perl} -pi -e 's/my \$resp = <STDIN>/my \$resp = "n"/g' Makefile.PL
 
 # Quiet rpmlint.
@@ -30,40 +41,64 @@
     -exec perl -pi -e '$_=undef if ($.==1 and /^\#\!.*perl/)' {} \;
 chmod a-x samples/*
 
+# Fix path to rgb.txt.
+%{__perl} -pi -e 's,/usr/lib/X11/,/usr/share/X11/,' \
+    lib/Imager/Color.pm t/t15color.t
+
 %build
 %{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="$RPM_OPT_FLAGS"
 make %{?_smp_mflags}
 
-
 %install
 rm -rf $RPM_BUILD_ROOT
+
 make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
-find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} ';'
-find $RPM_BUILD_ROOT -type d -depth -exec rmdir {} 2>/dev/null ';'
-find $RPM_BUILD_ROOT -type f -name '*.bs' -empty -exec rm -f {} ';'
-chmod -R u+w $RPM_BUILD_ROOT/*
 
-perldoc -t perlgpl > COPYING
-perldoc -t perlartistic > Artistic
+find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
+find $RPM_BUILD_ROOT -type f -name '*.bs' -size 0 -exec rm -f {} \;
+find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \;
+
+%{_fixperms} $RPM_BUILD_ROOT/*
 
 %check
 make test
 
-
 %clean
 rm -rf $RPM_BUILD_ROOT
 
-
 %files
 %defattr(-,root,root,-)
-%doc README COPYING Artistic
+%doc Changes* README
 %doc samples/
-%{perl_vendorarch}/Imager*
 %{perl_vendorarch}/auto/*
-%{_mandir}/man3/*.3*
-
+%{perl_vendorarch}/Imager*
+%{_mandir}/man3/*
 
 %changelog
+* Tue May 01 2007 Steven Pritchard <steve at kspei.com> 0.57-1
+- Update to 0.57.
+- BR gdbm-devel.
+
+* Mon Apr 02 2007 Steven Pritchard <steve at kspei.com> 0.56-2
+- BR Inline, Test::Pod, and Test::Pod::Coverage perl modules and rgb
+  (for rgb.txt) for better test coverage.
+- Fix path to rgb.txt in lib/Imager/Color.pm and t/t15color.t.
+
+* Mon Apr 02 2007 Steven Pritchard <steve at kspei.com> 0.56-1
+- Update to 0.56.
+- BR ExtUtils::MakeMaker.
+
+* Tue Dec 26 2006 Steven Pritchard <steve at kspei.com> 0.55-1
+- Update to 0.55.
+- Cleanup to more closely resemble current cpanspec output.
+
+* Thu Oct 05 2006 Christian Iseli <Christian.Iseli at licr.org> 0.54-2
+ - rebuilt for unwind info generation, broken in gcc-4.1.1-21
+
+* Tue Sep 26 2006 Steven Pritchard <steve at kspei.com> 0.54-1
+- Update to 0.54.
+- Fix find option order.
+
 * Fri Apr 07 2006 Gavin Henry <ghenry[AT]suretecsystems.com> - 0.50-1
 - Updated version for security fix
 


Index: sources
===================================================================
RCS file: /cvs/extras/rpms/perl-Imager/FC-5/sources,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- sources	7 Apr 2006 20:57:57 -0000	1.4
+++ sources	1 May 2007 23:07:08 -0000	1.5
@@ -1 +1 @@
-19cfffe047909599226f76694155f996  Imager-0.50.tar.gz
+293e514b499c769133ac916d70acacea  Imager-0.57.tar.gz




More information about the fedora-extras-commits mailing list