~ubuntu-branches/ubuntu/feisty/apache2/feisty

« back to all changes in this revision

Viewing changes to debian/control

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Barth
  • Date: 2006-12-09 21:05:45 UTC
  • mfrom: (0.6.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20061209210545-h70s0xaqc2v8vqr2
Tags: 2.2.3-3.2
* Non-maintainer upload.
* 043_ajp_connection_reuse: Patch from upstream Bugzilla, fixing a critical
  issue with regard to connection reuse in mod_proxy_ajp.
  Closes: #396265

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
Source: apache2
2
 
Section: net
 
2
Section: web
3
3
Priority: optional
4
4
Maintainer: Debian Apache Maintainers <debian-apache@lists.debian.org>
5
 
Uploaders: Tollef Fog Heen <tfheen@debian.org>, Thom May <thom@debian.org>, Fabio M. Di Nitto <fabbione@fabbione.net>, Daniel Stone <daniels@debian.org>, Adam Conrad <adconrad@0c3.net>
6
 
Build-Depends: debhelper (>> 4.1.1), autoconf, autotools-dev, bzip2, mawk, libtool, libdb4.3-dev, libexpat1-dev, libldap2-dev, libpcre3-dev, libssl-dev, lsb-release, openssl, zlib1g-dev
7
 
Build-Conflicts: libgdbm-dev
 
5
Uploaders: Tollef Fog Heen <tfheen@debian.org>, Thom May <thom@debian.org>, Fabio M. Di Nitto <fabbione@fabbione.net>, Adam Conrad <adconrad@0c3.net>
 
6
Build-Depends: debhelper (>=4.1.16), dpatch, lsb-release, libaprutil1-dev, libapr1-dev (>= 1.2.7-6), openssl, libpcre3-dev, libtool
8
7
Standards-Version: 3.6.1.0
9
8
 
10
 
Package: apache2-common
 
9
Package: apache2.2-common
11
10
Architecture: any
12
 
Depends: ${shlibs:Depends}, debconf, debianutils (>= 1.6), mime-support, openssl, net-tools, ssl-cert (>= 1.0-7), libmagic1, libgcc1 (>= 1:3.3.5), apache2-utils (= ${Source-Version}), lsb-base (>= 2.0)
13
 
Suggests: apache2-doc, lynx | www-browser
14
 
Description: next generation, scalable, extendable web server
 
11
Depends: ${misc:Depends}, apache2-utils, net-tools, libmagic1, mime-support, lsb-base
 
12
Conflicts: apache2-common, libapache2-mod-php5 (<= 5.1.6-3), libapache2-mod-php4 (<= 4:4.4.4-2), libapache2-mod-mime-xattr (<= 0.3-2), libapache2-mod-mono (<= 1.1.17-3), libapache2-mod-proxy-html (<= 2.4.3-2), libapache2-mod-scgi (<= 1.11-1), libapache2-mod-speedycgi (<= 2.22-3), libapache2-modxslt (<= 2005072700-1), libapache2-redirtoservername (<= 0.1-1), libapache2-webauth (<= 3.5.3-1), libapache2-webkdc (<= 3.5.3-1)
 
13
Replaces: apache2-common
 
14
Description: Next generation, scalable, extendable web server
15
15
 Apache v2 is the next generation of the omnipresent Apache web server. This
16
 
 version - a total rewrite - introduces many new improvements, such as 
 
16
 version - a total rewrite - introduces many new improvements, such as
17
17
 threading, a new API, IPv6 support, request/response filtering, and more.
18
18
 .
19
19
 It is also considerably faster, and can be easily extended to provide services
20
20
 other than http.
21
21
 .
22
22
 This package contains all the standard apache2 modules, including SSL support.
23
 
 However, it does *not* include the server itself; for this you need to 
 
23
 However, it does *not* include the server itself; for this you need to
24
24
 install one of the apache2-mpm-* packages; such as worker or prefork.
25
25
 
 
26
Package: apache2-mpm-worker
 
27
Architecture: any
 
28
Depends: ${shlibs:Depends}, apache2.2-common (= ${Source-Version})
 
29
Provides: apache2-modules, apache2, httpd, httpd-cgi
 
30
Conflicts: apache2-mpm-prefork, apache2-mpm-event, apache2-common
 
31
Replaces: apache2-mpm-threadpool (<< 2.0.53), apache2-mpm-perchild (<< 2.2.0)
 
32
Description: High speed threaded model for Apache HTTPD 2.1
 
33
 The worker MPM provides a threaded implementation for Apache HTTPD 2.1. It is
 
34
 considerably faster than the traditional model, and is the recommended MPM.
 
35
 .
 
36
 Worker generally is a good choice for high-traffic servers because it
 
37
 has a smaller memory footprint than the prefork MPM.
 
38
 
 
39
Package: apache2-mpm-prefork
 
40
Architecture: any
 
41
Depends: ${shlibs:Depends}, apache2.2-common (= ${Source-Version})
 
42
Provides: apache2-modules, apache2, httpd, httpd-cgi
 
43
Conflicts: apache2-mpm-worker, apache2-mpm-perchild, apache2-mpm-event, apache2-common
 
44
Description: Traditional model for Apache HTTPD 2.1
 
45
 This Multi-Processing Module (MPM) implements a non-threaded,
 
46
 pre-forking web server that handles requests in a manner similar to
 
47
 Apache 1.3. It is appropriate for sites that need to avoid threading for
 
48
 compatibility with non-thread-safe libraries. It is also the best MPM
 
49
 for isolating each request, so that a problem with a single request will
 
50
 not affect any other.
 
51
 .
 
52
 It is not as fast, but is considered to be more stable.
 
53
 
 
54
Package: apache2-mpm-event
 
55
Architecture: any
 
56
Depends: ${shlibs:Depends}, apache2.2-common (= ${Source-Version})
 
57
Provides: apache2-modules, apache2, httpd, httpd-cgi
 
58
Conflicts: apache2-mpm-worker, apache2-mpm-perchild, apache2-common
 
59
Description: Event driven model for Apache HTTPD 2.1
 
60
 The event Multi-Processing Module (MPM) is designed to allow more 
 
61
 requests to be served simultaneously by passing off some processing 
 
62
 work to supporting threads, freeing up the main threads to work on 
 
63
 new requests.
 
64
 .
 
65
 This MPM is especially suitable for sites that see extensive KeepAlive traffic
 
66
 
 
67
Package: apache2-mpm-perchild
 
68
Architecture: all
 
69
Depends: apache2-mpm-worker
 
70
Description: Transitional package - please remove
 
71
 This is a transitional package to upgrade apache2-mpm-perchild to
 
72
 apache2-mpm-worker.
 
73
 
26
74
Package: apache2-utils
27
75
Architecture: any
28
 
Replaces: apache2-common (<< 2.0.53), apache-utils (<< 1.3.33-4)
29
 
Provides: apache-utils
 
76
Replaces: apache2-common, apache-utils (<< 1.3.33-4)
30
77
Conflicts: apache-common (<< 1.3.28.0.1-1)
31
78
Depends: ${shlibs:Depends}
32
79
Description: utility programs for webservers
42
89
  - checkgid (Checks whether the caller can setgid to the specified group)
43
90
  - check_forensic (Extract mod_log_forensic output from apache log files)
44
91
 
45
 
Package: apache2-mpm-worker
46
 
Architecture: any
47
 
Depends: ${shlibs:Depends}, apache2-common (= ${Source-Version})
48
 
Provides: apache2-modules, apache2, httpd, httpd-cgi
49
 
Replaces: apache2-mpm-threadpool (<< 2.0.53)
50
 
Conflicts: apache2-mpm-prefork, apache2-mpm-perchild
51
 
Description: high speed threaded model for Apache2
52
 
 The worker MPM provides a threaded implementation for Apache2. It is
53
 
 considerably faster than the traditional model, and is the recommended MPM.
54
 
 .
55
 
 Worker generally is a good choice for high-traffic servers because it
56
 
 has a smaller memory footprint than the prefork MPM.
57
 
 
58
 
Package: apache2-mpm-perchild
59
 
Architecture: any
60
 
Depends: ${shlibs:Depends}, apache2-common (= ${Source-Version})
61
 
Provides: apache2-modules, apache2, httpd, httpd-cgi
62
 
Conflicts: apache2-mpm-worker, apache2-mpm-prefork, apache2-mpm-threadpool
63
 
Description: experimental high speed perchild threaded model for Apache2
64
 
 Perchild is the grown up, mac daddy version of suexec for apache2. Rather than
65
 
 execute a cgi script as a given user, perchild forks a process for each vhost,
66
 
 then su's to the correct user/group for that vhost.
67
 
 .
68
 
 Each process then uses a thread model similar to that of the worker mpm.
69
 
 .
70
 
 THIS MPM IS NOT CURRENTLY EXPECTED TO WORK CORRECTLY, IF AT ALL. IT IS UNDER 
71
 
 VERY HEAVY DEVELOPMENT.
72
 
 This mpm is still highly experimental, and should be used with care.
73
 
 
74
 
Package: apache2-mpm-prefork
75
 
Architecture: any
76
 
Depends: ${shlibs:Depends}, apache2-common (= ${Source-Version})
77
 
Provides: apache2-modules, apache2, httpd, httpd-cgi
78
 
Conflicts: apache2-mpm-worker, apache2-mpm-threadpool, apache2-mpm-perchild
79
 
Description: traditional model for Apache2
80
 
 This Multi-Processing Module (MPM) implements a non-threaded,
81
 
 pre-forking web server that handles requests in a manner similar to
82
 
 Apache 1.3. It is appropriate for sites that need to avoid threading for
83
 
 compatibility with non-thread-safe libraries. It is also the best MPM
84
 
 for isolating each request, so that a problem with a single request will
85
 
 not affect any other.
86
 
 .
87
 
 It is not as fast, but is considered to be more stable.
88
 
 
 
92
Package: apache2
 
93
Architecture: all
 
94
Depends: apache2-mpm-worker (>= ${Source-Version}) | apache2-mpm-prefork (>= ${Source-Version}) | apache2-mpm-event (>= ${Source-Version})
 
95
Section: web
 
96
Description: Next generation, scalable, extendable web server
 
97
 Apache v2 is the next generation of the omnipresent Apache web server. This
 
98
 version - a total rewrite - introduces many new improvements, such as
 
99
 threading, a new API, IPv6 support, request/response filtering, and more.
 
100
 
89
101
Package: apache2-doc
90
102
Section: doc
91
103
Architecture: all
92
104
Description: documentation for apache2
93
105
 This is the documentation for apache2, see the apache2 package description
94
 
 for more details. 
 
106
  for more details.
95
107
 
96
108
Package: apache2-prefork-dev
97
109
Section: devel
98
110
Architecture: any
99
 
Depends: apache2-common (= ${Source-Version}), libapr0-dev (= ${Source-Version}), libssl-dev, openssl, bzip2, autoconf, autotools-dev, libtool, libdb4.3-dev, zlib1g-dev, libpcre3-dev
100
 
Conflicts: apache2-mpm-worker (<< 2.0.42-1), apache2-mpm-prefork (<< 2.0.42-1), apache2-mpm-perchild (<< 2.0.42-1), apache2-mpm-threadpool (<< 2.0.42-1), apache2-dev
 
111
Depends: apache2.2-common (= ${Source-Version}), openssl, libaprutil1-dev
 
112
Conflicts: apache2-threaded-dev
101
113
Description: development headers for apache2
102
114
 This package provides the development headers and apxs2 binary for
103
115
 apache2-mpm-prefork; see the apache2 package description for more details.
108
120
Package: apache2-threaded-dev
109
121
Section: devel
110
122
Architecture: any
111
 
Depends: apache2-common (= ${Source-Version}), libapr0-dev (= ${Source-Version}), libssl-dev, openssl, bzip2, autoconf, autotools-dev, libtool, libdb4.3-dev, zlib1g-dev, libpcre3-dev
112
 
Conflicts: apache2-mpm-worker (<< 2.0.42-1), apache2-mpm-prefork (<< 2.0.42-1), apache2-mpm-perchild (<< 2.0.42-1), apache2-mpm-threadpool (<< 2.0.42-1), apache2-prefork-dev
 
123
Depends: apache2.2-common (= ${Source-Version}), openssl, libaprutil1-dev
 
124
Conflicts: apache2-prefork-dev
113
125
Provides: apache2-dev
114
126
Description: development headers for apache2
115
127
 This package provides the development headers and apxs2 binary for
116
128
 threaded versions of apache2; see the apache2 package description
117
129
 for more details.
118
130
 
119
 
Package: libapr0
120
 
Architecture: any
121
 
Conflicts: libapr
122
 
Replaces: libapr
123
 
Provides: libapr
124
 
Section: net
125
 
Depends: ${shlibs:Depends}
126
 
Description: the Apache Portable Runtime
127
 
 APR is Apache's Portable Runtime Library, designed to be a support library to
128
 
 enable programmers to easily write platform independent programs and know that
129
 
 they'll work.
130
 
 .
131
 
 It is currently used by Apache2, Subversion, and Samba-TNG, among others.
132
 
 
133
 
Package: libapr0-dev
134
 
Provides: libapr-dev
135
 
Conflicts: libapr-dev, apache2-dev (<= 2.0.39+cvs.1028741220-1)
136
 
Architecture: any
137
 
Depends: libapr0 (= ${Source-Version}), libdb4.3-dev, libpcre3-dev, libldap2-dev, libexpat1-dev, libtool
138
 
Section: libdevel
139
 
Description: development headers for libapr
140
 
 This package provides the development headers for the Apache Runtime Library,
141
 
 libapr.
142
 
 .
143
 
 You only need these if you are planning on compiling software that depends
144
 
 on software that requires libapr.
145
 
 
146
 
Package: apache2
147
 
Architecture: any
148
 
Depends: apache2-mpm-worker (= ${Source-Version}) | apache2-mpm-prefork (= ${Source-Version}) | apache2-mpm-perchild (= ${Source-Version})
149
 
Section: web
150
 
Description: next generation, scalable, extendable web server
151
 
 Apache v2 is the next generation of the omnipresent Apache web server. This
152
 
 version - a total rewrite - introduces many new improvements, such as
153
 
 threading, a new API, IPv6 support, request/response filtering, and more.
 
131
Package: apache2-src
 
132
Section: devel
 
133
Priority: extra
 
134
Architecture: all
 
135
Description: Apache source code
 
136
 This package includes the complete and patched source code for the
 
137
 Apache HTTPD.  It is useful for other packages to build-depend on in
 
138
 order to build custom MPMs.