Blame SPECS/mod_fcgid.spec

b4781f
Name:		mod_fcgid
b4781f
Version:	2.3.9
b4781f
Release:	28%{?dist}
b4781f
Summary:	FastCGI interface module for Apache 2
b4781f
License:	ASL 2.0
b4781f
URL:		http://httpd.apache.org/mod_fcgid/
b4781f
Source0:	http://www.apache.org/dist/httpd/mod_fcgid/mod_fcgid-%{version}.tar.bz2
b4781f
Source2:	mod_fcgid-2.1-README.RPM
b4781f
Source3:	mod_fcgid-2.1-README.SELinux
b4781f
Source4:	mod_fcgid-tmpfs.conf
b4781f
Source5:	fcgid24.conf
b4781f
Patch0:		mod_fcgid-2.3.4-fixconf-shellbang.patch
b4781f
Patch1:         mod_fcgid-2.3.9-r1847623.patch
b4781f
Patch2:		mod_fcgid-2.3.9-1024-env-vars.patch
b4781f
Patch3:         mod_fcgid-2.3.9-r1847624.patch
b4781f
Patch4:		mod_fcgid-2.3.9-r1848298.patch
b4781f
Patch5:		mod_fcgid-2.3.9-r1848311.patch
b4781f
BuildRequires:	coreutils
b4781f
BuildRequires:	gcc
b4781f
BuildRequires:	httpd-devel >= 2.4
b4781f
BuildRequires:	make
b4781f
BuildRequires:	pkgconfig
b4781f
BuildRequires:	sed
b4781f
Requires:	httpd-mmn = %{_httpd_mmn}
b4781f
# systemd needed for ownership of %%{_tmpfilesdir}
b4781f
Requires:	systemd
b4781f
b4781f
%description
b4781f
mod_fcgid is a binary-compatible alternative to the Apache module mod_fastcgi.
b4781f
mod_fcgid has a new process management strategy, which concentrates on reducing
b4781f
the number of fastcgi servers, and kicking out corrupt fastcgi servers as soon
b4781f
as possible.
b4781f
b4781f
%prep
b4781f
%setup -q
b4781f
cp -p %{SOURCE2} README.RPM
b4781f
cp -p %{SOURCE3} README.SELinux
b4781f
cp -p %{SOURCE5} fcgid24.conf
b4781f
b4781f
# Fix shellbang in fixconf script for our location of sed
b4781f
%if (0%{?rhel} && 0%{?rhel} <= 7) || (0%{?fedora} && 0%{?fedora} <= 23)
b4781f
%patch0 -p1
b4781f
%endif
b4781f
b4781f
%patch1 -p1 -b .r1847623
b4781f
%patch2 -p1 -b .1024_env_vars
b4781f
%patch3 -p1 -b .r1847624
b4781f
%patch4 -p1 -b .r1848298
b4781f
%patch5 -p1 -b .r1848311
b4781f
%build
b4781f
APXS=%{_httpd_apxs} ./configure.apxs
b4781f
make
b4781f
b4781f
%install
b4781f
%make_install MKINSTALLDIRS="mkdir -p"
b4781f
mkdir -p %{buildroot}{%{_httpd_confdir},%{_httpd_modconfdir}}
b4781f
echo "LoadModule fcgid_module modules/mod_fcgid.so" > %{buildroot}%{_httpd_modconfdir}/10-fcgid.conf
b4781f
install -D -m 644 fcgid24.conf %{buildroot}%{_httpd_confdir}/fcgid.conf
b4781f
install -d -m 755 %{buildroot}/run/mod_fcgid
b4781f
b4781f
# Include the manual as %%doc, don't need it elsewhere
b4781f
rm -rf %{buildroot}%{_httpd_contentdir}/manual
b4781f
b4781f
# Make sure /run/mod_fcgid exists at boot time (#656625)
b4781f
install -d -m 755 %{buildroot}%{_tmpfilesdir}
b4781f
install -p -m 644 %{SOURCE4} %{buildroot}%{_tmpfilesdir}/mod_fcgid.conf
b4781f
b4781f
%files
b4781f
%license LICENSE-FCGID
b4781f
%doc README.RPM README.SELinux
b4781f
# mod_fcgid.html.en is explicitly encoded as ISO-8859-1
b4781f
%doc CHANGES-FCGID NOTICE-FCGID README-FCGID STATUS-FCGID
b4781f
%doc docs/manual/mod/mod_fcgid.html.en modules/fcgid/ChangeLog
b4781f
%doc build/fixconf.sed
b4781f
%{_libdir}/httpd/modules/mod_fcgid.so
b4781f
%config(noreplace) %{_httpd_modconfdir}/10-fcgid.conf
b4781f
%config(noreplace) %{_httpd_confdir}/fcgid.conf
b4781f
%{_tmpfilesdir}/mod_fcgid.conf
b4781f
%dir %attr(0775,root,apache) /run/mod_fcgid/
b4781f
b4781f
%changelog
b4781f
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 2.3.9-28
b4781f
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
b4781f
  Related: rhbz#1991688
b4781f
b4781f
* Thu Jul  1 2021 Joe Orton <jorton@redhat.com> - 2.3.9-27
b4781f
- fix env var truncation to 127 bytes (#1961948)
b4781f
- suppress symbol exports (#1961947)
b4781f
b4781f
* Tue May 18 2021 Lubos Uhliarik <luhliari@redhat.com> - 2.3.9-26
b4781f
- Resolves: #1958882 - mod_fcgid does not pass more than 64 variables to an FCGI
b4781f
  server process environment
b4781f
b4781f
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 2.3.9-25
b4781f
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
b4781f
b4781f
* Wed Jan 27 2021 Paul Howarth <paul@city-fan.org> - 2.3.9-24
b4781f
- Drop EL-6 support
b4781f
  - Use %%license unconditionally
b4781f
  - _httpd_* macros always available
b4781f
  - Run directory is always /run on tmpfs
b4781f
  - Assume httpd ≥ 2.4 filesystem layout
b4781f
  - systemd-units always provided by systemd
b4781f
b4781f
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.9-23
b4781f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
b4781f
b4781f
* Thu Aug 27 2020 Joe Orton <jorton@redhat.com> - 2.3.9-22
b4781f
- merge fixes from RHEL (r1848298, etc)
b4781f
b4781f
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.9-21
b4781f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
b4781f
b4781f
* Mon Jul 13 2020 Tom Stellard <tstellar@redhat.com> - 2.3.9-20
b4781f
- Use make macros
b4781f
- https://fedoraproject.org/wiki/Changes/UseMakeBuildInstallMacro
b4781f
b4781f
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.9-19
b4781f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
b4781f
b4781f
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.9-18
b4781f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
b4781f
b4781f
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.9-17
b4781f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
b4781f
b4781f
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.9-16
b4781f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
b4781f
b4781f
* Thu May  3 2018 Paul Howarth <paul@city-fan.org> - 2.3.9-15
b4781f
- Correct mode of %%{rundir}/mod_fcgid in %%{_tmpfilesdir}/mod_fcgid.conf
b4781f
b4781f
* Wed May 02 2018 Luboš Uhliarik <luhliari@redhat.com> - 2.3.9-14
b4781f
- Resolves: #1564219 - SELinux prevents httpd from starting when mod_fcgid
b4781f
  is installed (also #1574390)
b4781f
b4781f
* Tue Feb 20 2018 Paul Howarth <paul@city-fan.org> - 2.3.9-13
b4781f
- BR: gcc
b4781f
b4781f
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.9-12
b4781f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
b4781f
b4781f
* Fri Jan 26 2018 Paul Howarth <paul@city-fan.org> - 2.3.9-11
b4781f
- Drop SELinux policy module: all supported targets have it in base policy now
b4781f
- Update README.SELinux to current types and ship it
b4781f
- Use forward-looking conditionals
b4781f
- One build requirement per line
b4781f
- Drop legacy Group: tag
b4781f
b4781f
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.9-10
b4781f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
b4781f
b4781f
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.9-9
b4781f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
b4781f
b4781f
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.9-8
b4781f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
b4781f
b4781f
* Fri Mar  4 2016 Paul Howarth <paul@city-fan.org> - 2.3.9-7
b4781f
- Use /usr/bin/sed rather than /bin/sed for fixconf script on modern releases
b4781f
- Drop %%defattr, redundant since rpm 4.4
b4781f
- Use %%license where possible
b4781f
b4781f
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.9-6
b4781f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
b4781f
b4781f
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.9-5
b4781f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
b4781f
b4781f
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.9-4
b4781f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
b4781f
b4781f
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.9-3
b4781f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
b4781f
b4781f
* Thu Jan 23 2014 Joe Orton <jorton@redhat.com> 2.3.9-2
b4781f
- Fix _httpd_mmn expansion in absence of httpd-devel
b4781f
b4781f
* Tue Oct  8 2013 Paul Howarth <paul@city-fan.org> 2.3.9-1
b4781f
- Update to 2.3.9
b4781f
  - SECURITY: Fix possible heap buffer overwrite (CVE-2013-4365)
b4781f
  - Add experimental cmake-based build system for Windows
b4781f
  - Correctly parse quotation and escaped spaces in FcgidWrapper and the AAA
b4781f
    Authenticator/Authorizor/Access directives' command line argument, as
b4781f
    currently documented (PR#51194)
b4781f
  - Honor quoted FcgidCmdOptions arguments (notably for InitialEnv
b4781f
    assignments) (PR#51657)
b4781f
  - Conform script response parsing with mod_cgid and ensure no response body
b4781f
    is sent when ap_meets_conditions() determines that request conditions are
b4781f
    met
b4781f
  - Improve logging in access control hook functions
b4781f
  - Avoid making internal sub-requests and processing Location headers when in
b4781f
    FCGI_AUTHORIZER mode, as the auth hook functions already treat Location
b4781f
    headers returned by scripts as an error since redirections are not
b4781f
    meaningful in this mode
b4781f
  - Revert fix for PR#53693, added in 2.3.8 but undocumented
b4781f
  - Fix issues with a minor optimization added in 2.3.8
b4781f
b4781f
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> 2.3.7-7
b4781f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
b4781f
b4781f
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> 2.3.7-6
b4781f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
b4781f
b4781f
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> 2.3.7-5
b4781f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
b4781f
b4781f
* Wed Jul  4 2012 Paul Howarth <paul@city-fan.org> 2.3.7-4
b4781f
- Move tmpfiles.d config from %%{_sysconfdir} to %%{_prefix}/lib
b4781f
b4781f
* Wed May  2 2012 Paul Howarth <paul@city-fan.org> 2.3.7-3
b4781f
- Make %%files list more explicit
b4781f
b4781f
* Wed May  2 2012 Joe Orton <jorton@redhat.com> 2.3.7-2
b4781f
- Use 10- prefix for conf file in conf.modules.d with httpd ≥ 2.4
b4781f
- Use _httpd_confdir throughout
b4781f
b4781f
* Mon Apr 23 2012 Paul Howarth <paul@city-fan.org> 2.3.7-1
b4781f
- Update to 2.3.7
b4781f
  - Introduce FcgidWin32PreventOrphans directive on Windows to use OS Job
b4781f
    Control Objects to terminate all running fcgi's when the worker process
b4781f
    has been abruptly terminated (PR: 51078)
b4781f
  - Periodically clean out the brigades that are pulling in the request body
b4781f
    for handoff to the fcgid child (PR: 51749)
b4781f
  - Resolve crash during graceful restarts (PR: 50309)
b4781f
  - Solve latency/congestion of resolving effective user file access rights
b4781f
    when no such info is desired, for config-related filename stats (PR: 51020)
b4781f
  - Fix regression in 2.3.6 that broke process controls when using
b4781f
    vhost-specific configuration
b4781f
  - Account for first process in class in the spawn score
b4781f
- Drop patch for CVE-2012-1181, now included in upstream release
b4781f
b4781f
* Tue Mar 27 2012 Paul Howarth <paul@city-fan.org> 2.3.6-6
b4781f
- Fix compatibility with httpd 2.4 in F-18/RHEL-7 onwards
b4781f
- Use /run rather than /var/run from F-15/RHEL-7 onwards
b4781f
b4781f
* Sun Jan 22 2012 Paul Howarth <paul@city-fan.org> 2.3.6-5
b4781f
- Fix regression in 2.3.6 that broke process controls when using vhost-specific
b4781f
  configuration (upstream issue 49902, #783742, CVE-2012-1181)
b4781f
b4781f
* Fri Jan  6 2012 Paul Howarth <paul@city-fan.org> 2.3.6-4
b4781f
- Nobody else likes macros for commands
b4781f
b4781f
* Tue Feb  8 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> 2.3.6-3
b4781f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
b4781f
b4781f
* Wed Dec  1 2010 Paul Howarth <paul@city-fan.org> 2.3.6-2
b4781f
- Add /etc/tmpfiles.d/mod_fcgid.conf for builds on Fedora 15 onwards to
b4781f
  support running with /var/run on tmpfs (#656625)
b4781f
b4781f
* Thu Nov  4 2010 Paul Howarth <paul@city-fan.org> 2.3.6-1
b4781f
- Update to 2.3.6 (see CHANGES-FCGID for full details)
b4781f
  - Fix possible stack buffer overwrite (CVE-2010-3872)
b4781f
  - Change the default for FcgidMaxRequestLen from 1GB to 128K; administrators
b4781f
    should change this to an appropriate value based on site requirements
b4781f
  - Correct a problem that resulted in FcgidMaxProcesses being ignored in some
b4781f
    situations
b4781f
  - Return 500 instead of segfaulting when the application returns no output
b4781f
- Don't include SELinux policy for RHEL-5 builds since RHEL >= 5.5 includes it
b4781f
- Explicitly require /bin/sed for fixconf script
b4781f
b4781f
* Tue Jun  8 2010 Paul Howarth <paul@city-fan.org> 2.3.5-2
b4781f
- SELinux policy module not needed for RHEL-6 onwards
b4781f
b4781f
* Wed Jan 27 2010 Paul Howarth <paul@city-fan.org> 2.3.5-1
b4781f
- Update to 2.3.5 (see CHANGES-FCGID for details)
b4781f
- Drop upstream svn patch
b4781f
b4781f
* Wed Oct 21 2009 Paul Howarth <paul@city-fan.org> 2.3.4-2
b4781f
- Add fixes from upstream svn for a number of issues, most notably that the
b4781f
  fixconf script had an error in the regexp, which resulted in a prefix of
b4781f
  "FcgidFcgid" on the updated directives
b4781f
b4781f
* Mon Oct 12 2009 Paul Howarth <paul@city-fan.org> 2.3.4-1
b4781f
- Update to 2.3.4 (configuration directives changed again)
b4781f
- Add fixconf.sed script for config file directives update
b4781f
b4781f
* Fri Sep 25 2009 Paul Howarth <paul@city-fan.org> 2.3.1-2.20090925svn818270
b4781f
- Update to svn revision 818270
b4781f
- DESTDIR and header detection patches upstreamed
b4781f
- Build SELinux policy module for EL-5; support in EL-5.3 is incomplete and
b4781f
  will be fixed in EL-5.5 (#519369)
b4781f
- Drop aliases httpd_sys_content_r{a,o,w}_t -> httpd_fastcgi_content_r{a,o,w}_t
b4781f
  from pre-2.5 SElinux policy module as these types aren't defined there
b4781f
b4781f
* Wed Sep 23 2009 Paul Howarth <paul@city-fan.org> 2.3.1-1.20090923svn817978
b4781f
- Update to post-2.3.1 svn snapshot
b4781f
- Upstream moved to apache.org
b4781f
- License changed to ASL 2.0
b4781f
- Use FCGID-prefixed config file options (old ones deprecated)
b4781f
- Lots of documentation changes
b4781f
- Renumber sources
b4781f
- Don't defer to mod_fastcgi if both are present
b4781f
- Drop gawk buildreq
b4781f
- Add patches fixing RPM build issues (DESTDIR support, header detection)
b4781f
b4781f
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2-13
b4781f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
b4781f
b4781f
* Tue May 26 2009 Paul Howarth <paul@city-fan.org> 2.2-12
b4781f
- Don't use /etc/httpd/run as basis of "run" directory as its DAC permissions
b4781f
  are not permissive enough in F-11 onwards; instead, revert to
b4781f
  /var/run/mod_fcgid and tweak default config accordingly (#502273)
b4781f
b4781f
* Sun May 17 2009 Paul Howarth <paul@city-fan.org> 2.2-11
b4781f
- Follow link /etc/httpd/run and make our "run" directory a subdir of wherever
b4781f
  that leads (#501123)
b4781f
b4781f
* Mon Apr  6 2009 Paul Howarth <paul@city-fan.org> 2.2-10
b4781f
- EL 5.3 now has SELinux support in the main selinux-policy package so handle
b4781f
  that release as per Fedora >= 8, except that the RHEL selinux-policy package
b4781f
  doesn't Obsolete/Provide mod_fcgid-selinux like the Fedora version, so do
b4781f
  the obsoletion here instead
b4781f
b4781f
* Thu Feb 26 2009 Paul Howarth <paul@city-fan.org> 2.2-9
b4781f
- Update documentation for MoinMoin, Rails (#476658), and SELinux
b4781f
b4781f
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2-8
b4781f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
b4781f
b4781f
* Wed Nov 12 2008 Paul Howarth <paul@city-fan.org> 2.2-7
b4781f
- SELinux policy module no longer built for Fedora 8 onwards as it is
b4781f
  obsoleted by the main selinux-policy package
b4781f
- Conflicts for selinux-policy packages older than the releases where mod_fcgid
b4781f
  policy was incorporated have been added for Fedora 8, 9, and 10 versions, to
b4781f
  ensure that SELinux support will work if installed
b4781f
b4781f
* Tue Oct 21 2008 Paul Howarth <paul@city-fan.org> 2.2-6
b4781f
- SELinux policy module rewritten to merge fastcgi and system script domains
b4781f
  in preparation for merge into main selinux-policy package (#462318)
b4781f
- Try to determine supported SELinux policy types by reading /etc/selinux/config
b4781f
b4781f
* Thu Jul 24 2008 Paul Howarth <paul@city-fan.org> 2.2-5
b4781f
- Tweak selinux-policy version detection macro to work with current Rawhide
b4781f
b4781f
* Thu Feb 14 2008 Paul Howarth <paul@city-fan.org> 2.2-4
b4781f
- Rebuild with gcc 4.3.0 for Fedora 9
b4781f
b4781f
* Mon Jan 14 2008 Paul Howarth <paul@city-fan.org> 2.2-3
b4781f
- Update SELinux policy to fix occasional failures on restarts
b4781f
  (move shared memory file into /var/run/mod_fcgid directory)
b4781f
b4781f
* Thu Jan  3 2008 Paul Howarth <paul@city-fan.org> 2.2-2
b4781f
- Update SELinux policy to support file transition to httpd_tmp_t for
b4781f
  temporary files
b4781f
b4781f
* Fri Sep 14 2007 Paul Howarth <paul@city-fan.org> 2.2-1
b4781f
- Update to version 2.2
b4781f
- Make sure docs are encoded as UTF-8
b4781f
b4781f
* Mon Sep  3 2007 Joe Orton <jorton@redhat.com> 2.1-6
b4781f
- rebuild for fixed 32-bit APR (#254241)
b4781f
b4781f
* Thu Aug 23 2007 Paul Howarth <paul@city-fan.org> 2.1-5
b4781f
- Update source URL to point to downloads.sf.net rather than dl.sf.net
b4781f
- Upstream released new tarball without changing version number, though the
b4781f
  only change was in arch/win32/fcgid_pm_win.c, which is not used to build the
b4781f
  RPM package
b4781f
- Clarify license as GPL (unspecified/any version)
b4781f
- Unexpand tabs in spec
b4781f
- Add buildreq of gawk
b4781f
b4781f
* Fri Aug  3 2007 Paul Howarth <paul@city-fan.org> 2.1-4
b4781f
- Add buildreq of pkgconfig, a missing dependency of both apr-devel and
b4781f
  apr-util-devel on FC5
b4781f
b4781f
* Fri Jun 15 2007 Paul Howarth <paul@city-fan.org> 2.1-3
b4781f
- Major update of SELinux policy, supporting accessing data on NFS/CIFS shares
b4781f
  and a new boolean, httpd_fastcgi_can_sendmail, to allow connections to SMTP
b4781f
  servers
b4781f
- Fix for SELinux policy on Fedora 7, which didn't work due to changes in the
b4781f
  permissions macros in the underlying selinux-policy package
b4781f
b4781f
* Wed Mar 21 2007 Paul Howarth <paul@city-fan.org> 2.1-2
b4781f
- Add RHEL5 with SELinux support
b4781f
- Rename README.Fedora to README.RPM
b4781f
b4781f
* Fri Feb 16 2007 Paul Howarth <paul@city-fan.org> 2.1-1
b4781f
- Update to 2.1
b4781f
- Update documentation and patches
b4781f
- Rename some source files to reduce chances of conflicting names
b4781f
- Include SharememPath directive in conf file to avoid unfortunate upstream
b4781f
  default location
b4781f
b4781f
* Mon Oct 30 2006 Paul Howarth <paul@city-fan.org> 2.0-1
b4781f
- Update to 2.0
b4781f
- Source is now hosted at sourceforge.net
b4781f
- Update docs
b4781f
b4781f
* Wed Sep  6 2006 Paul Howarth <paul@city-fan.org> 1.10-7
b4781f
- Include the right README* files
b4781f
b4781f
* Tue Aug 29 2006 Paul Howarth <paul@city-fan.org> 1.10-6
b4781f
- Buildreqs for FC5 now identical to buildreqs for FC6 onwards
b4781f
b4781f
* Fri Jul 28 2006 Paul Howarth <paul@city-fan.org> 1.10-5
b4781f
- Split off SELinux module into separate subpackage to avoid dependency on
b4781f
  the selinux-policy package for the main package
b4781f
b4781f
* Fri Jul 28 2006 Paul Howarth <paul@city-fan.org> 1.10-4
b4781f
- SELinux policy packages moved from %%{_datadir}/selinux/packages/POLICYNAME
b4781f
  to %%{_datadir}/selinux/POLICYNAME
b4781f
- hardlink identical policy module packages together to avoid duplicate files
b4781f
b4781f
* Thu Jul 20 2006 Paul Howarth <paul@city-fan.org> 1.10-3
b4781f
- Adjust buildreqs for FC6 onwards
b4781f
- Figure out where top_dir is dynamically since the /etc/httpd/build
b4781f
  symlink is gone in FC6
b4781f
b4781f
* Wed Jul  5 2006 Paul Howarth <paul@city-fan.org> 1.10-2
b4781f
- SELinux policy update: allow FastCGI apps to do DNS lookups
b4781f
b4781f
* Tue Jul  4 2006 Paul Howarth <paul@city-fan.org> 1.10-1
b4781f
- Update to 1.10
b4781f
- Expand tabs to shut rpmlint up
b4781f
b4781f
* Tue Jul  4 2006 Paul Howarth <paul@city-fan.org> 1.09-10
b4781f
- SELinux policy update:
b4781f
  * allow httpd to read httpd_fastcgi_content_t without having the
b4781f
  | httpd_builtin_scripting boolean set
b4781f
  * allow httpd_fastcgi_script_t to read /etc/resolv.conf without
b4781f
  | having the httpd_can_network_connect boolean set
b4781f
b4781f
* Sun Jun 18 2006 Paul Howarth <paul@city-fan.org> 1.09-9
b4781f
- Discard output of semodule in %%postun
b4781f
- Include some documentation from upstream
b4781f
b4781f
* Fri Jun  9 2006 Paul Howarth <paul@city-fan.org> 1.09-8
b4781f
- Change default context type for socket directory from var_run_t to
b4781f
  httpd_fastcgi_sock_t for better separation
b4781f
b4781f
* Thu Jun  8 2006 Paul Howarth <paul@city-fan.org> 1.09-7
b4781f
- Add SELinux policy module and README.Fedora
b4781f
- Conflict with selinux-policy versions older than what we're built on
b4781f
b4781f
* Mon May 15 2006 Paul Howarth <paul@city-fan.org> 1.09-6
b4781f
- Instead of conflicting with mod_fastcgi, don't add the handler for .fcg etc.
b4781f
  if mod_fastcgi is present
b4781f
b4781f
* Fri May 12 2006 Paul Howarth <paul@city-fan.org> 1.09-5
b4781f
- Use correct handler name in fcgid.conf
b4781f
- Conflict with mod_fastcgi
b4781f
- Create directory %%{_localstatedir}/run/mod_fcgid for sockets
b4781f
b4781f
* Thu May 11 2006 Paul Howarth <paul@city-fan.org> 1.09-4
b4781f
- Cosmetic tweaks (personal preferences)
b4781f
- Don't include INSTALL.TXT, nothing of use to end users
b4781f
b4781f
* Wed May 10 2006 Thomas Antony <thomas@antony.eu> 1.09-3
b4781f
- Initial release