diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..687041d --- /dev/null +++ b/debian/changelog @@ -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 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 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 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 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 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 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 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 Wed, 11 Nov 2009 15:08:42 +0000 + +fcgi-cgi (0.1.0-1) unstable; urgency=low + + * Initial release + + -- Stefan Bühler Sun, 13 Sep 2009 17:56:48 +0000 + +fcgi-cgi (0.1.0-0) unstable; urgency=low + + * Initial release + + -- Stefan Bühler Sun, 13 Sep 2009 17:56:31 +0000 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..ec63514 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +9 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..06c9b68 --- /dev/null +++ b/debian/control @@ -0,0 +1,29 @@ +Source: fcgi-cgi +Section: web +Priority: extra +Maintainer: Stefan Bühler +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. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..dbbe094 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,43 @@ +This package was debianized by Stefan Bühler 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 + +Copyright: + + + +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 + +and is licensed under the GPL version 3, +see `/usr/share/common-licenses/GPL-3'. diff --git a/debian/fcgi-cgi.install b/debian/fcgi-cgi.install new file mode 100644 index 0000000..ff9c17a --- /dev/null +++ b/debian/fcgi-cgi.install @@ -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/ diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..c884e81 --- /dev/null +++ b/debian/rules @@ -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)" diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt)