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