rpms/qtpfsgui/F-10 qtpfsgui-1.9.3-disable-sse2.patch, NONE, 1.1 .cvsignore, 1.8, 1.9 qtpfsgui.spec, 1.13, 1.14 sources, 1.8, 1.9

Douglas E. Warner silfreed at fedoraproject.org
Thu Jul 30 19:11:03 UTC 2009


Author: silfreed

Update of /cvs/pkgs/rpms/qtpfsgui/F-10
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32744

Modified Files:
	.cvsignore qtpfsgui.spec sources 
Added Files:
	qtpfsgui-1.9.3-disable-sse2.patch 
Log Message:
* Mon Jul 30 2009 Douglas E. Warner <silfreed at silfreed.net> 1.9.3-1
- update to 1.9.3
- disabling SSE2 on all arches except x86_64
- Performance improvements on MultiCore Machines
- Integrated pfstmo 1.3.x changes, including better Mantiuk performance
- Integration of Exiv 0.18 (tiff write capabilities in the "Copy Exif Data"
  panel).
- Added Hungarian language (thanks to Peter Gaal)
- Added Indonesian language (thanks to Teddy Widhi Laksono)
- Drag and Drop support for HDR creation/opening
- UI improvements: new icons, cleanup of tonemapping panel
- added detail factor option to the mantiuk06 tmo, thanks to Dejan Beric
- Now using native file saving dialogs on Windows and Mac
- 'Save all' feature in tonemapping dialog.
- Many bugfixes, including the old filename problem
- Integrated pfstmo 1.3.x changes: mantiuk06: Ed Brambley's bug-fix and
  convergence patch mantiuk06: Ed Brambley's OpenMP patch all: Fixes and
  optimization - see pfstmo ChangeLog for more information
- Renamed reinhard04 to reinhard05 (src directory and references)
- Improved linux packaging system: docs and html target directories can be
  specified separately


qtpfsgui-1.9.3-disable-sse2.patch:
 project.pro |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- NEW FILE qtpfsgui-1.9.3-disable-sse2.patch ---
diff -ruN qtpfsgui-1.9.3-orig/project.pro qtpfsgui-1.9.3/project.pro
--- qtpfsgui-1.9.3-orig/project.pro	2009-03-29 09:25:15.000000000 -0400
+++ qtpfsgui-1.9.3/project.pro	2009-07-30 14:38:06.000000000 -0400
@@ -3,7 +3,7 @@
 DEFINES += QT_NO_DEBUG_OUTPUT
 
 # Assume openmp-capable g++ (>=4.2)
-QMAKE_CXXFLAGS += -funroll-loops -fstrength-reduce -fschedule-insns2 -felide-constructors -frerun-loop-opt -fexceptions -fno-strict-aliasing -fexpensive-optimizations -ffast-math -pipe -fopenmp -msse2
+QMAKE_CXXFLAGS += -funroll-loops -fstrength-reduce -fschedule-insns2 -felide-constructors -frerun-loop-opt -fexceptions -fno-strict-aliasing -fexpensive-optimizations -ffast-math -pipe -fopenmp
 QMAKE_LFLAGS += -fopenmp
 
 TARGET = qtpfsgui


Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/qtpfsgui/F-10/.cvsignore,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -p -r1.8 -r1.9
--- .cvsignore	9 May 2008 14:08:25 -0000	1.8
+++ .cvsignore	30 Jul 2009 19:11:02 -0000	1.9
@@ -1 +1 @@
-qtpfsgui-1.9.2.tar.gz
+qtpfsgui-1.9.3.tar.gz


Index: qtpfsgui.spec
===================================================================
RCS file: /cvs/pkgs/rpms/qtpfsgui/F-10/qtpfsgui.spec,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -p -r1.13 -r1.14
--- qtpfsgui.spec	26 Jun 2008 13:35:19 -0000	1.13
+++ qtpfsgui.spec	30 Jul 2009 19:11:03 -0000	1.14
@@ -1,12 +1,13 @@
 Name: qtpfsgui
-Version: 1.9.2
-Release: 2%{?dist}
+Version: 1.9.3
+Release: 1%{?dist}
 Summary: A graphical tool for creating and tone-mapping HDR images
 
 Group: Applications/Productivity
 License: GPLv2+
 URL: http://qtpfsgui.sourceforge.net/
 Source0: http://downloads.sourceforge.net/qtpfsgui/%{name}-%{version}.tar.gz
+Patch0: qtpfsgui-1.9.3-disable-sse2.patch
 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 
 BuildRequires: qt4-devel
@@ -26,6 +27,11 @@ operators for creating low dynamic range
 %prep
 %setup -q
 
+# fix missing SSE on everything bug x86_64
+%ifnarch x86_64
+%patch0 -p1
+%endif
+
 # fix inconsistant newlines
 %{__sed} -i 's/\r//' Changelog
 
@@ -68,10 +74,32 @@ fi
 %{_bindir}/%{name}
 %{_datadir}/%{name}
 %{_datadir}/applications/fedora-%{name}.desktop
-%{_datadir}/icons/hicolor/48x48/apps/%{name}.png
+%{_datadir}/icons/hicolor/32x32/apps/%{name}.png
 
 
 %changelog
+* Mon Jul 30 2009 Douglas E. Warner <silfreed at silfreed.net> 1.9.3-1
+- update to 1.9.3
+- disabling SSE2 on all arches except x86_64
+- Performance improvements on MultiCore Machines
+- Integrated pfstmo 1.3.x changes, including better Mantiuk performance
+- Integration of Exiv 0.18 (tiff write capabilities in the "Copy Exif Data"
+  panel).
+- Added Hungarian language (thanks to Peter Gaal)
+- Added Indonesian language (thanks to Teddy Widhi Laksono)
+- Drag and Drop support for HDR creation/opening
+- UI improvements: new icons, cleanup of tonemapping panel
+- added detail factor option to the mantiuk06 tmo, thanks to Dejan Beric
+- Now using native file saving dialogs on Windows and Mac
+- 'Save all' feature in tonemapping dialog.
+- Many bugfixes, including the old filename problem
+- Integrated pfstmo 1.3.x changes: mantiuk06: Ed Brambley's bug-fix and
+  convergence patch mantiuk06: Ed Brambley's OpenMP patch all: Fixes and
+  optimization - see pfstmo ChangeLog for more information
+- Renamed reinhard04 to reinhard05 (src directory and references)
+- Improved linux packaging system: docs and html target directories can be
+  specified separately
+
 * Thu Jun 26 2008 Douglas E. Warner <silfreed at silfreed.net> 1.9.2-2
 - rebuild for libexiv2
 


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/qtpfsgui/F-10/sources,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -p -r1.8 -r1.9
--- sources	9 May 2008 14:08:25 -0000	1.8
+++ sources	30 Jul 2009 19:11:03 -0000	1.9
@@ -1 +1 @@
-8a037c1dc75f04752dc36a59e7237fc4  qtpfsgui-1.9.2.tar.gz
+5a6421391e373c912e4a793e131151c8  qtpfsgui-1.9.3.tar.gz




More information about the fedora-extras-commits mailing list