9a2e9d
%{!?_httpd_apxs: %{expand: %%global _httpd_apxs %%{_sbindir}/apxs}}
9a2e9d
9a2e9d
%{!?_httpd_mmn: %{expand: %%global _httpd_mmn %%(cat %{_includedir}/httpd/.mmn 2>/dev/null || echo 0-0)}}
9a2e9d
%{!?_httpd_confdir:    %{expand: %%global _httpd_confdir    %%{_sysconfdir}/httpd/conf.d}}
9a2e9d
# /etc/httpd/conf.d with httpd < 2.4 and defined as /etc/httpd/conf.modules.d with httpd >= 2.4
9a2e9d
%{!?_httpd_modconfdir: %{expand: %%global _httpd_modconfdir %%{_sysconfdir}/httpd/conf.d}}
9a2e9d
%{!?_httpd_moddir:    %{expand: %%global _httpd_moddir    %%{_libdir}/httpd/modules}}
9a2e9d
9a2e9d
%if 0%{?fedora} || 0%{?rhel} > 7
9a2e9d
%global with_python3 1
9a2e9d
%else
9a2e9d
%global with_python3 0
9a2e9d
%endif
9a2e9d
9a2e9d
%if (0%{?fedora} > 0 && 0%{?fedora} < 32) || (0%{?rhel} > 0 && 0%{?rhel} <= 7)
9a2e9d
%global with_python2 1
9a2e9d
%else
9a2e9d
%global with_python2 0
9a2e9d
%global debug_package %{nil}
9a2e9d
%endif
9a2e9d
9a2e9d
Name:           mod_wsgi
9a2e9d
Version:        4.7.1
9a2e9d
Release:        9%{?dist}
9a2e9d
Summary:        A WSGI interface for Python web applications in Apache
9a2e9d
License:        ASL 2.0
9a2e9d
URL:            https://modwsgi.readthedocs.io/
9a2e9d
Source0:        https://github.com/GrahamDumpleton/mod_wsgi/archive/%{version}.tar.gz#/mod_wsgi-%{version}.tar.gz
9a2e9d
Source1:        wsgi.conf
9a2e9d
Source2:        wsgi-python3.conf
9a2e9d
Patch1:         mod_wsgi-4.5.20-exports.patch
9a2e9d
Patch2:         mod_wsgi-4.7.1-remove-rpath.patch
9a2e9d
Patch3:         mod_wsgi-4.7.1-warning-segfaults.patch
9a2e9d
9a2e9d
BuildRequires: make
9a2e9d
BuildRequires:  httpd-devel
9a2e9d
BuildRequires:  gcc
9a2e9d
9a2e9d
# Suppress auto-provides for module DSO
9a2e9d
%global __provides_exclude_from %{_httpd_moddir}/.*\\.so$
9a2e9d
9a2e9d
%global _description\
9a2e9d
The mod_wsgi adapter is an Apache module that provides a WSGI compliant\
9a2e9d
interface for hosting Python based web applications within Apache. The\
9a2e9d
adapter is written completely in C code against the Apache C runtime and\
9a2e9d
for hosting WSGI applications within Apache has a lower overhead than using\
9a2e9d
existing WSGI adapters for mod_python or CGI.\
9a2e9d
9a2e9d
9a2e9d
%description %_description
9a2e9d
9a2e9d
%if 0%{?with_python2} > 0
9a2e9d
%package -n python2-%{name}
9a2e9d
Summary: %summary
9a2e9d
Requires:       httpd-mmn = %{_httpd_mmn}
9a2e9d
BuildRequires:  python2-devel, python2-setuptools
9a2e9d
%{?python_provide:%python_provide python2-%{name}}
9a2e9d
# Remove before F30
9a2e9d
Provides: mod_wsgi = %{version}-%{release}
9a2e9d
Provides: mod_wsgi%{?_isa} = %{version}-%{release}
9a2e9d
Obsoletes: mod_wsgi < %{version}-%{release}
9a2e9d
9a2e9d
%description -n python2-%{name} %_description
9a2e9d
9a2e9d
%endif
9a2e9d
9a2e9d
%if 0%{?with_python3} > 0
9a2e9d
%package -n python3-%{name}
9a2e9d
Summary:        %summary
9a2e9d
Requires:       httpd-mmn = %{_httpd_mmn}
9a2e9d
BuildRequires:  python3-devel, python3-sphinx, python3-sphinx_rtd_theme
9a2e9d
%if 0%{?with_python2} == 0
9a2e9d
Provides: mod_wsgi = %{version}-%{release}
9a2e9d
Provides: mod_wsgi%{?_isa} = %{version}-%{release}
9a2e9d
Obsoletes: mod_wsgi < %{version}-%{release}
9a2e9d
%endif
9a2e9d
9a2e9d
%description -n python3-%{name} %_description
9a2e9d
9a2e9d
%endif
9a2e9d
9a2e9d
%prep
9a2e9d
%autosetup -p1 -n %{name}-%{version}
9a2e9d
9a2e9d
: Python2=%{with_python2} Python3=%{with_python3}
9a2e9d
9a2e9d
%build
9a2e9d
%if %{with_python3}
9a2e9d
make -C docs html SPHINXBUILD=%{_bindir}/sphinx-build-3
9a2e9d
%endif
9a2e9d
9a2e9d
export LDFLAGS="$RPM_LD_FLAGS -L%{_libdir}"
9a2e9d
export CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing"
9a2e9d
9a2e9d
%if 0%{?with_python3} > 0
9a2e9d
mkdir py3build/
9a2e9d
# this always produces an error (because of trying to copy py3build
9a2e9d
# into itself) but we don't mind, so || :
9a2e9d
cp -R * py3build/ || :
9a2e9d
pushd py3build
9a2e9d
%configure --enable-shared --with-apxs=%{_httpd_apxs} --with-python=python3
9a2e9d
%{make_build}
9a2e9d
%py3_build
9a2e9d
popd
9a2e9d
%endif
9a2e9d
9a2e9d
%if 0%{?with_python2} > 0
9a2e9d
%configure --enable-shared --with-apxs=%{_httpd_apxs} --with-python=python2
9a2e9d
%{make_build}
9a2e9d
%py2_build
9a2e9d
%endif
9a2e9d
9a2e9d
%install
9a2e9d
# first install python3 variant and rename the so file
9a2e9d
%if 0%{?with_python3} > 0
9a2e9d
pushd py3build
9a2e9d
make install DESTDIR=$RPM_BUILD_ROOT LIBEXECDIR=%{_httpd_moddir}
9a2e9d
mv  $RPM_BUILD_ROOT%{_httpd_moddir}/mod_wsgi{,_python3}.so
9a2e9d
9a2e9d
install -d -m 755 $RPM_BUILD_ROOT%{_httpd_modconfdir}
9a2e9d
# httpd >= 2.4.x
9a2e9d
install -p -m 644 %{SOURCE2} $RPM_BUILD_ROOT%{_httpd_modconfdir}/10-wsgi-python3.conf
9a2e9d
9a2e9d
%py3_install
9a2e9d
mv $RPM_BUILD_ROOT%{_bindir}/mod_wsgi-express{,-3}
9a2e9d
popd
9a2e9d
9a2e9d
%endif
9a2e9d
9a2e9d
# second install python2 variant
9a2e9d
%if 0%{?with_python2} > 0
9a2e9d
make install DESTDIR=$RPM_BUILD_ROOT LIBEXECDIR=%{_httpd_moddir}
9a2e9d
9a2e9d
install -d -m 755 $RPM_BUILD_ROOT%{_httpd_modconfdir}
9a2e9d
# httpd >= 2.4.x
9a2e9d
install -p -m 644 %{SOURCE1} $RPM_BUILD_ROOT%{_httpd_modconfdir}/10-wsgi.conf
9a2e9d
9a2e9d
%py2_install
9a2e9d
mv $RPM_BUILD_ROOT%{_bindir}/mod_wsgi-express{,-2}
9a2e9d
ln -s %{_bindir}/mod_wsgi-express-2 $RPM_BUILD_ROOT%{_bindir}/mod_wsgi-express
9a2e9d
%endif
9a2e9d
9a2e9d
%if 0%{?with_python2} > 0
9a2e9d
%files -n python2-%{name}
9a2e9d
%license LICENSE
9a2e9d
%doc CREDITS.rst README.rst
9a2e9d
%config(noreplace) %{_httpd_modconfdir}/*wsgi.conf
9a2e9d
%{_httpd_moddir}/mod_wsgi.so
9a2e9d
%{python2_sitearch}/mod_wsgi-*.egg-info
9a2e9d
%{python2_sitearch}/mod_wsgi
9a2e9d
%{_bindir}/mod_wsgi-express-2
9a2e9d
%{_bindir}/mod_wsgi-express
9a2e9d
%endif
9a2e9d
9a2e9d
%if 0%{?with_python3} > 0
9a2e9d
%files -n python3-%{name}
9a2e9d
%license LICENSE
9a2e9d
%doc CREDITS.rst README.rst
9a2e9d
%config(noreplace) %{_httpd_modconfdir}/*wsgi-python3.conf
9a2e9d
%{_httpd_moddir}/mod_wsgi_python3.so
9a2e9d
%{python3_sitearch}/mod_wsgi-*.egg-info
9a2e9d
%{python3_sitearch}/mod_wsgi
9a2e9d
%{_bindir}/mod_wsgi-express-3
9a2e9d
%endif
9a2e9d
9a2e9d
%changelog
9a2e9d
* Tue Feb 08 2022 Tomas Orsava <torsava@redhat.com> - 4.7.1-9
9a2e9d
- Add automatically generated Obsoletes tag with the python39- prefix
9a2e9d
  for smoother upgrade from RHEL8
9a2e9d
- Use the modern way of filtering Provides not to interfere with modern Python
9a2e9d
  RPM generators
9a2e9d
- Related: rhbz#1990421
9a2e9d
9a2e9d
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 4.7.1-8
9a2e9d
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
9a2e9d
  Related: rhbz#1991688
9a2e9d
9a2e9d
* Thu Jul 01 2021 Luboš Uhliarik <luhliari@redhat.com> - 4.7.1-7
9a2e9d
- Resolves: #1976169 - mod_wsgi segfaults when python program outputs a warning
9a2e9d
  message
9a2e9d
9a2e9d
* Tue Jun 08 2021 Luboš Uhliarik <luhliari@redhat.com> - 4.7.1-6
9a2e9d
- Resolves: #1969555 - remove rpath
9a2e9d
9a2e9d
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 4.7.1-5
9a2e9d
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
9a2e9d
9a2e9d
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 4.7.1-4
9a2e9d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
9a2e9d
9a2e9d
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.7.1-3
9a2e9d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
9a2e9d
9a2e9d
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 4.7.1-2
9a2e9d
- Rebuilt for Python 3.9
9a2e9d
9a2e9d
* Wed May 13 2020 Joe Orton <jorton@redhat.com> - 4.7.1-1
9a2e9d
- update to 4.7.1 (#1721376)
9a2e9d
9a2e9d
* Thu Feb 13 2020 Tom Stellard <tstellar@redhat.com> - 4.6.8-3
9a2e9d
- Use make_build macro instead of just make
9a2e9d
- https://docs.fedoraproject.org/en-US/packaging-guidelines/#_parallel_make
9a2e9d
9a2e9d
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.6.8-2
9a2e9d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
9a2e9d
9a2e9d
* Mon Nov 11 2019 Joe Orton <jorton@redhat.com> - 4.6.8-1
9a2e9d
- update to 4.6.8 (#1721376)
9a2e9d
9a2e9d
* Mon Nov 11 2019 Joe Orton <jorton@redhat.com> - 4.6.6-6
9a2e9d
- try again to drop Python 2
9a2e9d
9a2e9d
* Tue Oct 29 2019 Joe Orton <jorton@redhat.com> - 4.6.6-5
9a2e9d
- drop python2 build
9a2e9d
9a2e9d
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 4.6.6-4
9a2e9d
- Rebuilt for Python 3.8.0rc1 (#1748018)
9a2e9d
9a2e9d
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 4.6.6-3
9a2e9d
- Rebuilt for Python 3.8
9a2e9d
9a2e9d
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4.6.6-2
9a2e9d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
9a2e9d
9a2e9d
* Fri Jun 07 2019 Matthias Runge <mrunge@redhat.com> - 4.6.6-1
9a2e9d
- update to 4.6.6 (rhbz#1718151)
9a2e9d
9a2e9d
* Wed May 29 2019 Miro Hrončok <mhroncok@redhat.com> - 4.6.5-1
9a2e9d
- update to 4.6.5
9a2e9d
9a2e9d
* Tue Apr 16 2019 Joe Orton <jorton@redhat.com> - 4.6.4-4
9a2e9d
- only build docs with Python 3
9a2e9d
- fix build on Fedora>30 and RHEL 7
9a2e9d
9a2e9d
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4.6.4-3
9a2e9d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
9a2e9d
9a2e9d
* Tue Jul 31 2018 Adam Williamson <awilliam@redhat.com> - 4.6.4-2
9a2e9d
- Run Python 3 build in a subdir, so module isn't linked against both
9a2e9d
  libpython 2 and libpython 3 (rhbz#1609491)
9a2e9d
9a2e9d
* Fri Jul 20 2018 Matthias Runge <mrunge@redhat.com> - 4.6.4-1
9a2e9d
- update to 4.6.4 (rhbz#1560329)
9a2e9d
9a2e9d
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4.6.2-5
9a2e9d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
9a2e9d
9a2e9d
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 4.6.2-4
9a2e9d
- Rebuilt for Python 3.7
9a2e9d
9a2e9d
* Fri Apr 20 2018 Joe Orton <jorton@redhat.com> - 4.6.2-3
9a2e9d
- use sphinx-build-3 if python2 support is disabled
9a2e9d
9a2e9d
* Thu Mar 22 2018 Troy Dawson <tdawson@redhat.com> - 4.6.2-2
9a2e9d
- Update conditionals.
9a2e9d
- Make preperations for non-python2 builds
9a2e9d
9a2e9d
* Tue Mar 13 2018 Matthias Runge <mrunge@redhat.com> - 4.6.2-1
9a2e9d
- update to 4.6.2 (rhbz#1514768)
9a2e9d
- add gcc BR
9a2e9d
9a2e9d
* Wed Feb  7 2018 Joe Orton <jorton@redhat.com> - 4.5.20-4
9a2e9d
- restrict module DSO symbol exports
9a2e9d
9a2e9d
* Tue Jan 09 2018 Iryna Shcherbina <ishcherb@redhat.com> - 4.5.20-3
9a2e9d
- Update Python 2 dependency declarations to new packaging standards
9a2e9d
  (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
9a2e9d
9a2e9d
* Sun Dec 17 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 4.5.20-2
9a2e9d
- Python 2 binary package renamed to python2-mod_wsgi
9a2e9d
  See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3
9a2e9d
9a2e9d
* Fri Oct 20 2017 Joe Orton <jorton@redhat.com> - 4.5.20-1
9a2e9d
- update to 4.5.20
9a2e9d
9a2e9d
* Wed Aug 09 2017 Dan Callaghan <dcallagh@redhat.com> - 4.5.15-5
9a2e9d
- include mod_wsgi Python package and mod_wsgi-express script
9a2e9d
9a2e9d
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.5.15-4
9a2e9d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
9a2e9d
9a2e9d
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.5.15-3
9a2e9d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
9a2e9d
9a2e9d
* Fri Jul 07 2017 Igor Gnatenko <ignatenko@redhat.com> - 4.5.15-2
9a2e9d
- Rebuild due to bug in RPM (RHBZ #1468476)
9a2e9d
9a2e9d
* Fri Jun 23 2017 Joe Orton <jorton@redhat.com> - 4.5.15-1
9a2e9d
- update to 4.5.15 (#1431893)
9a2e9d
9a2e9d
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.5.13-3
9a2e9d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
9a2e9d
9a2e9d
* Tue Jan 10 2017 Jakub Dorňák <jakub.dornak@misli.cz> - 4.5.13-1
9a2e9d
- Update to 4.5.13
9a2e9d
9a2e9d
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 4.5.9-2
9a2e9d
- Rebuild for Python 3.6
9a2e9d
9a2e9d
* Mon Dec 05 2016 Matthias Runge <mrunge@redhat.com> - 4.5.9-1
9a2e9d
- upgrade to 4.5.9 (rhbz#1180445)
9a2e9d
9a2e9d
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 4.4.8-4
9a2e9d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
9a2e9d
9a2e9d
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.4.8-3
9a2e9d
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
9a2e9d
9a2e9d
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.4.8-2
9a2e9d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
9a2e9d
9a2e9d
* Thu Feb 12 2015 Richard W.M. Jones <rjones@redhat.com> - 4.4.8-1
9a2e9d
- Upstream to 4.4.8.
9a2e9d
- This version includes the fix for the segfault described in RHBZ#1178851.
9a2e9d
9a2e9d
* Mon Jan  5 2015 Jakub Dorňák <jdornak@redhat.com> - 4.4.3-1
9a2e9d
- update to new upstream version 4.4.3 (#1176914)
9a2e9d
9a2e9d
* Wed Dec 17 2014 Jan Kaluza <jkaluza@redhat.com> - 4.4.1-1
9a2e9d
- update to new upstream version 4.4.1 (#1170994)
9a2e9d
9a2e9d
* Wed Nov 19 2014 Jan Kaluza <jkaluza@redhat.com> - 4.3.2-1
9a2e9d
- update to new upstream version 4.3.2 (#1104526)
9a2e9d
9a2e9d
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.5-3
9a2e9d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
9a2e9d
9a2e9d
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.5-2
9a2e9d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
9a2e9d
9a2e9d
* Thu May 29 2014 Luke Macken <lmacken@redhat.com> - 3.5-1
9a2e9d
- Update to 3.5 to fix CVE-2014-0240 (#1101863)
9a2e9d
- Remove all of the patches, which have been applied upstream
9a2e9d
- Update source URL for new the GitHub upstream
9a2e9d
9a2e9d
* Wed May 28 2014 Joe Orton <jorton@redhat.com> - 3.4-14
9a2e9d
- rebuild for Python 3.4
9a2e9d
9a2e9d
* Mon Apr 28 2014 Matthias Runge <mrunge@redhat.com> - 3.4.13
9a2e9d
- do not use conflicts between mod_wsgi packages (rhbz#1087943)
9a2e9d
9a2e9d
* Thu Jan 23 2014 Joe Orton <jorton@redhat.com> - 3.4-12
9a2e9d
- fix _httpd_mmn expansion in absence of httpd-devel
9a2e9d
9a2e9d
* Fri Jan 10 2014 Matthias Runge <mrunge@redhat.com> - 3.4-11
9a2e9d
- added python3 subpackage (thanks to Jakub Dorňák), rhbz#1035876
9a2e9d
9a2e9d
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.4-10
9a2e9d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
9a2e9d
9a2e9d
* Mon Jul  8 2013 Joe Orton <jorton@redhat.com> - 3.4-9
9a2e9d
- modernize spec file (thanks to rcollet)
9a2e9d
9a2e9d
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.4-8
9a2e9d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
9a2e9d
9a2e9d
* Tue Dec 11 2012 Jan Kaluza <jkaluza@redhat.com> - 3.4-7
9a2e9d
- compile with -fno-strict-aliasing to workaround Python
9a2e9d
  bug http://www.python.org/dev/peps/pep-3123/
9a2e9d
9a2e9d
* Thu Nov 22 2012 Joe Orton <jorton@redhat.com> - 3.4-6
9a2e9d
- use _httpd_moddir macro
9a2e9d
9a2e9d
* Thu Nov 22 2012 Joe Orton <jorton@redhat.com> - 3.4-5
9a2e9d
- spec file cleanups
9a2e9d
9a2e9d
* Wed Oct 17 2012 Joe Orton <jorton@redhat.com> - 3.4-4
9a2e9d
- enable PR_SET_DUMPABLE in daemon process to enable core dumps
9a2e9d
9a2e9d
* Wed Oct 17 2012 Joe Orton <jorton@redhat.com> - 3.4-3
9a2e9d
- use a NULL c->sbh pointer with httpd 2.4 (possible fix for #867276)
9a2e9d
- add logging for unexpected daemon process loss
9a2e9d
9a2e9d
* Wed Oct 17 2012 Matthias Runge <mrunge@redhat.com> - 3.4-2
9a2e9d
- also use RPM_LD_FLAGS for build bz. #867137
9a2e9d
9a2e9d
* Mon Oct 15 2012 Matthias Runge <mrunge@redhat.com> - 3.4-1
9a2e9d
- update to upstream release 3.4
9a2e9d
9a2e9d
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3-7
9a2e9d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
9a2e9d
9a2e9d
* Wed Jun 13 2012 Joe Orton <jorton@redhat.com> - 3.3-6
9a2e9d
- add possible fix for daemon mode crash (#831701)
9a2e9d
9a2e9d
* Mon Mar 26 2012 Joe Orton <jorton@redhat.com> - 3.3-5
9a2e9d
- move wsgi.conf to conf.modules.d
9a2e9d
9a2e9d
* Mon Mar 26 2012 Joe Orton <jorton@redhat.com> - 3.3-4
9a2e9d
- rebuild for httpd 2.4
9a2e9d
9a2e9d
* Tue Mar 13 2012 Joe Orton <jorton@redhat.com> - 3.3-3
9a2e9d
- prepare for httpd 2.4.x
9a2e9d
9a2e9d
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3-2
9a2e9d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
9a2e9d
9a2e9d
* Tue Nov 01 2011 James Bowes <jbowes@redhat.com> 3.3-1
9a2e9d
- update to 3.3
9a2e9d
9a2e9d
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2-3
9a2e9d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
9a2e9d
9a2e9d
* Tue Jul 27 2010 David Malcolm <dmalcolm@redhat.com> - 3.2-2
9a2e9d
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
9a2e9d
9a2e9d
* Tue Mar  9 2010 Josh Kayse <joshkayse@fedoraproject.org> - 3.2-1
9a2e9d
- update to 3.2
9a2e9d
9a2e9d
* Sun Mar 07 2010 Josh Kayse <joshkayse@fedoraproject.org> - 3.1-2
9a2e9d
- removed conflicts as it violates fedora packaging policy
9a2e9d
9a2e9d
* Sun Mar 07 2010 Josh Kayse <joshkayse@fedoraproject.org> - 3.1-1
9a2e9d
- update to 3.1
9a2e9d
- add explicit enable-shared
9a2e9d
- add conflicts mod_python < 3.3.1
9a2e9d
9a2e9d
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5-2
9a2e9d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
9a2e9d
9a2e9d
* Thu Jul 02 2009 James Bowes <jbowes@redhat.com> 2.5-1
9a2e9d
- Update to 2.5
9a2e9d
9a2e9d
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3-3
9a2e9d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
9a2e9d
9a2e9d
* Sun Nov 30 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 2.3-2
9a2e9d
- Rebuild for Python 2.6
9a2e9d
9a2e9d
* Tue Oct 28 2008 Luke Macken <lmacken@redhat.com> 2.3-1
9a2e9d
- Update to 2.3
9a2e9d
9a2e9d
* Mon Sep 29 2008 James Bowes <jbowes@redhat.com> 2.1-2
9a2e9d
- Remove requires on httpd-devel
9a2e9d
9a2e9d
* Wed Jul 02 2008 James Bowes <jbowes@redhat.com> 2.1-1
9a2e9d
- Update to 2.1
9a2e9d
9a2e9d
* Mon Jun 16 2008 Ricky Zhou <ricky@fedoraproject.org> 1.3-4
9a2e9d
- Build against the shared python lib.
9a2e9d
9a2e9d
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.3-3
9a2e9d
- Autorebuild for GCC 4.3
9a2e9d
9a2e9d
* Sun Jan 06 2008 James Bowes <jbowes@redhat.com> 1.3-2
9a2e9d
- Require httpd
9a2e9d
9a2e9d
* Sat Jan 05 2008 James Bowes <jbowes@redhat.com> 1.3-1
9a2e9d
- Update to 1.3
9a2e9d
9a2e9d
* Sun Sep 30 2007 James Bowes <jbowes@redhat.com> 1.0-1
9a2e9d
- Initial packaging for Fedora
9a2e9d