Skip to content

Commit 5772281

Browse files
committed
Debian stuff
1 parent d5b5821 commit 5772281

3 files changed

Lines changed: 44 additions & 5 deletions

File tree

debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
trio-asyncio (0.7.4-5) unstable; urgency=medium
2+
3+
* Debianization
4+
5+
-- Matthias Urlichs <matthias@urlichs.de> Tue, 29 May 2018 13:43:52 +0200
6+
17
trio-asyncio (0.7.4-4) unstable; urgency=medium
28

39
* Merge larger-queue patch (for now)

debian/control

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Section: python
44
Priority: optional
55
Build-Depends: dh-python, python3-setuptools, python3-all, debhelper (>= 9),
66
python3-trio (>= 0.4.0),
7+
python3-pytest-trio,
78
python3-pytest-runner,
89
Standards-Version: 3.9.6
910
Homepage: https://github.com/smurfix/trio-asyncio
@@ -12,9 +13,10 @@ Package: python3-trio-asyncio
1213
Architecture: all
1314
Depends: ${misc:Depends}, ${python3:Depends},
1415
python3-trio (>= 0.4.0)
15-
Description: A re-implementation of the asyncio mainloop on top of Trio
16-
``trio-asyncio`` is a re-implementation of the ``asyncio`` mainloop on top of
17-
Trio.
16+
Description: Re-implementation of the asyncio mainloop on top of Trio
17+
trio_asyncio allows you to call asyncio code from within Trio,
18+
or vice versa.
1819
.
19-
While this library features a compatibility mode, you are strongly
20-
encouraged to convert your code so that it runs within a Trio loop.
20+
While there's a compatibility mode which allows you to use a standard
21+
asyncio mainloop, trio-asyncio works best when used with a Trio mainloop.
22+
Examples how to convert one to the other are included in the documentation.

debian/copyright

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
2+
Upstream-Name: Trio
3+
Upstream-Contact: Nathaniel J. Smith <njs@pobox.com>
4+
Source: https://github.com/python-trio/trio
5+
6+
Files: *
7+
Copyright: 2017-2018 Nathaniel J. Smith and contributors
8+
License: MIT or Apache-2.0
9+
10+
License: MIT
11+
The MIT License (MIT)
12+
.
13+
Permission is hereby granted, free of charge, to any person obtaining
14+
a copy of this software and associated documentation files (the
15+
"Software"), to deal in the Software without restriction, including
16+
without limitation the rights to use, copy, modify, merge, publish,
17+
distribute, sublicense, and/or sell copies of the Software, and to
18+
permit persons to whom the Software is furnished to do so, subject to
19+
the following conditions:
20+
.
21+
The above copyright notice and this permission notice shall be
22+
included in all copies or substantial portions of the Software.
23+
.
24+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
28+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
29+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
30+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31+

0 commit comments

Comments
 (0)