Accepting request 17860 from GNOME:Factory

Copy from GNOME:Factory/gimp based on submit request 17860 from user vuntz

OBS-URL: https://build.opensuse.org/request/show/17860
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/gimp?expand=0&rev=33
This commit is contained in:
OBS User autobuild 2009-08-17 12:50:15 +00:00 committed by Git OBS Bridge
parent dfcd410323
commit e366471a8e
5 changed files with 110 additions and 112 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:53c261fa5045f4ca4b5e887a1eb394d28ebb08d108f065ef55bde33c892f0751
size 16075908

3
gimp-2.6.7.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a401c5fbe59e812413cb4d0b37607680089bf254056d8b5853aa79e03a6fe115
size 16341756

View File

@ -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"

View File

@ -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 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 Tue Mar 17 06:59:41 CET 2009 - mboman@suse.de
- Update to version 2.6.6: - Update to version 2.6.6:
+ bgo#571117 lcms plug-in crashes on broken profile + bgo#571117 - lcms plug-in crashes on broken profile
+ bgo#575154 changing the help browser preference may not work + bgo#575154 - changing the help browser preference may not work
+ bgo#573542 blur plugin: bug in the first line + bgo#573542 - blur plugin: bug in the first line
+ bgo#572403 gimp-2.6 crashed with SIGSEGV in + bgo#572403 - gimp-2.6 crashed with SIGSEGV in
IA__g_object_get() 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 black
+ bgo#573488 Small bug in Filter>Distorts>Ripple + bgo#573488 - Small bug in Filter>Distorts>Ripple
+ bgo#572156 top left pixel position/coordinate is not 0,0 but + bgo#572156 - top left pixel position/coordinate is not 0,0 but
1,1 1,1
+ bgo#472644 Rotate with clipping crops the whole layer + bgo#472644 - Rotate with clipping crops the whole layer
+ Translation updates + Translation updates
- Remove glibc-devel from Requires in -devel package - Remove glibc-devel from Requires in -devel package
- Use py_requires. - 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 Mon Feb 16 07:39:48 CET 2009 - mboman@suse.de
- Update to version 2.6.5: - 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 to grey
+ bgo#567840 GIMP's GtkScaleButton conflicts with GTK's + bgo#567840 - GIMP's GtkScaleButton conflicts with GTK's
+ bgo#569043 GEGL tool - missing Operation Settings for all + bgo#569043 - GEGL tool - missing Operation Settings for all
sub-tools sub-tools
+ bgo#568890 don't rely on GtkAction implementation details + bgo#568890 - don't rely on GtkAction implementation details
+ bgo#568909 wrong RGB values for color names in + bgo#568909 - wrong RGB values for color names in
libgimpcolor/gimprgb-parse.c 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 and slategray
+ bgo#559408 - Brushes dragged to the image window look strange + 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 ratio
+ bgo#568016 Black pullout parameter of plug-in-newsprint has + bgo#568016 - Black pullout parameter of plug-in-newsprint has
no effect no effect
+ bgo#562818 First image opened in GIMP offset + bgo#562818 - First image opened in GIMP offset
+ bgo#562213 Align Tool doesn't work properly if it is the + bgo#562213 - Align Tool doesn't work properly if it is the
active tool at startup active tool at startup
+ Translation updates + Translation updates
- Add gimp-enable-gtk-deprecated.patch due to using deprecated - 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 Fri Jan 2 23:23:48 EST 2009 - mboman@suse.de
- Update to version 2.6.4: - Update to version 2.6.4:
+ bgo#565223 Perspective transformation jagged edges / comb effect + bgo#565223 - Perspective transformation jagged edges / comb effect
+ bgo#563985 jpg save dialog: "cancel" is treated like "commit" + bgo#563985 - jpg save dialog: "cancel" is treated like "commit"
for settings 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 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 is active
+ bgo#564869 GIMP crashes on selecting Tools->GEGL operation + bgo#564869 - GIMP crashes on selecting Tools->GEGL operation
+ bgo#565138 python-fu-foggify does not check if image is in rgb mode + 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#563130 - Hue selection mode does not cross the 0-360 degrees line
+ bgo#563179 Scrollbars not resized when we extend the canvas size + bgo#563179 - Scrollbars not resized when we extend the canvas size
+ bgo#562459 PF_PALETTE: 'TypeError' when used in a plugin that is + bgo#562459 - PF_PALETTE: 'TypeError' when used in a plugin that is
registered in <Image> registered in <Image>
+ bgo#562427 Compilation with --as-needed + bgo#562427 - Compilation with --as-needed
+ bgo#562386 PF_SLIDER and PF_SPINNER 'Step' values do not change + bgo#562386 - PF_SLIDER and PF_SPINNER 'Step' values do not change
consistently... consistently...
+ bgo#562366 Default image dimensions are not correctly + bgo#562366 - Default image dimensions are not correctly
transferred in the file/new dialog box 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 + Translation updates
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Dec 29 12:54:31 EST 2008 - mboman@suse.de Mon Dec 29 12:54:31 EST 2008 - mboman@suse.de
- Update to version 2.6.3: - Update to version 2.6.3:
+ bgo#558454 Plugin Map Color Range disappears from GIMP + bgo#558454 - Plugin Map Color Range disappears from GIMP
+ bgo#559239 Error while loading psd-data + bgo#559239 - Error while loading psd-data
+ bgo#560903 Explicit zooming with e.g. '1' should handle + bgo#560903 - Explicit zooming with e.g. '1' should handle
zoom-focus better zoom-focus better
+ bgo#560245 Zoom selection always centered in the Navigation tab + bgo#560245 - Zoom selection always centered in the Navigation tab
+ bgo#559490 Wrong lang tags for 'no' + bgo#559490 - Wrong lang tags for 'no'
+ bgo#559292 SOTA Chrome cannot accept different textures + bgo#559292 - SOTA Chrome cannot accept different textures
+ bgo#560375 Clearing an already empty document history crashes GIMP + bgo#560375 - Clearing an already empty document history crashes GIMP
+ bgo#559580 Image windows need better default locations + bgo#559580 - Image windows need better default locations
+ bgo#560283 "Scale image..." causes distortion around edges + bgo#560283 - "Scale image..." causes distortion around edges
+ bgo#559716 Changing crop size in Crop Tool Options can make UI + bgo#559716 - Changing crop size in Crop Tool Options can make UI
unresponsive 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 crashes GIMP
+ bgo#559015 Move tool gives bad information about px moved + bgo#559015 - Move tool gives bad information about px moved
+ bgo#558660 help behavior for locales without manual translation + bgo#558660 - help behavior for locales without manual translation
+ Translation updates + Translation updates
- Remove gimp-help-fallback-en.patch. Fixed upstream - Remove gimp-help-fallback-en.patch. Fixed upstream

View File

@ -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. # Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
# #
@ -44,8 +44,8 @@ BuildRequires: python-gtk-devel
BuildRequires: update-desktop-files BuildRequires: update-desktop-files
BuildRequires: xorg-x11-libXfixes-devel BuildRequires: xorg-x11-libXfixes-devel
Url: http://www.gimp.org/ Url: http://www.gimp.org/
Version: 2.6.6 Version: 2.6.7
Release: 3 Release: 1
License: GPL v2 or later License: GPL v2 or later
Group: Productivity/Graphics/Bitmap Editors Group: Productivity/Graphics/Bitmap Editors
Suggests: AdobeICCProfiles Suggests: AdobeICCProfiles
@ -55,8 +55,6 @@ Requires: %{name}-lang = %{version}
Requires: gtk2 Requires: gtk2
Summary: The GNU Image Manipulation Program Summary: The GNU Image Manipulation Program
Source: ftp://ftp.gimp.org/pub/gimp/v2.6/%{name}-%{version}.tar.bz2 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 BuildRoot: %{_tmppath}/%{name}-%{version}-build
Requires: %{name}-branding >= 2.4 Requires: %{name}-branding >= 2.4
Recommends: %{name}-plugins-python = %{version} gimp-2.0-scanner-plugin %{name}-help-browser 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 %lang_package
%prep %prep
%setup -q %setup -q
%patch0 -p1
%build %build
export CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing" export CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing"