3f864f
#### options:
3f864f
# Use the following --with/--without <option> switches to control how the
3f864f
# package will be built:
3f864f
# 
3f864f
# lcms:        lcms support
3f864f
%bcond_without lcms
3f864f
# python:      python support
3f864f
%bcond_without python
3f864f
# mp:          multi processor support
3f864f
%bcond_without mp
3f864f
# static:      build static libraries
3f864f
%bcond_with static
3f864f
# print:       build the print plugin (if you don't build it externally)
3f864f
%bcond_without print
3f864f
# gutenprint:  require gutenprint-plugin (instead of gimp-print-plugin) if
3f864f
#              internal print plugin isn't built
3f864f
%bcond_without gutenprint
3f864f
# convenience: install convenience symlinks
3f864f
%bcond_without convenience
3f864f
# gudev:       use gudev to discover special input devices
3f864f
# use gudev from Fedora 15/RHEL7 on
3f864f
%bcond_without gudev
3f864f
# aalib:       build with AAlib (ASCII art gfx library)
3f864f
%if 0%{?rhel}
3f864f
# don't use aalib on RHEL
3f864f
%bcond_with aalib
3f864f
%else
3f864f
%bcond_without aalib
3f864f
%endif
3f864f
# hardening:   use various compiler/linker flags to harden binaries against
3f864f
#              certain types of exploits
3f864f
%bcond_without hardening
3f864f
# poppler:     use from version 0.20 on which is GPLv2/GPLv3 dual-licensed
3f864f
# use from Fedora 18/RHEL
3f864f
%bcond_without poppler
3f864f
# helpbrowser  build webkit-based help browser
3f864f
%if 0%{?rhel} || 0%{?fedora} >= 26
3f864f
%bcond_with helpbrowser
3f864f
%else
3f864f
%bcond_without helpbrowser
3f864f
%endif
3f864f
# hardcode python interpreter in python plug-ins
3f864f
%bcond_without hardcoded_python
3f864f
3f864f
# skip tests known to be problematic in a specific version
3f864f
#global skip_checks_version X.Y.Z
3f864f
#global skip_checks test1 test2 test3
3f864f
3f864f
# Set this to 0 in stable, 1 in (SONAME-wise) unstable releases
3f864f
%global unstable 0
3f864f
3f864f
# Set this in pre-releases (e.g. release candidates)
3f864f
#global prerel RC1
3f864f
3f864f
# Set this when building from intermediate git revisions
3f864f
#global gitrev ff6c280
3f864f
3f864f
%if %{defined prerel}
3f864f
%global dotprerel .%{prerel}
3f864f
%global dashprerel -%{prerel}
3f864f
%global prerelprefix 0.
3f864f
%else
3f864f
%global dotprerel %{nil}
3f864f
%global dashprerel %{nil}
3f864f
%global prerelprefix %{nil}
3f864f
%endif
3f864f
3f864f
%if %{defined gitrev}
3f864f
%global dotgitrev .git%{gitrev}
3f864f
%else
3f864f
%global dotgitrev %{nil}
3f864f
%endif
3f864f
3f864f
Summary:        GNU Image Manipulation Program
3f864f
Name:           gimp
3f864f
Epoch:          2
3f864f
Version:        2.8.22
50a999
Release:        %{?prerelprefix}24%{dotprerel}%{dotgitrev}%{?dist}
3f864f
3f864f
# Compute some version related macros.
3f864f
# Ugly, need to get quoting percent signs straight.
3f864f
%global major %(ver=%{version}; echo ${ver%%%%.*})
3f864f
%global minor %(ver=%{version}; ver=${ver#%major.}; echo ${ver%%%%.*})
3f864f
%global micro %(ver=%{version}; ver=${ver#%major.%minor.}; echo ${ver%%%%.*})
3f864f
%global binver %{major}.%{minor}
3f864f
%global interface_age 0
3f864f
%global gettext_version %{major}0
3f864f
%global lib_api_version %{major}.0
3f864f
%if ! %unstable
3f864f
%global lib_minor %(echo $[%minor * 100])
3f864f
%global lib_micro %micro
3f864f
%else
3f864f
# unstable
3f864f
%global lib_minor %(echo $[%minor * 100 + %{micro}])
3f864f
%global lib_micro 0
3f864f
%endif
3f864f
3f864f
%if %{with poppler}
3f864f
# poppler is "GPLv2 or GPLv3" which makes plug-ins linking to libpoppler such
3f864f
# as file-pdf-load GPLv3-only
3f864f
License:        GPLv3+ and GPLv3
3f864f
%else
3f864f
License:        GPLv3+
3f864f
%endif
3f864f
URL:            http://www.gimp.org/
3f864f
%if %{with aalib}
3f864f
BuildRequires:  aalib-devel
3f864f
%endif
3f864f
BuildRequires:  alsa-lib-devel >= 1.0.0
3f864f
BuildRequires:  atk-devel >= 2.2.0
3f864f
BuildRequires:  automake, libtool
3f864f
BuildRequires:  babl-devel >= 0.1.10
3f864f
BuildRequires:  bzip2-devel
3f864f
BuildRequires:  cairo-devel >= 1.10.2
3f864f
BuildRequires:  curl-devel >= 7.15.1
3f864f
BuildRequires:  dbus-glib-devel >= 0.70
3f864f
BuildRequires:  fontconfig-devel >= 2.2.0
3f864f
BuildRequires:  freetype-devel >= 2.1.7
3f864f
BuildRequires:  gcc
3f864f
BuildRequires:  gdk-pixbuf2-devel >= 2.24.1
3f864f
BuildRequires:  gegl-devel >= 0.2.0
3f864f
%if 0%{?fedora} > 27 || 0%{?rhel} >= 8
3f864f
BuildRequires:  libgs-devel
3f864f
%else
3f864f
BuildRequires:  ghostscript-devel
3f864f
%endif
3f864f
BuildRequires:  glib2-devel >= 2.30.2
3f864f
BuildRequires:  gtk2-devel >= 2.24.10
3f864f
BuildRequires:  iso-codes-devel
3f864f
BuildRequires:  jasper-devel
3f864f
%if %{with lcms}
3f864f
BuildRequires:  lcms2-devel >= 2.2
3f864f
%endif
3f864f
BuildRequires:  libappstream-glib
3f864f
BuildRequires:  libexif-devel >= 0.6.15
3f864f
%if %{with gudev}
3f864f
BuildRequires:  libgudev1-devel >= 167
3f864f
%else
3f864f
BuildRequires:  hal-devel >= 0.5.7
3f864f
%endif
3f864f
BuildRequires:  libjpeg-devel
3f864f
BuildRequires:  libmng-devel
3f864f
BuildRequires:  libpng-devel >= 1.2.37
3f864f
BuildRequires:  librsvg2-devel >= 2.36.0
3f864f
BuildRequires:  libtiff-devel
3f864f
BuildRequires:  libwmf-devel >= 0.2.8
3f864f
BuildRequires:  libxslt
3f864f
BuildRequires:  pango-devel >= 1.29.4
3f864f
%if %{with poppler}
3f864f
BuildRequires:  poppler-glib-devel >= 0.20.0
3f864f
%endif
3f864f
BuildRequires:  python2-devel
3f864f
BuildRequires:  pygtk2-devel >= 2.10.4
3f864f
BuildRequires:  pygobject2-devel
3f864f
%if %{with helpbrowser}
3f864f
BuildRequires:  webkitgtk-devel >= 1.6.1
3f864f
%endif
3f864f
BuildRequires:  zlib-devel
3f864f
BuildRequires:  libX11-devel
3f864f
BuildRequires:  libXmu-devel
3f864f
BuildRequires:  libXpm-devel
3f864f
3f864f
BuildRequires:  chrpath >= 0.13-5
3f864f
BuildRequires:  intltool
3f864f
BuildRequires:  gettext
3f864f
BuildRequires:  pkgconfig
3f864f
3f864f
Requires:       babl%{?_isa} >= 0.1.10
3f864f
Requires:       gegl%{?_isa} >= 0.2.0
3f864f
Requires:       glib2 >= 2.28.8
3f864f
Requires:       gtk2 >= 2.24.7
3f864f
Requires:       pango >= 1.29.4
3f864f
Requires:       freetype >= 2.1.7
3f864f
Requires:       fontconfig >= 2.2.0
3f864f
%if ! %{with print}
3f864f
%if %{with gutenprint}
3f864f
Requires:       gutenprint-plugin
3f864f
%else
3f864f
Requires:       gimp-print-plugin
3f864f
%endif
3f864f
%endif
3f864f
Requires:       hicolor-icon-theme
3f864f
Requires:       pygtk2 >= 2.10.4
3f864f
Requires:       xdg-utils
3f864f
Requires:       gimp-libs%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
3f864f
%if ! %{with helpbrowser}
3f864f
Obsoletes:      gimp-help-browser < %{?epoch:%{epoch}:}%{version}-%{release}
3f864f
Conflicts:      gimp-help-browser < %{?epoch:%{epoch}:}%{version}-%{release}
3f864f
%endif
3f864f
3f864f
Source0:        http://download.gimp.org/pub/gimp/v%{binver}/gimp-%{version}%{dashprerel}.tar.bz2
3f864f
3f864f
%if %{defined gitrev}
3f864f
Patch0:         gimp-%{version}%{dashprerel}-git%{gitrev}.patch.bz2
3f864f
%endif
3f864f
3f864f
# Try using the system monitor profile for color management by default.
3f864f
# Fedora specific.
3f864f
Patch1:         gimp-2.8.2-cm-system-monitor-profile-by-default.patch
3f864f
3f864f
#Fix screenshot feature in wayland
3f864f
Patch2:		gimp-2.8.22-fix-screenshot-in-wayland.patch
3f864f
3f864f
#Reported CVE
3f864f
Patch3: gimp-2.8.22-CVE-2017-17784.patch
3f864f
Patch4: gimp-2.8.22-CVE-2017-17785.patch
3f864f
Patch5: gimp-2.8.22-CVE-2017-17786.patch
3f864f
Patch6: gimp-2.8.22-CVE-2017-17787.patch
3f864f
Patch7: gimp-2.8.22-CVE-2017-17788.patch
3f864f
Patch8: gimp-2.8.22-CVE-2017-17789.patch
3f864f
3f864f
Patch9: gimp-2.8.22-python.patch
50a999
Patch10: gimp-CVE-2022-30067.patch
50a999
Patch11: gimp-CVE-2022-32990.patch
50a999
Patch12: gimp-buffer-overflow.patch
50a999
Patch13: gimp-2.8.22-python-path.patch
3f864f
# use external help browser directly if help browser plug-in is not built
3f864f
Patch100:       gimp-2.8.6-external-help-browser.patch
3f864f
3f864f
%description
3f864f
GIMP (GNU Image Manipulation Program) is a powerful image composition and
3f864f
editing program, which can be extremely useful for creating logos and other
3f864f
graphics for webpages. GIMP has many of the tools and filters you would expect
3f864f
to find in similar commercial offerings, and some interesting extras as well.
3f864f
GIMP provides a large image manipulation toolbox, including channel operations
3f864f
and layers, effects, sub-pixel imaging and anti-aliasing, and conversions, all
3f864f
with multi-level undo.
3f864f
3f864f
%package libs
3f864f
Summary:        GIMP libraries
3f864f
License:        LGPLv3+
3f864f
3f864f
%description libs
3f864f
The gimp-libs package contains shared libraries needed for the GNU Image
3f864f
Manipulation Program (GIMP).
3f864f
3f864f
%package devel
3f864f
Summary:        GIMP plugin and extension development kit
3f864f
License:        LGPLv3+
3f864f
Requires:       gimp-libs%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
3f864f
Requires:       gimp-devel-tools = %{?epoch:%{epoch}:}%{version}-%{release}
3f864f
Requires:       gtk2-devel
3f864f
Requires:       glib2-devel
3f864f
Requires:       pkgconfig
3f864f
Requires:       rpm >= 4.11.0
3f864f
3f864f
%description devel
3f864f
The gimp-devel package contains the static libraries and header files
3f864f
for writing GNU Image Manipulation Program (GIMP) plug-ins and
3f864f
extensions.
3f864f
3f864f
%package devel-tools
3f864f
Summary:        GIMP plugin and extension development tools
3f864f
License:        LGPLv3+
3f864f
Requires:       gimp-devel = %{?epoch:%{epoch}:}%{version}-%{release}
3f864f
3f864f
%description devel-tools
3f864f
The gimp-devel-tools package contains gimptool, a helper program to build GNU
3f864f
Image Manipulation Program (GIMP) plug-ins and extensions.
3f864f
3f864f
%if %{with helpbrowser}
3f864f
%package help-browser
3f864f
Summary:        GIMP help browser plug-in
3f864f
License:        GPLv3+
3f864f
Requires:       gimp%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
3f864f
3f864f
%description help-browser
3f864f
The gimp-help-browser package contains a lightweight help browser plugin for
3f864f
viewing GIMP online help.
3f864f
%endif
3f864f
3f864f
%prep
3f864f
cat << EOF
3f864f
--- 8< --- Build options ---------------------------------------------------
3f864f
LCMS support:                 %{with lcms}
3f864f
Python support:               %{with python}
3f864f
MP support:                   %{with mp}
3f864f
build static libs:            %{with static}
3f864f
build internal print plugin:  %{with print}
3f864f
include convenience symlinks: %{with convenience}
3f864f
build the print plugin:       %{with print}
3f864f
use gudev:                    %{with gudev}
3f864f
%if ! %{with print}
3f864f
prefer gutenprint over (external) gimp-print plugin:
3f864f
                              %{with gutenprint}
3f864f
%endif
3f864f
build ASCII art plugin        %{with aalib}
3f864f
harden binaries:              %{with hardening}
3f864f
use poppler:                  %{with poppler}
3f864f
build help browser:           %{with helpbrowser}
3f864f
hardcode python interpreter   %{with hardcoded_python}
3f864f
--- >8 ---------------------------------------------------------------------
3f864f
EOF
3f864f
3f864f
%setup -q -n gimp-%{version}%{dashprerel}
3f864f
3f864f
%if %{defined gitrev}
3f864f
%patch0 -p1 -b .git%{gitrev}
3f864f
%endif
3f864f
3f864f
%patch1 -p1 -b .cm-system-monitor-profile-by-default
3f864f
%patch2 -p1 -b .fix-screenshot-in-wayland
3f864f
%patch3 -p1 -b .CVE-17784
3f864f
%patch4 -p1 -b .CVE-17785
3f864f
%patch5 -p1 -b .CVE-17786
3f864f
%patch6 -p1 -b .CVE-17787
3f864f
%patch7 -p1 -b .CVE-17788
3f864f
%patch8 -p1 -b .CVE-17789
3f864f
%patch9 -p1
50a999
%patch10 -p1 -b .CVE-2022-30067
50a999
%patch11 -p1 -b .CVE-2022-32990
50a999
%patch12 -p1 -b .buffer-overflow
50a999
%patch13 -p1 -b .python-path
3f864f
%if ! %{with helpbrowser}
3f864f
%patch100 -p1 -b .external-help-browser
3f864f
%endif
3f864f
3f864f
%build
3f864f
#allow python2 package for RHEL-8
3f864f
export RHEL_ALLOW_PYTHON2_FOR_BUILD=1
3f864f
3f864f
autoreconf 
3f864f
3f864f
%if %{with hardening}
3f864f
# Use hardening compiler/linker flags because gimp is likely to deal with files
3f864f
# coming from untrusted sources
3f864f
# used from Fedora 16/RHEL7
3f864f
%global _hardened_build 1
3f864f
%endif
3f864f
%configure \
3f864f
    CFLAGS="$CFLAGS -fno-strict-aliasing" \
3f864f
    CXXFLAGS="$CXXFLAGS -fno-strict-aliasing" \
3f864f
%if %{with python}
3f864f
    --enable-python \
3f864f
%else
3f864f
    --disable-python \
3f864f
%endif
3f864f
%if %{with mp}
3f864f
    --enable-mp \
3f864f
%else
3f864f
    --disable-mp \
3f864f
%endif
3f864f
%if %{with static}
3f864f
    --enable-static \
3f864f
%else
3f864f
    --disable-static \
3f864f
%endif
3f864f
%if %{with print}
3f864f
    --with-print \
3f864f
%else
3f864f
    --without-print \
3f864f
%endif
3f864f
%if %{with lcms}
3f864f
    --with-lcms=lcms2 \
3f864f
%else
3f864f
    --without-lcms \
3f864f
%endif
3f864f
    --enable-gimp-console \
3f864f
%if %{with aalib}
3f864f
    --with-aa \
3f864f
%else
3f864f
    --without-aa \
3f864f
%endif
3f864f
%if %{with gudev}
3f864f
    --with-gudev --without-hal \
3f864f
%else
3f864f
    --with-hal --without-gudev \
3f864f
%endif
3f864f
%ifos linux
3f864f
    --with-linux-input \
3f864f
%endif
3f864f
%if %{with poppler}
3f864f
    --with-poppler \
3f864f
%else
3f864f
    --without-poppler \
3f864f
%endif
3f864f
%if %{with helpbrowser}
3f864f
    --with-webkit \
3f864f
%else
3f864f
    --without-webkit \
3f864f
%endif
3f864f
    --with-libtiff --with-libjpeg --with-libpng --with-libmng --with-libjasper \
3f864f
    --with-libexif --with-librsvg --with-libxpm --with-gvfs --with-alsa \
3f864f
    --with-dbus --with-script-fu --with-cairo-pdf
3f864f
3f864f
make %{?_smp_mflags}
3f864f
3f864f
# Generate RPM macros from pkg-config data:
3f864f
# %%_gimp_datadir -- toplevel directory for brushes, gradients, scripts, ...
3f864f
# %%_gimp_libdir -- toplevel directory for modules, plug-ins, ...
3f864f
# %%_gimp_sysconfdir -- system-wide runtime configuration
3f864f
# %%_gimp_localedir -- toplevel directory for translation files
3f864f
# %%_gimp_scriptdir -- script-fu scripts directory
3f864f
# %%_gimp_plugindir -- plug-in directory
3f864f
gimp_pc_extract_normalize() {
3f864f
    PKG_CONFIG_PATH="$PWD" \
3f864f
        pkg-config --variable="$1" gimp-%{lib_api_version} | \
3f864f
    sed \
3f864f
        -e 's|^%_mandir|%%{_mandir}|' \
3f864f
        -e 's|^%_infodir|%%{_infodir}|' \
3f864f
        -e 's|^%_includedir|%%{_includedir}|' \
3f864f
        -e 's|^%_libdir|%%{_libdir}|' \
3f864f
        -e 's|^%_localstatedir|%%{_localstatedir}|' \
3f864f
        -e 's|^%_sharedstatedir|%%{_sharedstatedir}|' \
3f864f
        -e 's|^%_sysconfdir|%%{_sysconfdir}|' \
3f864f
        -e 's|^%_datadir|%%{_datadir}|' \
3f864f
        -e 's|^%_libexecdir|%%{_libexecdir}|' \
3f864f
        -e 's|^%_sbindir|%%{_sbindir}|' \
3f864f
        -e 's|^%_bindir|%%{_bindir}|' \
3f864f
        -e 's|^%_exec_prefix|%%{_exec_prefix}|' \
3f864f
        -e 's|^%_prefix|%%{_prefix}|'
3f864f
}
3f864f
3f864f
_gimp_datadir="$(gimp_pc_extract_normalize gimpdatadir)"
3f864f
_gimp_libdir="$(gimp_pc_extract_normalize gimplibdir)"
3f864f
_gimp_sysconfdir="$(gimp_pc_extract_normalize gimpsysconfdir)"
3f864f
_gimp_localedir="$(gimp_pc_extract_normalize gimplocaledir)"
3f864f
_gimp_scriptdir="${_gimp_datadir}/scripts"
3f864f
_gimp_plugindir="${_gimp_libdir}/plug-ins"
3f864f
3f864f
cat << EOF > macros.gimp
3f864f
# RPM macros for GIMP
3f864f
3f864f
%%_gimp_datadir ${_gimp_datadir}
3f864f
%%_gimp_libdir ${_gimp_libdir}
3f864f
%%_gimp_sysconfdir ${_gimp_sysconfdir}
3f864f
%%_gimp_localedir ${_gimp_localedir}
3f864f
%%_gimp_scriptdir ${_gimp_scriptdir}
3f864f
%%_gimp_plugindir ${_gimp_plugindir}
3f864f
EOF
3f864f
3f864f
%install
3f864f
make DESTDIR=%{buildroot} install
3f864f
install -D -m0644 macros.gimp %{buildroot}%{_rpmconfigdir}/macros.d/macros.gimp
3f864f
3f864f
# Update the screenshot shown in the software center
3f864f
#
3f864f
# NOTE: It would be *awesome* if this file was pushed upstream.
3f864f
#
3f864f
# See http://people.freedesktop.org/~hughsient/appdata/#screenshots for more details.
3f864f
#
3f864f
appstream-util replace-screenshots %{buildroot}%{_datadir}/appdata/gimp.appdata.xml \
3f864f
  https://raw.githubusercontent.com/hughsie/fedora-appstream/master/screenshots-extra/gimp/a.png \
3f864f
  https://raw.githubusercontent.com/hughsie/fedora-appstream/master/screenshots-extra/gimp/b.png 
3f864f
3f864f
# remove rpaths
3f864f
find %buildroot -type f -print0 | xargs -0 -L 20 chrpath --delete --keepgoing 2>/dev/null || :
3f864f
3f864f
# remove .la files
3f864f
find %buildroot -name \*.la -exec %__rm -f {} \;
3f864f
3f864f
#
3f864f
# Plugins and modules change often (grab the executeable ones)
3f864f
#
3f864f
find %{buildroot}%{_libdir}/gimp/%{lib_api_version} -type f | sed "s@^%{buildroot}@@g" | grep -v '\.a$' > gimp-plugin-files
3f864f
3f864f
# .pyc and .pyo files don't exist yet
3f864f
grep "\.py$" gimp-plugin-files > gimp-plugin-files-py
3f864f
for file in $(cat gimp-plugin-files-py); do
3f864f
    for newfile in ${file}c ${file}o; do
3f864f
        grep -F -q -x "$newfile" gimp-plugin-files || echo "$newfile"
3f864f
    done
3f864f
done >> gimp-plugin-files
3f864f
3f864f
%if %{with static}
3f864f
find %{buildroot}%{_libdir}/gimp/%{lib_api_version} -type f | sed "s@^%{buildroot}@@g" | grep '\.a$' > gimp-static-files
3f864f
%endif
3f864f
3f864f
#
3f864f
# Auto detect the lang files.
3f864f
#
3f864f
%find_lang gimp%{gettext_version}
3f864f
%find_lang gimp%{gettext_version}-std-plug-ins
3f864f
%find_lang gimp%{gettext_version}-script-fu
3f864f
%find_lang gimp%{gettext_version}-libgimp
3f864f
%find_lang gimp%{gettext_version}-tips
3f864f
%find_lang gimp%{gettext_version}-python
3f864f
3f864f
cat gimp%{gettext_version}.lang gimp%{gettext_version}-std-plug-ins.lang gimp%{gettext_version}-script-fu.lang gimp%{gettext_version}-libgimp.lang gimp%{gettext_version}-tips.lang gimp%{gettext_version}-python.lang > gimp-all.lang
3f864f
3f864f
#
3f864f
# Build the master filelists generated from the above mess.
3f864f
#
3f864f
cat gimp-plugin-files gimp-all.lang > gimp.files
3f864f
3f864f
%if %{with convenience}
3f864f
# install convenience symlinks
3f864f
ln -snf gimp-%{binver} %{buildroot}%{_bindir}/gimp
3f864f
ln -snf gimp-%{binver}.1 %{buildroot}%{_mandir}/man1/gimp.1
3f864f
ln -snf gimp-console-%{binver} %{buildroot}/%{_bindir}/gimp-console
3f864f
ln -snf gimp-console-%{binver}.1 %{buildroot}/%{_mandir}/man1/gimp-console.1
3f864f
ln -snf gimptool-%{lib_api_version} %{buildroot}%{_bindir}/gimptool
3f864f
ln -snf gimptool-%{lib_api_version}.1 %{buildroot}%{_mandir}/man1/gimptool.1
3f864f
ln -snf gimprc-%{binver}.5 %{buildroot}/%{_mandir}/man5/gimprc.5
3f864f
%endif
3f864f
3f864f
%if %{with hardcoded_python}
3f864f
# Hardcode python interpreter in shipped python plug-ins. This actually has no
3f864f
# effect because gimp maps hashbangs with and without the /usr/bin/env detour
3f864f
# to the system python interpreter, but this will avoid false alarms.
50a999
grep -E -rl '^#!\s*%{_bindir}/env\s+python' --include=\*.py "%{buildroot}" |
3f864f
    while read file; do
50a999
        sed -r '1s,^#!\s*%{_bindir}/env\s+python(2\?),#!%{__python2},' -i "$file"
3f864f
    done
3f864f
%endif
3f864f
3f864f
%py_byte_compile %{__python2} %{buildroot}%{_libdir}/gimp/
3f864f
3f864f
%check
3f864f
# skip tests known to be problematic in a specific version
3f864f
%if "%{version}" == "%{?skip_checks_version}"
3f864f
pushd app/tests
3f864f
for problematic in %{?skip_checks}; do
3f864f
    rm -f "$problematic"
3f864f
    cat << EOF > "$problematic"
3f864f
#!/bin/sh
3f864f
echo Skipping test "$problematic"
3f864f
EOF
3f864f
    chmod +x "$problematic"
3f864f
done
3f864f
popd
3f864f
%endif
3f864f
3f864f
make check
3f864f
3f864f
%ldconfig_scriptlets libs
3f864f
3f864f
%files -f gimp.files
3f864f
%license COPYING
3f864f
%doc AUTHORS ChangeLog NEWS README
3f864f
%doc docs/*.xcf*
3f864f
%{_datadir}/applications/*.desktop
3f864f
%{_datadir}/appdata/*.appdata.xml
3f864f
3f864f
%dir %{_datadir}/gimp
3f864f
%dir %{_datadir}/gimp/%{lib_api_version}
3f864f
%{_datadir}/gimp/%{lib_api_version}/dynamics/
3f864f
%{_datadir}/gimp/%{lib_api_version}/menus/
3f864f
%{_datadir}/gimp/%{lib_api_version}/tags/
3f864f
%{_datadir}/gimp/%{lib_api_version}/tips/
3f864f
%{_datadir}/gimp/%{lib_api_version}/tool-presets/
3f864f
%{_datadir}/gimp/%{lib_api_version}/ui/
3f864f
%dir %{_libdir}/gimp
3f864f
%dir %{_libdir}/gimp/%{lib_api_version}
3f864f
%dir %{_libdir}/gimp/%{lib_api_version}/environ
3f864f
%dir %{_libdir}/gimp/%{lib_api_version}/interpreters
3f864f
%dir %{_libdir}/gimp/%{lib_api_version}/modules
3f864f
%dir %{_libdir}/gimp/%{lib_api_version}/plug-ins
3f864f
%exclude %{_libdir}/gimp/%{lib_api_version}/plug-ins/help-browser
3f864f
%dir %{_libdir}/gimp/%{lib_api_version}/python
3f864f
3f864f
%{_datadir}/gimp/%{lib_api_version}/brushes/
3f864f
%{_datadir}/gimp/%{lib_api_version}/fractalexplorer/
3f864f
%{_datadir}/gimp/%{lib_api_version}/gfig/
3f864f
%{_datadir}/gimp/%{lib_api_version}/gflare/
3f864f
%{_datadir}/gimp/%{lib_api_version}/gimpressionist/
3f864f
%{_datadir}/gimp/%{lib_api_version}/gradients/
3f864f
%{_datadir}/gimp/%{lib_api_version}/images/
3f864f
%{_datadir}/gimp/%{lib_api_version}/palettes/
3f864f
%{_datadir}/gimp/%{lib_api_version}/patterns/
3f864f
%{_datadir}/gimp/%{lib_api_version}/scripts/
3f864f
%{_datadir}/gimp/%{lib_api_version}/themes/
3f864f
3f864f
%dir %{_sysconfdir}/gimp
3f864f
%dir %{_sysconfdir}/gimp/%{lib_api_version}
3f864f
%config(noreplace) %{_sysconfdir}/gimp/%{lib_api_version}/controllerrc
3f864f
%config(noreplace) %{_sysconfdir}/gimp/%{lib_api_version}/gimprc
3f864f
%config(noreplace) %{_sysconfdir}/gimp/%{lib_api_version}/gtkrc
3f864f
%config(noreplace) %{_sysconfdir}/gimp/%{lib_api_version}/unitrc
3f864f
%config(noreplace) %{_sysconfdir}/gimp/%{lib_api_version}/sessionrc
3f864f
%config(noreplace) %{_sysconfdir}/gimp/%{lib_api_version}/templaterc
3f864f
%config(noreplace) %{_sysconfdir}/gimp/%{lib_api_version}/menurc
3f864f
3f864f
%{_bindir}/gimp-%{binver}
3f864f
%{_bindir}/gimp-console-%{binver}
3f864f
3f864f
%if %{with convenience}
3f864f
%{_bindir}/gimp
3f864f
%{_bindir}/gimp-console
3f864f
%endif
3f864f
3f864f
%{_mandir}/man1/gimp-%{binver}.1*
3f864f
%{_mandir}/man1/gimp-console-%{binver}.1*
3f864f
%{_mandir}/man5/gimprc-%{binver}.5*
3f864f
3f864f
%if %{with convenience}
3f864f
%{_mandir}/man1/gimp.1*
3f864f
%{_mandir}/man1/gimp-console.1*
3f864f
%{_mandir}/man5/gimprc.5*
3f864f
%endif
3f864f
3f864f
%{_datadir}/icons/hicolor/*/apps/gimp.png
3f864f
3f864f
%files libs
3f864f
%license COPYING
3f864f
%doc AUTHORS ChangeLog NEWS README
3f864f
%{_libdir}/libgimp-%{lib_api_version}.so.%{interface_age}.%{lib_minor}.%{lib_micro}
3f864f
%{_libdir}/libgimp-%{lib_api_version}.so.%{interface_age}
3f864f
%{_libdir}/libgimpbase-%{lib_api_version}.so.%{interface_age}.%{lib_minor}.%{lib_micro}
3f864f
%{_libdir}/libgimpbase-%{lib_api_version}.so.%{interface_age}
3f864f
%{_libdir}/libgimpcolor-%{lib_api_version}.so.%{interface_age}.%{lib_minor}.%{lib_micro}
3f864f
%{_libdir}/libgimpcolor-%{lib_api_version}.so.%{interface_age}
3f864f
%{_libdir}/libgimpconfig-%{lib_api_version}.so.%{interface_age}.%{lib_minor}.%{lib_micro}
3f864f
%{_libdir}/libgimpconfig-%{lib_api_version}.so.%{interface_age}
3f864f
%{_libdir}/libgimpmath-%{lib_api_version}.so.%{interface_age}.%{lib_minor}.%{lib_micro}
3f864f
%{_libdir}/libgimpmath-%{lib_api_version}.so.%{interface_age}
3f864f
%{_libdir}/libgimpmodule-%{lib_api_version}.so.%{interface_age}.%{lib_minor}.%{lib_micro}
3f864f
%{_libdir}/libgimpmodule-%{lib_api_version}.so.%{interface_age}
3f864f
%{_libdir}/libgimpthumb-%{lib_api_version}.so.%{interface_age}.%{lib_minor}.%{lib_micro}
3f864f
%{_libdir}/libgimpthumb-%{lib_api_version}.so.%{interface_age}
3f864f
%{_libdir}/libgimpui-%{lib_api_version}.so.%{interface_age}.%{lib_minor}.%{lib_micro}
3f864f
%{_libdir}/libgimpui-%{lib_api_version}.so.%{interface_age}
3f864f
%{_libdir}/libgimpwidgets-%{lib_api_version}.so.%{interface_age}.%{lib_minor}.%{lib_micro}
3f864f
%{_libdir}/libgimpwidgets-%{lib_api_version}.so.%{interface_age}
3f864f
3f864f
%if %{with static}
3f864f
%files devel -f gimp-static-files
3f864f
%else
3f864f
%files devel
3f864f
%endif
3f864f
%doc HACKING README.i18n
3f864f
%doc %{_datadir}/gtk-doc
3f864f
3f864f
%{_libdir}/*.so
3f864f
%dir %{_libdir}/gimp
3f864f
%dir %{_libdir}/gimp/%{lib_api_version}
3f864f
%dir %{_libdir}/gimp/%{lib_api_version}/modules
3f864f
%ifnos linux
3f864f
%{_libdir}/*.la
3f864f
%{_libdir}/gimp/%{lib_api_version}/modules/*.la
3f864f
%endif
3f864f
%{_datadir}/aclocal/*.m4
3f864f
%{_includedir}/gimp-%{lib_api_version}
3f864f
%{_libdir}/pkgconfig/*
3f864f
%{_rpmconfigdir}/macros.d/macros.gimp
3f864f
3f864f
%files devel-tools
3f864f
%{_bindir}/gimptool-%{lib_api_version}
3f864f
%{_mandir}/man1/gimptool-%{lib_api_version}.1*
3f864f
3f864f
%if %{with convenience}
3f864f
%{_bindir}/gimptool
3f864f
%{_mandir}/man1/gimptool.1*
3f864f
%endif
3f864f
3f864f
%if %{with helpbrowser}
3f864f
%files help-browser
3f864f
%{_libdir}/gimp/%{lib_api_version}/plug-ins/help-browser
3f864f
%endif
3f864f
3f864f
%changelog
50a999
* Fri Feb 17 2023 Josef Ridky <jridky@redhat.com> - 2:2.8.22-24
50a999
- fallback to RPM gegl
50a999
50a999
* Fri Feb 17 2023 Josef Ridky <jridky@redhat.com> - 2:2.8.22-23
50a999
- enforce gegl04
50a999
50a999
* Fri Feb 17 2023 Josef Ridky <jridky@redhat.com> - 2:2.8.22-22
50a999
- change gegl requirement to  gegl04
50a999
50a999
* Thu Feb 16 2023 Josef Ridky <jridky@redhat.com> - 2:2.8.22-21
50a999
- set manual shebang in python files
50a999
50a999
* Thu Feb 16 2023 Josef Ridky <jridky@redhat.com> - 2:2.8.22-20
50a999
- fix python path in source code
50a999
50a999
* Wed Jan 11 2023 Josef Ridky <jridky@redhat.com> - 2:2.8.22-19
50a999
- fix CVE-2022-32990 (#2104192)
50a999
- fix buffer overflow (#2143177)
50a999
50a999
* Tue Dec 06 2022 Josef Ridky <jridky@redhat.com> - 2:2.8.22-18
50a999
- fix CVE-2022-30067 (#2091200)
50a999
50a999
* Mon Aug 29 2022 Josef Ridky <jridky@redhat.com> - 2:2.8.22-17
50a999
- spec bump
50a999
3f864f
* Wed Sep 12 2018 Josef Ridky <jridky@redhat.com> - 2:2.8.22-15
3f864f
- rebuild for removing pygtk2-libglade
3f864f
3f864f
* Thu Aug 16 2018 Josef Ridky <jridky@redhat.com> - 2:2.8.22-14
3f864f
- rebuild for python2-pycairo package
3f864f
3f864f
* Thu Aug 16 2018 Josef Ridky <jridky@redhat.com> - 2:2.8.22-13
3f864f
- rebuild for new python2-pycairo package
3f864f
3f864f
* Wed Aug 15 2018 Josef Ridky <jridky@redhat.com> - 2:2.8.22-12
3f864f
- rebuild for 2.8 stream branch
3f864f
3f864f
* Wed Aug 15 2018 Josef Ridky <jridky@redhat.com> - 2:2.8.22-11
3f864f
- fix requirements
3f864f
3f864f
* Wed Aug 1 2018 Josef Ridky <jridky@redhat.com> - 2:2.8.22-10
3f864f
- fix sed regex to replace 'env python' and 'env python2' strings
3f864f
3f864f
* Tue Jul 10 2018 Josef Ridky <jridky@redhat.com> - 2:2.8.22-9
3f864f
- fix python compilation
3f864f
3f864f
* Thu Jun 28 2018 Josef Ridky <jridky@redhat.com> - 2:2.8.22-8
3f864f
- fix python issue
3f864f
3f864f
* Tue May 22 2018 Josef Ridky <jridky@redhat.com> - 2:2.8.22-7
3f864f
- add missing dependency for automake and libtool
3f864f
- explicitly use python2 as default python interpreter
3f864f
3f864f
* Fri Mar 09 2018 Josef Ridky <jridky@redhat.com> - 2:2.8.22-6
3f864f
- remove unused gnome-keyring and libgnomeui-devel requirements
3f864f
3f864f
* Tue Feb 20 2018 Nils Philippsen <nils@tiptoe.de> - 2:2.8.22-5
3f864f
- require gcc for building
3f864f
3f864f
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2:2.8.22-4.2
3f864f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
3f864f
3f864f
* Sat Feb 03 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2:2.8.22-4.1
3f864f
- Switch to %%ldconfig_scriptlets
3f864f
3f864f
* Tue Jan 16 2018 Josef Ridky <jridky@redhat.com> - 2:2.8.22-4
3f864f
- Fix dependencies for F28+ (ghostscript-devel => libgs-devel) #1534656
3f864f
- Update spec file for F28+/RHEL purposes
3f864f
3f864f
* Fri Jan 05 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2:2.8.22-3.1
3f864f
- Remove obsolete scriptlets
3f864f
3f864f
* Thu Jan 04 2018 Josef Ridky <jridky@redhat.com> - 2:2.8.22-3
3f864f
- Fix for CVE-2017-17784, CVE-2017-17785, CVE-2017-17786,
3f864f
  CVE-2017-17787, CVE-2017-17788 and CVE-2017-17789 (#1529149)
3f864f
3f864f
* Thu Oct 19 2017 Josef Ridky <jridky@redhat.com> - 2:2.8.22-2.3
3f864f
- Rebuilt for python2 package
3f864f
3f864f
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2:2.8.22-2.2
3f864f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
3f864f
3f864f
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2:2.8.22-2.1
3f864f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
3f864f
3f864f
* Wed May 10 2017 Josef Ridky <jridky@redhat.com> - 2:2.8.22-2
3f864f
- fix screenshot function under Wayland session (#1398556)
3f864f
3f864f
* Wed May 10 2017 Nils Philippsen <nils@redhat.com> - 2:2.8.22-1
3f864f
- version 2.8.22
3f864f
3f864f
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2:2.8.20-1.1
3f864f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
3f864f
3f864f
* Wed Feb 01 2017 Josef Ridky <jridky@redhat.com> - 2:2.8.20-1
3f864f
- New upstream release 2.8.20 (#1418268)
3f864f
3f864f
* Tue Dec 06 2016 Nils Philippsen <nils@tiptoe.de> - 2:2.8.18-3
3f864f
- rebuild for new libjasper
3f864f
3f864f
* Tue Oct 25 2016 Nils Philippsen <nils@redhat.com> - 2:2.8.18-2
3f864f
- build without help-browser from Fedora 26 on (#1375809)
3f864f
- use %%license for license text
3f864f
- remove some cruft from the spec file
3f864f
3f864f
* Sat Jul 16 2016 Nils Philippsen <nils@redhat.com> - 2:2.8.18-1
3f864f
- version 2.8.18
3f864f
3f864f
* Thu Jun 30 2016 Nils Philippsen <nils@redhat.com> - 2:2.8.16-2
3f864f
- fix multiple use-after-free bugs when parsing XCF channel and layer
3f864f
  properties (#1348617)
3f864f
3f864f
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2:2.8.16-1.1
3f864f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
3f864f
3f864f
* Sun Nov 22 2015 Nils Philippsen <nils@redhat.com> - 2:2.8.16-1
3f864f
- version 2.8.16
3f864f
3f864f
* Fri Jul 17 2015 Nils Philippsen <nils@redhat.com> - 2:2.8.14-3
3f864f
- export-dialog-destroyed-crash patch: avoid subsequent warnings
3f864f
3f864f
* Thu Jul 16 2015 Nils Philippsen <nils@redhat.com> - 2:2.8.14-2
3f864f
- fix linking problem
3f864f
- use %%buildroot macro consistently again
3f864f
3f864f
* Tue Jul 14 2015 Nils Philippsen <nils@redhat.com> - 2:2.8.14-2
3f864f
- avoid destroying dialog and occasional crashes while exporting (#1215905)
3f864f
3f864f
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:2.8.14-1.2
3f864f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
3f864f
3f864f
* Mon Mar 30 2015 Richard Hughes <rhughes@redhat.com> - 2:2.8.14-1.1
3f864f
- Use better AppData screenshots
3f864f
3f864f
* Tue Aug 26 2014 Nils Philippsen <nils@redhat.com> - 2:2.8.14-1
3f864f
- version 2.8.14
3f864f
3f864f
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:2.8.10-6.2
3f864f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
3f864f
3f864f
* Mon Jun 23 2014 Nils Philippsen <nils@redhat.com>
3f864f
- update source URL
3f864f
3f864f
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:2.8.10-6.1
3f864f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
3f864f
3f864f
* Wed May 28 2014 Nils Philippsen <nils@redhat.com> - 2:2.8.10-6
3f864f
- remove ancient obsoletes (#1002109)
3f864f
3f864f
* Thu Feb 13 2014 Nils Philippsen <nils@redhat.com> - 2:2.8.10-5
3f864f
- cope with freetype >= 2.5.1 include madness
3f864f
3f864f
* Wed Feb 12 2014 Nils Philippsen <nils@redhat.com> - 2:2.8.10-5
3f864f
- remove BRs contained in the minimal build environment
3f864f
- group BRs into libraries and tools
3f864f
- remove various old cruft
3f864f
- ship RPM macros for packaging plug-ins e.a. (#1063144)
3f864f
3f864f
* Wed Dec 04 2013 Nils Philippsen <nils@redhat.com> - 2:2.8.10-4
3f864f
- avoid buffer overflows in file-xwd plug-in (CVE-2013-1913, CVE-2013-1978)
3f864f
3f864f
* Fri Nov 29 2013 Nils Philippsen <nils@redhat.com> - 2:2.8.10-1
3f864f
- version 2.8.10
3f864f
3f864f
* Tue Nov 26 2013 Nils Philippsen <nils@redhat.com> - 2:2.8.10-1
3f864f
- use grep -E instead of egrep
3f864f
3f864f
* Fri Nov 08 2013 Nils Philippsen <nils@redhat.com> - 2:2.8.8-3
3f864f
- file-bmp: don't close already closed FD
3f864f
3f864f
* Thu Nov 07 2013 Nils Philippsen <nils@redhat.com> - 2:2.8.8-2
3f864f
- fix crash in lcms plug-in
3f864f
- fix issues found during static code check
3f864f
3f864f
* Mon Nov 04 2013 Nils Philippsen <nils@redhat.com> - 2:2.8.8-1
3f864f
- version 2.8.8
3f864f
3f864f
* Thu Sep 19 2013 Nils Philippsen <nils@redhat.com> - 2:2.8.6-5
3f864f
- fix lcms2 patch
3f864f
3f864f
* Wed Sep 18 2013 Nils Philippsen <nils@redhat.com> - 2:2.8.6-4
3f864f
- build against lcms2
3f864f
3f864f
* Mon Aug 26 2013 Jon Ciesla <limburgher@gmail.com> - 2:2.8.6-3.2
3f864f
- libmng rebuild.
3f864f
3f864f
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:2.8.6-3.1
3f864f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
3f864f
3f864f
* Mon Jul 08 2013 Nils Philippsen <nils@redhat.com> - 2:2.8.6-3
3f864f
- exit properly when quitting while loading images (#633107)
3f864f
3f864f
* Tue Jul 02 2013 Nils Philippsen <nils@redhat.com> - 2:2.8.6-2
3f864f
- use external help browser directly if help browser plug-in isn't built
3f864f
- fix changelog dates
3f864f
3f864f
* Sun Jun 23 2013 Nils Philippsen <nils@redhat.com> - 2:2.8.6-1
3f864f
- version 2.8.6
3f864f
3f864f
* Tue Jun 04 2013 Nils Philippsen <nils@redhat.com> - 2:2.8.4-5
3f864f
- patch rebuilt files after changing configure.ac
3f864f
3f864f
* Wed May 29 2013 Nils Philippsen <nils@redhat.com> - 2:2.8.4-4
3f864f
- fix upstream commit ids
3f864f
- fix double-free crashes when selecting gradients from script-fu (#964470)
3f864f
- fix crash in unsharp-mask plug-in (#966987)
3f864f
- hardcode python interpreter in python plug-ins (#952227)
3f864f
- fix crash when selecting text with multiple colors etc. (#919795, #951815)
3f864f
- don't crash upon not applying a color profile to a grayscale image (#922622)
3f864f
3f864f
* Sat Apr 20 2013 Nils Philippsen <nils@redhat.com> - 2:2.8.4-3
3f864f
- don't crash upon deleting tags in popup (#892828)
3f864f
3f864f
* Wed Mar 06 2013 Nils Philippsen <nils@redhat.com> - 2:2.8.4-2
3f864f
- get rid of strict overflow warning
3f864f
- don't have duplicate mime types in desktop file
3f864f
3f864f
* Wed Feb 06 2013 Nils Philippsen <nils@redhat.com> - 2:2.8.4-1
3f864f
- version 2.8.4
3f864f
3f864f
* Mon Jan 28 2013 Nils Philippsen <nils@redhat.com> - 2:2.8.2-7
3f864f
- build with -fno-strict-aliasing
3f864f
3f864f
* Fri Jan 18 2013 Adam Tkac <atkac redhat com> - 2:2.8.2-6.1
3f864f
- rebuild due to "jpeg8-ABI" feature drop
3f864f
3f864f
* Wed Nov 21 2012 Nils Philippsen <nils@redhat.com>
3f864f
- make rpmlint happy again
3f864f
3f864f
* Mon Nov 19 2012 Nils Philippsen <nils@redhat.com> - 2:2.8.2-6
3f864f
- fix gimprc syntax error introduced in previous patch
3f864f
3f864f
* Thu Nov 15 2012 Nils Philippsen <nils@redhat.com> - 2:2.8.2-5
3f864f
- try using the system monitor profile for color management by default (patch
3f864f
  by Richard Hughes)
3f864f
3f864f
* Wed Nov 14 2012 Nils Philippsen <nils@redhat.com> - 2:2.8.2-4
3f864f
- fix marking file dialogs as transient if opened from context menu (#835736)
3f864f
3f864f
* Tue Nov 13 2012 Nils Philippsen <nils@redhat.com> - 2:2.8.2-3
3f864f
- don't trip over too much installed memory, reenable all tests
3f864f
- realign selection after "Crop to Selection" (#873212, fix by Michael
3f864f
  Natterer)
3f864f
3f864f
* Sat Oct 20 2012 Nils Philippsen <nils@redhat.com> - 2:2.8.2-2
3f864f
- run "make check", skip problematic tests
3f864f
- don't build help browser on EL
3f864f
3f864f
* Fri Aug 24 2012 Nils Philippsen <nils@redhat.com> - 2:2.8.2-1
3f864f
- version 2.8.2
3f864f
3f864f
* Mon Aug 20 2012 Nils Philippsen <nils@redhat.com> - 2:2.8.0-3
3f864f
- fix crash in fits loader (#834627)
3f864f
- fix overflow in CEL plug-in (CVE-2012-3403)
3f864f
- fix overflow in GIF loader (CVE-2012-3481)
3f864f
3f864f
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:2.8.0-2.1
3f864f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
3f864f
3f864f
* Mon Jun 25 2012 Nils Philippsen <nils@redhat.com> - 2:2.8.0-2
3f864f
- build with poppler >= 0.20.0 from Fedora 18 on as it is GPLv2/GPLv3
3f864f
  dual-licensed
3f864f
3f864f
* Thu May 10 2012 Nils Philippsen <nils@redhat.com> - 2:2.8.0-1
3f864f
- version 2.8.0
3f864f
3f864f
* Wed Apr 25 2012 Nils Philippsen <nils@redhat.com>
3f864f
- update BR: librsvg2-devel >= 2.36.0
3f864f
3f864f
* Wed Apr 11 2012 Nils Philippsen <nils@redhat.com> - 2:2.8.0-0.2.RC1.gitff6c280
3f864f
- don't crash when smudging with sizes <= 1.4 (#810850)
3f864f
3f864f
* Tue Apr 03 2012 Nils Philippsen <nils@redhat.com> - 2:2.8.0-0.1.RC1
3f864f
- version 2.8.0-RC1 (release candidate):
3f864f
 - Add our own GimpOperationBrightnessContrast because GEGL one is different
3f864f
 - Fix some GFig rendering issues
3f864f
 - Depend on Babl 0.1.10, GEGL 0.2.0 and some other new library versions
3f864f
 - Bug fixes
3f864f
 - Translation updates
3f864f
3f864f
* Tue Mar 13 2012 Nils Philippsen <nils@redhat.com> - 2:2.7.5-2
3f864f
- add BR: iso-codes-devel
3f864f
3f864f
* Tue Mar 13 2012 Nils Philippsen <nils@redhat.com> - 2:2.7.5-1
3f864f
- version 2.7.5 (unstable, see http://developer.gimp.org/NEWS for details)
3f864f
- add BR: atk >= 2.0.1, bzip2-devel, ghostscript-devel, zlib-devel
3f864f
- package tool presets
3f864f
3f864f
* Tue Jan 10 2012 Nils Philippsen <nils@redhat.com> - 2:2.7.4-2
3f864f
- rebuild for gcc 4.7
3f864f
3f864f
* Thu Dec 15 2011 Nils Philippsen <nils@redhat.com> - 2:2.7.4-1
3f864f
- version 2.7.4 (unstable, see http://developer.gimp.org/NEWS for details)
3f864f
- update dependency versions
3f864f
- don't suppress abrt reporting, don't redirect bug reports to upstream
3f864f
3f864f
* Tue Aug 30 2011 Nils Philippsen <nils@redhat.com> - 2:2.7.3-1
3f864f
- version 2.7.3 (unstable, see http://developer.gimp.org/NEWS for details)
3f864f
  - change license to GPLv3+/LGPLv3+
3f864f
  - update required versions of dependencies
3f864f
  - build with cairo-pdf, jasper, require jasper-devel for building
3f864f
  - build without poppler as that currently is GPLv2 only, thus incompatible
3f864f
    with LGPLv3 gimp libraries (use postscript plugin for PDF import
3f864f
    meanwhile), future poppler versions will be "GPLv2 or GPLv3", i.e.
3f864f
    compatible again
3f864f
  - clean up configure options, compiler/linker flags
3f864f
  - suppress abrt bug reporting for unstable releases
3f864f
  - remove all patches (obsolete, woo!)
3f864f
  - add new files, remove files that are not installed any longer
3f864f
- use %%global instead of %%define
3f864f
- replace hal, minorver, microver, interfacever, gimp_lang_ver macros with
3f864f
  gudev, lib_minor, lib_micro, lib_api_version, gettext_version macros
3f864f
- compute more version macros (ugly, but convenient)
3f864f
- use gudev from Fedora 15 on
3f864f
- use convenience macro for hardening binaries from F-16 on
3f864f
3f864f
* Fri Aug 12 2011 Nils Philippsen <nils@redhat.com> - 2:2.6.11-21
3f864f
- actually apply startup-warning patch
3f864f
- fix heap corruption and buffer overflow in file-gif-load plugin
3f864f
  (CVE-2011-2896)
3f864f
3f864f
* Thu Aug 04 2011 Nils Philippsen <nils@redhat.com> - 2:2.6.11-20
3f864f
- fix goption warning on startup, patch by Mikael Magnusson
3f864f
3f864f
* Wed Aug 03 2011 Nils Philippsen <nils@redhat.com> - 2:2.6.11-19
3f864f
- remove obsolete gtkhtml2-devel build requirement
3f864f
3f864f
* Fri Jul 15 2011 Marek Kasik <mkasik@redhat.com> - 2:2.6.11-18
3f864f
- Rebuild (poppler-0.17.0)
3f864f
3f864f
* Fri Jun 24 2011 Nils Philippsen <nils@redhat.com> - 2:2.6.11-17
3f864f
- rebuild against new cfitsio
3f864f
3f864f
* Fri Jun 10 2011 Nils Philippsen <nils@redhat.com> - 2:2.6.11-16
3f864f
- guard against crash due to quitting while DND is processed (#711952)
3f864f
3f864f
* Tue Jun 07 2011 Nils Philippsen <nils@redhat.com> - 2:2.6.11-15
3f864f
- drop support for building with non-modular X
3f864f
- ensure file-xpm plugin is built (#710207)
3f864f
3f864f
* Mon May 23 2011 Nils Philippsen <nils@redhat.com> - 2:2.6.11-14
3f864f
- fix buffer overflows in sphere-designer (CVE-2010-4541),
3f864f
  gfig (CVE-2010-4542), lighting (CVE-2010-4540) plugins
3f864f
3f864f
* Mon May 23 2011 Nils Philippsen <nils@redhat.com> - 2:2.6.11-13
3f864f
- harden PSP plugin against bogus input data (CVE-2010-4543, CVE-2011-1782)
3f864f
3f864f
* Sat May 07 2011 Christopher Aillon <caillon@redhat.com> - 2:2.6.11-12
3f864f
- Update desktop database, icon cache scriptlets
3f864f
3f864f
* Fri May 06 2011 Nils Philippsen <nils@redhat.com> - 2:2.6.11-11
3f864f
- simplify poppler-0.17 patch to avoid adding to libgimp (#698157)
3f864f
3f864f
* Wed May 04 2011 Nils Philippsen <nils@redhat.com> - 2:2.6.11-10
3f864f
- don't use poppler/gdk_pixbuf API removed in poppler >= 0.17 (#698157)
3f864f
- remove obsolete configure options
3f864f
3f864f
* Tue Mar 15 2011 Nils Philippsen <nils@redhat.com> - 2:2.6.11-9
3f864f
- don't use HAL from F-16/RHEL-7 on
3f864f
- explicitly use GIO/GVFS rather than gnome-vfs
3f864f
3f864f
* Sun Mar 13 2011 Marek Kasik <mkasik@redhat.com> - 2:2.6.11-8
3f864f
- Rebuild (poppler-0.16.3)
3f864f
3f864f
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:2.6.11-7
3f864f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
3f864f
3f864f
* Wed Feb 02 2011 Nils Philippsen <nils@redhat.com> - 2:2.6.11-6
3f864f
- avoid traceback in pyslice plugin (#667958)
3f864f
3f864f
* Sat Jan 01 2011 Rex Dieter <rdieter@fedoraproject.org> - 2:2.6.11-5
3f864f
- rebuild (poppler)
3f864f
3f864f
* Wed Dec 15 2010 Rex Dieter <rdieter@fedoraproject.org> - 2:2.6.11-4
3f864f
- rebuild (poppler)
3f864f
3f864f
* Tue Nov 09 2010 Nils Philippsen <nils@redhat.com> - 2:2.6.11-3
3f864f
- avoid traceback in colorxhtml plugin (#651002)
3f864f
3f864f
* Sat Nov 06 2010 Rex Dieter <rdieter@fedoraproject.org> - 2:2.6.11-2
3f864f
- rebuilt (poppler)
3f864f
3f864f
* Mon Oct 04 2010 Nils Philippsen <nils@redhat.com> - 2:2.6.11-1
3f864f
- version 2.6.11
3f864f
3f864f
  Overview of Changes from GIMP 2.6.10 to GIMP 2.6.11
3f864f
  ===================================================
3f864f
3f864f
  * Bugs fixed:
3f864f
3f864f
   631199 - Printing and Print preview broken with cairo 1.10
3f864f
   572865 - Parasite handling had problems and can cause crashing
3f864f
   628893 - Error with string-append and gimp-drawable-get-name
3f864f
   623850 - (Paco) Recursive Gaussian Filter error
3f864f
   624487 - Fix incorrect "wrap mode" documentation values in Edge plug-in
3f864f
   557380 - Difference of Gaussians gives blank doc if "Invert" selected
3f864f
   627009 - Image type filter doesn't include .rgba SGI files
3f864f
   626020 - Console window opening on file-ps-load
3f864f
   624698 - Wood 1 and Wood 2 have bad alpha value
3f864f
   624275 - Image saved from google docs generates a
3f864f
            'gimp-image-set-resolution' error message
3f864f
3f864f
  * Updated translations:
3f864f
3f864f
   German (de)
3f864f
   Spanish (es)
3f864f
   Italian (it)
3f864f
   Japanese (ja)
3f864f
   Romanian (ro)
3f864f
   Chinese (Hong Kong) (zh_HK)
3f864f
   Chinese (Taiwan) (zh_HK)
3f864f
3f864f
* Tue Aug 24 2010 Nils Philippsen <nils@redhat.com> - 2:2.6.10-5
3f864f
- don't require gtk-doc but own %%{_datadir}/gtk-doc (#604355, #604169)
3f864f
3f864f
* Thu Aug 19 2010 Rex Dieter <rdieter@fedoraproject.org> - 2:2.6.10-4
3f864f
- rebuild (poppler)
3f864f
3f864f
* Wed Aug 11 2010 David Malcolm <dmalcolm@redhat.com> - 2:2.6.10-3
3f864f
- recompiling .py files against Python 2.7 (rhbz#623309)
3f864f
3f864f
* Mon Jul 12 2010 Nils Philippsen <nils@redhat.com> - 2:2.6.10-2
3f864f
- distribute license and other documentation with gimp-libs
3f864f
3f864f
* Fri Jul 09 2010 Nils Philippsen <nils@redhat.com> - 2:2.6.10-1
3f864f
- version 2.6.10
3f864f
3f864f
  Overview of Changes from GIMP 2.6.9 to GIMP 2.6.10
3f864f
  ==================================================
3f864f
3f864f
  * Bugs fixed:
3f864f
3f864f
   613328 - TGA files saved with incorrect header yOrigin data
3f864f
   623290 - Save As... does not save Windows Bitmap as default in dialog
3f864f
   621363 - CMYK decompose broken
3f864f
   595170 - brush - color from gradient works wrong in greyscale
3f864f
   613838 - Error in gimp-hue-saturation PDB call
3f864f
   622608 - GIMP crashes when clicking any scroll bar from combo boxes
3f864f
   565459 - newly opened images are put into the background
3f864f
3f864f
  * Updated translations:
3f864f
3f864f
   German (de)
3f864f
   Italian (it)
3f864f
   Romanian (ro)
3f864f
   Portuguese (pt)
3f864f
3f864f
- remove obsolete combo-popup patch
3f864f
- update script-fu-ipv6 patch
3f864f
3f864f
* Mon Jul 05 2010 Nils Philippsen <nils@redhat.com> - 2:2.6.9-5
3f864f
- rebuild against libwebkitgtk (instead of libwebkit)
3f864f
3f864f
* Tue Jun 29 2010 Nils Philippsen <nils@redhat.com> - 2:2.6.9-4
3f864f
- script-fu: make rest of server IPv6-aware (#198367)
3f864f
3f864f
* Mon Jun 28 2010 Nils Philippsen <nils@redhat.com> - 2:2.6.9-3
3f864f
- script-fu: make logging IPv6-aware (#198367)
3f864f
3f864f
* Fri Jun 25 2010 Nils Philippsen <nils@redhat.com> - 2:2.6.9-2
3f864f
- fix clicking scroll bar buttons from combo boxes
3f864f
3f864f
* Wed Jun 23 2010 Nils Philippsen <nils@redhat.com> - 2:2.6.9-1
3f864f
- version 2.6.9
3f864f
3f864f
  Overview of Changes from GIMP 2.6.8 to GIMP 2.6.9
3f864f
  =================================================
3f864f
3f864f
  * Bugs fixed:
3f864f
3f864f
   612618 - Font selection remains visible
3f864f
   622234 - gimp.desktop: image/x-psd in MimeTypes twice
3f864f
   622196 - Unportable test(1) construct in configure script
3f864f
   620604 - Description of "histogram" procedure is slightly inaccurate
3f864f
   541586 - Tool options not saved/loaded correctly?
3f864f
   614153 - Importing PDF files with long titles
3f864f
   600112 - blur-gauss-selective.exe crashes
3f864f
   599233 - Dialog of "Save as BMP" ignores changes which are not made
3f864f
            with a mous
3f864f
   565001 - Text-Tool crashes when edit a 2.4.2 version xcf
3f864f
   610478 - Layer preview suddenly stops getting updated
3f864f
   609026 - leaks shared memory
3f864f
   609056 - Exporting to Alias PIX format fails
3f864f
   608188 - a few strings in Save as... > Raw image data dialog are always
3f864f
            in English
3f864f
   604820 - GEGL Operation "path" crashes GIMP
3f864f
   603711 - Crashes when using path tool
3f864f
   607242 - GIMP 2.7.0 fails to build against libpng 1.4.0
3f864f
   606372 - Saving to .ppm fails on indexed colorspace
3f864f
   605237 - the "Antialiasing..." message in the progress bar does not show
3f864f
            translated
3f864f
   604508 - gimp-layer-new-from-visible should work from updated projection
3f864f
3f864f
  * Updated and new translations:
3f864f
3f864f
   Asturian (ast)
3f864f
   Basque (eu)
3f864f
   Burmese (my)
3f864f
   Catalan (ca)
3f864f
   Chinese (Hong Kong) (zh_HK)
3f864f
   Chinese (Taiwan) (zh_HK)
3f864f
   German (de)
3f864f
   Italian (it)
3f864f
   Latvian (lv)
3f864f
   Low German (nds)
3f864f
   Romanian (ro)
3f864f
   Simplified Chinese (zh_CN)
3f864f
   Slovenian (sl)
3f864f
   Ukrainian (uk)
3f864f
   Valencian (ca@valencia)
3f864f
3f864f
- remove obsolete gtk219, never-stack-trace-desktop, indexed-pnm patches
3f864f
- don't manually provide "gimp-libs%%{?_isa}" in gimp-libs
3f864f
- don't package %%{_datadir}/gtk-doc/html, but dirs beneath
3f864f
3f864f
* Wed Jun 23 2010 Nils Philippsen <nils@redhat.com> - 2:2.6.8-10
3f864f
- get rid of obsolete gimp-plugin-mgr
3f864f
3f864f
* Tue Jun 22 2010 Matthias Clasen <mclasen@redhat.com> - 2:2.6.8-9
3f864f
- Rebuild against new poppler
3f864f
3f864f
* Fri Jun 18 2010 Nils Philippsen <nils@redhat.com> - 2:2.6.8-8
3f864f
- backport fix for saving indexed PNM files (#605615)
3f864f
3f864f
* Mon Apr 19 2010 Nils Philippsen <nils@redhat.com> - 2:2.6.8-7
3f864f
- add --stack-trace-mode=never to desktop file
3f864f
3f864f
* Wed Mar 24 2010 Nils Philippsen <nils@redhat.com> - 2:2.6.8-6
3f864f
- backport: statusbar code needed for GTK+ >= 2.19.1 (#559726)
3f864f
3f864f
* Fri Feb 26 2010 Nils Philippsen <nils@redhat.com> - 2:2.6.8-5
3f864f
- require gtk-doc in devel package
3f864f
3f864f
* Thu Feb 25 2010 Nils Philippsen <nils@redhat.com> - 2:2.6.8-4
3f864f
- add missing explicit libraries
3f864f
3f864f
* Wed Feb 24 2010 Nils Philippsen <nils@redhat.com>
3f864f
- backport: fix building with "gold" linker
3f864f
- add more explicit libraries
3f864f
3f864f
* Wed Jan 27 2010 Nils Philippsen <nils@redhat.com> - 2:2.6.8-3
3f864f
- remove wrong dependency (#558836)
3f864f
3f864f
* Mon Jan 25 2010 Nils Philippsen <nils@redhat.com> - 2:2.6.8-2
3f864f
- rebuild against new babl
3f864f
3f864f
* Wed Jan 20 2010 Nils Philippsen <nils@redhat.com>
3f864f
- use %%_isa instead of %%_arch for architecture-specific dependencies
3f864f
3f864f
* Fri Dec 11 2009 Nils Philippsen <nils@redhat.com> - 2:2.6.8-1
3f864f
- version 2.6.8
3f864f
3f864f
  Overview of Changes from GIMP 2.6.7 to GIMP 2.6.8
3f864f
  =================================================
3f864f
3f864f
  * Bugs fixed:
3f864f
3f864f
   470698 - MapObject cannot modify highlight
3f864f
   593848 - FG color changed to black when FG-BG Editor tab created
3f864f
   594651 - layer.scale() raises RuntimeError
3f864f
   594998 - Keyboard shortcuts does not work for first image when dock
3f864f
            is focused
3f864f
   599765 - F1 key on gimp-tool-align in menu have wrong link and it
3f864f
            open gimp-tool-move
3f864f
   600484 - Gimp BMP Integer Overflow Vulnerability
3f864f
   600741 - "read_channel_data()" Integer Overflow Vulnerability
3f864f
   601891 - gimp_image_get_selection returns None
3f864f
   602761 - plug-in-grid: Parameters Horizontal/Vertical Spacing and
3f864f
            Horizontal/Vertical Offset are reversed.
3f864f
   603995 - PCX plugin doesn't sanitize input to avoid allocation overflows.
3f864f
   603998 - PCX: Calculating amount of memory to allocate may overflow.
3f864f
   604000 - SGI: sanitize input
3f864f
   604001 - SGI: Calculating amount of memory to allocate may overflow.
3f864f
   604002 - SGI: RLE encoded input data may write beyond allocated buffers
3f864f
   604004 - SGI: allocate memory consistently
3f864f
   604008 - GBR, PAT: sanitize input data
3f864f
   604078 - Crash when pressing Backspace with Free Select Tool
3f864f
3f864f
  * Updated and new translations:
3f864f
3f864f
   Basque (eu)
3f864f
   British English (en_GB)
3f864f
   Czech (cs)
3f864f
   French (fr)
3f864f
   Greek (el)
3f864f
   Italian (it)
3f864f
   Japanese (ja)
3f864f
   Norwegian Nynorsk (nn)
3f864f
   Polish (pl)
3f864f
   Romanian (ro)
3f864f
   Russian (ru)
3f864f
   Simplified Chinese (zh_CN)
3f864f
3f864f
- remove obsolete bmp-hardening, psd-hardening patches
3f864f
3f864f
* Tue Nov 17 2009 Nils Philippsen <nils@redhat.com> - 2:2.6.7-3
3f864f
- avoid overflow in the BMP image file plugin (#537356)
3f864f
- avoid overflow in the PSD image file plugin (#537370)
3f864f
- update jpeg-units patch
3f864f
3f864f
* Tue Aug 18 2009 Nils Philippsen <nils@redhat.com> - 2:2.6.7-2
3f864f
- BR: webkitgtk-devel/WebKit-gtk-devel >= 1.1.0
3f864f
3f864f
* Fri Aug 14 2009 Nils Philippsen <nils@redhat.com> - 2:2.6.7-1
3f864f
- version 2.6.7
3f864f
3f864f
  Overview of Changes from GIMP 2.6.6 to GIMP 2.6.7
3f864f
  =================================================
3f864f
3f864f
  * Bugs fixed:
3f864f
3f864f
   591017 - Tablet pan is not working as fast as it should
3f864f
   577581 - Crashes when using any colors tool/function on Windows
3f864f
   589667 - GIMP crashes when clicking GEGL Operation on Windows
3f864f
   569833 - file-jpeg-save erroneous with small quality values
3f864f
   590638 - Changing palettes from list to grid view loses "locked to dock"
3f864f
            status
3f864f
   589674 - "Send by Email" does not update "Filename"
3f864f
   589674 - "Send by Email" does not update "Filename"
3f864f
   586851 - Transparent BMP files fail to load
3f864f
   589205 - help-browser uses deprecated (and sometimes broken) webkit call
3f864f
   582821 - 'Sphere Designer' does not reset correctly...
3f864f
   570353 - first time open of .svg file ignores the requested units
3f864f
   555777 - Export to MNG animation fails
3f864f
   577301 - Dithering with transparency is broken for "positioned" method
3f864f
   493778 - metadata plug-in crashes on some images
3f864f
   567466 - PNG comment not found if more than 1 tEXt chunks
3f864f
   585665 - Exporting to PSD with a blank text layer creates a corrupt file
3f864f
   586316 - Levels tool does not adjust output levels correctly if input
3f864f
            levels are changed
3f864f
   569661 - Import from PDF throws errors when entering resolution in
3f864f
            pixels per millimetre
3f864f
   567262 - Black pixels appear in "Spread" filter preview
3f864f
   554658 - Path Dialog: Path preview pics not to see constantly
3f864f
   167604 - gimp_gradient_get_color_at() may return out-of-bounds values
3f864f
   567393 - Rectangle select tool size shrinks to 0 if size is larger than
3f864f
            the image and the up or down arrow is pressed
3f864f
   587543 - crash when invoking certain actions by keyboard shortcut
3f864f
   563029 - Closing maximized image doesn't restore document window size
3f864f
   585488 - Perspective transformation on a layer with a mask causes crash
3f864f
   586008 - GIMP crashes when right-click canceling a drawing action initiated
3f864f
            outside layer boundaries
3f864f
   584345 - when printing, the number of copies should be reset to 1
3f864f
   557061 - Alpha to Logo
3f864f
   472644 - Rotate with clipping crops the whole layer
3f864f
   577575 - transform tool fills underlying extracted area wrongly
3f864f
   555738 - Image display is wrong after undoing canvas size
3f864f
   577024 - help-browser plugin crashes when used with webkit 1.1.3
3f864f
   555025 - Action GEGL box widgets weirdness
3f864f
3f864f
  * Updated and new translations:
3f864f
3f864f
   Czech (cs)
3f864f
   Danish (da)
3f864f
   German (de)
3f864f
   Spanish (es)
3f864f
   Basque (eu)
3f864f
   Finnish (fi)
3f864f
   Hungarian (hu)
3f864f
   Italian (it)
3f864f
   Gujarati (gu)
3f864f
   Japanese (ja)
3f864f
   Kannada (kn)
3f864f
   Marathi (mr)
3f864f
   Norwegian bokmĂĄl (nb)
3f864f
   Oriya (or)
3f864f
   Portuguese (pt)
3f864f
   Romanian (ro)
3f864f
   Sinhala (si)
3f864f
   Swedish (sv)
3f864f
   Simplified Chinese (zh_CN)
3f864f
   Traditional Chinese - Hong Kong (zh_HK)
3f864f
   Traditional Chinese - Taiwan (zh_TW)
3f864f
3f864f
- remove obsolete gegl-babl-versions-check, help-browser-webkit patches
3f864f
- comment/explain patches
3f864f
3f864f
* Fri Jul 24 2009 Nils Philippsen <nils@redhat.com> - 2:2.6.6-8
3f864f
- rebuild with chrpath >= 0.13-5 (#513419)
3f864f
3f864f
* Thu Jul 16 2009 Nils Philippsen <nils@redhat.com> - 2:2.6.6-7
3f864f
- rebuild against gegl-0.1 (#510209)
3f864f
3f864f
* Mon Jun 29 2009 Nils Philippsen <nils@redhat.com> - 2:2.6.6-6
3f864f
- really fix help browser crash with new WebKit versions (#508301)
3f864f
3f864f
* Sat Jun 27 2009 Nils Philippsen <nils@redhat.com> - 2:2.6.6-5
3f864f
- fix help browser crash with new WebKit versions (#508301)
3f864f
- BR: webkitgtk-devel from F-11 on
3f864f
3f864f
* Fri Jun 05 2009 Nils Philippsen <nils@redhat.com> - 2:2.6.6-4
3f864f
- don't build against aalib on RHEL
3f864f
- use backported patch to correctly check gegl/babl versions
3f864f
3f864f
* Tue Apr 14 2009 Nils Philippsen <nils@redhat.com> - 2:2.6.6-3
3f864f
- remove rpaths from binaries (#495670)
3f864f
3f864f
* Mon Mar 30 2009 Nils Philippsen <nils@redhat.com> - 2:2.6.6-2
3f864f
- minimize dialogs with single image window (#492796, backported from trunk,
3f864f
  original patch by Sven Neumann)
3f864f
3f864f
* Wed Mar 18 2009 Nils Philippsen <nils@redhat.com> - 2:2.6.6-1
3f864f
- version 2.6.6
3f864f
3f864f
  Overview of Changes from GIMP 2.6.5 to GIMP 2.6.6
3f864f
  =================================================
3f864f
3f864f
  * Bugs fixed:
3f864f
3f864f
   571117 - lcms plug-in crashes on broken profile
3f864f
   575154 - changing the help browser preference may not work
3f864f
   573542 - blur plugin: bug in the first line
3f864f
   572403 - gimp-2.6 crashed with SIGSEGV in IA__g_object_get()
3f864f
   573695 - 1-bit white background saved as PBM becomes all black
3f864f
   573488 - Small bug in Filter>Distorts>Ripple
3f864f
   572156 - top left pixel position/coordinate is not 0,0 but 1,1
3f864f
   472644 - Rotate with clipping crops the whole layer
3f864f
3f864f
  * Updated translations:
3f864f
3f864f
   German (de)
3f864f
   Spanish (es)
3f864f
   Estonian (et)
3f864f
   Basque (eu)
3f864f
   French (fr)
3f864f
   Italian (it)
3f864f
   Portuguese (pt)
3f864f
   Simplified Chinese (zh_CN)
3f864f
3f864f
* Tue Mar 17 2009 Nils Philippsen <nils@redhat.com> - 2:2.6.5-5
3f864f
- require pygtk2 >= 2.10.4 (#490553)
3f864f
3f864f
* Tue Mar 10 2009 Nils Philippsen <nils@redhat.com> - 2:2.6.5-4
3f864f
- use correct fix from upstream to avoid crashes (#486122)
3f864f
- use -fno-strict-aliasing, PIC/PIE compilation flags
3f864f
3f864f
* Mon Mar 09 2009 Nils Philippsen <nils@redhat.com> - 2:2.6.5-3
3f864f
- rebuild against new WebKit
3f864f
- define deprecated gtk functions to avoid crashes (#486122)
3f864f
3f864f
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:2.6.5-2
3f864f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
3f864f
3f864f
* Sun Feb 15 2009 Nils Philippsen <nils@redhat.com> - 2:2.6.5-1
3f864f
- version 2.6.5
3f864f
3f864f
  Overview of Changes from GIMP 2.6.4 to GIMP 2.6.5
3f864f
  =================================================
3f864f
3f864f
  * Bugs fixed:
3f864f
3f864f
   571628 - Scaling image to 25% turn background from white to grey
3f864f
   567840 - GIMP's GtkScaleButton conflicts with GTK's
3f864f
   569043 - GEGL tool - missing Operation Settings for all sub-tools
3f864f
   568890 - don't rely on GtkAction implementation details
3f864f
   568909 - wrong RGB values for color names in libgimpcolor/gimprgb-parse.c
3f864f
   568839 - wrong hex RGB value for the color names slategrey and slategray
3f864f
   559408 - Brushes dragged to the image window look strange
3f864f
   563337 - Rectangle Select Tool does not allow 1:1 fixed ratio
3f864f
   568016 - Black pullout parameter of plug-in-newsprint has no effect
3f864f
   562818 - First image opened in GIMP offset
3f864f
   562213 - Align Tool doesn't work properly if it is the active tool
3f864f
            at startup
3f864f
3f864f
  * Updated translations:
3f864f
3f864f
   Spanish (es)
3f864f
   Estonian (et)
3f864f
   Hindi (hi)
3f864f
   Italian (it)
3f864f
   Brazilian Portuguese (pt_BR)
3f864f
   Romanian (ro)
3f864f
   Russian (ru)
3f864f
   Serbian (sr)
3f864f
   Tamil (ta)
3f864f
   Simplified Chinese (zh_CN)
3f864f
3f864f
* Wed Jan 07 2009 Nils Philippsen <nils@redhat.com> - 2:2.6.4-3
3f864f
- split off gimptool into new gimp-devel-tools subpackage to avoid multilib
3f864f
  conflicts (#477789)
3f864f
- require poppler-glib-devel for building from F9 on (#478691)
3f864f
- fix gimp-devel package group
3f864f
3f864f
* Sun Jan 04 2009 Nils Philippsen <nils@redhat.com> - 2:2.6.4-2
3f864f
- enable building with aalib
3f864f
3f864f
* Thu Jan 01 2009 Nils Philippsen <nils@redhat.com> - 2:2.6.4-1
3f864f
- version 2.6.4
3f864f
3f864f
  Overview of Changes from GIMP 2.6.3 to GIMP 2.6.4
3f864f
  =================================================
3f864f
  
3f864f
  * Bugs fixed:
3f864f
  
3f864f
   565223 - Perspective transformation jagged edges / comb effect
3f864f
   563985 - jpg save dialog: "cancel" is treated like "commit"
3f864f
            for settings
3f864f
   564087 - Using clone tool on a layer with a part out of canvas
3f864f
            causes crashes
3f864f
   564593 - crash when the drawable is changed while a color tool
3f864f
            is active
3f864f
   564869 - GIMP crashes on selecting Tools->GEGL operation
3f864f
   565138 - python-fu-foggify does not check if image is in rgb mode
3f864f
   563130 - Hue selection mode does not cross the 0-360 degrees line
3f864f
   563179 - Scrollbars not resized when we extend the canvas size
3f864f
   562459 - PF_PALETTE: 'TypeError' when used in a plugin that is
3f864f
            registered in <Image>
3f864f
   562427 - Compilation with --as-needed
3f864f
   562386 - PF_SLIDER and PF_SPINNER 'Step' values do not change
3f864f
            consistently...
3f864f
   562366 - Default image dimensions are not correctly
3f864f
            transferred in the file/new dialog box
3f864f
   561899 - GIMP can't save to mounted filesystem if file exists
3f864f
  
3f864f
  * Updated translations:
3f864f
  
3f864f
   Greek (el)
3f864f
   Hindi (hi)
3f864f
   Hungarian (hu)
3f864f
   Italian (it)
3f864f
   Japanese (ja)
3f864f
   Korean (ko)
3f864f
   Slovenian (sl)
3f864f
   Swedish (sv)
3f864f
   Tamil (ta)
3f864f
   Simplified Chinese (zh_CN)
3f864f
- add BuildRequires: aalib-devel
3f864f
3f864f
* Mon Dec 01 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 2:2.6.3-3
3f864f
- Rebuild for Python 2.6
3f864f
3f864f
* Mon Nov 24 2008 Nils Philippsen <nils@redhat.com> - 2:2.6.3-2
3f864f
- own /usr/lib/gimp/2.0/interpreters (#473594)
3f864f
3f864f
* Mon Nov 24 2008 Nils Philippsen <nils@redhat.com> - 2:2.6.3-1
3f864f
- version 2.6.3
3f864f
3f864f
  Overview of Changes from GIMP 2.6.2 to GIMP 2.6.3
3f864f
  =================================================
3f864f
3f864f
  * Bugs fixed:
3f864f
3f864f
   558454 - Plugin Map Color Range disappears from GIMP
3f864f
   559239 - Error while loading psd-data
3f864f
   560903 - Explicit zooming with e.g. '1' should handle
3f864f
            zoom-focus better
3f864f
   560245 - Zoom selection always centered in the Navigation tab
3f864f
   559490 - Wrong lang tags for 'no'
3f864f
   559292 - SOTA Chrome cannot accept different textures
3f864f
   560375 - Clearing an already empty document history crashes GIMP
3f864f
   559580 - Image windows need better default locations
3f864f
   560283 - "Scale image..." causes distortion around edges
3f864f
   559716 - Changing crop size in Crop Tool Options can make UI
3f864f
            unresponsive
3f864f
   558549 - Stroking a single-point path with a paint tool
3f864f
            crashes GIMP
3f864f
   559015 - Move tool gives bad information about px moved
3f864f
   558660 - help behavior for locales without manual translation
3f864f
3f864f
  * Updated translations:
3f864f
3f864f
   Belarusian (be)
3f864f
   Dutch (nl)
3f864f
   German (de)
3f864f
   Japanese (ja)
3f864f
   Lithuanian (lt)
3f864f
   Norwegian BokmĂĄl (nb)
3f864f
   Norwegian Nynorsk (nn)
3f864f
   Polish (pl)
3f864f
   Romanian (ro)
3f864f
3f864f
* Fri Nov 14 2008 Nils Philippsen <nils@redhat.com> - 2:2.6.2-3
3f864f
- bump release
3f864f
3f864f
* Tue Nov 11 2008 Nils Philippsen <nils@redhat.com> - 2:2.6.2-2
3f864f
- backport: use size units in JPEG save preview (#469551)
3f864f
3f864f
* Fri Oct 31 2008 Nils Philippsen <nils@redhat.com> - 2:2.6.2-1
3f864f
- version 2.6.2
3f864f
3f864f
  Overview of Changes from GIMP 2.6.1 to GIMP 2.6.2
3f864f
  =================================================
3f864f
3f864f
  * Bugs fixed:
3f864f
3f864f
   557950 - Scaling in Gimp 2.6 is much slower than in Gimp 2.4
3f864f
   558215 - unit and zoom entries in Statusbar not visible
3f864f
   558451 - Cannot build GIMP using Sun CC on Solaris 2.8
3f864f
   558420 - projection incorrect with alpha-less layers
3f864f
   556603 - Zoom region always zooms in center of image
3f864f
   557870 - "Qmask" message popping up here and there
3f864f
   557705 - compatibility with GEGL > 0.0.20
3f864f
   556248 - Scaling gives 'jagged' edges
3f864f
   556804 - Zoom drop down doesn't update
3f864f
   524615 - Print not to scale
3f864f
   555246 - gimp crashes when a file is opened while a preview is generating
3f864f
   556741 - Alpha layer automatically added (in psd format)
3f864f
   556182 - Could you please explain a few strings [I18N]
3f864f
   555697 - build fails if configured with --without-libjpeg
3f864f
   134956 - Curves tool doesn't save free curves
3f864f
3f864f
  * Updated translations:
3f864f
3f864f
   Czech (cs)
3f864f
   Danish (da)
3f864f
   Finnish (fi)
3f864f
   French (fr)
3f864f
   Japanese (ja)
3f864f
   Polish (pl)
3f864f
   Brazilian Portuguese (pt_BR)
3f864f
   Swedish (sv)
3f864f
   Simplified Chinese (zh_CN)
3f864f
- update xdg-open patch
3f864f
3f864f
* Tue Oct 28 2008 Nils Philippsen <nils@redhat.com> - 2:2.6.1-2
3f864f
- update required versions of some packages (#467065)
3f864f
3f864f
* Fri Oct 10 2008 Nils Philippsen <nils@redhat.com> - 2:2.6.1-1
3f864f
- version 2.6.1
3f864f
3f864f
  Overview of Changes from GIMP 2.6.0 to GIMP 2.6.1
3f864f
  =================================================
3f864f
3f864f
  * Bugs fixed:
3f864f
3f864f
   555587 - PSD file crashes PSD plug-in
3f864f
   555222 - PSD Load Plugin: unsupported compression mode
3f864f
   555362 - gimp-remote is not working properly
3f864f
   555280 - some gif files will not be open
3f864f
   554890 - JPEG Save Options Dialog does not remember
3f864f
   554966 - Gimp crashes creating a new image using a template
3f864f
   554785 - Compile failure on uri-backend-libcurl
3f864f
   554646 - Opening Help crashes GIMP with lqr-plugin installed
3f864f
   553534 - centering issues after image scaling and setting zoom
3f864f
   554898 - Compile failure on uri-backend-wget.c
3f864f
3f864f
  * Updated translations:
3f864f
3f864f
   Belarusian (be)
3f864f
   Catalan (ca)
3f864f
   Finnish (fi)
3f864f
   French (fr)
3f864f
   Japanese (ja)
3f864f
   Macedonian (mk)
3f864f
   Punjab (pa)
3f864f
   Brazilian Portuguese (pt_BR)
3f864f
   Romanian (ro)
3f864f
   Slovenian (sl)
3f864f
   Swedish (sv)
3f864f
3f864f
* Wed Oct 08 2008 Nils Philippsen <nils@redhat.com> - 2:2.6.0-3
3f864f
- split off help browser plugin
3f864f
- let gimp and gimp-help-browser obsolete older gimp versions to allow seamless
3f864f
  upgrades
3f864f
3f864f
* Tue Oct 07 2008 Nils Philippsen <nils@redhat.com> - 2:2.6.0-2
3f864f
- move gimptool to devel subpackage
3f864f
- make gimp-plugin-mgr not require gimptool/pkg-config (#465869)
3f864f
3f864f
* Thu Oct 02 2008 Nils Philippsen <nils@redhat.com> - 2:2.6.0-1
3f864f
- version 2.6.0
3f864f
- remove obsolete htmlview patch
3f864f
- remove obsolete distro version dependent defaults
3f864f
- don't use custom CFLAGS
3f864f
3f864f
* Mon Sep 22 2008 Nils Philippsen <nils@redhat.com> - 2:2.4.7-4
3f864f
- don't require desktop-file-utils (#463049, patch by Ville Skyttä)
3f864f
3f864f
* Wed Sep 17 2008 Nils Philippsen <nils@redhat.com> - 2:2.4.7-3
3f864f
- don't make pyconsole.py plug-in executable as upstream indicates it shouldn't
3f864f
  be
3f864f
3f864f
* Wed Sep 17 2008 Nils Philippsen <nils@redhat.com> - 2:2.4.7-2
3f864f
- Merge review:
3f864f
  - convert spec file to UTF-8
3f864f
  - remove unneeded gimp2, gimp-beta obsoletes
3f864f
  - quote macros in changelog
3f864f
  - use only spaces, not tabs
3f864f
  - make pyconsole.py plug-in executable (upstream bug #552601)
3f864f
3f864f
* Fri Aug 22 2008 Nils Philippsen <nphilipp@redhat.com> - 2:2.4.7-1
3f864f
- version 2.4.7
3f864f
3f864f
  Changes in GIMP 2.4.7
3f864f
  =====================
3f864f
3f864f
  - fixed issue in GIF load plug-in (bug #535888)
3f864f
  - fixed event handling in MIDI controller (bug #537960)
3f864f
  - fixed handling of the 'Highlight' tool option in Crop and Rectangle
3f864f
    Select tools (bug #536582)
3f864f
  - various fixes to the Python bindings:
3f864f
    - fixed crash with Python 2.5 on 64 bit systems (bug #540629)
3f864f
    - added missing validity checks (bug #536403)
3f864f
    - allow to pass None for PDB_DISPLAY
3f864f
  - plugged a memory leak in gimp-text-get-extents-fontname PDB call
3f864f
  - fixed potential timeout issues in org.gimp.GIMP.UI D-Bus service
3f864f
  - fixed endianness issue in the ICO save plug-in (bug #529629)
3f864f
  - translation fixes and updates (be, it, lt, nn, vi)
3f864f
3f864f
* Fri May 30 2008 Nils Philippsen <nphilipp@redhat.com> - 2:2.4.6-1
3f864f
- version 2.4.6
3f864f
3f864f
  Changes in GIMP 2.4.6
3f864f
  =====================
3f864f
3f864f
  - fixed handling of the "antialias" tool option (bug #521069)
3f864f
  - when loading a TIFF image, always set a filename on it (bug #521436)
3f864f
  - fixed initial state of curve type in Curves tool (bug #523873)
3f864f
  - fixed potential crash in the Dicom load plug-in
3f864f
  - respect the brush mask in the Heal tool (bug #521433)
3f864f
  - plugged some minor memory leaks
3f864f
  - fixed a glitch in the DND code (bug #317992)
3f864f
  - gimp-image-convert() must not accept palettes with > 256 colors (bug
3f864f
    #525471)
3f864f
  - fixed parameter description in the Map Object plug-in (bug #526679)
3f864f
  - fixed compilation of unit tests on Mac OS X (bug #528160)
3f864f
  - fixed handling of "argc-lower-val-y" PDB parameter in Curve Bend plug-in
3f864f
  - fixed overlap problem in Hue-Saturation tool (bug #527085)
3f864f
  - fixed asymmetry in Unsharp Mask plug-in (bug #530077)
3f864f
  - don't show non-existant color profiles in the selector (bug #528958)
3f864f
  - fixed issues with default aspect ratio in the Crop tool (bug #532057)
3f864f
  - fixed compilation of the PDF import plug-in with libpoppler 0.8
3f864f
  - fixed bug in clipboard brush code (bug #532886)
3f864f
  - corrected layer mask flag in PSD save plug-in (bug #526811)
3f864f
  - fixed an issue with tablets and newer X.Org releases
3f864f
  - keep the JPEG save plug-in from writing an empty EXIF tag (bug #529469)
3f864f
  - fixed crash in Selective Gaussion Blur plug-in (bug #529280)
3f864f
  - added new translations (Belarusian, Catalan, Norwegian Nynorsk)
3f864f
  - translation fixes and updates
3f864f
    (ar, ca, de, el, es, fi, fr, hu, it, ko, pl, pt_BR, ro, sv)
3f864f
3f864f
* Mon Mar 03 2008 Nils Philippsen <nphilipp@redhat.com> - 2:2.4.5-1
3f864f
- version 2.4.5
3f864f
3f864f
  Changes in GIMP 2.4.5
3f864f
  =====================
3f864f
3f864f
  - fixed a regression introduced by the brush cursor optimization
3f864f
    (bug #514309)
3f864f
  - fixed bug in transform tool preview (bug #340965)
3f864f
  - fixed PSD export of images with layer masks
3f864f
  - fixed base64 encoding routine of the Mail plug-in
3f864f
  - use the correct background color when creating a new image
3f864f
    (bug #514082)
3f864f
  - explicitly link libgimpthumb with GLib (bug #515566)
3f864f
  - improved selection of the font sample string (bug #514021)
3f864f
  - unified handling of "Enter" and "Space" keysyms (bug #516544)
3f864f
  - fixed bug in the Glossy script when used with a pattern (bug #517285)
3f864f
  - correctly record dimensions in Exif data when saving as JPEG
3f864f
    (bug #517077)
3f864f
  - fixed sensitivity of plug-in menu items (bug #517683)
3f864f
  - fixed potential crashes in Wind, Warp, Small Tiles and Apply Canvas
3f864f
    plug-ins (bug #516369)
3f864f
  - added default keyboard shortcut for "Paste As New Image"
3f864f
    (Ctrl-Shift-V)
3f864f
  - added default keyboard shortcut for "Copy Visible" (Ctrl-Shift-C)
3f864f
  - fixed missing preview update in Curves tool (bug #518012)
3f864f
  - fixed a bug in the Frosty Logo script (bug #472316)
3f864f
  - fixed backward transformations using the PDB (bug #518910)
3f864f
  - translation fixes and updates (de, eu, eo, fr, he, hu, it, ja, ko)
3f864f
3f864f
* Mon Feb 18 2008 Nils Philippsen <nphilipp@redhat.com> - 2:2.4.4-2
3f864f
- let gimp-libs provide, gimp and gimp-devel require "gimp-libs-%%{_arch}"
3f864f
  (#433195)
3f864f
3f864f
* Wed Jan 30 2008 Nils Philippsen <nphilipp@redhat.com> - 2:2.4.4-1
3f864f
- version 2.4.4
3f864f
3f864f
  Changes in GIMP 2.4.4
3f864f
  =====================
3f864f
3f864f
  - fixed typo in stock icon name
3f864f
  - fixed handling of PSD files with empty layer names (bug #504149)
3f864f
  - merged TinyScheme bug-fixes
3f864f
  - removed duplicate entry from Tango palette
3f864f
  - corrected parameter range in Chip Away script (bug #506110)
3f864f
  - reduced redraw priority and speed of the marching ants (bug #479875)
3f864f
  - fixed out-of-bounds array access in Convolution Matrix plug-in
3f864f
  - reduced rounding errors in Convolution Matrix plug-in (bug #508114)
3f864f
  - fixed potential crash on missing CMYK color profile
3f864f
  - fixed crash in Bumpmap plug-in when called from some scripts (bug #509608)
3f864f
  - Equalize should not equalise the alpha channel (bug #510210)
3f864f
  - increased the number of points the ImageMap plug-in can handle (bug #511072)
3f864f
  - adjusted the priority of the projection renderer (bug #511214)
3f864f
  - smooth the brush mask to get a simpler cursor boundary (bug #304798)
3f864f
  - show the selection even if the image window is invisible (bug #505758)
3f864f
  - allow to commit a pending rectangular selection using Enter (bug #511599)
3f864f
  - fixed bug in image dirty state logic (bug #509822)
3f864f
  - improved GIMPressionist preformance and reduced startup time (bug #512126)
3f864f
  - fixed a crash in the Convert to Color Profile plug-in (bug #512529)
3f864f
  - merged some other minor fixes from trunk
3f864f
  - translation updates (de, it, lt, ru, sv, uk)
3f864f
3f864f
* Mon Jan 28 2008 Nils Philippsen <nphilipp@redhat.com> - 2:2.4.3-2
3f864f
- don't package static libraries (#430330)
3f864f
- use %%bcond_... macros for package options
3f864f
3f864f
* Mon Dec 17 2007 Nils Philippsen <nphilipp@redhat.com> - 2:2.4.3-1
3f864f
- version 2.4.3
3f864f
3f864f
  Changes in GIMP 2.4.3
3f864f
  =====================
3f864f
3f864f
  - avoid filename encoding problems in the WMF import plug-in (bug #499329)
3f864f
  - fixed horizontal flipping of linked layers (bug #499161)
3f864f
  - fixed a missing update in the Lighting plug-in UI (bug #500317)
3f864f
  - fixed a potential crash in the projection code (bug #500178)
3f864f
  - fixed a minor Makefile issue (bug #500826)
3f864f
  - removed some pointless warnings from the JPEG and TIFF load plug-ins
3f864f
  - fixed size calculation for the image size warning dialog (bug #329468)
3f864f
  - fixed loading of tool options for the rectangle tools (bug #498948)
3f864f
  - push/pop a context in the Fog filter
3f864f
  - fixed potential crashes in the Python binding
3f864f
  - corrected grid drawing with non-integer spacing (bug #502374)
3f864f
  - fixed grid snapping for coordinates less than the grid offset
3f864f
  - made the healing brush work properly when dragged (bug #492575)
3f864f
  - update tool state when a device change happens (bug #493176)
3f864f
  - improved validation of strings sent over the wire (bug #498207)
3f864f
  - fixed integer check in Script-Fu (bug #498207)
3f864f
  - fixed potential out-of-memory problem in Script-Fu
3f864f
  - translation updates (ca, cs, de, gl, it, ko, lt, sv, uk)
3f864f
3f864f
* Wed Nov 28 2007 Nils Philippsen <nphilipp@redhat.com> - 2:2.4.2-2
3f864f
- fix typo to build internal print plugin from F8 onwards (#401931)
3f864f
3f864f
* Thu Nov 22 2007 Nils Philippsen <nphilipp@redhat.com> - 2:2.4.2-1
3f864f
- version 2.4.2
3f864f
3f864f
  Changes in GIMP 2.4.2
3f864f
  =====================
3f864f
3f864f
  - removed broken and useless HSV Graph script (bug #491311)
3f864f
  - update the histogram when a color correction tool is cancelled (bug #493639)
3f864f
  - fixed a crash with certain plug-in or script descriptions (bug #492718)
3f864f
  - corrected a tooltip (bug #495564)
3f864f
  - fixed a crash when GIMP is run without any modules (bug #495863)
3f864f
  - fixed error handling in the TIFF plug-in
3f864f
  - fixed a problem with Sample points
3f864f
  - fixed a crash when merging layers in indexed image (bug #495990)
3f864f
  - update the histogram when painting (bug #494049)
3f864f
  - fixed another problem with merge operations on indexed images (bug #496437)
3f864f
  - fixed crash in TIFF plug-in when saving indexed images (bug #497103)
3f864f
  - changed defaults so that a system monitor profile is only used when the
3f864f
    user explicitely enabled this feature (bug #496890)
3f864f
  - fixed endless loop when running equalize on transparent areas (bug #497291)
3f864f
  - fixed heap corruption in GimpColorScale widget that caused a crash in the
3f864f
    Compose plug-in (bug #399484)
3f864f
  - fixed use of background color in Particle Trace script (bug #498282)
3f864f
  - set the image menu insensitive when there's no image opened (bug #498511)
3f864f
  - translation updates (ca, et, it, lt, pt, pt_BR, sr, sv)
3f864f
3f864f
* Wed Oct 31 2007 Nils Philippsen <nphilipp@redhat.com> - 2:2.4.1-1
3f864f
- version 2.4.1
3f864f
3f864f
  Changes in GIMP 2.4.1
3f864f
  =====================
3f864f
3f864f
  - fixed a minor display rendering problem
3f864f
  - improved the workaround for broken graphics card drivers (bug #421466)
3f864f
  - fixed a crash with broken scripts and plug-ins (bug #490055)
3f864f
  - fixed potential syntax error in configure script (bug #490068)
3f864f
  - fixed parsing of floating point numbers in Script-Fu (bug #490198)
3f864f
  - fixed potential crash when converting an indexed image to RGB (bug #490048)
3f864f
  - update the histogram while doing color corrections (bug #490182)
3f864f
  - fixed another crash with broken plug-ins (bug #490617).
3f864f
  - translation updates
3f864f
3f864f
* Mon Oct 29 2007 Nils Philippsen <nphilipp@redhat.com> - 2:2.4.0-4
3f864f
- use either htmlview or xdg-open in documentation instead of firefox (#355801)
3f864f
3f864f
* Thu Oct 25 2007 Nils Philippsen <nphilipp@redhat.com> - 2:2.4.0-3
3f864f
- add epoch to obsoletes
3f864f
3f864f
* Wed Oct 24 2007 Nils Philippsen <nphilipp@redhat.com> - 2:2.4.0-1
3f864f
- version 2.4.0
3f864f
- use xdg-open instead of htmlview on Fedora 7 and later
3f864f
- change hicolor-icon-theme requirement to be "uncolored" (without
3f864f
  "(post)"/"(postun)")
3f864f
- don't let gtk-update-icon-cache fail scriptlets
3f864f
3f864f
* Fri Sep 07 2007 Nils Philippsen <nphilipp@redhat.com> - 2:2.4.0-0.rc3.2
3f864f
- build internal print plugin, don't require external print plugins on Fedora 8
3f864f
  and later
3f864f
3f864f
* Fri Sep 07 2007 Nils Philippsen <nphilipp@redhat.com> - 2:2.4.0-0.rc3.1
3f864f
- version 2.4.0-rc3
3f864f
3f864f
* Fri Sep 07 2007 Nils Philippsen <nphilipp@redhat.com> - 2:2.4.0-0.rc2.2
3f864f
- rebuild to pick up new version of poppler
3f864f
3f864f
* Tue Sep 04 2007 Nils Philippsen <nphilipp@redhat.com> - 2:2.4.0-0.rc2.1
3f864f
- version 2.4.0-rc2
3f864f
3f864f
* Thu Aug 16 2007 Nils Philippsen <nphilipp@redhat.com> - 2:2.4.0-0.rc1.1
3f864f
- version 2.4.0-rc1
3f864f
- change license tags to GPLv2+ (main app), LGPLv2+ (libs and devel)
3f864f
- drop libXt-devel build requirement
3f864f
- build-require pygobject2-devel directly
3f864f
- don't let %%postun fail
3f864f
- remove obsolete buildroot, gimphelpmissing, icontheme, gifload, gimptool
3f864f
  patches
3f864f
- update htmlview patch
3f864f
- use more distinct build root
3f864f
- use %%buildroot consistently
3f864f
- explicitely enable configure options
3f864f
- more versionized build requirements
3f864f
- don't rebuild autofoo files
3f864f
- reformat spec file a bit
3f864f
3f864f
* Fri Jul 13 2007 Nils Philippsen <nphilipp@redhat.com> - 2:2.2.17-1
3f864f
- version 2.2.17
3f864f
3f864f
  Bugs fixed in GIMP 2.2.17
3f864f
  =========================
3f864f
3f864f
  - fixed regression in PSD load plug-in (bug #456042)
3f864f
  - fixed crash when loading a corrupt PSD file (bug #327444)
3f864f
  - work around for Pango appending " Not-Rotated" to font names 
3f864f
3f864f
* Wed Jul 11 2007 Nils Philippsen <nphilipp@redhat.com> - 2:2.2.16-2
3f864f
- don't let gimp-plugin-mgr --uninstall fail %%post scriptlet
3f864f
3f864f
* Mon Jul 09 2007 Nils Philippsen <nphilipp@redhat.com> - 2:2.2.16-1
3f864f
- version 2.2.16
3f864f
3f864f
  Bugs fixed in GIMP 2.2.16
3f864f
  =========================
3f864f
3f864f
  - improved input value validation in several file plug-ins (bug #453973)
3f864f
  - improved handling of corrupt or invalid XCF files
3f864f
  - guard against integer overflows in several file plug-ins (bug #451379)
3f864f
  - fixed handling of background alpha channel in XCF files (bug #443097)
3f864f
  - improved forward compatibility of the config parser
3f864f
  - fixed crash when previewing some animated brushes (bug #446005)
3f864f
3f864f
- remove obsolete psd-invalid-dimensions patch
3f864f
3f864f
* Wed Jun 27 2007 Nils Philippsen <nphilipp@redhat.com> - 2:2.2.15-3
3f864f
- refuse to open PSD files with insanely large dimensions (#244400, fix by Sven
3f864f
  Neumann)
3f864f
3f864f
* Wed Jun 13 2007 Nils Philippsen <nphilipp@redhat.com> - 2:2.2.15-2
3f864f
- require gutenprint-plugin or gimp-print-plugin (#243593)
3f864f
3f864f
* Thu May 31 2007 Nils Philippsen <nphilipp@redhat.com> - 2:2.2.15-1
3f864f
- version 2.2.15
3f864f
3f864f
  Bugs fixed in GIMP 2.2.15
3f864f
  =========================
3f864f
  
3f864f
  - fixed parsing of GFig files with CRLF line endings (bug #346988)
3f864f
  - guard against a possible stack overflow in the Sunras loader (bug #433902)
3f864f
  - fixed definition of datarootdir in gimptool-2.0 (bug #436386)
3f864f
  - fixed Perspective tool crash on Mac OS X (bug #349483)
3f864f
  - fixed area resizing in the Image Map plug-in (bug #439222)
3f864f
  - added missing library in gimptool-2.0 --libs output
3f864f
  - added new localizations: Occitan and Persian
3f864f
3f864f
- remove obsolete sunras-overflow patch
3f864f
3f864f
* Tue May 01 2007 Nils Philippsen <nphilipp@redhat.com> - 2:2.2.14-5
3f864f
- don't let gimp-plugin-mgr --uninstall fail %%pre/%%preun scriptlets (#238337)
3f864f
3f864f
* Mon Apr 30 2007 Nils Philippsen <nphilipp@redhat.com> - 2:2.2.14-4
3f864f
- fix plugin symlinks handling better (#238337)
3f864f
3f864f
* Mon Apr 30 2007 Nils Philippsen <nphilipp@redhat.com> - 2:2.2.14-3
3f864f
- don't erroneously delete symlinks to external plugins when updating (#238337)
3f864f
3f864f
* Mon Apr 30 2007 Nils Philippsen <nphilipp@redhat.com> - 2:2.2.14-2
3f864f
- avoid buffer overflow in sunras plugin (#238422)
3f864f
3f864f
* Tue Apr 24 2007 Nils Philippsen <nphilipp@redhat.com> - 2:2.2.14-1
3f864f
- version 2.2.14
3f864f
  
3f864f
  Bugs fixed in GIMP 2.2.14
3f864f
  =========================
3f864f
  
3f864f
  - avoid crashing on newer versions of the winicon format (bug #352899)
3f864f
  - fixed crash in Postscript plug-in (bug #353381)
3f864f
  - fixed handling of TABs in the text tool (bug #353132)
3f864f
  - fixed bug in Depth Merge plug-in (bug #355219)
3f864f
  - fixed bug in GimpDrawablePreview widget (bug #353639)
3f864f
  - fixed bug in Line Nove script (bug #357433)
3f864f
  - fixed bug in Ripple plug-in (bug #357431)
3f864f
  - save locale independent files from Fractal Explorer plug-in (bug #360095)
3f864f
  - fixed bug in Super Nova plug-in (bug #340073)
3f864f
  - be more robust against broken XCF files (bug #357809)
3f864f
  - fixed drawing issues in Image Map plug-in (bug #311621)
3f864f
  - fixed smoothing option in Fractal Explorer plug-in (bug #372671)
3f864f
  - load channels in the proper order when opening an XCF file (bug #378003)
3f864f
  - deal with floating selections in the Burn-In Animation script (bug #384096)
3f864f
  - fixed clipping in the GimpPreviewArea widget (bug #392692)
3f864f
  - fixed a potential crash in gimp-remote (bug #392111)
3f864f
  - work around a file-chooser problem on Windows (bug #398726)
3f864f
  - fixed markup of the gimp(1) manual page (bug #401145)
3f864f
  - fixed the fix for the right-to-left layout in layers dialog (bug #348347)
3f864f
  - fixed PSD save plug-in on 64bit architectures (bug #335130)
3f864f
  - added missing dependency in gimpui-2.0.pc file (bug #356394)
3f864f
  - fixed a crash in the PSD save plug-in (bug #395385)
3f864f
  - improved robustness of transform tool preview code (bug #420595)
3f864f
  - improved forward compatibility of XCF loader (bug #316207)
3f864f
  - don't crash in the Compressor plug-in if files can't be opened (bug #422444)
3f864f
  - fixed sensitivity of input fields in the Lighting plug-in (bug #359833)
3f864f
3f864f
- don't BuildRequire gimp-print/gutenprint anymore
3f864f
3f864f
* Mon Mar 26 2007 Nils Philippsen <nphilipp@redhat.com> - 2:2.2.13-3
3f864f
- use gutenprint per default for current development/future distribution
3f864f
  versions (Fedora >= 7, RHEL >= 6)
3f864f
3f864f
* Mon Mar 26 2007 Nils Philippsen <nphilipp@redhat.com> - 2:2.2.13-2
3f864f
- own used directories in gimp-devel (#233794)
3f864f
3f864f
* Wed Feb 21 2007 Nils Philippsen <nphilipp@redhat.com>
3f864f
- s/%%redhat/%%rhel/g
3f864f
3f864f
* Wed Feb 07 2007 Nils Philippsen <nphilipp@redhat.com>
3f864f
- really change defaults for use of modular X and lcms (#224156)
3f864f
3f864f
* Thu Feb 01 2007 Nils Philippsen <nphilipp@redhat.com>
3f864f
- change defaults for use of modular X and lcms (#224156)
3f864f
3f864f
* Fri Aug 25 2006 Nils Philippsen <nphilipp@redhat.com> - 2:2.2.13-1
3f864f
- version 2.2.13
3f864f
- remove obsolete filename patch
3f864f
3f864f
* Thu Aug 17 2006 Nils Philippsen <nphilipp@redhat.com> - 2:2.2.12-5
3f864f
- don't barf on empty /etc/gimp/plugins.d (#202808)
3f864f
3f864f
* Wed Aug 16 2006 Nils Philippsen <nphilipp@redhat.com> - 2:2.2.12-4
3f864f
- revamp scheme for integrating external plugins (#202545)
3f864f
3f864f
* Wed Aug 02 2006 Nils Philippsen <nphilipp@redhat.com> - 2:2.2.12-3
3f864f
- allow spaces in filenames when saving (#200888, patch by Michael Natterer)
3f864f
3f864f
* Tue Jul 18 2006 Nils Philippsen <nphilipp@redhat.com> - 2:2.2.12-2
3f864f
- split off libraries into gimp-libs to allow multilib installations
3f864f
- remove pre-release cruft
3f864f
3f864f
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2:2.2.12-1.1
3f864f
- rebuild
3f864f
3f864f
* Mon Jul 10 2006 Nils Philippsen <nphilipp@redhat.com> - 2:2.2.12-1
3f864f
- version 2.2.12
3f864f
- use %%dist/%%fedora/%%redhat
3f864f
- remove obsolete gcc4, libpng patches
3f864f
- show build options in %%prep
3f864f
- require gettext for building
3f864f
3f864f
* Wed May 31 2006 Nils Philippsen <nphilipp@redhat.com> - 2:2.2.11-5
3f864f
- cope with pygobject2/-devel being split off (#193368)
3f864f
3f864f
* Tue May 09 2006 Nils Philippsen <nphilipp@redhat.com> - 2:2.2.11-4
3f864f
- don't use long deprecated libpng API (#191027, patch by Manish Singh)
3f864f
3f864f
* Thu Apr 20 2006 Nils Philippsen <nphilipp@redhat.com> - 2:2.2.11-3
3f864f
- only use pkgconfig if needed in gimptool, require pkgconfig in devel
3f864f
  subpackage (#189314, #189371)
3f864f
3f864f
* Wed Apr 19 2006 Nils Philippsen <nphilipp@redhat.com> - 2:2.2.11-2
3f864f
- require pkgconfig (#189314)
3f864f
3f864f
* Tue Apr 18 2006 Nils Philippsen <nphilipp@redhat.com> - 2:2.2.11-1
3f864f
- version 2.2.11
3f864f
3f864f
* Fri Mar 03 2006 Nils Philippsen <nphilipp@redhat.com> - 2:2.2.10-4
3f864f
- use htmlview as default web browser (#183730, patch by Ben Levenson)
3f864f
- require hicolor-icon-theme (#182784, #182785)
3f864f
3f864f
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 2:2.2.10-2.2
3f864f
- bump again for double-long bug on ppc(64)
3f864f
3f864f
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 2:2.2.10-2.1
3f864f
- rebuilt for new gcc4.1 snapshot and glibc changes
3f864f
3f864f
* Tue Jan 10 2006 Nils Philippsen <nphilipp@redhat.com>
3f864f
- rebuild with lcms
3f864f
3f864f
* Thu Dec 29 2005 Nils Philippsen <nphilipp@redhat.com> - 2.2.10
3f864f
- version 2.2.10
3f864f
3f864f
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
3f864f
- rebuilt
3f864f
3f864f
* Fri Dec 09 2005 Nils Philippsen <nphilipp@redhat.com>
3f864f
- build with -fomit-frame-pointer to let assembly build with gcc 4.1
3f864f
3f864f
* Fri Dec 02 2005 Nils Philippsen <nphilipp@redhat.com>
3f864f
- build with gcc 4.1
3f864f
3f864f
* Tue Nov 08 2005 Nils Philippsen <nphilipp@redhat.com>
3f864f
- don't include .la files (#172626)
3f864f
- require findutils for building
3f864f
3f864f
* Wed Nov 02 2005 Nils Philippsen <nphilipp@redhat.com> - 2.2.9
3f864f
- version 2.2.9
3f864f
- first attempt at dealing with modular X
3f864f
3f864f
* Tue Aug 16 2005 Nils Philippsen <nphilipp@redhat.com>
3f864f
- rebuild
3f864f
3f864f
* Thu Jul 28 2005 Nils Philippsen <nphilipp@redhat.com>
3f864f
- fix gimptool manpage symlink
3f864f
3f864f
* Mon Jul 25 2005 Nils Philippsen <nphilipp@redhat.com> - 2.2.8
3f864f
- version 2.2.8
3f864f
- clean up file list generation a bit
3f864f
- gimptool manpage is in section 1 not 5
3f864f
- list auto-generated .pyc and .pyo files
3f864f
3f864f
* Fri May 13 2005 Nils Philippsen <nphilipp@redhat.com>
3f864f
- fix inline asm of MMX/SSE optimizations instead of using -mmmx and the like
3f864f
3f864f
* Fri May 13 2005 Nils Philippsen <nphilipp@redhat.com>
3f864f
- fix cpuinstructionset patch so that it actually uses CPU-specific
3f864f
  optimizations
3f864f
3f864f
* Wed May 11 2005 Nils Philippsen <nphilipp@redhat.com>
3f864f
- use -mmmx/sse/sse2/... only for the relevant source files so that extended
3f864f
  instruction sets only get used on suitable CPUs (#157409)
3f864f
3f864f
* Mon May 09 2005 Nils Philippsen <nphilipp@redhat.com>
3f864f
- version 2.2.7, fixes bug in SSE2 assembly for Lighten Only layer mode
3f864f
  (#145771) and various other bugs
3f864f
- on x86 and x86_64, use -msse and -msse2 to accomodate newer compilers
3f864f
3f864f
* Wed Apr 27 2005 Jeremy Katz <katzj@redhat.com> - 2:2.2.6-2
3f864f
- silence %%post
3f864f
3f864f
* Mon Apr 11 2005 Nils Philippsen <nphilipp@redhat.com>
3f864f
- version 2.2.6
3f864f
3f864f
* Tue Mar 29 2005 Nils Philippsen <nphilipp@redhat.com>
3f864f
- revert gtk requirement change
3f864f
3f864f
* Mon Mar 28 2005 Matthias Clasen <mclasen@redhat.com>
3f864f
- Rebuild against newer libexif
3f864f
3f864f
* Mon Mar 28 2005 Christopher Aillon <caillon@redhat.com>
3f864f
- rebuilt
3f864f
3f864f
* Fri Mar 25 2005 Christopher Aillon <caillon@redhat.com>
3f864f
- Update the GTK+ theme icon cache on (un)install
3f864f
3f864f
* Tue Mar 22 2005 Nils Philippsen <nphilipp@redhat.com>
3f864f
- install convenience symlinks for man pages
3f864f
3f864f
* Fri Mar 11 2005 Nils Philippsen <nphilipp@redhat.com>
3f864f
- don't refer to freefonts and sharefonts in %%description
3f864f
3f864f
* Wed Mar 09 2005 Nils Philippsen <nphilipp@redhat.com>
3f864f
- prevent gifload plugin from crashing when loading files with bogus frame size
3f864f
  (#150677, #150678)
3f864f
3f864f
* Wed Mar 02 2005 Nils Philippsen <nphilipp@redhat.com>
3f864f
- don't barf when building with gcc 4.0
3f864f
3f864f
* Wed Feb 23 2005 Nils Philippsen <nphilipp@redhat.com>
3f864f
- version 2.2.4
3f864f
- require newer versions of gtk2 (#143840), glib2 and pango
3f864f
3f864f
* Sat Jan 29 2005 Nils Philippsen <nphilipp@redhat.com>
3f864f
- make desktop icon themeable (#146486)
3f864f
3f864f
* Mon Jan 24 2005 Nils Philippsen <nphilipp@redhat.com>
3f864f
- version 2.2.3
3f864f
- remove exifmarkerlength patch (improved version applied upstream)
3f864f
3f864f
* Mon Jan 17 2005 Nils Philippsen <nphilipp@redhat.com>
3f864f
- clip thumbnail quality at 75 and don't barf on saving images at quality 0
3f864f
  (fix patch for #145100)
3f864f
3f864f
* Fri Jan 14 2005 Nils Philippsen <nphilipp@redhat.com>
3f864f
- avoid writing excessively long EXIF markers (#145100)
3f864f
3f864f
* Tue Jan 11 2005 Nils Philippsen <nphilipp@redhat.com>
3f864f
- version 2.2.2
3f864f
- autogenerate %%microver
3f864f
3f864f
* Wed Dec 29 2004 Nils Philippsen <nphilipp@redhat.com>
3f864f
- version 2.2.1
3f864f
- pygimp-logo.png included in tarball again
3f864f
3f864f
* Mon Dec 20 2004 Nils Philippsen <nphilipp@redhat.com>
3f864f
- version 2.2.0
3f864f
- include pygimp-logo.png missing from tarball
3f864f
3f864f
* Fri Dec 10 2004 Nils Philippsen <nphilipp@redhat.com>
3f864f
- use xsane plugin (un)install script if available
3f864f
3f864f
* Mon Nov 22 2004 Nils Philippsen <nphilipp@redhat.com>
3f864f
- version 2.2-pre2
3f864f
3f864f
* Thu Nov 18 2004 Nils Philippsen <nphilipp@redhat.com>
3f864f
- obsolete fixed gimp-perl version to be able to reintroduce it at a
3f864f
  later point
3f864f
- use correct dir in source URL
3f864f
3f864f
* Wed Nov 03 2004 Nils Philippsen <nphilipp@redhat.com>
3f864f
- version 2.2-pre1
3f864f
3f864f
* Sun Oct 24 2004 Nils Philippsen <nphilipp@redhat.com>
3f864f
- remove unnecessary echo statement
3f864f
3f864f
* Fri Oct 15 2004 Nils Philippsen <nphilipp@redhat.com>
3f864f
- version 2.1.7 unstable
3f864f
3f864f
* Thu Oct 14 2004 Nils Philippsen <nphilipp@redhat.com>
3f864f
- catch wrong values of bpp in BMP plugin (#135675), don't forget 1bpp and
3f864f
  24bpp (d'oh)
3f864f
3f864f
* Thu Sep 30 2004 Christopher Aillon <caillon@redhat.com>
3f864f
- PreReq desktop-file-utils >= 0.9
3f864f
3f864f
* Sun Sep 26 2004 Nils Philippsen <nphilipp@redhat.com>
3f864f
- fix post/postun requirements
3f864f
3f864f
* Sat Sep 25 2004 Nils Philippsen <nphilipp@redhat.com>
3f864f
- version 2.0.5
3f864f
3f864f
* Thu Sep 16 2004 Nils Philippsen <nphilipp@redhat.com>
3f864f
- rename desktop title (#132548)
3f864f
3f864f
* Thu Aug 26 2004 Nils Philippsen <nphilipp@redhat.com>
3f864f
- add MimeType to desktop file
3f864f
- run update-desktop-database in %%post/%%postun
3f864f
- don't make stunts with -32 or -64 postfixed binaries anymore
3f864f
- require /sbin/ldconfig and /usr/bin/update-desktop-database
3f864f
3f864f
* Tue Aug 10 2004 Nils Philippsen <nphilipp@redhat.com>
3f864f
- build requires libwmf-devel
3f864f
3f864f
* Fri Aug 06 2004 Nils Philippsen <nphilipp@redhat.com>
3f864f
- version 2.0.4
3f864f
3f864f
* Wed Aug 04 2004 Nils Philippsen <nphilipp@redhat.com>
3f864f
- rebuild to pick up new libcroco
3f864f
3f864f
* Thu Jul 22 2004 Nils Philippsen <nphilipp@redhat.com>
3f864f
- version 2.0.3
3f864f
- buildreq gtk2-devel >= 2.4.0
3f864f
- use -32 or -64 postfixed binaries if available
3f864f
3f864f
* Fri Jul 02 2004 Nils Philippsen <nphilipp@redhat.com>
3f864f
- use included desktop (#126723), application-registry, mime-info and
3f864f
  icon files
3f864f
- remove perl cruft (Gimp-Perl is an external package now)
3f864f
- further spec file cleaning
3f864f
3f864f
* Thu Jun 24 2004 Nils Philippsen <nphilipp@redhat.com>
3f864f
- version 2.0.2
3f864f
- fix summary (#126682)
3f864f
3f864f
* Tue Jun 22 2004 Nils Philippsen <nphilipp@redhat.com>
3f864f
- build with gcc34 patch (sopwith)
3f864f
3f864f
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
3f864f
- rebuilt
3f864f
3f864f
* Mon May 31 2004 Nils Philippsen <nphilipp@redhat.com>
3f864f
- rebuild for Rawhide
3f864f
3f864f
* Wed May 26 2004 Nils Philippsen <nphilipp@redhat.com>
3f864f
- add libjpeg-devel to BuildRequires (#121236)
3f864f
- spit out slightly more informative help message if gimp-help is missing
3f864f
  (#124307)
3f864f
3f864f
* Fri May 21 2004 Matthias Clasen <mclasen@redhat.com>
3f864f
- rebuild
3f864f
3f864f
* Wed Apr 21 2004 Seth Nickell <snickell@redhat.com>
3f864f
- Rename menu entry for .desktop file to "GIMP Image Editor"
3f864f
3f864f
* Tue Apr 20 2004 Nils Philippsen <nphilipp@redhat.com>
3f864f
- update BuildRequires/Requires (#121236)
3f864f
3f864f
* Wed Apr 14 2004 Nils Philippsen <nphilipp@redhat.com>
3f864f
- version 2.0.1
3f864f
3f864f
* Sun Mar 28 2004 Nils Philippsen <nphilipp@redhat.com>
3f864f
- fix slide script-fu
3f864f
3f864f
* Sat Mar 27 2004 Nils Philippsen <nphilipp@redhat.com>
3f864f
- bump some Build/Requires: versions
3f864f
- change desktop file to actually run gimp-2.0
3f864f
3f864f
* Wed Mar 24 2004 Nils Philippsen <nphilipp@redhat.com>
3f864f
- version 2.0.0
3f864f
3f864f
* Tue Mar 23 2004 Nils Philippsen <nphilipp@redhat.com>
3f864f
- version 2.0rc1
3f864f
3f864f
* Wed Mar 17 2004 Nils Philippsen <nphilipp@redhat.com>
3f864f
- version 2.0pre4
3f864f
3f864f
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
3f864f
- rebuilt
3f864f
3f864f
* Wed Feb 18 2004 Tim Waugh <twaugh@redhat.com>
3f864f
- Added epoch to gimp-perl obsoletes tag.
3f864f
3f864f
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
3f864f
- rebuilt
3f864f
3f864f
* Fri Feb 13 2004 Nils Philippsen <nphilipp@redhat.com>
3f864f
- fix typo in %%_enable_print macro
3f864f
- install convenience symlinks (gimp, gimp-remote, gimptool)
3f864f
3f864f
* Sun Feb 08 2004 Nils Philippsen <nphilipp@redhat.com>
3f864f
- require gtk2, glib2 >= 2.3.0, pango >= 1.3.0
3f864f
3f864f
* Fri Feb 06 2004 Nils Philippsen <nphilipp@redhat.com>
3f864f
- version 2.0pre3
3f864f
- update buildroot patch
3f864f
- enable building static libs (old default)
3f864f
- have '--define'able enable_*
3f864f
- disable building of print plugin, it's in another package
3f864f
3f864f
* Fri Jan 30 2004 Nils Philippsen <nphilipp@redhat.com>
3f864f
- rebuild against new libcroco
3f864f
3f864f
* Sat Jan 24 2004 Nils Philippsen <nphilipp@redhat.com>
3f864f
- require %%{epoch}:%%{version}-%%{release} of base package in sub packages
3f864f
- rather use %%{?smp_mflags} to actually exploit SMP build systems
3f864f
3f864f
* Fri Jan 23 2004 Nils Philippsen <nphilipp@redhat.com>
3f864f
- set epoch to 1 to upgrade old gimp rpms
3f864f
- obsolete gimp2-devel, gimp-beta-devel to allow upgrade of 3rd party repo
3f864f
  packages, gimp-perl to upgrade old package
3f864f
3f864f
* Fri Jan 23 2004 Nils Philippsen <nphilipp@redhat.com>
3f864f
- fix binary name in desktop file ("gimp-1.3" until gimp-2.0 becomes final, to
3f864f
  allow coexistence with old gimp-1.x packages)
3f864f
- system intltool buildrequires perl-XML-Parser, work around that, yay
3f864f
3f864f
* Thu Jan 22 2004 Nils Philippsen <nphilipp@redhat.com>
3f864f
- build as gimp, not gimp-beta
3f864f
- remove all the beta blurbs
3f864f
- fix automake dependency
3f864f
- fix libtool usage
3f864f
3f864f
* Tue Jan 20 2004 Nils Philippsen <nphilipp@redhat.com>
3f864f
- version 2.0pre2
3f864f
3f864f
* Sun Jan 11 2004 Nils Philippsen <nphilipp@redhat.com>
3f864f
- version 2.0pre1
3f864f
3f864f
* Tue Nov 25 2003 Nils Philippsen <nphilipp@redhat.com>
3f864f
- version 1.3.23 beta
3f864f
3f864f
* Fri Nov 21 2003 Nils Philippsen <nphilipp@redhat.com>
3f864f
- version 1.3.22 beta
3f864f
3f864f
* Thu Oct 16 2003 Nils Philippsen <nphilipp@redhat.com>
3f864f
- leave gtk-doc documentation in place
3f864f
- move gimptool to main package
3f864f
- own some directories previously not owned
3f864f
3f864f
* Tue Oct 07 2003 Nils Philippsen <nphilipp@redhat.com>
3f864f
- version 1.3.21 beta
3f864f
3f864f
* Thu Sep 11 2003 Nils Philippsen <nphilipp@redhat.com>
3f864f
- version 1.3.20 beta
3f864f
3f864f
* Mon Aug 11 2003 Nils Philippsen <nphilipp@redhat.com>
3f864f
- version 1.3.18 beta
3f864f
3f864f
* Thu Jul 10 2003 Nils Philippsen <nphilipp@redhat.com>
3f864f
- don't specify file modes with defattr
3f864f
3f864f
* Wed Jul 09 2003 Nils Philippsen <nphilipp@redhat.com>
3f864f
- use system libtool
3f864f
3f864f
* Fri Jul 04 2003 Nils Philippsen <nils@redhat.de>
3f864f
- version 1.3.16 beta
3f864f
- update buildroot patch
3f864f
3f864f
* Tue Mar 25 2003 Nils Philippsen <nils@lisas.de>
3f864f
- version 1.3.13 beta
3f864f
- use automake-1.7
3f864f
3f864f
* Tue Feb 18 2003 Nils Philippsen <nils@lisas.de>
3f864f
- version 1.3.12 beta
3f864f
3f864f
* Fri Oct 25 2002 Nils Philippsen <nils@lisas.de>
3f864f
- version 1.3.9 beta
3f864f
- move desktop file to /usr/share/applications
3f864f
3f864f
* Wed Aug 28 2002 Nils Philippsen <nils@redhat.de>
3f864f
- version 1.3.8 beta
3f864f
- update and fix buildroot patch, don't run automake/autoconf
3f864f
3f864f
* Mon Jul 08 2002 Nils Philippsen <nils@redhat.de>
3f864f
- version 1.3.7 beta
3f864f
- use automake 1.5 and autoconf 2.53
3f864f
3f864f
* Fri Mar 15 2002 Nils Philippsen <nils@redhat.de>
3f864f
- version 1.3.4 beta
3f864f
3f864f
* Thu Jul 19 2001 Tim Powers <timp@redhat.com>
3f864f
- remove the perl temp files to pacify rpmlint
3f864f
3f864f
* Tue Jun 19 2001 Matt Wilson <msw@redhat.com>
3f864f
- added versioned requires to gimp-devel and gimp-perl
3f864f
3f864f
* Tue Apr  3 2001 Matt Wilson <msw@redhat.com>
3f864f
- added gimp-1.2.1-locale.patch, which I've checked in to gimp CVS, to
3f864f
  correctly set up the locale in plug-ins (#34214)
3f864f
3f864f
* Mon Apr  2 2001 Preston Brown <pbrown@redhat.com>
3f864f
- some gimp-perl files weren't defattr'd (#34325)
3f864f
3f864f
* Fri Mar 30 2001 Trond Eivind Glomsrød <teg@redhat.com>
3f864f
- Don't include embedxpm, as it depends on a non-included perl module (#=33249)
3f864f
- move gimpdoc and xcftopnm to gimp-perl, as they are dependant on the perl Gimp
3f864f
  module
3f864f
3f864f
* Thu Mar 01 2001 Owen Taylor <otaylor@redhat.com>
3f864f
- Rebuild for GTK+-1.2.9 include paths
3f864f
3f864f
* Mon Jan 22 2001 Matt Wilson <msw@redhat.com>
3f864f
- 1.2.1
3f864f
3f864f
* Mon Dec 25 2000 Matt Wilson <msw@redhat.com>
3f864f
- 1.2.0
3f864f
3f864f
* Wed Dec 20 2000 Matt Wilson <msw@redhat.com>
3f864f
- 1.1.31
3f864f
3f864f
* Thu Dec 14 2000 Matt Wilson <msw@redhat.com>
3f864f
- 1.1.30
3f864f
- merge changes from CVS into rpm-4.0 style spec file
3f864f
- removed va_arg patch
3f864f
3f864f
* Mon Aug 21 2000 Matt Wilson <msw@redhat.com>
3f864f
- 1.1.25
3f864f
3f864f
* Fri Aug 11 2000 Jonathan Blandford <jrb@redhat.com>
3f864f
- Up Epoch and release
3f864f
3f864f
* Tue Aug  8 2000 Matt Wilson <msw@redhat.com>
3f864f
- fixed directory mode on %%{_defaultdocdir}/gimp-%%{version}
3f864f
3f864f
* Wed Aug  2 2000 Matt Wilson <msw@redhat.com>
3f864f
- rebuild against new libpng
3f864f
3f864f
* Mon Jul 31 2000 Matt Wilson <msw@redhat.com>
3f864f
- muck with modules filelist generation to avoid getting files owned by
3f864f
  two packages
3f864f
3f864f
* Mon Jul 17 2000 Matt Wilson <msw@redhat.com>
3f864f
- disable aa plugin
3f864f
- moved the group back to Applications/Multimedia
3f864f
- added desktop entry back into the file list
3f864f
3f864f
* Thu Jul 13 2000 Prospector <bugzilla@redhat.com>
3f864f
- automatic rebuild
3f864f
3f864f
* Sat Jul  1 2000 Matt Wilson <msw@redhat.com>
3f864f
- 1.1.24
3f864f
3f864f
* Sat Jun 17 2000 Matt Wilson <msw@redhat.com>
3f864f
- use root, not bin for the default owner.
3f864f
3f864f
* Fri Jun 16 2000 Preston Brown <pbrown@redhat.com>
3f864f
- add back missing system .desktop entry
3f864f
3f864f
* Sat Jun 10 2000 Matt Wilson <msw@redhat.com>
3f864f
- rebuilt against fixed gcc
3f864f
3f864f
* Mon Jun  5 2000 Matt Wilson <msw@redhat.com>
3f864f
- defattr for gimp-perl
3f864f
3f864f
* Sun Jun  4 2000 Matt Wilson <msw@redhat.com>
3f864f
- drop out all of \.a$ from the main package list
3f864f
3f864f
* Sat Jun  3 2000 Matt Wilson <msw@redhat.com>
3f864f
- 1.1.23
3f864f
- use __NO_MATH_INLINES for now on ix86
3f864f
- massive FHS surgery
3f864f
3f864f
* Tue May 16 2000 Matt Wilson <msw@redhat.com>
3f864f
- 1.1.22
3f864f
3f864f
* Mon Apr 24 2000 Matt Wilson <msw@redhat.com>
3f864f
- 1.1.20
3f864f
3f864f
* Fri Apr 14 2000 Matt Wilson <msw@redhat.com>
3f864f
- include subdirs in the help find
3f864f
- remove gimp-help-files generation
3f864f
- both gimp and gimp-perl own prefix/lib/gimp/1.1/plug-ins
3f864f
- both gimp and gimp-devel own prefix/lib/gimp/1.1/modules
3f864f
3f864f
* Thu Apr 13 2000 Matt Wilson <msw@redhat.com>
3f864f
- 1.1.19
3f864f
- get all .mo files
3f864f
3f864f
* Wed Jan 19 2000 Gregory McLean <gregm@comstar.net>
3f864f
- Version 1.1.15
3f864f
3f864f
* Wed Dec 22 1999 Gregory McLean <gregm@comstar.net>
3f864f
- Version 1.1.14
3f864f
- Added some auto %%files section generation scriptlets