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