diff --git a/gimp-2.6.6.tar.bz2 b/gimp-2.6.6.tar.bz2 deleted file mode 100644 index 84aabeb..0000000 --- a/gimp-2.6.6.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:53c261fa5045f4ca4b5e887a1eb394d28ebb08d108f065ef55bde33c892f0751 -size 16075908 diff --git a/gimp-2.6.7.tar.bz2 b/gimp-2.6.7.tar.bz2 new file mode 100644 index 0000000..6251605 --- /dev/null +++ b/gimp-2.6.7.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a401c5fbe59e812413cb4d0b37607680089bf254056d8b5853aa79e03a6fe115 +size 16341756 diff --git a/gimp-gegl-babl-versions-check.patch b/gimp-gegl-babl-versions-check.patch deleted file mode 100644 index ed3227a..0000000 --- a/gimp-gegl-babl-versions-check.patch +++ /dev/null @@ -1,59 +0,0 @@ -diff -up gimp-2.6.6/app/sanity.c.gegl-babl-versions-check gimp-2.6.6/app/sanity.c ---- gimp-2.6.6/app/sanity.c.gegl-babl-versions-check 2008-11-20 23:43:08.000000000 +0100 -+++ gimp-2.6.6/app/sanity.c 2009-06-05 10:26:03.043506642 +0200 -@@ -75,6 +75,29 @@ sanity_check (void) - - /* private functions */ - -+static gboolean -+sanity_check_version (guint major_version, guint required_major, -+ guint minor_version, guint required_minor, -+ guint micro_version, guint required_micro) -+{ -+ if (major_version > required_major) -+ return TRUE; -+ -+ if (major_version < required_major) -+ return FALSE; -+ -+ if (minor_version > required_minor) -+ return TRUE; -+ -+ if (minor_version < required_minor) -+ return FALSE; -+ -+ if (micro_version >= required_micro) -+ return TRUE; -+ -+ return FALSE; -+} -+ - static gchar * - sanity_check_gimp (void) - { -@@ -266,9 +289,9 @@ sanity_check_babl (void) - &babl_minor_version, - &babl_micro_version); - -- if (babl_major_version < BABL_REQUIRED_MAJOR || -- babl_minor_version < BABL_REQUIRED_MINOR || -- babl_micro_version < BABL_REQUIRED_MICRO) -+ if (! sanity_check_version (babl_major_version, BABL_REQUIRED_MAJOR, -+ babl_minor_version, BABL_REQUIRED_MINOR, -+ babl_micro_version, BABL_REQUIRED_MICRO)) - { - return g_strdup_printf - ("BABL version too old!\n\n" -@@ -304,9 +327,9 @@ sanity_check_gegl (void) - &gegl_minor_version, - &gegl_micro_version); - -- if (gegl_major_version < GEGL_REQUIRED_MAJOR || -- gegl_minor_version < GEGL_REQUIRED_MINOR || -- gegl_micro_version < GEGL_REQUIRED_MICRO) -+ if (! sanity_check_version (gegl_major_version, GEGL_REQUIRED_MAJOR, -+ gegl_minor_version, GEGL_REQUIRED_MINOR, -+ gegl_micro_version, GEGL_REQUIRED_MICRO)) - { - return g_strdup_printf - ("GEGL version too old!\n\n" diff --git a/gimp.changes b/gimp.changes index db9dc57..25b61bc 100644 --- a/gimp.changes +++ b/gimp.changes @@ -1,3 +1,63 @@ +------------------------------------------------------------------- +Fri Aug 14 11:44:03 CEST 2009 - beineri@opensuse.org + +- Update to version 2.6.7: + + bgo#591017 - Tablet pan is not working as fast as it should + + bgo#577581 - Crashes when using any colors tool/function on + Windows + + bgo#589667 - GIMP crashes when clicking GEGL Operation on + Windows + + bgo#569833 - file-jpeg-save erroneous with small quality + values + + bgo#590638 - Changing palettes from list to grid view loses + "locked to dock" status + + bgo#589674 - "Send by Email" does not update "Filename" + + bgo#589674 - "Send by Email" does not update "Filename" + + bgo#586851 - Transparent BMP files fail to load + + bgo#589205 - help-browser uses deprecated (and sometimes + broken) webkit call + + bgo#582821 - 'Sphere Designer' does not reset correctly... + + bgo#570353 - first time open of .svg file ignores the + requested units + + bgo#555777 - Export to MNG animation fails + + bgo#577301 - Dithering with transparency is broken for + "positioned" method + + bgo#493778 - metadata plug-in crashes on some images + + bgo#567466 - PNG comment not found if more than 1 tEXt chunks + + bgo#585665 - Exporting to PSD with a blank text layer creates + a corrupt file + + bgo#586316 - Levels tool does not adjust output levels + correctly if input levels are changed + + bgo#569661 - Import from PDF throws errors when entering + resolution in pixels per millimetre + + bgo#567262 - Black pixels appear in "Spread" filter preview + + bgo#554658 - Path Dialog: Path preview pics not to see + constantly + + bgo#167604 - gimp_gradient_get_color_at() may return + out-of-bounds values + + bgo#567393 - Rectangle select tool size shrinks to 0 if size + is larger than the image and the up or down arrow + is pressed + + bgo#587543 - crash when invoking certain actions by keyboard + shortcut + + bgo#563029 - Closing maximized image doesn't restore document + window size + + bgo#585488 - Perspective transformation on a layer with a mask + causes crash + + bgo#586008 - GIMP crashes when right-click canceling a drawing + action initiated outside layer boundaries + + bgo#584345 - when printing, the number of copies should be + reset to 1 + + bgo#557061 - Alpha to Logo + + bgo#472644 - Rotate with clipping crops the whole layer + + bgo#577575 - transform tool fills underlying extracted area + wrongly + + bgo#555738 - Image display is wrong after undoing canvas size + + bgo#577024 - help-browser plugin crashes when used with webkit + 1.1.3 + + bgo#555025 - Action GEGL box widgets weirdness +- Drop gimp-gegl-babl-versions-check.patch: fixed upstream. + ------------------------------------------------------------------- Thu Jul 30 12:03:00 CEST 2009 - vuntz@novell.com @@ -22,17 +82,17 @@ Thu Jun 11 04:09:03 CEST 2009 - vuntz@novell.com Tue Mar 17 06:59:41 CET 2009 - mboman@suse.de - Update to version 2.6.6: - + bgo#571117 – lcms plug-in crashes on broken profile - + bgo#575154 – changing the help browser preference may not work - + bgo#573542 – blur plugin: bug in the first line - + bgo#572403 – gimp-2.6 crashed with SIGSEGV in + + bgo#571117 - lcms plug-in crashes on broken profile + + bgo#575154 - changing the help browser preference may not work + + bgo#573542 - blur plugin: bug in the first line + + bgo#572403 - gimp-2.6 crashed with SIGSEGV in IA__g_object_get() - + bgo#573695 – 1-bit white background saved as PBM becomes all + + bgo#573695 - 1-bit white background saved as PBM becomes all black - + bgo#573488 – Small bug in Filter>Distorts>Ripple - + bgo#572156 – top left pixel position/coordinate is not 0,0 but + + bgo#573488 - Small bug in Filter>Distorts>Ripple + + bgo#572156 - top left pixel position/coordinate is not 0,0 but 1,1 - + bgo#472644 – Rotate with clipping crops the whole layer + + bgo#472644 - Rotate with clipping crops the whole layer + Translation updates - Remove glibc-devel from Requires in -devel package - Use py_requires. @@ -51,23 +111,23 @@ Tue Feb 17 03:16:35 CET 2009 - vuntz@novell.com Mon Feb 16 07:39:48 CET 2009 - mboman@suse.de - Update to version 2.6.5: - + bgo#571628 – Scaling image to 25% turn background from white + + bgo#571628 - Scaling image to 25% turn background from white to grey - + bgo#567840 – GIMP's GtkScaleButton conflicts with GTK's - + bgo#569043 – GEGL tool - missing Operation Settings for all + + bgo#567840 - GIMP's GtkScaleButton conflicts with GTK's + + bgo#569043 - GEGL tool - missing Operation Settings for all sub-tools - + bgo#568890 – don't rely on GtkAction implementation details - + bgo#568909 – wrong RGB values for color names in + + bgo#568890 - don't rely on GtkAction implementation details + + bgo#568909 - wrong RGB values for color names in libgimpcolor/gimprgb-parse.c - + bgo#568839 – wrong hex RGB value for the color names slategrey + + bgo#568839 - wrong hex RGB value for the color names slategrey and slategray + bgo#559408 - Brushes dragged to the image window look strange - + bgo#563337 – Rectangle Select Tool does not allow 1:1 fixed + + bgo#563337 - Rectangle Select Tool does not allow 1:1 fixed ratio - + bgo#568016 – Black pullout parameter of plug-in-newsprint has + + bgo#568016 - Black pullout parameter of plug-in-newsprint has no effect - + bgo#562818 – First image opened in GIMP offset - + bgo#562213 – Align Tool doesn't work properly if it is the + + bgo#562818 - First image opened in GIMP offset + + bgo#562213 - Align Tool doesn't work properly if it is the active tool at startup + Translation updates - Add gimp-enable-gtk-deprecated.patch due to using deprecated @@ -100,47 +160,47 @@ Mon Jan 19 21:07:51 CET 2009 - crrodriguez@suse.de Fri Jan 2 23:23:48 EST 2009 - mboman@suse.de - Update to version 2.6.4: - + bgo#565223 – Perspective transformation jagged edges / comb effect - + bgo#563985 – jpg save dialog: "cancel" is treated like "commit" + + bgo#565223 - Perspective transformation jagged edges / comb effect + + bgo#563985 - jpg save dialog: "cancel" is treated like "commit" for settings - + bgo#564087 – Using clone tool on a layer with a part out of canvas + + bgo#564087 - Using clone tool on a layer with a part out of canvas causes crashes - + bgo#564593 – crash when the drawable is changed while a color tool + + bgo#564593 - crash when the drawable is changed while a color tool is active - + bgo#564869 – GIMP crashes on selecting Tools->GEGL operation - + bgo#565138 – python-fu-foggify does not check if image is in rgb mode - + bgo#563130 – Hue selection mode does not cross the 0-360 degrees line - + bgo#563179 – Scrollbars not resized when we extend the canvas size - + bgo#562459 – PF_PALETTE: 'TypeError' when used in a plugin that is + + bgo#564869 - GIMP crashes on selecting Tools->GEGL operation + + bgo#565138 - python-fu-foggify does not check if image is in rgb mode + + bgo#563130 - Hue selection mode does not cross the 0-360 degrees line + + bgo#563179 - Scrollbars not resized when we extend the canvas size + + bgo#562459 - PF_PALETTE: 'TypeError' when used in a plugin that is registered in - + bgo#562427 – Compilation with --as-needed - + bgo#562386 – PF_SLIDER and PF_SPINNER 'Step' values do not change + + bgo#562427 - Compilation with --as-needed + + bgo#562386 - PF_SLIDER and PF_SPINNER 'Step' values do not change consistently... - + bgo#562366 – Default image dimensions are not correctly + + bgo#562366 - Default image dimensions are not correctly transferred in the file/new dialog box - + bgo#561899 – GIMP can't save to mounted filesystem if file exists + + bgo#561899 - GIMP can't save to mounted filesystem if file exists + Translation updates ------------------------------------------------------------------- Mon Dec 29 12:54:31 EST 2008 - mboman@suse.de - Update to version 2.6.3: - + bgo#558454 – Plugin Map Color Range disappears from GIMP - + bgo#559239 – Error while loading psd-data - + bgo#560903 – Explicit zooming with e.g. '1' should handle + + bgo#558454 - Plugin Map Color Range disappears from GIMP + + bgo#559239 - Error while loading psd-data + + bgo#560903 - Explicit zooming with e.g. '1' should handle zoom-focus better - + bgo#560245 – Zoom selection always centered in the Navigation tab - + bgo#559490 – Wrong lang tags for 'no' - + bgo#559292 – SOTA Chrome cannot accept different textures - + bgo#560375 – Clearing an already empty document history crashes GIMP - + bgo#559580 – Image windows need better default locations - + bgo#560283 – "Scale image..." causes distortion around edges - + bgo#559716 – Changing crop size in Crop Tool Options can make UI + + bgo#560245 - Zoom selection always centered in the Navigation tab + + bgo#559490 - Wrong lang tags for 'no' + + bgo#559292 - SOTA Chrome cannot accept different textures + + bgo#560375 - Clearing an already empty document history crashes GIMP + + bgo#559580 - Image windows need better default locations + + bgo#560283 - "Scale image..." causes distortion around edges + + bgo#559716 - Changing crop size in Crop Tool Options can make UI unresponsive - + bgo#558549 – Stroking a single-point path with a paint tool + + bgo#558549 - Stroking a single-point path with a paint tool crashes GIMP - + bgo#559015 – Move tool gives bad information about px moved - + bgo#558660 – help behavior for locales without manual translation + + bgo#559015 - Move tool gives bad information about px moved + + bgo#558660 - help behavior for locales without manual translation + Translation updates - Remove gimp-help-fallback-en.patch. Fixed upstream diff --git a/gimp.spec b/gimp.spec index ba08b52..262fe4d 100644 --- a/gimp.spec +++ b/gimp.spec @@ -1,5 +1,5 @@ # -# spec file for package gimp (Version 2.6.6) +# spec file for package gimp (Version 2.6.7) # # Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany. # @@ -44,8 +44,8 @@ BuildRequires: python-gtk-devel BuildRequires: update-desktop-files BuildRequires: xorg-x11-libXfixes-devel Url: http://www.gimp.org/ -Version: 2.6.6 -Release: 3 +Version: 2.6.7 +Release: 1 License: GPL v2 or later Group: Productivity/Graphics/Bitmap Editors Suggests: AdobeICCProfiles @@ -55,8 +55,6 @@ Requires: %{name}-lang = %{version} Requires: gtk2 Summary: The GNU Image Manipulation Program Source: ftp://ftp.gimp.org/pub/gimp/v2.6/%{name}-%{version}.tar.bz2 -# PATCH-FIX-UPSTREAM gimp-gegl-babl-versions-check.patch vuntz@novell.com -- Taken from Fedora/uptsream -Patch0: gimp-gegl-babl-versions-check.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build Requires: %{name}-branding >= 2.4 Recommends: %{name}-plugins-python = %{version} gimp-2.0-scanner-plugin %{name}-help-browser @@ -165,7 +163,6 @@ This package contains the help browser for the GIMP. %lang_package %prep %setup -q -%patch0 -p1 %build export CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing"