Commit graph

20 commits

Author SHA1 Message Date
adam
a31bce9748 extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +00:00
adam
42fd5f8c89 py-scgi: updated to 1.15
1.15:
Improve comments.

Close unwanted file descriptors.

In scgi_server.py, spawn_child() is called at startup to start the
first child and also from delegate_request() when more children are
needed. In the latter case, the parameter 'conn' is passed to
spawn_child() so that the newly-created child knows to close the
file descriptor it has inherited but doesn't need.

The bug is that in the latter case the new child also inherits
various other file descriptors which are not similarly closed,
namely the Unix sockets to its elder siblings, and the TCP listener
socket.

Improve Apache 2 mod_scgi error messages.

If the connection is aborted while sending the response, log an
error but don't generate an internal server error. This can happen
if the client closes the connection before the entire response has
been read. There's nothing the server can do about it.

When an error occurs while reading the response headers, don't
log an error since ap_scan_script_header_err_brigade() has already
done so.
2018-03-24 08:25:30 +00:00
wiz
7f84153239 Add python-3.6 to incompatible versions. 2017-01-01 14:43:22 +00:00
wiz
ad0031c15e Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
adam
7f3b4730ad Extend PYTHON_VERSIONS_INCOMPATIBLE to 35 2015-12-05 21:25:27 +00:00
agc
b9b754e081 Add SHA512 digests for distfiles for www category
Problems found locating distfiles:
	Package haskell-cgi: missing distfile haskell-cgi-20001206.tar.gz
	Package nginx: missing distfile array-var-nginx-module-0.04.tar.gz
	Package nginx: missing distfile encrypted-session-nginx-module-0.04.tar.gz
	Package nginx: missing distfile headers-more-nginx-module-0.261.tar.gz
	Package nginx: missing distfile nginx_http_push_module-0.692.tar.gz
	Package nginx: missing distfile set-misc-nginx-module-0.29.tar.gz
	Package nginx-devel: missing distfile echo-nginx-module-0.58.tar.gz
	Package nginx-devel: missing distfile form-input-nginx-module-0.11.tar.gz
	Package nginx-devel: missing distfile lua-nginx-module-0.9.16.tar.gz
	Package nginx-devel: missing distfile nginx_http_push_module-0.692.tar.gz
	Package nginx-devel: missing distfile set-misc-nginx-module-0.29.tar.gz
	Package php-owncloud: missing distfile owncloud-8.2.0.tar.bz2

Otherwise, existing SHA1 digests verified and found to be the same on
the machine holding the existing distfiles (morden).  All existing
SHA1 digests retained for now as an audit trail.
2015-11-04 02:46:46 +00:00
mef
8db57e7b0e - py-scgi and ap-scgi update 1.13 to 1.14
(remove PKGREVISION)
- Add licenses/cnri-license for above two packages
2014-11-24 04:45:05 +00:00
mef
faa32bf76f Update 1.13 to 1.14
v1.14
-----

Author: Neil Schemenauer <nas@arctrix.com>
Date:   Sat Nov 21 17:02:23 2009 -0600

    Update version numbers for v1.14 release.

Author: Neil Schemenauer <nas@arctrix.com>
Date:   Tue Oct 27 17:06:12 2009 -0600

    Improve logic for reaping dead child processes.

    Simply the logic for reaping dead children. This also fixes some
    corner case bugs related to signal handling.

Author: Neil Schemenauer <nas@arctrix.com>
Date:   Mon Jul 20 11:16:23 2009 -0600

    Properly handle interrupted system calls while doing a restart.

Author: Neil Schemenauer <nas@arctrix.com>
Date:   Thu Jul 9 21:35:42 2009 -0600

    Drop GIL when passing file descriptors.

Author: Neil Schemenauer <nas@arctrix.com>
Date:   Sat Aug 9 18:12:22 2008 -0600

    Add target to build multi-architecture mod_scgi for Mac OS.
2014-11-24 04:42:33 +00:00
wiz
c1b44346cd Mark packages that are not ready for python-3.3 also not ready for 3.4,
until proven otherwise.
2014-05-09 07:36:53 +00:00
wiedi
528d1cf26b fix build on SunOS 2014-02-15 19:15:53 +00:00
wiz
aa67e11089 Mark packages as not ready for python-3.x where applicable;
either because they themselves are not ready or because a
dependency isn't. This is annotated by
PYTHON_VERSIONS_INCOMPATIBLE=  33 # not yet ported as of x.y.z
or
PYTHON_VERSIONS_INCOMPATIBLE=  33 # py-foo, py-bar
respectively, please use the same style for other packages,
and check during updates.

Use versioned_dependencies.mk where applicable.
Use REPLACE_PYTHON instead of handcoded alternatives, where applicable.
Reorder Makefile sections into standard order, where applicable.

Remove PYTHON_VERSIONS_INCLUDE_3X lines since that will be default
with the next commit.

Whitespace cleanups and other nits corrected, where necessary.
2014-01-25 10:29:56 +00:00
asau
5eae6a18a3 Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-28 06:30:00 +00:00
wiz
c595076396 All supported python versions in pkgsrc support eggs, so remove
${PLIST.eggfile} from PLISTs and support code from lang/python.
2012-04-08 20:21:41 +00:00
obache
e9a3ee3f5b * user-destdir ready, no privileges are required to install.
* distutils pkg, register egg-info.
* while here, sort PLIST.

Bump PKGREVISION.
2012-01-27 06:51:58 +00:00
joerg
771737b155 Allow all python versions. 2010-02-10 21:10:25 +00:00
joerg
e031855e4a Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
tnn
9ec7e2281b 26 is not valid for PYTHON_VERSIONS_ACCEPTED until Python 2.6 is added
to pkgsrc. (breaks bulk build)
2009-03-07 21:31:08 +00:00
tnn
e5580d67d3 fix invalid dependency patterns 2009-03-07 16:26:16 +00:00
manu
9f05418770 Add missing version in package names 2009-03-03 10:53:15 +00:00
manu
be6555ac2e The SCGI protocol is a replacement for the Common Gateway Interface
(CGI) protocol. It is a standard for applications to interface with
HTTP servers. It is similar to FastCGI but is designed to be easier
to implement.
2009-03-03 10:13:10 +00:00