SPECS: perl-PDL.spec - rel 2 - BR proj-devel - separated Transform...

baggins baggins at pld-linux.org
Tue Apr 8 14:53:54 CEST 2008


Author: baggins                      Date: Tue Apr  8 12:53:54 2008 GMT
Module: SPECS                         Tag: HEAD
---- Log message:
- rel 2
- BR proj-devel
- separated Transform
- added missing files

---- Files affected:
SPECS:
   perl-PDL.spec (1.99 -> 1.100) 

---- Diffs:

================================================================
Index: SPECS/perl-PDL.spec
diff -u SPECS/perl-PDL.spec:1.99 SPECS/perl-PDL.spec:1.100
--- SPECS/perl-PDL.spec:1.99	Tue Apr  8 12:00:00 2008
+++ SPECS/perl-PDL.spec	Tue Apr  8 14:53:49 2008
@@ -13,7 +13,7 @@
 Summary(pt_BR.UTF-8):	Módulo PDL para perl
 Name:		perl-PDL
 Version:	2.4.3
-Release:	1
+Release:	2
 Epoch:		1
 # same as perl
 License:	GPL v1+ or Artistic
@@ -43,6 +43,7 @@
 BuildRequires:	perl-devel >= 1:5.8.0
 BuildRequires:	perl-perldoc
 BuildRequires:	plplot-devel >= 5.2.1
+BuildRequires:	proj-devel
 BuildRequires:	rpm-perlprov >= 4.1-13
 BuildRequires:	xorg-lib-libX11-devel
 BuildRequires:	xorg-lib-libXext-devel
@@ -415,6 +416,23 @@
 %description GSLSF -l pl.UTF-8
 Interfejs PDL do funkcji specjalnych GSL.
 
+%package Transform
+Summary:	Coordinate transforms, image warping, and N-D functions
+Summary(pl.UTF-8):	Transformacje współrzędnych, warpowaie obrazów i funkcje N-D
+Group:		Development/Languages/Perl
+Requires:	%{name} = %{epoch}:%{version}-%{release}
+
+%description Transform
+PDL::Transform is a convenient way to represent coordinate
+transformations and resample images.  It embodies functions mapping
+R^N -> R^M, both with and without inverses.  Provision exists for
+parametrizing functions, and for composing them.  You can use this
+part of the Transform object to keep track of arbitrary functions
+mapping R^N -> R^M with or without inverses.
+
+%description Transform -l pl.UTF-8
+Transformacje współrzędnych, warpowaie obrazów i funkcje N-D
+
 %package Demos
 Summary:	PDL demos
 Summary(pl.UTF-8):	Przykładowe skrypty z użyciem PDL
@@ -592,6 +610,11 @@
 	/usr/bin/perl %{perl_vendorarch}/PDL/scantree.pl %{perl_vendorarch}
 fi
 
+%post Transform
+if [ -f %{perl_vendorarch}/PDL/scantree.pl ]; then
+	/usr/bin/perl %{perl_vendorarch}/PDL/scantree.pl %{perl_vendorarch}
+fi
+
 %post Demos
 if [ -f %{perl_vendorarch}/PDL/scantree.pl ]; then
 	/usr/bin/perl %{perl_vendorarch}/PDL/scantree.pl %{perl_vendorarch}
@@ -697,6 +720,11 @@
 	/usr/bin/perl %{perl_vendorarch}/PDL/scantree.pl %{perl_vendorarch}
 fi
 
+%postun Transform
+if [ -f %{perl_vendorarch}/PDL/scantree.pl ]; then
+	/usr/bin/perl %{perl_vendorarch}/PDL/scantree.pl %{perl_vendorarch}
+fi
+
 %postun Demos
 if [ -f %{perl_vendorarch}/PDL/scantree.pl ]; then
 	/usr/bin/perl %{perl_vendorarch}/PDL/scantree.pl %{perl_vendorarch}
@@ -755,9 +783,6 @@
 %{perl_vendorarch}/PDL/Reduce.pm
 %{perl_vendorarch}/PDL/Slices.pm
 %{perl_vendorarch}/PDL/Tests.pm
-# maybe separate PDL::Transform? (~500kB)
-%{perl_vendorarch}/PDL/Transform.pm
-%{perl_vendorarch}/PDL/Transform
 %{perl_vendorarch}/PDL/Types.pm
 %{perl_vendorarch}/PDL/Ufunc.pm
 %{perl_vendorarch}/PDL/Version.pm
@@ -822,9 +847,6 @@
 %dir %{perl_vendorarch}/auto/PDL/Tests
 %{perl_vendorarch}/auto/PDL/Tests/*.bs
 %attr(755,root,root) %{perl_vendorarch}/auto/PDL/Tests/*.so
-%dir %{perl_vendorarch}/auto/PDL/Transform
-%{perl_vendorarch}/auto/PDL/Transform/*.bs
-%attr(755,root,root) %{perl_vendorarch}/auto/PDL/Transform/*.so
 
 %{perl_vendorarch}/Inline/MakePdlppInstallable.pm
 %{perl_vendorarch}/Inline/Pdlpp.pm
@@ -1041,6 +1063,24 @@
 %attr(755,root,root) %{perl_vendorarch}/auto/PDL/GSLSF/*/*.so
 %{_mandir}/man3/PDL::GSLSF::*
 
+%files Transform
+%defattr(644,root,root,755)
+%dir %{perl_vendorarch}/PDL/GIS
+%{perl_vendorarch}/PDL/GIS/Proj.pm
+%{perl_vendorarch}/PDL/Transform.pm
+%{perl_vendorarch}/PDL/Transform
+%dir %{perl_vendorarch}/auto/PDL/GIS
+%dir %{perl_vendorarch}/auto/PDL/GIS/Proj
+%{perl_vendorarch}/auto/PDL/GIS/Proj/*.bs
+%attr(755,root,root) %{perl_vendorarch}/auto/PDL/GIS/Proj/*.so
+%dir %{perl_vendorarch}/auto/PDL/Transform
+%{perl_vendorarch}/auto/PDL/Transform/*.bs
+%attr(755,root,root) %{perl_vendorarch}/auto/PDL/Transform/*.so
+%dir %{perl_vendorarch}/auto/PDL/Transform/Proj4
+%{perl_vendorarch}/auto/PDL/Transform/Proj4/*.bs
+%attr(755,root,root) %{perl_vendorarch}/auto/PDL/Transform/Proj4/*.so
+%{_mandir}/man3/PDL::GIS::*
+
 %files Demos
 %defattr(644,root,root,755)
 %{_mandir}/man3/PDL::BAD*
@@ -1052,6 +1092,12 @@
 All persons listed below can be reached at <cvs_login>@pld-linux.org
 
 $Log$
+Revision 1.100  2008-04-08 12:53:49  baggins
+- rel 2
+- BR proj-devel
+- separated Transform
+- added missing files
+
 Revision 1.99  2008-04-08 10:00:00  baggins
 - fix OpenGL lib for x86_64
 
================================================================

---- CVS-web:
    http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/perl-PDL.spec?r1=1.99&r2=1.100&f=u



More information about the pld-cvs-commit mailing list