0b49ef
%if 0%{?rhel}
0b49ef
%bcond_with workshop
0b49ef
%else
0b49ef
%bcond_without workshop
0b49ef
%endif
0b49ef
0b49ef
# skip all tests
0b49ef
%global skip_all_checks 1
0b49ef
# skip tests known to be problematic in a specific version
0b49ef
%global skip_checks_version 0.2.0
0b49ef
# for some reason or other comparing generated to reference images segfaults in
0b49ef
# two test cases
0b49ef
# Well, now it is all of them, not just two. :/
0b49ef
%global skip_checks compositions/run-*.xml.sh
0b49ef
0b49ef
Summary:    A graph based image processing framework
0b49ef
Name:       gegl
0b49ef
Version:    0.2.0
0b49ef
Release:    39%{?dist}
0b49ef
0b49ef
# Compute some version related macros
0b49ef
# Ugly hack, you need to get your quoting backslashes/percent signs straight
0b49ef
%global major %(ver=%version; echo ${ver%%%%.*})
0b49ef
%global minor %(ver=%version; ver=${ver#%major.}; echo ${ver%%%%.*})
0b49ef
%global micro %(ver=%version; ver=${ver#%major.%minor.}; echo ${ver%%%%.*})
0b49ef
%global apiver %major.%minor
0b49ef
0b49ef
# The binary is under the GPL, while the libs are under LGPL
0b49ef
License:    LGPLv3+ and GPLv3+
0b49ef
URL:        http://www.gegl.org/
0b49ef
Source0:    http://download.gimp.org/pub/gegl/%{apiver}/%{name}-%{version}.tar.bz2
0b49ef
Patch0:     gegl-0.2.0-lua-5.2.patch
0b49ef
Patch1:     gegl-0.2.0-CVE-2012-4433.patch
0b49ef
Patch2:     gegl-0.2.0-remove-src-over-op.patch
0b49ef
Patch3:     0001-matting-levin-Fix-the-build-with-recent-suitesparse-.patch
0b49ef
Patch4:     gegl-0.2.0-linker-flags.patch
0b49ef
Patch5:     gegl-0.2.0-libopenraw.patch
0b49ef
Patch6:     gegl-0.2.0-ppc64-rand-fix.patch
0b49ef
Patch7:     gegl-build-without-exiv2.patch
0b49ef
BuildRequires:  asciidoc
0b49ef
BuildRequires:  babl-devel >= 0.1.10
0b49ef
BuildRequires:  cairo-devel
0b49ef
BuildRequires:  enscript
0b49ef
BuildRequires:  gdk-pixbuf2-devel >= 2.18.0
0b49ef
BuildRequires:  gcc
0b49ef
BuildRequires:  gcc-c++
0b49ef
BuildRequires:  glib2-devel >= 2.28.0
0b49ef
BuildRequires:  graphviz
0b49ef
BuildRequires:  gtk2-devel >= 2.18.0
0b49ef
BuildRequires:  intltool >= 0.40.1
0b49ef
BuildRequires:  jasper-devel >= 1.900.1
0b49ef
%if %{with workshop}
0b49ef
BuildRequires:  lensfun-devel >= 0.2.5
0b49ef
%endif
0b49ef
BuildRequires:  libjpeg-devel
0b49ef
BuildRequires:  libopenraw-devel >= 0.0.5
0b49ef
BuildRequires:  libpng-devel
0b49ef
BuildRequires:  librsvg2-devel >= 2.14.0
0b49ef
BuildRequires:  libspiro-devel
0b49ef
BuildRequires:  libv4l-devel
0b49ef
BuildRequires:  lua-devel >= 5.1.0
0b49ef
BuildRequires:  OpenEXR-devel
0b49ef
BuildRequires:  pango-devel
0b49ef
BuildRequires:  perl-devel
0b49ef
BuildRequires:  pkgconfig
0b49ef
BuildRequires:  rubygems
0b49ef
BuildRequires:  SDL-devel
0b49ef
BuildRequires:  suitesparse-devel
0b49ef
Requires:       babl%{?_isa} >= 0.1.10
0b49ef
Requires:       dcraw
0b49ef
0b49ef
%description
0b49ef
GEGL (Generic Graphics Library) is a graph based image processing framework. 
0b49ef
GEGLs original design was made to scratch GIMPs itches for a new
0b49ef
compositing and processing core. This core is being designed to have
0b49ef
minimal dependencies. and a simple well defined API.
0b49ef
0b49ef
%if %{with workshop}
0b49ef
%package operations-workshop
0b49ef
Summary:    Experimental operations for GEGL
0b49ef
Requires:   %{name}%{_isa} = %{version}-%{release}
0b49ef
0b49ef
%description operations-workshop
0b49ef
This package contains experimental operations for GEGL. If used they may yield
0b49ef
unwanted results, or even crash. You're warned!
0b49ef
%endif
0b49ef
0b49ef
%package devel
0b49ef
Summary:    Headers for developing programs that will use %{name}
0b49ef
Requires:   %{name}%{_isa} = %{version}-%{release}
0b49ef
Requires:   pkgconfig
0b49ef
Requires:   babl-devel%{_isa}
0b49ef
Requires:   glib2-devel%{_isa}
0b49ef
0b49ef
%description devel
0b49ef
This package contains the libraries and header files needed for
0b49ef
developing with %{name}.
0b49ef
0b49ef
%prep
0b49ef
%autosetup -p1
0b49ef
0b49ef
%build
0b49ef
# use hardening compiler/linker flags because gegl is likely to deal with
0b49ef
# untrusted input
0b49ef
%global _hardened_build 1
0b49ef
0b49ef
# Needed by Ruby 1.9.3.
0b49ef
export LANG=en_US.utf8
0b49ef
0b49ef
%configure \
0b49ef
%if %{with workshop}
0b49ef
    --enable-workshop \
0b49ef
%else
0b49ef
    --disable-workshop \
0b49ef
%endif
0b49ef
    --with-pic \
0b49ef
    --with-gio \
0b49ef
    --with-gtk \
0b49ef
    --with-cairo \
0b49ef
    --with-pango \
0b49ef
    --with-pangocairo \
0b49ef
    --with-gdk-pixbuf \
0b49ef
    --with-lensfun \
0b49ef
    --with-libjpeg \
0b49ef
    --with-libpng \
0b49ef
    --with-librsvg \
0b49ef
    --with-openexr \
0b49ef
    --with-sdl \
0b49ef
    --with-libopenraw \
0b49ef
    --with-jasper \
0b49ef
    --with-graphviz \
0b49ef
    --with-lua \
0b49ef
    --without-libavformat \
0b49ef
    --with-libv4l \
0b49ef
    --with-libspiro \
0b49ef
    --with-exiv2 \
0b49ef
    --with-umfpack \
0b49ef
    --disable-static \
0b49ef
    --disable-gtk-doc \
0b49ef
    --disable-silent-rules
0b49ef
0b49ef
%make_build
0b49ef
0b49ef
%install
0b49ef
%make_install
0b49ef
pushd operations
0b49ef
# favor non-workshop binaries
0b49ef
make SUBDIRS= install INSTALL='install -p'
0b49ef
for d in */; do
0b49ef
    d="${d%/}"
0b49ef
    if [ "$d" != "workshop" ]; then
0b49ef
        pushd "$d"
0b49ef
        make DESTDIR=%{buildroot} install INSTALL='install -p'
0b49ef
        popd
0b49ef
    fi
0b49ef
done
0b49ef
popd
0b49ef
0b49ef
rm -f %{buildroot}%{_libdir}/*.la
0b49ef
rm -f %{buildroot}%{_libdir}/gegl-%{apiver}/*.la
0b49ef
0b49ef
# keep track of workshop/non-workshop operations
0b49ef
opsdir="$PWD/operations"
0b49ef
0b49ef
files_ws="$PWD/operations_files_workshop"
0b49ef
files_non_ws="$PWD/operations_files"
0b49ef
non_ws_filenames_file="$PWD/non_ws_filenames"
0b49ef
0b49ef
find "$opsdir" -path "$opsdir/workshop" -prune -o -regex '.*/\.libs/.*\.so' -printf '%f\n' > "$non_ws_filenames_file"
0b49ef
0b49ef
echo '%%defattr(-, root, root, -)' > "$files_non_ws"
0b49ef
echo '%%defattr(-, root, root, -)' > "$files_ws"
0b49ef
0b49ef
pushd %{buildroot}%{_libdir}/gegl-%{apiver}
0b49ef
for opfile in *.so; do
0b49ef
    if fgrep -q -x "$opfile" "$non_ws_filenames_file"; then
0b49ef
        echo "%{_libdir}/gegl-%{apiver}/$opfile" >> "$files_non_ws"
0b49ef
    else
0b49ef
        echo "%{_libdir}/gegl-%{apiver}/$opfile" >> "$files_ws"
0b49ef
    fi
0b49ef
done
0b49ef
popd
0b49ef
0b49ef
%find_lang %{name}-%{apiver}
0b49ef
0b49ef
%check
0b49ef
%if 0%{skip_all_checks} < 1
0b49ef
# skip tests known to be problematic in a specific version
0b49ef
%if "%version" == "%skip_checks_version"
0b49ef
pushd tests
0b49ef
for problematic in %skip_checks; do
0b49ef
    rm -f "$problematic"
0b49ef
    cat << EOF > "$problematic"
0b49ef
#!/bin/sh
0b49ef
echo Skipping test "$problematic"
0b49ef
EOF
0b49ef
    chmod +x "$problematic"
0b49ef
done
0b49ef
popd
0b49ef
%endif
0b49ef
make check
0b49ef
%endif
0b49ef
0b49ef
%ldconfig_scriptlets
0b49ef
0b49ef
%files -f operations_files -f %{name}-%{apiver}.lang
0b49ef
%doc AUTHORS ChangeLog COPYING COPYING.LESSER NEWS README
0b49ef
%{_bindir}/gegl
0b49ef
%{_libdir}/*.so.*
0b49ef
%dir %{_libdir}/gegl-%{apiver}/
0b49ef
0b49ef
%if %{with workshop}
0b49ef
%files operations-workshop -f operations_files_workshop
0b49ef
%endif
0b49ef
0b49ef
%files devel
0b49ef
%doc %{_datadir}/gtk-doc/
0b49ef
%{_includedir}/gegl-%{apiver}/
0b49ef
%{_libdir}/*.so
0b49ef
%{_libdir}/pkgconfig/%{name}-%{apiver}.pc
0b49ef
0b49ef
%changelog
0b49ef
* Mon Nov 04 2019 Jan Grulich <jgrulich@redhat.com> - 0.2.0-39
0b49ef
- Build without exiv2
0b49ef
  Resolves: bz#1767748
0b49ef
0b49ef
* Wed Feb 21 2018 Josef Ridky <jridky@redhat.com> - 0.2.0-38
0b49ef
- Remove Group tag from spec file
0b49ef
0b49ef
* Tue Feb 20 2018 Nils Philippsen <nils@tiptoe.de> - 0.2.0-37
0b49ef
- require gcc, gcc-c++ for building
0b49ef
0b49ef
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.0-36
0b49ef
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
0b49ef
0b49ef
* Sat Feb 03 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.2.0-35
0b49ef
- Switch to %%ldconfig_scriptlets
0b49ef
0b49ef
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.0-34
0b49ef
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
0b49ef
0b49ef
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.0-33
0b49ef
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
0b49ef
0b49ef
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.0-32
0b49ef
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
0b49ef
0b49ef
* Sun Dec 04 2016 Josef Ridky <jridky@redhat.com> - 0.2.0-31
0b49ef
- rebuild for jasper library
0b49ef
0b49ef
* Sat Dec 03 2016 Julian Sikorski <belegdol@fedoraproject.org> - 0.2.0-30
0b49ef
- Fixed building with libopenraw-0.1
0b49ef
- Added rubygems to BuildRequires to fix build error
0b49ef
- Modernised the .spec file a bit
0b49ef
- Disabled silent build
0b49ef
0b49ef
* Wed Apr 27 2016 Nils Philippsen <nils@redhat.com> - 0.2.0-29
0b49ef
- require dcraw (#1279143)
0b49ef
0b49ef
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.0-28
0b49ef
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
0b49ef
0b49ef
* Tue Jan 19 2016 Nils Philippsen <nils@redhat.com>
0b49ef
- use %%global instead of %%define
0b49ef
0b49ef
* Sun Jan 03 2016 Rex Dieter <rdieter@fedoraproject.org> 0.2.0-27
0b49ef
- rebuild (lensfun)
0b49ef
0b49ef
* Wed Jun 24 2015 Rex Dieter <rdieter@fedoraproject.org> - 0.2.0-26
0b49ef
- rebuild (exiv2)
0b49ef
0b49ef
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.0-25
0b49ef
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
0b49ef
0b49ef
* Thu Jun 11 2015 Nils Philippsen <nils@redhat.com> - 0.2.0-24
0b49ef
- rebuild for suitesparse-4.4.4
0b49ef
0b49ef
* Thu May 14 2015 Nils Philippsen <nils@redhat.com> - 0.2.0-23
0b49ef
- rebuild for lensfun-0.3.1
0b49ef
0b49ef
* Thu May 07 2015 Debarshi Ray <rishi@fedoraproject.org> - 0.2.0-22
0b49ef
- Add -lm to linker flags because of sqrt
0b49ef
0b49ef
* Thu Dec 04 2014 Kalev Lember <kalevlember@gmail.com> - 0.2.0-21
0b49ef
- Fix the build with recent suitesparse versions
0b49ef
0b49ef
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.0-20
0b49ef
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
0b49ef
0b49ef
* Tue Aug 05 2014 Nils Philippsen <nils@redhat.com> - 0.2.0-19
0b49ef
- update source URL
0b49ef
0b49ef
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.0-18
0b49ef
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
0b49ef
0b49ef
* Fri Dec 06 2013 Nils Philippsen <nils@redhat.com> - 0.2.0-17
0b49ef
- rebuild (suitesparse)
0b49ef
0b49ef
* Wed Dec 04 2013 Nils Philippsen <nils@redhat.com> - 0.2.0-16
0b49ef
- remove BR: w3m, it's only needed for "make dist"
0b49ef
0b49ef
* Tue Dec 03 2013 Rex Dieter <rdieter@fedoraproject.org> - 0.2.0-15
0b49ef
- rebuild (exiv2)
0b49ef
0b49ef
* Wed Nov 27 2013 Rex Dieter <rdieter@fedoraproject.org> - 0.2.0-14
0b49ef
- rebuild (openexr)
0b49ef
0b49ef
* Thu Sep 12 2013 Kalev Lember <kalevlember@gmail.com> - 0.2.0-13
0b49ef
- Rebuilt for ilmbase soname bump
0b49ef
0b49ef
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.0-12
0b49ef
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
0b49ef
0b49ef
* Mon Jul 01 2013 Nils Philippsen <nils@redhat.com> - 0.2.0-11
0b49ef
- replace lua-5.2 patch by upstream commit
0b49ef
- fix buffer overflow in and add plausibility checks to ppm-load op
0b49ef
  (CVE-2012-4433)
0b49ef
- fix multi-lib issue in generated documentation
0b49ef
0b49ef
* Wed May 15 2013 Tom Callaway <spot@fedoraproject.org> - 0.2.0-10
0b49ef
- rebuild for lua 5.2
0b49ef
- disable check suite (so broken)
0b49ef
0b49ef
* Sun Mar 10 2013 Rex Dieter <rdieter@fedoraproject.org> - 0.2.0-9
0b49ef
- rebuild (OpenEXR)
0b49ef
0b49ef
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.0-8
0b49ef
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
0b49ef
0b49ef
* Fri Jan 18 2013 Adam Tkac <atkac redhat com> - 0.2.0-7
0b49ef
- rebuild due to "jpeg8-ABI" feature drop
0b49ef
0b49ef
* Fri Dec 21 2012 Adam Tkac <atkac redhat com> - 0.2.0-6
0b49ef
- rebuild against new libjpeg
0b49ef
0b49ef
* Fri Oct 19 2012 Nils Philippsen <nils@redhat.com> - 0.2.0-5
0b49ef
- don't catch "make check" errors but skip known problematic tests
0b49ef
0b49ef
* Fri Oct 19 2012 Nils Philippsen <nils@redhat.com> - 0.2.0-4
0b49ef
- don't require lensfun-devel for building without workshop ops
0b49ef
0b49ef
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.0-3
0b49ef
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
0b49ef
0b49ef
* Wed May 02 2012 Rex Dieter <rdieter@fedoraproject.org> - 0.2.0-2
0b49ef
- rebuild (exiv2)
0b49ef
0b49ef
* Tue Apr 03 2012 Nils Philippsen <nils@redhat.com> - 0.2.0-1
0b49ef
- version 0.2.0
0b49ef
- split off workshop (i.e. experimental) operations
0b49ef
- don't build/package workshop operations on EL
0b49ef
0b49ef
* Mon Feb 06 2012 Vít Ondruch <vondruch@redhat.com> - 0.1.8-3
0b49ef
- Rebuilt for Ruby 1.9.3.
0b49ef
0b49ef
* Tue Jan 10 2012 Nils Philippsen <nils@redhat.com> - 0.1.8-2
0b49ef
- rebuild for gcc 4.7
0b49ef
0b49ef
* Tue Dec 13 2011 Nils Philippsen <nils@redhat.com> - 0.1.8-1
0b49ef
- version 0.1.8
0b49ef
- drop all patches
0b49ef
- add BRs: gdk-pixbuf2-devel, lensfun-devel
0b49ef
- update BR version: glib2-devel
0b49ef
- use %%_hardened_build macro instead of supplying our own hardening flags
0b49ef
0b49ef
* Thu Nov 17 2011 Nils Philippsen <nils@redhat.com> - 0.1.6-5
0b49ef
- don't require gtk-doc (#707554)
0b49ef
0b49ef
* Mon Nov 07 2011 Nils Philippsen <nils@redhat.com> - 0.1.6-4
0b49ef
- rebuild (libpng)
0b49ef
0b49ef
* Fri Oct 14 2011 Rex Dieter <rdieter@fedoraproject.org> - 0.1.6-3
0b49ef
- rebuild (exiv2)
0b49ef
0b49ef
* Wed Apr 06 2011 Nils Philippsen <nils@redhat.com> - 0.1.6-2
0b49ef
- fix crash when using hstack operation (#661533)
0b49ef
0b49ef
* Tue Feb 22 2011 Nils Philippsen <nils@redhat.com> - 0.1.6-1
0b49ef
- version 0.1.6
0b49ef
- remove obsolete patches
0b49ef
- fix erroneous use of destdir
0b49ef
- correct source URL
0b49ef
- add BR: exiv2-devel, jasper-devel, suitesparse-devel
0b49ef
- update BR versions
0b49ef
- update --with-*/--without-* configure flags
0b49ef
- replace tabs with spaces for consistency
0b49ef
0b49ef
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.2-5
0b49ef
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
0b49ef
0b49ef
* Tue Oct 19 2010 Nils Philippsen <nils@redhat.com> - 0.1.2-4
0b49ef
- don't leak "root" symbol which clashes with (equally broken) xvnkb input
0b49ef
  method (#642992)
0b49ef
0b49ef
* Wed Jun 23 2010 Nils Philippsen <nils@redhat.com> - 0.1.2-3
0b49ef
- build with -fno-strict-aliasing
0b49ef
- use PIC/PIE because gegl is likely to deal with data coming from untrusted
0b49ef
  sources
0b49ef
0b49ef
* Fri Feb 26 2010 Nils Philippsen <nils@redhat.com>
0b49ef
- use tabs consistently
0b49ef
- let devel depend on gtk-doc
0b49ef
0b49ef
* Fri Feb 19 2010 Nils Philippsen <nils@redhat.com> - 0.1.2-2
0b49ef
- ignore make check failures for now
0b49ef
0b49ef
* Wed Feb 17 2010 Nils Philippsen <nils@redhat.com>
0b49ef
- avoid buffer overflow in gegl_buffer_header_init()
0b49ef
- correct gegl library version, use macro for it
0b49ef
0b49ef
* Tue Feb 16 2010 Nils Philippsen <nils@redhat.com> - 0.1.2-1
0b49ef
- version 0.1.2
0b49ef
- remove obsolete cflags, babl-instrumentation, autoreconf patches
0b49ef
- backported: don't leak each node set on a GeglProcessor
0b49ef
0b49ef
* Sat Jan 23 2010 Deji Akingunola <dakingun@gmail.com> - 0.1.0-3
0b49ef
- Rebuild for babl-0.1.2
0b49ef
- Backport upstream patch that removed babl processing time instrumentation
0b49ef
0b49ef
* Wed Jan 20 2010 Nils Philippsen <nils@redhat.com>
0b49ef
- use tabs consistently to appease rpmdiff
0b49ef
0b49ef
* Tue Aug 18 2009 Nils Philippsen <nils@redhat.com>
0b49ef
- explain patches
0b49ef
0b49ef
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.0-2
0b49ef
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
0b49ef
0b49ef
* Thu Jul 02 2009 Nils Philippsen - 0.1.0-1
0b49ef
- fix cflags for building
0b49ef
0b49ef
* Thu Jul 02 2009 Nils Philippsen
0b49ef
- version 0.1.0
0b49ef
- use "--disable-gtk-doc" to avoid rebuilding documentation (#481404)
0b49ef
- remove *.la files in %%{_libdir}/gegl-*/ (#509292)
0b49ef
0b49ef
* Thu Jun 04 2009 Deji Akingunola <dakingun@gmail.com> - 0.0.22-5
0b49ef
- Apply patch to build with babl-0.1.0 API changes
0b49ef
0b49ef
* Thu Jun 04 2009 Nils Philippsen - 0.0.22-4
0b49ef
- rebuild against babl-0.1.0
0b49ef
0b49ef
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.0.22-3
0b49ef
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
0b49ef
0b49ef
* Thu Jan 29 2009 Nils Philippsen - 0.0.22-2
0b49ef
- use the same timestamps for certain documentation files on all architectures
0b49ef
  to avoid multi-lib conflicts (#481404)
0b49ef
- consolidate spec files between OS releases
0b49ef
- reenable building documentation on ppc64
0b49ef
- explicitly list more build requirements and/or versions to catch eventual
0b49ef
  problems during future builds
0b49ef
0b49ef
* Tue Jan 13 2009 Deji Akingunola <dakingun@gmail.com> - 0.0.22-1
0b49ef
- Update to version 0.0.22
0b49ef
0b49ef
* Tue Oct 07 2008 Deji Akingunola <dakingun@gmail.com> - 0.0.20-1
0b49ef
- Update to latest release
0b49ef
0b49ef
* Thu Jul 10 2008 Deji Akingunola <dakingun@gmail.com> - 0.0.18-1
0b49ef
- Update to latest release
0b49ef
0b49ef
* Thu Feb 28 2008 Deji Akingunola <dakingun@gmail.com> - 0.0.16-1
0b49ef
- New release
0b49ef
0b49ef
* Thu Jan 17 2008 Deji Akingunola <dakingun@gmail.com> - 0.0.15-1.svn20080117
0b49ef
- Update to a svn snapshot for gnome-scan
0b49ef
- Apply patch to fix extensions loading on 64bit systems
0b49ef
- Building the docs on ppc64 segfaults, avoid it for now.
0b49ef
0b49ef
* Sat Dec 08 2007 Deji Akingunola <dakingun@gmail.com> - 0.0.14-1
0b49ef
- Update to 0.0.14 release
0b49ef
- License change from GPLv2+ to GPLv3+
0b49ef
0b49ef
* Thu Oct 25 2007 Deji Akingunola <dakingun@gmail.com> - 0.0.13-0.7.20071011svn
0b49ef
- Include missing requires for the devel subpackage
0b49ef
0b49ef
* Thu Oct 25 2007 Deji Akingunola <dakingun@gmail.com> - 0.0.13-0.6.20071011svn
0b49ef
- BR graphiz instead of graphiz-devel
0b49ef
- Remove the spurious exec flag from a couple of source codes
0b49ef
0b49ef
* Tue Oct 23 2007 Deji Akingunola <dakingun@gmail.com> - 0.0.13-0.5.20071011svn
0b49ef
- Fix missing directory ownership
0b49ef
0b49ef
* Mon Oct 22 2007 Deji Akingunola <dakingun@gmail.com> - 0.0.13-0.4.20071011svn
0b49ef
- Update the License field 
0b49ef
0b49ef
* Fri Oct 12 2007 Deji Akingunola <dakingun@gmail.com> - 0.0.13-0.3.20071011svn
0b49ef
- Package the extension libraries in the main package
0b49ef
- Run 'make check'
0b49ef
0b49ef
* Fri Oct 12 2007 Deji Akingunola <dakingun@gmail.com> - 0.0.13-0.2.20071011svn
0b49ef
- Remove the use of inexistent source
0b49ef
0b49ef
* Thu Oct 11 2007 Deji Akingunola <dakingun@gmail.com> - 0.0.13-0.1.20071011svn
0b49ef
- Initial packaging for Fedora