Blame SPECS/mod_wsgi.spec

2eaf48
%{?scl:%scl_package mod_wsgi}
2eaf48
%{!?scl:%global pkg_name %{name}}
2eaf48
2eaf48
%global python3_pkgversion %{nil}
2eaf48
2eaf48
%{!?_httpd24_apxs:       %{expand: %%global _httpd24_apxs       %%{_sbindir}/apxs}}
2eaf48
%{!?_httpd24_mmn:        %{expand: %%global _httpd24_mmn        %%(cat %{_includedir}/httpd/.mmn 2>/dev/null || echo missing-httpd-devel)}}
2eaf48
%{!?_httpd24_confdir:    %{expand: %%global _httpd24_confdir    %%{_sysconfdir}/httpd/conf.d}}
2eaf48
# /etc/httpd/conf.d with httpd < 2.4 and defined as /etc/httpd/conf.modules.d with httpd >= 2.4
2eaf48
%{!?_httpd24_modconfdir: %{expand: %%global _httpd24_modconfdir %%{_sysconfdir}/httpd/conf.d}}
2eaf48
%{!?_httpd24_moddir:    %{expand: %%global _httpd24_moddir    %%{_libdir}/httpd/modules}}
2eaf48
2eaf48
# Docs permanently disabled due to missing deps
2eaf48
%bcond_with docs
2eaf48
2eaf48
Name:           %{?scl_prefix}mod_wsgi
2eaf48
Version:        4.6.8
2eaf48
Release:        4%{?dist}
2eaf48
Summary:        A WSGI interface for Python web applications in Apache
2eaf48
License:        ASL 2.0
2eaf48
URL:            https://modwsgi.readthedocs.io/
2eaf48
Source0:        https://github.com/GrahamDumpleton/mod_wsgi/archive/%{version}.tar.gz#/mod_wsgi-%{version}.tar.gz
2eaf48
Source1:        wsgi.conf
2eaf48
Patch1:         mod_wsgi-4.5.20-exports.patch
2eaf48
2eaf48
BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
2eaf48
2eaf48
# SCL: these filters don't work with SCLs. Turning them off, there are no harmful provides generatod, so they're not needed
2eaf48
# Suppress auto-provides for module DSO
2eaf48
# %%{?filter_provides_in: %%filter_provides_in %%{_httpd24_moddir}/.*\.so$}
2eaf48
# %%{?filter_setup}
2eaf48
2eaf48
2eaf48
%global _description\
2eaf48
The mod_wsgi adapter is an Apache module that provides a WSGI compliant\
2eaf48
interface for hosting Python based web applications within Apache. The\
2eaf48
adapter is written completely in C code against the Apache C runtime and\
2eaf48
for hosting WSGI applications within Apache has a lower overhead than using\
2eaf48
existing WSGI adapters for mod_python or CGI.\
2eaf48
2eaf48
%description %_description
2eaf48
2eaf48
2eaf48
%package -n %{?scl_prefix}python%{python3_pkgversion}-%{pkg_name}
2eaf48
Summary:        %summary
2eaf48
Provides:       %{?scl_prefix}%{pkg_name} = %{version}
2eaf48
2eaf48
BuildRequires:  %{?scl:httpd24-}httpd-devel, %{?scl:%scl_prefix}python-devel, autoconf
2eaf48
Requires:       %{?scl:httpd24-}httpd-mmn = %{_httpd24_mmn}
2eaf48
Requires:       %{?scl:httpd24-}httpd >= 2.4.6-23
2eaf48
BuildRequires:  gcc
2eaf48
2eaf48
BuildRequires:  %{?scl_prefix}python%{python3_pkgversion}-devel
2eaf48
BuildRequires:  %{?scl_prefix}python%{python3_pkgversion}-rpm-macros
2eaf48
%if %{with docs}
2eaf48
BuildRequires:  %{?scl_prefix}python3-sphinx, %{?scl_prefix}python3-sphinx_rtd_theme
2eaf48
%endif
2eaf48
2eaf48
%description -n %{?scl_prefix}python%{python3_pkgversion}-%{pkg_name} %_description
2eaf48
2eaf48
2eaf48
%prep
2eaf48
%{?scl:scl enable %{scl} httpd24 - << \EOF}
2eaf48
set -ex
2eaf48
%autosetup -p1 -n %{pkg_name}-%{version}
2eaf48
%{?scl:EOF}
2eaf48
2eaf48
2eaf48
%build
2eaf48
%{?scl:scl enable %{scl} httpd24 - << \EOF}
2eaf48
set -ex
2eaf48
2eaf48
%if %{with docs}
2eaf48
make -C docs html SPHINXBUILD=%{_bindir}/sphinx-build-3
2eaf48
%endif
2eaf48
2eaf48
export LDFLAGS="$RPM_LD_FLAGS -L%{_libdir}"
2eaf48
export CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing"
2eaf48
2eaf48
mkdir py3build/
2eaf48
# this always produces an error (because of trying to copy py3build
2eaf48
# into itself) but we don't mind, so || :
2eaf48
cp -R * py3build/ || :
2eaf48
pushd py3build
2eaf48
%configure --enable-shared --with-apxs="%{_httpd24_apxs} -Wl,'-R%{_libdir}'"
2eaf48
make %{?_smp_mflags}
2eaf48
%py3_build
2eaf48
popd
2eaf48
2eaf48
%{?scl:EOF}
2eaf48
2eaf48
2eaf48
%install
2eaf48
%{?scl:scl enable %{scl} httpd24 - << \EOF}
2eaf48
set -ex
2eaf48
# first install python3 variant and rename the so file
2eaf48
pushd py3build
2eaf48
make install DESTDIR=$RPM_BUILD_ROOT LIBEXECDIR=%{_httpd24_moddir}
2eaf48
2eaf48
install -d -m 755 $RPM_BUILD_ROOT%{_httpd24_modconfdir}
2eaf48
sed -e 's/mod_wsgi/mod_%{scl_prefix}wsgi/' %{SOURCE1} >modconf
2eaf48
install -p -m 644 modconf $RPM_BUILD_ROOT%{_httpd24_modconfdir}/10-%{scl_prefix}wsgi.conf
2eaf48
2eaf48
mv  $RPM_BUILD_ROOT%{_httpd24_moddir}/mod_wsgi.so \
2eaf48
    $RPM_BUILD_ROOT%{_httpd24_moddir}/mod_%{scl_prefix}wsgi.so
2eaf48
2eaf48
%py3_install
2eaf48
mv $RPM_BUILD_ROOT%{_bindir}/mod_wsgi-express{,-%{python3_version}}
2eaf48
ln -s ./mod_wsgi-express-%{python3_version} $RPM_BUILD_ROOT%{_bindir}/mod_wsgi-express-3
2eaf48
ln -s ./mod_wsgi-express-3 $RPM_BUILD_ROOT%{_bindir}/mod_wsgi-express
2eaf48
popd
2eaf48
2eaf48
%{?scl:EOF}
2eaf48
2eaf48
2eaf48
%files -n %{?scl_prefix}python%{python3_pkgversion}-%{pkg_name}
2eaf48
%license LICENSE
2eaf48
%doc CREDITS.rst README.rst
2eaf48
%config(noreplace) %{_httpd24_modconfdir}/*.conf
2eaf48
%{_httpd24_moddir}/mod_%{scl_prefix}wsgi.so
2eaf48
%{python3_sitearch}/mod_wsgi-*.egg-info
2eaf48
%{python3_sitearch}/mod_wsgi
2eaf48
%{_bindir}/mod_wsgi-express-%{python3_version}
2eaf48
%{_bindir}/mod_wsgi-express-3
2eaf48
%{_bindir}/mod_wsgi-express
2eaf48
2eaf48
2eaf48
%changelog
2eaf48
* Tue Feb 04 2020 Lumír Balhar <lbalhar@redhat.com> - 4.6.8-4
2eaf48
- Import from the python38 module and modified for rh-python38 RHSCL
2eaf48
Resolves: rhbz#1671025
2eaf48
2eaf48
* Wed Dec 11 2019 Tomas Orsava <torsava@redhat.com> - 4.6.8-3
2eaf48
- Exclude unsupported i686 arch (rhbz#1779142)
2eaf48
2eaf48
* Wed Nov 20 2019 Lumír Balhar <lbalhar@redhat.com> - 4.6.8-2
2eaf48
- Adjusted for Python 3.8 module in RHEL 8
2eaf48
2eaf48
* Mon Nov 11 2019 Joe Orton <jorton@redhat.com> - 4.6.8-1
2eaf48
- update to 4.6.8 (#1721376)
2eaf48
2eaf48
* Mon Nov 11 2019 Joe Orton <jorton@redhat.com> - 4.6.6-6
2eaf48
- try again to drop Python 2
2eaf48
2eaf48
* Tue Oct 29 2019 Joe Orton <jorton@redhat.com> - 4.6.6-5
2eaf48
- drop python2 build
2eaf48
2eaf48
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 4.6.6-4
2eaf48
- Rebuilt for Python 3.8.0rc1 (#1748018)
2eaf48
2eaf48
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 4.6.6-3
2eaf48
- Rebuilt for Python 3.8
2eaf48
2eaf48
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4.6.6-2
2eaf48
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
2eaf48
2eaf48
* Fri Jun 08 2019 Matthias Runge <mrunge@redhat.com> - 4.6.6-1
2eaf48
- update to 4.6.6 (rhbz#1718151)
2eaf48
2eaf48
* Wed May 29 2019 Miro Hrončok <mhroncok@redhat.com> - 4.6.5-1
2eaf48
- update to 4.6.5
2eaf48
2eaf48
* Tue Apr 16 2019 Joe Orton <jorton@redhat.com> - 4.6.4-4
2eaf48
- only build docs with Python 3
2eaf48
- fix build on Fedora>30 and RHEL 7
2eaf48
2eaf48
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4.6.4-3
2eaf48
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
2eaf48
2eaf48
* Tue Jul 31 2018 Adam Williamson <awilliam@redhat.com> - 4.6.4-2
2eaf48
- Run Python 3 build in a subdir, so module isn't linked against both
2eaf48
  libpython 2 and libpython 3 (rhbz#1609491)
2eaf48
2eaf48
* Fri Jul 20 2018 Matthias Runge <mrunge@redhat.com> - 4.6.4-1
2eaf48
- update to 4.6.4 (rhbz#1560329)
2eaf48
2eaf48
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4.6.2-5
2eaf48
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
2eaf48
2eaf48
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 4.6.2-4
2eaf48
- Rebuilt for Python 3.7
2eaf48
2eaf48
* Fri Apr 20 2018 Joe Orton <jorton@redhat.com> - 4.6.2-3
2eaf48
- use sphinx-build-3 if python2 support is disabled
2eaf48
2eaf48
* Thu Mar 22 2018 Troy Dawson <tdawson@redhat.com> - 4.6.2-2
2eaf48
- Update conditionals.
2eaf48
- Make preperations for non-python2 builds
2eaf48
2eaf48
* Tue Mar 13 2018 Matthias Runge <mrunge@redhat.com> - 4.6.2-1
2eaf48
- update to 4.6.2 (rhbz#1514768)
2eaf48
- add gcc BR
2eaf48
2eaf48
* Wed Feb  7 2018 Joe Orton <jorton@redhat.com> - 4.5.20-4
2eaf48
- restrict module DSO symbol exports
2eaf48
2eaf48
* Tue Jan 09 2018 Iryna Shcherbina <ishcherb@redhat.com> - 4.5.20-3
2eaf48
- Update Python 2 dependency declarations to new packaging standards
2eaf48
  (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
2eaf48
2eaf48
* Sun Dec 17 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 4.5.20-2
2eaf48
- Python 2 binary package renamed to python2-mod_wsgi
2eaf48
  See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3
2eaf48
2eaf48
* Fri Oct 20 2017 Joe Orton <jorton@redhat.com> - 4.5.20-1
2eaf48
- update to 4.5.20
2eaf48
2eaf48
* Wed Aug 09 2017 Dan Callaghan <dcallagh@redhat.com> - 4.5.15-5
2eaf48
- include mod_wsgi Python package and mod_wsgi-express script
2eaf48
2eaf48
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.5.15-4
2eaf48
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
2eaf48
2eaf48
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.5.15-3
2eaf48
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
2eaf48
2eaf48
* Fri Jul 07 2017 Igor Gnatenko <ignatenko@redhat.com> - 4.5.15-2
2eaf48
- Rebuild due to bug in RPM (RHBZ #1468476)
2eaf48
2eaf48
* Fri Jun 23 2017 Joe Orton <jorton@redhat.com> - 4.5.15-1
2eaf48
- update to 4.5.15 (#1431893)
2eaf48
2eaf48
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.5.13-3
2eaf48
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
2eaf48
2eaf48
* Tue Jan 10 2017 Jakub Dorňák <jakub.dornak@misli.cz> - 4.5.13-1
2eaf48
- Update to 4.5.13
2eaf48
2eaf48
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 4.5.9-2
2eaf48
- Rebuild for Python 3.6
2eaf48
2eaf48
* Mon Dec 05 2016 Matthias Runge <mrunge@redhat.com> - 4.5.9-1
2eaf48
- upgrade to 4.5.9 (rhbz#1180445)
2eaf48
2eaf48
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 4.4.8-4
2eaf48
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
2eaf48
2eaf48
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.4.8-3
2eaf48
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
2eaf48
2eaf48
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.4.8-2
2eaf48
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
2eaf48
2eaf48
* Thu Feb 12 2015 Richard W.M. Jones <rjones@redhat.com> - 4.4.8-1
2eaf48
- Upstream to 4.4.8.
2eaf48
- This version includes the fix for the segfault described in RHBZ#1178851.
2eaf48
2eaf48
* Mon Jan  5 2015 Jakub Dorňák <jdornak@redhat.com> - 4.4.3-1
2eaf48
- update to new upstream version 4.4.3 (#1176914)
2eaf48
2eaf48
* Wed Dec 17 2014 Jan Kaluza <jkaluza@redhat.com> - 4.4.1-1
2eaf48
- update to new upstream version 4.4.1 (#1170994)
2eaf48
2eaf48
* Wed Nov 19 2014 Jan Kaluza <jkaluza@redhat.com> - 4.3.2-1
2eaf48
- update to new upstream version 4.3.2 (#1104526)
2eaf48
2eaf48
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.5-3
2eaf48
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
2eaf48
2eaf48
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.5-2
2eaf48
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
2eaf48
2eaf48
* Thu May 29 2014 Luke Macken <lmacken@redhat.com> - 3.5-1
2eaf48
- Update to 3.5 to fix CVE-2014-0240 (#1101863)
2eaf48
- Remove all of the patches, which have been applied upstream
2eaf48
- Update source URL for new the GitHub upstream
2eaf48
2eaf48
* Wed May 28 2014 Joe Orton <jorton@redhat.com> - 3.4-14
2eaf48
- rebuild for Python 3.4
2eaf48
2eaf48
* Mon Apr 28 2014 Matthias Runge <mrunge@redhat.com> - 3.4.13
2eaf48
- do not use conflicts between mod_wsgi packages (rhbz#1087943)
2eaf48
2eaf48
* Thu Jan 23 2014 Joe Orton <jorton@redhat.com> - 3.4-12
2eaf48
- fix _httpd_mmn expansion in absence of httpd-devel
2eaf48
2eaf48
* Fri Jan 10 2014 Matthias Runge <mrunge@redhat.com> - 3.4-11
2eaf48
- added python3 subpackage (thanks to Jakub Dorňák), rhbz#1035876
2eaf48
2eaf48
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.4-10
2eaf48
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
2eaf48
2eaf48
* Mon Jul  8 2013 Joe Orton <jorton@redhat.com> - 3.4-9
2eaf48
- modernize spec file (thanks to rcollet)
2eaf48
2eaf48
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.4-8
2eaf48
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
2eaf48
2eaf48
* Tue Dec 11 2012 Jan Kaluza <jkaluza@redhat.com> - 3.4-7
2eaf48
- compile with -fno-strict-aliasing to workaround Python
2eaf48
  bug http://www.python.org/dev/peps/pep-3123/
2eaf48
2eaf48
* Thu Nov 22 2012 Joe Orton <jorton@redhat.com> - 3.4-6
2eaf48
- use _httpd_moddir macro
2eaf48
2eaf48
* Thu Nov 22 2012 Joe Orton <jorton@redhat.com> - 3.4-5
2eaf48
- spec file cleanups
2eaf48
2eaf48
* Wed Oct 17 2012 Joe Orton <jorton@redhat.com> - 3.4-4
2eaf48
- enable PR_SET_DUMPABLE in daemon process to enable core dumps
2eaf48
2eaf48
* Wed Oct 17 2012 Joe Orton <jorton@redhat.com> - 3.4-3
2eaf48
- use a NULL c->sbh pointer with httpd 2.4 (possible fix for #867276)
2eaf48
- add logging for unexpected daemon process loss
2eaf48
2eaf48
* Wed Oct 17 2012 Matthias Runge <mrunge@redhat.com> - 3.4-2
2eaf48
- also use RPM_LD_FLAGS for build bz. #867137
2eaf48
2eaf48
* Mon Oct 15 2012 Matthias Runge <mrunge@redhat.com> - 3.4-1
2eaf48
- update to upstream release 3.4
2eaf48
2eaf48
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3-7
2eaf48
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
2eaf48
2eaf48
* Wed Jun 13 2012 Joe Orton <jorton@redhat.com> - 3.3-6
2eaf48
- add possible fix for daemon mode crash (#831701)
2eaf48
2eaf48
* Mon Mar 26 2012 Joe Orton <jorton@redhat.com> - 3.3-5
2eaf48
- move wsgi.conf to conf.modules.d
2eaf48
2eaf48
* Mon Mar 26 2012 Joe Orton <jorton@redhat.com> - 3.3-4
2eaf48
- rebuild for httpd 2.4
2eaf48
2eaf48
* Tue Mar 13 2012 Joe Orton <jorton@redhat.com> - 3.3-3
2eaf48
- prepare for httpd 2.4.x
2eaf48
2eaf48
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3-2
2eaf48
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
2eaf48
2eaf48
* Tue Nov 01 2011 James Bowes <jbowes@redhat.com> 3.3-1
2eaf48
- update to 3.3
2eaf48
2eaf48
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2-3
2eaf48
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
2eaf48
2eaf48
* Tue Jul 27 2010 David Malcolm <dmalcolm@redhat.com> - 3.2-2
2eaf48
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
2eaf48
2eaf48
* Tue Mar  9 2010 Josh Kayse <joshkayse@fedoraproject.org> - 3.2-1
2eaf48
- update to 3.2
2eaf48
2eaf48
* Sun Mar 07 2010 Josh Kayse <joshkayse@fedoraproject.org> - 3.1-2
2eaf48
- removed conflicts as it violates fedora packaging policy
2eaf48
2eaf48
* Sun Mar 07 2010 Josh Kayse <joshkayse@fedoraproject.org> - 3.1-1
2eaf48
- update to 3.1
2eaf48
- add explicit enable-shared
2eaf48
- add conflicts mod_python < 3.3.1
2eaf48
2eaf48
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5-2
2eaf48
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
2eaf48
2eaf48
* Thu Jul 02 2009 James Bowes <jbowes@redhat.com> 2.5-1
2eaf48
- Update to 2.5
2eaf48
2eaf48
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3-3
2eaf48
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
2eaf48
2eaf48
* Sun Nov 30 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 2.3-2
2eaf48
- Rebuild for Python 2.6
2eaf48
2eaf48
* Tue Oct 28 2008 Luke Macken <lmacken@redhat.com> 2.3-1
2eaf48
- Update to 2.3
2eaf48
2eaf48
* Mon Sep 29 2008 James Bowes <jbowes@redhat.com> 2.1-2
2eaf48
- Remove requires on httpd-devel
2eaf48
2eaf48
* Wed Jul 02 2008 James Bowes <jbowes@redhat.com> 2.1-1
2eaf48
- Update to 2.1
2eaf48
2eaf48
* Mon Jun 16 2008 Ricky Zhou <ricky@fedoraproject.org> 1.3-4
2eaf48
- Build against the shared python lib.
2eaf48
2eaf48
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.3-3
2eaf48
- Autorebuild for GCC 4.3
2eaf48
2eaf48
* Sun Jan 06 2008 James Bowes <jbowes@redhat.com> 1.3-2
2eaf48
- Require httpd
2eaf48
2eaf48
* Sat Jan 05 2008 James Bowes <jbowes@redhat.com> 1.3-1
2eaf48
- Update to 1.3
2eaf48
2eaf48
* Sun Sep 30 2007 James Bowes <jbowes@redhat.com> 1.0-1
2eaf48
- Initial packaging for Fedora