rpms/itpp/devel itpp-gcc44.patch, NONE, 1.1 .cvsignore, 1.8, 1.9 itpp.spec, 1.13, 1.14 sources, 1.8, 1.9 itpp-gcc43.patch, 1.1, NONE

Miloš Jakubíček mjakubicek at fedoraproject.org
Thu Apr 23 23:58:04 UTC 2009


Author: mjakubicek

Update of /cvs/pkgs/rpms/itpp/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6376/devel

Modified Files:
	.cvsignore itpp.spec sources 
Added Files:
	itpp-gcc44.patch 
Removed Files:
	itpp-gcc43.patch 
Log Message:
- Fix FTBFS:                                                                         
- Update to 4.0.6 bugfix release                                                     
- Dropped itpp-gcc43.patch (merged upstream).                                        
- Added itpp-gcc44.patch  



itpp-gcc44.patch:

--- NEW FILE itpp-gcc44.patch ---
--- itpp/base/timing.cpp.orig	2009-04-24 00:29:03.000000000 +0200
+++ itpp/base/timing.cpp	2009-04-24 00:29:32.000000000 +0200
@@ -47,7 +47,7 @@
 #include <itpp/base/timing.h>
 #include <iostream>
 #include <cmath>
-
+#include <cstdio>
 
 #if defined(_WIN32) && !defined(__CYGWIN__)
 #include <windows.h>
--- itpp/base/vec.cpp.orig	2009-04-24 00:30:57.000000000 +0200
+++ itpp/base/vec.cpp	2009-04-24 00:31:08.000000000 +0200
@@ -30,6 +30,7 @@
 #include <itpp/base/vec.h>
 #include <itpp/base/converters.h>
 #include <limits>
+#include <cstdio>
 
 //! \cond
 
--- itpp/fixed/fix.cpp.orig	2009-04-24 00:44:49.000000000 +0200
+++ itpp/fixed/fix.cpp	2009-04-24 00:45:35.000000000 +0200
@@ -30,7 +30,7 @@
 #include <itpp/fixed/fix.h>
 #include <itpp/base/itassert.h>
 #include <iostream>
-
+#include <cstdio>
 
 namespace itpp
 {
--- itpp/fixed/fixed.cpp.orig	2009-04-24 00:44:56.000000000 +0200
+++ itpp/fixed/fixed.cpp	2009-04-24 00:46:00.000000000 +0200
@@ -28,7 +28,7 @@
  */
 
 #include <itpp/fixed/fixed.h>
-
+#include <cstdio>
 
 namespace itpp
 {
--- itpp/fixed/cfix.cpp.orig	2009-04-24 00:51:15.000000000 +0200
+++ itpp/fixed/cfix.cpp	2009-04-24 00:51:28.000000000 +0200
@@ -30,7 +30,7 @@
 #include <itpp/fixed/cfix.h>
 #include <itpp/base/itassert.h>
 #include <iostream>
-
+#include <cstdio>
 
 namespace itpp
 {


Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/itpp/devel/.cvsignore,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- .cvsignore	9 Dec 2007 21:51:58 -0000	1.8
+++ .cvsignore	23 Apr 2009 23:57:34 -0000	1.9
@@ -1 +1 @@
-itpp-4.0.0.tar.bz2
+itpp-4.0.6.tar.bz2


Index: itpp.spec
===================================================================
RCS file: /cvs/pkgs/rpms/itpp/devel/itpp.spec,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- itpp.spec	25 Feb 2009 08:20:16 -0000	1.13
+++ itpp.spec	23 Apr 2009 23:57:34 -0000	1.14
@@ -1,6 +1,6 @@
 Name:           itpp
-Version:        4.0.0
-Release:        7%{?dist}
+Version:        4.0.6
+Release:        1%{?dist}
 Summary:        C++ library for math, signal/speech processing, and communications
 
 Group:          System Environment/Libraries
@@ -8,7 +8,9 @@
 URL:            http://itpp.sourceforge.net/
 Source0:        http://downloads.sourceforge.net/itpp/itpp-%{version}.tar.bz2
 BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
-Patch0:		itpp-gcc43.patch
+# Filed into upstream bugtracker at:
+# https://sourceforge.net/tracker/?func=detail&aid=2780001&group_id=37044&atid=418758
+Patch1:			itpp-gcc44.patch
 
 BuildRequires:  gcc-gfortran, atlas-devel, fftw-devel
 BuildRequires:  tetex-latex
@@ -46,7 +48,7 @@
 
 %prep
 %setup -q
-%patch0 -p1 -b .gcc43
+%patch1 -b .gcc44
 
 %build
 export LDFLAGS="-L"%{_libdir}"/atlas"
@@ -54,7 +56,7 @@
 export F77=gfortran
 %configure --with-blas="-latlas -lblas" --disable-dependency-tracking  \
   --with-docdir=%{_docdir}/%{name}-%{version} --disable-static
-make %{?_smp_mflags}
+make -k %{?_smp_mflags}
 #
 #  remove unnecessary bits from itpp-config and itpp.pc
 #cat itpp-config | sed -e 's|-L[^ ]*gcc[^ ]*||g' |  \
@@ -103,6 +105,12 @@
 
 
 %changelog
+* Fri Apr 24 2009 Milos Jakubicek <xjakub at fi.muni.cz> - 4.0.6-1
+- Fix FTBFS:
+- Update to 4.0.6 bugfix release
+- Dropped itpp-gcc43.patch (merged upstream).
+- Added itpp-gcc44.patch
+
 * Wed Feb 25 2009 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 4.0.0-7
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
 


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/itpp/devel/sources,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- sources	9 Dec 2007 21:51:58 -0000	1.8
+++ sources	23 Apr 2009 23:57:34 -0000	1.9
@@ -1 +1 @@
-c259921dc1143a92419324f031fc7151  itpp-4.0.0.tar.bz2
+1c31b1d09f72f4a8dec9ac9c41d7d27c  itpp-4.0.6.tar.bz2


--- itpp-gcc43.patch DELETED ---




More information about the fedora-extras-commits mailing list