821eb1a4683c76749fa189350acc814047456b89
[packages/trusty/python-eventlet.git] / debian / control
1 Source: python-eventlet
2 Section: python
3 Priority: optional
4 Maintainer: PKG OpenStack <openstack-devel@lists.alioth.debian.org>
5 Uploaders: Laszlo Boszormenyi (GCS) <gcs@debian.hu>,
6            Thomas Goirand <zigo@debian.org>,
7 Build-Depends: debhelper (>= 9),
8                dh-python,
9                openstack-pkg-tools,
10                python-all,
11                python-setuptools,
12                python-sphinx,
13                python3-all,
14                python3-setuptools,
15 Build-Depends-Indep: python-greenlet,
16                      python-httplib2,
17                      python-mock,
18                      python-nose,
19                      python-openssl,
20                      python-zmq,
21                      python3-greenlet,
22                      python3-httplib2,
23                      python3-mock,
24                      python3-nose,
25                      python3-openssl,
26                      python3-zmq,
27 Standards-Version: 3.9.6
28 Vcs-Browser: http://anonscm.debian.org/gitweb/?p=openstack/python-eventlet.git;a=summary
29 Vcs-Git: git://anonscm.debian.org/openstack/python-eventlet.git
30 Homepage: http://eventlet.net
31
32 Package: python-eventlet
33 Architecture: all
34 Depends: python-greenlet,
35          ${misc:Depends},
36          ${python:Depends},
37 Description: concurrent networking library - Python 2.x
38  Eventlet allows you to change how you run your code, not how you write it.
39  .
40  It uses epoll or libevent for highly scalable non-blocking I/O.
41  Coroutines ensure that the developer uses a blocking style of programming
42  that is similar to threading, but provide the benefits of non-blocking I/O.
43  The event dispatch is implicit, which means you can easily use Eventlet from
44  the Python interpreter, or as a small part of a larger application.
45  .
46  It's easy to get started using Eventlet, and easy to convert existing
47  applications to use it. Start off by looking at examples, common design
48  patterns, and the list of the basic API primitives.
49  .
50  This package provides the Python 2.x module.
51
52 Package: python3-eventlet
53 Architecture: all
54 Depends: python3-greenlet,
55          ${misc:Depends},
56          ${python3:Depends},
57          ${sphinxdoc:Depends},
58 Description: concurrent networking library - Python 3.x
59  Eventlet allows you to change how you run your code, not how you write it.
60  .
61  It uses epoll or libevent for highly scalable non-blocking I/O.
62  Coroutines ensure that the developer uses a blocking style of programming
63  that is similar to threading, but provide the benefits of non-blocking I/O.
64  The event dispatch is implicit, which means you can easily use Eventlet from
65  the Python interpreter, or as a small part of a larger application.
66  .
67  It's easy to get started using Eventlet, and easy to convert existing
68  applications to use it. Start off by looking at examples, common design
69  patterns, and the list of the basic API primitives.
70  .
71  This package provides the Python 3.x module.
72
73 Package: python-eventlet-doc
74 Architecture: all
75 Section: doc
76 Breaks: python-eventlet (<< 0.17.4)
77 Replaces: python-eventlet (<< 0.17.4)
78 Depends: ${misc:Depends},
79          ${sphinxdoc:Depends},
80 Description: concurrent networking library - doc
81  Eventlet allows you to change how you run your code, not how you write it.
82  .
83  It uses epoll or libevent for highly scalable non-blocking I/O.
84  Coroutines ensure that the developer uses a blocking style of programming
85  that is similar to threading, but provide the benefits of non-blocking I/O.
86  The event dispatch is implicit, which means you can easily use Eventlet from
87  the Python interpreter, or as a small part of a larger application.
88  .
89  It's easy to get started using Eventlet, and easy to convert existing
90  applications to use it. Start off by looking at examples, common design
91  patterns, and the list of the basic API primitives.
92  .
93  This package provides the documentation.