Hello community, here is the log from the commit of package flphoto checked in at Thu Dec 7 20:11:14 CET 2006. -------- --- flphoto/flphoto.changes 2006-10-22 10:13:09.000000000 +0200 +++ /mounts/work_src_done/STABLE/flphoto/flphoto.changes 2006-12-06 11:14:46.000000000 +0100 @@ -1,0 +2,9 @@ +Wed Dec 6 11:13:44 CET 2006 - meissner@suse.de + +- upgraded to 1.3.1. + - new fldcraw + - calendar printing enhanced + - various bugfixes +- maximum() -> maxinum() typo in older FLTKs. + +------------------------------------------------------------------- Old: ---- flphoto-1.3-AVI.patch flphoto-1.3-fix.patch flphoto-1.3.tar.bz2 New: ---- flphoto-1.3.1-maxinum.patch flphoto-1.3.1-source.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ flphoto.spec ++++++ --- /var/tmp/diff_new_pack.N3q09j/_old 2006-12-07 20:06:44.000000000 +0100 +++ /var/tmp/diff_new_pack.N3q09j/_new 2006-12-07 20:06:44.000000000 +0100 @@ -1,5 +1,5 @@ # -# spec file for package flphoto (Version 1.3) +# spec file for package flphoto (Version 1.3.1) # # Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany. # This file and all modifications and additions to the pristine @@ -12,16 +12,15 @@ Name: flphoto BuildRequires: cups-devel fltk-devel gcc-c++ libgphoto2-devel libjpeg-devel libpng-devel openssl-devel xorg-x11-devel -License: GNU General Public License (GPL) - all versions +License: GNU General Public License (GPL) Group: Productivity/Graphics/Viewers Summary: An FLTK-Based Basic Image Management and Display Program -Version: 1.3 -Release: 33 -Source: flphoto-%{version}.tar.bz2 +Version: 1.3.1 +Release: 1 +Source: flphoto-%{version}-source.tar.bz2 Patch: flphoto-1.1rc3-locale.patch -Patch1: flphoto-1.3-AVI.patch +Patch1: flphoto-1.3.1-maxinum.patch Patch2: flphoto-configure.patch -Patch3: flphoto-1.3-fix.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build URL: http://www.easysw.com/~mike/flphoto/ %define prefix /usr @@ -44,15 +43,14 @@ %prep %setup -q %patch0 -p1 -%patch1 +%patch1 -p1 %patch2 -%patch3 -p1 %build %{?suse_update_config:%{suse_update_config}} autoconf -CFLAGS="$RPM_OPT_FLAGS" \ -CXXFLAGS="$RPM_OPT_FLAGS" \ +CFLAGS="$RPM_OPT_FLAGS -fstack-protector" \ +CXXFLAGS="$RPM_OPT_FLAGS -fstack-protector-all" \ ./configure --prefix=%{prefix} --datadir=%{prefix}/share --with-docdir=%{_docdir}/%{name} make @@ -72,9 +70,16 @@ %defattr(-,root,root) %doc COPYING README doc/*.html doc/*.png doc/*.jpg /usr/bin/flphoto +/usr/bin/fldcraw %{_mandir}/man*/* %changelog -n flphoto +* Wed Dec 06 2006 - meissner@suse.de +- upgraded to 1.3.1. + - new fldcraw + - calendar printing enhanced + - various bugfixes +- maximum() -> maxinum() typo in older FLTKs. * Sun Oct 22 2006 - meissner@suse.de - added buildrequires libgphoto2-devel. * Mon Jun 19 2006 - schwab@suse.de ++++++ flphoto-1.3.1-maxinum.patch ++++++ --- flphoto-1.3.1/image.cxx.xx 2006-12-06 10:58:51.000000000 +0100 +++ flphoto-1.3.1/image.cxx 2006-12-06 10:59:13.000000000 +0100 @@ -1424,15 +1424,15 @@ // Display the crop box... left = (int)(crop_image_->w() * crop_left_value_->value() / - crop_left_value_->maximum()); + crop_left_value_->maxinum()); right = crop_image_->w() - (int)(crop_image_->w() * crop_right_value_->value() / - crop_right_value_->maximum()); + crop_right_value_->maxinum()); top = (int)(crop_image_->h() * crop_top_value_->value() / - crop_top_value_->maximum()); + crop_top_value_->maxinum()); bottom = crop_image_->h() - (int)(crop_image_->h() * crop_bottom_value_->value() / - crop_bottom_value_->maximum()); + crop_bottom_value_->maxinum()); if (left > right) { @@ -1450,9 +1450,9 @@ snprintf(crop_dimensions_label_, sizeof(crop_dimensions_label_), _("%d x %d pixels"), - (int)(crop_left_value_->maximum() - crop_left_value_->value() - + (int)(crop_left_value_->maxinum() - crop_left_value_->value() - crop_right_value_->value()), - (int)(crop_bottom_value_->maximum() - crop_bottom_value_->value() - + (int)(crop_bottom_value_->maxinum() - crop_bottom_value_->value() - crop_top_value_->value())); crop_dimensions_box_->label(crop_dimensions_label_); crop_dimensions_box_->redraw(); ++++++ flphoto-configure.patch ++++++ --- /var/tmp/diff_new_pack.N3q09j/_old 2006-12-07 20:06:45.000000000 +0100 +++ /var/tmp/diff_new_pack.N3q09j/_new 2006-12-07 20:06:45.000000000 +0100 @@ -1,14 +1,3 @@ ---- configure.in -+++ configure.in -@@ -196,7 +196,7 @@ - fi - - CXX="$CC" -- OPTIM="-Wall -Wno-return-type $OPTIM" -+ OPTIM="-Wall $OPTIM" - - # See if GCC supports -fno-rtti... - AC_MSG_CHECKING(if GCC supports -fno-rtti) --- Makefile.in +++ Makefile.in @@ -117,7 +117,7 @@ ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... --------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@suse.de