Codebase list aiocoap / debian/0.1+9ae36f4-1
Initial release Agustin Henze 8 years ago
11 changed file(s) with 140 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 aiocoap (0.1+9ae36f4-1) unstable; urgency=medium
1
2 * Initial release. (Closes: #797692)
3
4 -- Agustin Henze <tin@debian.org> Tue, 01 Sep 2015 11:42:48 -0300
0 Source: aiocoap
1 Section: python
2 Priority: optional
3 Maintainer: Agustin Henze <tin@debian.org>
4 Build-Depends: debhelper (>= 9),
5 dh-python,
6 python3-all,
7 python3-setuptools,
8 python3-sphinx,
9 Standards-Version: 3.9.6
10 X-Python-Version: >= 2.7
11 X-Python3-Version: >= 3.3
12 Homepage: https://github.com/chrysn/aiocoap
13 Vcs-Git: git://anonscm.debian.org/collab-maint/aiocoap.git
14 Vcs-Browser: http://anonscm.debian.org/gitweb/?p=collab-maint/aiocoap.git
15
16 Package: python3-aiocoap
17 Architecture: all
18 Depends: ${python3:Depends}, ${misc:Depends}
19 Description: Python implementation of CoAP
20 The aiocoap package is a Python implementation of CoAP, the Constrained
21 Application Protocol (RFC 7252, more info at http://coap.technology/).
22 .
23 It uses the asyncio module introduced in Python 3.4 to facilitate concurrent
24 operations while maintaining a simple to use interface and not depending on
25 anything outside the standard library.
26
27 Package: python-aiocoap-doc
28 Architecture: all
29 Section: doc
30 Depends: ${misc:Depends}, ${sphinxdoc:Depends}
31 Recommends: python3-aiocoap
32 Description: Python implementation of CoAP (doc)
33 The aiocoap package is a Python implementation of CoAP, the Constrained
34 Application Protocol (RFC 7252, more info at http://coap.technology/).
35 .
36 It uses the asyncio module introduced in Python 3.4 to facilitate concurrent
37 operations while maintaining a simple to use interface and not depending on
38 anything outside the standard library.
39 .
40 This package contains API documentation and examples.
0 Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
1 Upstream-Name: aiocoap
2 Upstream-Contact: Maciej Wasilak <http://sixpinetrees.blogspot.com/>, Christian Amsüss <c.amsuess@energyharvesting.at>
3 Source: https://github.com/chrysn/aiocoap
4
5 Files: *
6 Copyright: 2012-2014 Maciej Wasilak <http://sixpinetrees.blogspot.com/>,
7 2013-2014 Christian Amsüss <c.amsuess@energyharvesting.at>
8 License: MIT/X11
9 Permission is hereby granted, free of charge, to any person obtaining a copy of
10 this software and associated documentation files (the "Software"), to deal in
11 the Software without restriction, including without limitation the rights to
12 use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
13 of the Software, and to permit persons to whom the Software is furnished to do
14 so, subject to the following conditions:
15 .
16 The above copyright notice and this permission notice shall be included in all
17 copies or substantial portions of the Software.
18 .
19 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25 SOFTWARE.
26
27 Files: debian/*
28 Copyright: (C) 2015 Agustin Henze <tin@debian.org>
29 License: GPL-3
30 This package is free software; you can redistribute it and/or modify
31 it under the terms of the GNU General Public License as published by
32 the Free Software Foundation; either version 3 of the License, or
33 (at your option) any later version.
34 .
35 This package is distributed in the hope that it will be useful,
36 but WITHOUT ANY WARRANTY; without even the implied warranty of
37 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
38 GNU General Public License for more details.
39 .
40 You should have received a copy of the GNU General Public License
41 along with this package; if not, write to the Free Software
42 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
43 .
44 On Debian systems, the complete text of the GNU General
45 Public License can be found in `/usr/share/common-licenses/GPL-3'.
0 README.rst
0 [DEFAULT]
1 pristine-tar = True
2 debian-branch = debian/sid
0 Document: python-aiocoap-reference-manual
1 Title: Aiocoap Reference Manual
2 Author: Maciej Wasilak, Christian Amsüss
3 Abstract: aiocoap is a Python implementation of CoAP
4 The aiocoap package is a Python implementation of CoAP, the Constrained
5 Application Protocol (RFC 7252, more info at http://coap.technology/).
6 .
7 It uses the asyncio module introduced in Python 3.4 to facilitate concurrent
8 operations while maintaining a simple to use interface and not depending on
9 anything outside the standard library.
10 Section: Programming/Python
11
12 Format: HTML
13 Index: /usr/share/doc/python-aiocoap-doc/html/index.html
14 Files: /usr/share/doc/python-aiocoap-doc/html/*
0 #!/usr/bin/make -f
1 # -*- makefile -*-
2
3 # Uncomment this to turn on verbose mode.
4 #export DH_VERBOSE=1
5
6 export PYBUILD_NAME=aiocoap
7
8
9 %:
10 dh $@ --with python3,sphinxdoc --buildsystem=pybuild
11
12 override_dh_auto_clean:
13 dh_auto_clean --all
14 rm -rf doc/_build
15
16 override_dh_auto_install:
17 dh_auto_install
18 set -ex; \
19 cd doc; \
20 sphinx-build -C -b html -Dexclude_patterns=LICENSE.rst -Dmaster_doc=index . _build/html; \
21 cd -;
0 3.0 (quilt)
0 version=3
1
2 opts=dversionmangle=s/\+*$// \
3 https://github.com/chrysn/aiocoap/tags .*archive\/v?([0-9.]*).tar.gz