fcgi-cgi 0.2.0-1

This commit is contained in:
Stefan Bühler 2013-05-18 18:22:15 +02:00
parent dd80b79b8d
commit 394d2a0500
7 changed files with 153 additions and 0 deletions

70
debian/changelog vendored Normal file
View File

@ -0,0 +1,70 @@
fcgi-cgi (0.2.0-1) unstable; urgency=low
* Handle requests after the first one (fixing keep-alive)
-- Stefan Bühler <stbuehler@web.de> Sat, 18 May 2013 18:18:18 +0200
fcgi-cgi (0.1.8-1) unstable; urgency=low
* New upstream release
+ [cmake] fix link object/lib order
+ remove stropts.h include
-- Stefan Bühler <source@stbuehler.de> Thu, 28 Oct 2010 21:45:00 +0000
fcgi-cgi (0.1.7-1) unstable; urgency=low
* Backport to debhelper 5
* New upstream release
+ Fix libev check for libev4
+ [cmake] remove check for c++
-- Stefan Bühler <source@stbuehler.de> Thu, 28 Oct 2010 19:14:39 +0000
fcgi-cgi (0.1.5-1) unstable; urgency=low
* New upstream release
+ Reenable accepting connections after hitting the limit (fixes #2195)
+ Add commandline options (-c)
+ Add man page
-- Stefan Bühler <source@stbuehler.de> Fri, 07 May 2010 20:53:57 +0000
fcgi-cgi (0.1.4-1) unstable; urgency=low
* New upstream release
+ Re-enable child in/err pipes after fcgi con close
-- Stefan Bühler <source@stbuehler.de> Wed, 06 Jan 2010 16:27:47 +0000
fcgi-cgi (0.1.3-1) unstable; urgency=low
* Use GByteArray instead of GString, read padding bytes in normal reads()
and skip them
-- Stefan Bühler <source@stbuehler.de> Wed, 11 Nov 2009 20:38:32 +0000
fcgi-cgi (0.1.2-1) unstable; urgency=low
* Fast chdir() fix - broke everything...
-- Stefan Bühler <source@stbuehler.de> Wed, 11 Nov 2009 15:23:28 +0000
fcgi-cgi (0.1.1-1) unstable; urgency=low
* Some upstream fixes (issues with POST requests)
* chdir() before exec()
-- Stefan Bühler <source@stbuehler.de> Wed, 11 Nov 2009 15:08:42 +0000
fcgi-cgi (0.1.0-1) unstable; urgency=low
* Initial release
-- Stefan Bühler <source@stbuehler.de> Sun, 13 Sep 2009 17:56:48 +0000
fcgi-cgi (0.1.0-0) unstable; urgency=low
* Initial release
-- Stefan Bühler <source@stbuehler.de> Sun, 13 Sep 2009 17:56:31 +0000

1
debian/compat vendored Normal file
View File

@ -0,0 +1 @@
9

29
debian/control vendored Normal file
View File

@ -0,0 +1,29 @@
Source: fcgi-cgi
Section: web
Priority: extra
Maintainer: Stefan Bühler <stbuehler@web.de>
Build-Depends: debhelper (>= 9), cmake, libglib2.0-dev, libev-dev, cdbs
Standards-Version: 3.9.4
Homepage: http://redmine.lighttpd.net/projects/fcgi-cgi
Package: fcgi-cgi
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: FastCGI application to run cgi applications
FastCGI application to run cgi applications; this allows one to run
cgi applications with different user permissions than the webserver
without using suExec wrappers.
And the webserver doesn't need to fork, and it may be easier to get
the webserver running in a chroot.
Package: fcgi-cgi-dbg
Architecture: any
Section: debug
Priority: extra
Depends: fcgi-cgi (=${binary:Version}), ${shlibs:Depends}, ${misc:Depends}
Description: FastCGI application to run cgi applications
FastCGI application to run cgi applications; this allows one to run
cgi applications with different user permissions than the webserver
without using suExec wrappers.
And the webserver doesn't need to fork, and it may be easier to get
the webserver running in a chroot.

43
debian/copyright vendored Normal file
View File

@ -0,0 +1,43 @@
This package was debianized by Stefan Bühler <source@stbuehler.de> on
Sun, 13 Sep 2009 17:21:19 +0000.
It was downloaded from http://redmine.lighttpd.net/projects/fcgi-cgi
Upstream Author:
Stefan Bühler <stbuehler@web.de>
Copyright:
<Copyright (C) 2009 Stefan Bühler>
License:
The MIT License
Copyright (c) 2009 Stefan Bühler
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
The Debian packaging is:
Copyright (C) 2009 Stefan Bühler <source@stbuehler.de>
and is licensed under the GPL version 3,
see `/usr/share/common-licenses/GPL-3'.

2
debian/fcgi-cgi.install vendored Normal file
View File

@ -0,0 +1,2 @@
debian/tmp/usr/bin/fcgi-cgi /usr/bin/
debian/tmp/usr/share/man/man1/fcgi-cgi.1 /usr/share/man/man1/

7
debian/rules vendored Executable file
View File

@ -0,0 +1,7 @@
#!/usr/bin/make -f
include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/cmake.mk
DEB_CMAKE_EXTRA_FLAGS=-DCMAKE_BUILD_TYPE="RelWithDebInfo"
DEB_CMAKE_EXTRA_FLAGS+=-DCMAKE_SHARED_LINKER_FLAGS="$(LDFLAGS)" -DCMAKE_EXE_LINKER_FLAGS="$(LDFLAGS)"

1
debian/source/format vendored Normal file
View File

@ -0,0 +1 @@
3.0 (quilt)