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