Adjust the package revision; no actual code changes
[packages/trusty/python-eventlet.git] / debian / control
1 Source: python-eventlet
2 Section: python
3 Priority: optional
4 Maintainer: MOS Linux team <mos-linux@mirantis.com>
5 XSBC-Original-Maintainer: Debian Python Modules Team <python-modules-team@lists.alioth.debian.org>
6 Uploaders: Laszlo Boszormenyi (GCS) <gcs@debian.hu>, Thomas Goirand <zigo@debian.org>
7 Build-Depends: debhelper (>= 9),
8                python-all (>= 2.6.6-3~),
9                python-setuptools,
10                python-sphinx (>= 1.0.7+dfsg),
11 #               python3-all (>= 3.2),
12 #               python3-setuptools
13 Build-Depends-Indep: python-greenlet (>= 0.3.1-2.1),
14                      python-httplib2,
15                      python-mock,
16                      python-nose,
17                      python-openssl
18 #                     python3-greenlet (>= 0.3.1-2.1),
19 #                     python3-httplib2,
20 #                     python3-mock,
21 #                     python3-nose,
22 #                     python3-openssl,
23 #                     python3-zmq
24 Standards-Version: 3.9.5
25 Homepage: http://eventlet.net
26 Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/python-eventlet/trunk/
27 Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/python-eventlet/trunk/
28
29 Package: python-eventlet
30 Architecture: all
31 Depends: ${misc:Depends}, ${python:Depends}, ${sphinxdoc:Depends}
32 Description: concurrent networking library - Python 2.x
33  Eventlet allows you to change how you run your code, not how you write it.
34  .
35  It uses epoll or libevent for highly scalable non-blocking I/O.
36  Coroutines ensure that the developer uses a blocking style of programming
37  that is similar to threading, but provide the benefits of non-blocking I/O.
38  The event dispatch is implicit, which means you can easily use Eventlet from
39  the Python interpreter, or as a small part of a larger application.
40  .
41  It's easy to get started using Eventlet, and easy to convert existing
42  applications to use it. Start off by looking at examples, common design
43  patterns, and the list of the basic API primitives.
44  .
45  This package provides the Python 2.x module.
46
47 #Package: python3-eventlet
48 #Architecture: all
49 #Depends: ${misc:Depends}, ${python3:Depends}, ${sphinxdoc:Depends}
50 #Description: concurrent networking library - Python 3.x
51 # Eventlet allows you to change how you run your code, not how you write it.
52 # .
53 # It uses epoll or libevent for highly scalable non-blocking I/O.
54 # Coroutines ensure that the developer uses a blocking style of programming
55 # that is similar to threading, but provide the benefits of non-blocking I/O.
56 # The event dispatch is implicit, which means you can easily use Eventlet from
57 # the Python interpreter, or as a small part of a larger application.
58 # .
59 # It's easy to get started using Eventlet, and easy to convert existing
60 # applications to use it. Start off by looking at examples, common design
61 # patterns, and the list of the basic API primitives.
62 # .
63 # This package provides the Python 3.x module.
64 #
65 #Package: python-eventlet-doc
66 #Architecture: all
67 #Section: doc
68 #Depends: ${misc:Depends}, ${sphinxdoc:Depends}
69 #Description: concurrent networking library - doc
70 # Eventlet allows you to change how you run your code, not how you write it.
71 # .
72 # It uses epoll or libevent for highly scalable non-blocking I/O.
73 # Coroutines ensure that the developer uses a blocking style of programming
74 # that is similar to threading, but provide the benefits of non-blocking I/O.
75 # The event dispatch is implicit, which means you can easily use Eventlet from
76 # the Python interpreter, or as a small part of a larger application.
77 # .
78 # It's easy to get started using Eventlet, and easy to convert existing
79 # applications to use it. Start off by looking at examples, common design
80 # patterns, and the list of the basic API primitives.
81 # .
82 # This package provides the documentation.