Nils Philippsen e226e8
# skip tests known to be problematic in a specific version
Nils Philippsen fd2af2
%global skip_checks_version 0.1.56
Nils Philippsen d5ae19
%ifarch ppc64 ppc64le
Nils Philippsen cc966c
%global skip_checks %nil
Debarshi Ray 0cad92
%else
Debarshi Ray 0cad92
  %ifarch s390x
Debarshi Ray 0cad92
  %global skip_checks float-to-8bit
Debarshi Ray 0cad92
  %else
Debarshi Ray 0cad92
  %global skip_checks %nil
Debarshi Ray 0cad92
  %endif
Debarshi Ray a14a58
%endif
Nils Philippsen 614187
Josef Ridky b5a666
%if ! 0%{?fedora}%{?rhel} || 0%{?fedora} >= 20 || 0%{?rhel} > 7
Nils Philippsen 3d052a
%global develdocdir %{_docdir}/%{name}-devel/html
Nils Philippsen 3d052a
%else
Nils Philippsen 3d052a
%global develdocdir %{_docdir}/%{name}-devel-%{version}/html
Nils Philippsen 3d052a
%endif
Nils Philippsen 3d052a
Deji Akingunola 6716ce
Summary:	A dynamic, any to any, pixel format conversion library
Deji Akingunola 6716ce
Name:		babl
Nils Philippsen 9fd5e9
Version:	0.1.56
Nils Philippsen fd2af2
Release:	2%{?dist}
Nils Philippsen 0672a2
Nils Philippsen 0672a2
# Compute some version related macros
Nils Philippsen 0672a2
# Ugly hack, you need to get your quoting backslashes/percent signs straight
Nils Philippsen 0672a2
%global major %(ver=%version; echo ${ver%%%%.*})
Nils Philippsen 0672a2
%global minor %(ver=%version; ver=${ver#%major.}; echo ${ver%%%%.*})
Nils Philippsen 0672a2
%global micro %(ver=%version; ver=${ver#%major.%minor.}; echo ${ver%%%%.*})
Nils Philippsen 0672a2
%global apiver %major.%minor
Nils Philippsen 0672a2
Deji Akingunola 54f26f
# The gggl codes contained in this package are under the GPL, with exceptions allowing their use under libraries covered under the LGPL
Deji Akingunola 54f26f
License:	LGPLv3+ and GPLv3+
Deji Akingunola 6716ce
URL:		http://www.gegl.org/babl/
Debarshi Ray 531080
Source0:	https://download.gimp.org/pub/babl/%{apiver}/%{name}-%{version}.tar.bz2
Debarshi Ray d0baab
Nils Philippsen edbf66
BuildRequires:	librsvg2
Josef Ridky b5a666
BuildRequires:  automake, autoconf
Josef Ridky 0a6334
BuildRequires:  gcc
Deji Akingunola 6716ce
Deji Akingunola 6716ce
%description
Deji Akingunola 6716ce
Babl is a dynamic, any to any, pixel format conversion library. It
Deji Akingunola 6716ce
provides conversions between the myriad of buffer types images can be
Deji Akingunola 6716ce
stored in. Babl doesn't only help with existing pixel formats, but also
Deji Akingunola 6716ce
facilitates creation of new and uncommon ones.
Deji Akingunola 6716ce
Deji Akingunola 6716ce
%package devel
Deji Akingunola 6716ce
Summary:	Headers for developing programs that will use %{name}
Nils Philippsen f2a56d
Requires:	%{name}%{?_isa} = %{version}-%{release}
Deji Akingunola 6716ce
Requires:	pkgconfig
Josef Ridky b5a666
%if ! (0%{?fedora} >= 22 || 0%{?rhel} > 7)
Nils Philippsen f2a56d
# Split off devel docs from 0.1.2-2 on
Nils Philippsen f2a56d
Obsoletes:	%{name}-devel < 0.1.2-2%{?dist}
Nils Philippsen f2a56d
Conflicts:	%{name}-devel < 0.1.2-2%{?dist}
Nils Philippsen f2d69f
%endif
Deji Akingunola 6716ce
Deji Akingunola 6716ce
%description devel
Deji Akingunola 6716ce
This package contains the libraries and header files needed for
Deji Akingunola 6716ce
developing with %{name}.
Deji Akingunola 6716ce
Nils Philippsen f2a56d
%package devel-docs
Nils Philippsen f2a56d
Summary:	Documentation for developing programs that will use %{name}
Nils Philippsen f2a56d
BuildArch:	noarch
Nils Philippsen f2a56d
Requires:	%{name}-devel = %{version}-%{release}
Nils Philippsen f2a56d
# Split off devel docs from 0.1.2-2 on
Nils Philippsen f2a56d
Obsoletes:	%{name}-devel < 0.1.2-2%{?dist}
Nils Philippsen f2a56d
Conflicts:	%{name}-devel < 0.1.2-2%{?dist}
Nils Philippsen f2a56d
Nils Philippsen 6d11cb
%description devel-docs
Nils Philippsen f2a56d
This package contains documentation needed for developing with %{name}.
Nils Philippsen f2a56d
Deji Akingunola 6716ce
%prep
Josef Ridky b5a666
%autosetup -p1
Deji Akingunola 6716ce
Deji Akingunola 6716ce
%build
Nils Philippsen b699b0
# use PIC/PIE because babl is likely to deal with data coming from untrusted
Nils Philippsen b699b0
# sources
Nils Philippsen b699b0
CFLAGS="-fPIC %optflags -fno-strict-aliasing"
Nils Philippsen b699b0
LDFLAGS="-pie"
Nils Philippsen 811dbb
%configure --disable-static
Deji Akingunola 71f17a
Deji Akingunola aa459b
make V=1 %{?_smp_mflags}
Nils Philippsen f2a56d
Deji Akingunola 6716ce
%install
Deji Akingunola 6716ce
make DESTDIR=%{buildroot} install INSTALL='install -p'
Deji Akingunola 6716ce
Nils Philippsen f2a56d
mkdir -p "%{buildroot}/%{develdocdir}"
Nils Philippsen f2a56d
cp -pr docs/graphics docs/*.html docs/babl.css "%{buildroot}/%{develdocdir}"
Nils Philippsen f2a56d
rm -rf "%{buildroot}/%{develdocdir}"/graphics/Makefile*
Deji Akingunola 6716ce
Deji Akingunola 1e18a2
find %{buildroot} -type f -name "*.la" -exec rm -f {} ';'
Deji Akingunola 6716ce
Deji Akingunola 6716ce
%check
Nils Philippsen e226e8
# skip tests known to be problematic in a specific version
Nils Philippsen a63c5c
%if "%version" == "%skip_checks_version"
Nils Philippsen 614187
pushd tests
Nils Philippsen e226e8
for problematic in %skip_checks; do
Nils Philippsen e226e8
    rm -f "$problematic"
Nils Philippsen 83179e
    cat << EOF > "$problematic"
Nils Philippsen 83179e
#!/bin/sh
Nils Philippsen 8f943c
echo Skipping test "$problematic"
Nils Philippsen 83179e
EOF
Nils Philippsen 83179e
    chmod +x "$problematic"
Nils Philippsen 614187
done
Nils Philippsen 614187
popd
Nils Philippsen 614187
%endif
Deji Akingunola 6716ce
make check
Deji Akingunola 6716ce
Josef Ridky b5a666
%ldconfig_scriptlets
Deji Akingunola 6716ce
Deji Akingunola 6716ce
%files
Nils Philippsen 472a47
%doc AUTHORS COPYING README NEWS
Deji Akingunola 6716ce
%{_libdir}/*.so.*
Nils Philippsen 0672a2
%{_libdir}/babl-%{apiver}/
Deji Akingunola 6716ce
Deji Akingunola 6716ce
%files devel
Nils Philippsen 0672a2
%{_includedir}/babl-%{apiver}/
Deji Akingunola 6716ce
%{_libdir}/*.so
Deji Akingunola 6716ce
%{_libdir}/pkgconfig/%{name}.pc
Deji Akingunola 6716ce
Nils Philippsen f2a56d
%files devel-docs
Nils Philippsen f2a56d
%doc %{develdocdir}
Nils Philippsen f2a56d
Deji Akingunola 6716ce
%changelog
Nils Philippsen e5de84
* Mon Aug 20 2018 Nils Philippsen <nils@tiptoe.de> - 0.1.56-2
Nils Philippsen fd2af2
- skip problematic tests also on new version
Nils Philippsen fd2af2
Nils Philippsen fd2af2
* Mon Aug 20 2018 Nils Philippsen <nils@tiptoe.de> - 0.1.56-1
Nils Philippsen 9fd5e9
- version 0.1.56
Nils Philippsen 9fd5e9
Fedora Release Engineering 572f04
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.52-2
Fedora Release Engineering 572f04
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
Fedora Release Engineering 572f04
Nils Philippsen bbc48f
* Thu Jul 05 2018 Nils Philippsen <nils@tiptoe.de> - 0.1.52-1
Nils Philippsen a894f2
- version 0.1.52
Nils Philippsen a894f2
Nils Philippsen d5ae19
* Mon May 21 2018 Nils Philippsen <nils@tiptoe.de> - 0.1.50-3
Nils Philippsen d5ae19
- et tu, ppc64?
Nils Philippsen d5ae19
Nils Philippsen 449f18
* Mon May 21 2018 Nils Philippsen <nils@tiptoe.de> - 0.1.50-2
Nils Philippsen 33c930
- skip more problematic tests on ppc64le
Nils Philippsen 33c930
Josef Ridky b36808
* Mon May 21 2018 Josef Ridky <jridky@redhat.com> - 0.1.50-1
Josef Ridky b36808
- New upstream release 0.1.50
Josef Ridky b36808
Debarshi Ray 5d38b5
* Thu May 17 2018 Debarshi Ray <rishi@fedoraproject.org> - 0.1.48-1
Debarshi Ray 5d38b5
- version 0.1.48
Debarshi Ray 5d38b5
Josef Ridky 8b23d0
* Wed Apr 25 2018 Josef Ridky <jridky@redhat.com> - 0.1.46-1
Josef Ridky 8b23d0
- New upstream release 0.1.46
Josef Ridky 8b23d0
Nils Philippsen afb54b
* Tue Mar 27 2018 Nils Philippsen <nils@tiptoe.de> - 0.1.44-1
Nils Philippsen 4a6273
- version 0.1.44
Nils Philippsen 4a6273
Josef Ridky db580d
* Tue Feb 20 2018 Josef Ridky <jridky@redhat.com> - 0.1.42-4
Josef Ridky db580d
- add gcc requirement
Josef Ridky db580d
Josef Ridky b5a666
* Wed Feb 14 2018 Josef Ridky <jridky@redhat.com> - 0.1.42-3
Josef Ridky b5a666
- cleanup spec file (remove Group tag, apply new scriptlets)
Josef Ridky b5a666
Fedora Release Engineering 5cde41
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.42-2
Fedora Release Engineering 5cde41
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
Fedora Release Engineering 5cde41
Debarshi Ray 6bd10b
* Wed Jan 24 2018 Debarshi Ray <rishi@fedoraproject.org> - 0.1.42-1
Debarshi Ray 6bd10b
- version 0.1.42
Debarshi Ray 6bd10b
Debarshi Ray 7d3f25
* Wed Jan 17 2018 Debarshi Ray <rishi@fedoraproject.org> - 0.1.40-1
Debarshi Ray 7d3f25
- version 0.1.40
Debarshi Ray 7d3f25
Debarshi Ray 531080
* Thu Nov 16 2017 Debarshi Ray <rishi@fedoraproject.org> - 0.1.38-1
Debarshi Ray 531080
- version 0.1.38
Debarshi Ray 531080
Debarshi Ray 21e056
* Sat Nov 11 2017 Debarshi Ray <rishi@fedoraproject.org> - 0.1.36-1
Debarshi Ray 21e056
- version 0.1.36
Debarshi Ray 21e056
Debarshi Ray ddddd5
* Tue Oct 17 2017 Debarshi Ray <rishi@fedoraproject.org> - 0.1.34-1
Debarshi Ray ddddd5
- version 0.1.34
Debarshi Ray ddddd5
Debarshi Ray 9a2468
* Tue Oct 03 2017 Debarshi Ray <rishi@fedoraproject.org> - 0.1.32-1
Debarshi Ray 9a2468
- version 0.1.32
Debarshi Ray 9a2468
Nils Philippsen f72bf2
* Fri Aug 25 2017 Nils Philippsen <nils@tiptoe.de> - 0.1.30-1
Nils Philippsen f72bf2
- version 0.1.30
Nils Philippsen f72bf2
Fedora Release Engineering 3bb7e8
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.28-3
Fedora Release Engineering 3bb7e8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
Fedora Release Engineering 3bb7e8
Fedora Release Engineering 9c8117
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.28-2
Fedora Release Engineering 9c8117
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
Fedora Release Engineering 9c8117
Debarshi Ray d32435
* Wed Jun 21 2017 Debarshi Ray <rishi@fedoraproject.org> - 0.1.28-1
Debarshi Ray d32435
- version 0.1.28
Debarshi Ray d32435
Debarshi Ray 93012d
* Mon May 15 2017 Debarshi Ray <rishi@fedoraproject.org> - 0.1.26-1
Debarshi Ray 93012d
- version 0.1.26
Debarshi Ray 93012d
Debarshi Ray eb11b7
* Tue Feb 07 2017 Debarshi Ray <rishi@fedoraproject.org> - 0.1.24-1
Debarshi Ray eb11b7
- version 0.1.24
Debarshi Ray eb11b7
Debarshi Ray 0f0974
* Thu Jan 26 2017 Debarshi Ray <rishi@fedoraproject.org> - 0.1.22-1
Debarshi Ray 0f0974
- version 0.1.22
Debarshi Ray 0f0974
Debarshi Ray c60ec0
* Thu Jan 12 2017 Debarshi Ray <rishi@fedoraproject.org> - 0.1.20-1
Debarshi Ray c60ec0
- version 0.1.20
Debarshi Ray c60ec0
Debarshi Ray 79366d
* Fri Jun 17 2016 Debarshi Ray <rishi@fedoraproject.org> - 0.1.18-1
Debarshi Ray 79366d
- version 0.1.18
Debarshi Ray 79366d
Debarshi Ray ebc61b
* Sun Feb 14 2016 Debarshi Ray <rishi@fedoraproject.org> - 0.1.16-1
Debarshi Ray ebc61b
- version 0.1.16
Debarshi Ray ebc61b
Dennis Gilmore da19b0
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.14-2
Dennis Gilmore da19b0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
Dennis Gilmore da19b0
Nils Philippsen 472a47
* Mon Nov 23 2015 Nils Philippsen <nils@redhat.com> - 0.1.14-1
Nils Philippsen 472a47
- version 0.1.14
Nils Philippsen 472a47
Dennis Gilmore 574af7
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.12-3
Dennis Gilmore 574af7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
Dennis Gilmore 574af7
Nils Philippsen 8b5a10
* Fri Feb 13 2015 Nils Philippsen <nils@redhat.com> - 0.1.12-2
Nils Philippsen 8b5a10
- fix failing (crashing) concurrency stress test
Nils Philippsen 8b5a10
Debarshi Ray 9cb7f8
* Thu Feb 05 2015 Debarshi Ray <rishi@fedoraproject.org> - 0.1.12-1
Debarshi Ray 9cb7f8
- version 0.1.12
Debarshi Ray 9cb7f8
Peter Robinson c4ae2c
* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.10-12
Peter Robinson c4ae2c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
Peter Robinson c4ae2c
Nils Philippsen fa43cd
* Tue Aug 05 2014 Nils Philippsen <nils@redhat.com> - 0.1.10-11
Nils Philippsen fa43cd
- update source URL
Nils Philippsen fa43cd
Nils Philippsen f2d69f
* Tue Jul 29 2014 Nils Philippsen <nils@redhat.com> - 0.1.10-10
Nils Philippsen f2d69f
- drop obsoletes in future Fedora and EL versions (#1002080)
Nils Philippsen f2d69f
Dennis Gilmore 72be58
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.10-9
Dennis Gilmore 72be58
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
Dennis Gilmore 72be58
Nils Philippsen 3d052a
* Wed Aug 07 2013 Nils Philippsen <nils@redhat.com> - 0.1.10-8
Nils Philippsen 3d052a
- use unversioned docdir from Fedora 20 on (#993679)
Nils Philippsen 3d052a
Nils Philippsen edbf66
* Tue Jul 30 2013 Nils Philippsen <nils@redhat.com> - 0.1.10-7
Nils Philippsen edbf66
- don't require w3m for building
Nils Philippsen edbf66
Dennis Gilmore e0e8e3
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.10-6
Dennis Gilmore e0e8e3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
Dennis Gilmore e0e8e3
Nils Philippsen 81d2e5
* Sat Oct 20 2012 Nils Philippsen <nils@redhat.com> - 0.1.10-5
Nils Philippsen 8f943c
- report problematic checks being skipped
Nils Philippsen 8f943c
Nils Philippsen 81d2e5
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.10-4
Nils Philippsen 81d2e5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
Nils Philippsen 81d2e5
Nils Philippsen 83179e
* Tue Apr 03 2012 Nils Philippsen <nils@redhat.com> - 0.1.10-3
Nils Philippsen 83179e
- prevent problematic check from being rebuilt
Nils Philippsen 83179e
Nils Philippsen a63c5c
* Tue Apr 03 2012 Nils Philippsen <nils@redhat.com> - 0.1.10-2
Nils Philippsen a63c5c
- fix typo which caused problematic check not to be skipped
Nils Philippsen a63c5c
Nils Philippsen dc38a6
* Tue Apr 03 2012 Nils Philippsen <nils@redhat.com> - 0.1.10-1
Nils Philippsen dc38a6
- version 0.1.10
Nils Philippsen e226e8
- skip check known to be problematic: concurrency-stress-test
Nils Philippsen dc38a6
Nils Philippsen 1a9735
* Tue Jan 10 2012 Nils Philippsen <nils@redhat.com> - 0.1.6-2
Nils Philippsen 1a9735
- rebuild for gcc 4.7
Nils Philippsen 1a9735
Nils Philippsen 2a8542
* Tue Dec 13 2011 Nils Philippsen <nils@redhat.com> - 0.1.6-1
Nils Philippsen 2a8542
- version 0.1.6
Nils Philippsen 2a8542
Nils Philippsen 79dd88
* Tue Feb 22 2011 Nils Philippsen <nils@redhat.com> - 0.1.4-1
Nils Philippsen a84c98
- version 0.1.4
Nils Philippsen 79dd88
- correct source URL
Nils Philippsen 79dd88
Dennis Gilmore 7016ee
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.2-5
Dennis Gilmore 7016ee
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
Dennis Gilmore 7016ee
Nils Philippsen b699b0
* Wed Jun 23 2010 Nils Philippsen <nils@redhat.com> - 0.1.2-4
Nils Philippsen b699b0
- use PIC/PIE because babl is likely to deal with data coming from untrusted
Nils Philippsen b699b0
  sources
Nils Philippsen b699b0
Nils Philippsen faae76
* Wed Jun 23 2010 Nils Philippsen <nils@redhat.com> - 0.1.2-3
Nils Philippsen faae76
- build with -fno-strict-aliasing
Nils Philippsen faae76
Nils Philippsen f2a56d
* Mon Jun 14 2010 Nils Philippsen <nils@redhat.com> - 0.1.2-2
Nils Philippsen f2a56d
- split off devel-docs subpackage to make package multi-lib compliant (#477807)
Nils Philippsen f2a56d
- let devel package require correct arch of base package
Nils Philippsen f2a56d
Deji Akingunola aa459b
* Thu Jan 21 2010 Deji Akingunola <dakingun@gmail.com> - 0.1.2-1
Deji Akingunola aa459b
- Update to 0.1.2
Deji Akingunola aa459b
Deji Akingunola 1e18a2
* Fri Dec 18 2009 Deji Akingunola <dakingun@gmail.com> - 0.1.0-5
Deji Akingunola 1e18a2
- Remove the *.la files
Deji Akingunola 1e18a2
Nils Philippsen a619ba
* Thu Aug 13 2009 Nils Philippsen <nils@redhat.com>
Nils Philippsen a619ba
- explain patch status
Nils Philippsen a619ba
Jesse Keating 88c063
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.0-4
Jesse Keating 88c063
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
Jesse Keating 88c063
Nils Philippsen 811dbb
* Mon Jul 06 2009 Nils Philippsen <nils@redhat.com> - 0.1.0-3
Nils Philippsen 811dbb
- revert using "--disable-gtk-doc" as this doesn't work with babl (#477807)
Nils Philippsen 811dbb
Nils Philippsen 811dbb
* Thu Jul 02 2009 Nils Philippsen <nils@redhat.com>
Nils Philippsen b7764d
- use "--disable-gtk-doc" to avoid rebuilding documentation (#477807)
Nils Philippsen 9d5b49
- fix source URL
Nils Philippsen b7764d
Nils Philippsen fd5935
* Thu Jun 25 2009 Nils Philippsen <nils@redhat.com> - 0.1.0-2
Nils Philippsen fd5935
- fix timestamps of built documentation for multilib (#477807)
Nils Philippsen fd5935
Deji Akingunola 71f17a
* Fri May 22 2009 Deji Akingunola <dakingun@gmail.com> - 0.1.0-1
Deji Akingunola 71f17a
- Update to latest release (0.1.0)
Deji Akingunola 71f17a
Jesse Keating 96b1f0
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.0.22-3
Jesse Keating 96b1f0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
Jesse Keating 96b1f0
Michael Schwendt 500b73
* Tue Sep  2 2008 Michael Schwendt <mschwendt@fedoraproject.org> - 0.0.22-2
Michael Schwendt 500b73
- Include /usr/include/babl-0.0 directory
Michael Schwendt 500b73
Deji Akingunola 7c5548
* Thu Jul 10 2008 Deji Akingunola <dakingun@gmail.com> - 0.0.22-1
Deji Akingunola 7c5548
- Update to latest release
Deji Akingunola 7c5548
Deji Akingunola 1cc260
* Thu Feb 28 2008 Deji Akingunola <dakingun@gmail.com> - 0.0.20-1
Deji Akingunola 1cc260
- New release
Deji Akingunola 1cc260
Deji Akingunola 2fd111
* Thu Jan 17 2008 Deji Akingunola <dakingun@gmail.com> - 0.0.18-2
Deji Akingunola 2fd111
- Apply patch to fix extensions loading on 64bit systems
Deji Akingunola 2fd111
Deji Akingunola f6559f
* Thu Jan 10 2008 Deji Akingunola <dakingun@gmail.com> - 0.0.18-1
Deji Akingunola f6559f
- Update to 0.0.18
Deji Akingunola f6559f
Deji Akingunola 54f26f
* Mon Nov 26 2007 Deji Akingunola <dakingun@gmail.com> - 0.0.16-1
Deji Akingunola 54f26f
- Update to 0.0.16 release 
Deji Akingunola 54f26f
- License change from GPLv2+ to GPLv3+
Deji Akingunola 54f26f
Deji Akingunola 6716ce
* Mon Oct 22 2007 Deji Akingunola <dakingun@gmail.com> - 0.0.15-0.5.20071011svn
Deji Akingunola 6716ce
- Update the License field 
Deji Akingunola 6716ce
Deji Akingunola 6716ce
* Fri Oct 12 2007 Deji Akingunola <dakingun@gmail.com> - 0.0.15-0.4.20071011svn
Deji Akingunola 6716ce
- Package the extension libraries in the main package
Deji Akingunola 6716ce
- Run 'make check' 
Deji Akingunola 6716ce
Deji Akingunola 6716ce
* Fri Oct 12 2007 Deji Akingunola <dakingun@gmail.com> - 0.0.15-0.3.20071011svn
Deji Akingunola 6716ce
- Ensure timestamps are kept during install
Deji Akingunola 6716ce
Deji Akingunola 6716ce
* Fri Oct 12 2007 Deji Akingunola <dakingun@gmail.com> - 0.0.15-0.2.20071011svn
Deji Akingunola 6716ce
- Remove the use of inexistent source url (Package reviews)
Deji Akingunola 6716ce
- Package the html docs
Deji Akingunola 6716ce
Deji Akingunola 6716ce
* Thu Oct 11 2007 Deji Akingunola <dakingun@gmail.com> - 0.0.15-0.1.20071011svn
Deji Akingunola 6716ce
- Initial packaging for Fedora