[Python-modules-commits] r28201 - in packages/python-dugong/trunk/debian (4 files)
nikratio-guest at users.alioth.debian.org
nikratio-guest at users.alioth.debian.org
Sat Mar 15 21:07:29 UTC 2014
Date: Saturday, March 15, 2014 @ 21:07:28
Author: nikratio-guest
Revision: 28201
* Don't use UTF-8 in debian/control
* Removed empty lines at end of file in debian/rules and debian/watch
* Rewrapped copyright to 80 character lines
* Added PHONY as appropriate in debian/rules
Modified:
packages/python-dugong/trunk/debian/control
packages/python-dugong/trunk/debian/copyright
packages/python-dugong/trunk/debian/rules
packages/python-dugong/trunk/debian/watch
Modified: packages/python-dugong/trunk/debian/control
===================================================================
--- packages/python-dugong/trunk/debian/control 2014-03-15 11:35:09 UTC (rev 28200)
+++ packages/python-dugong/trunk/debian/control 2014-03-15 21:07:28 UTC (rev 28201)
@@ -28,18 +28,18 @@
servers. It is an alternative to the standard libraryâs http.client (formerly
httplib) module. In contrast to http.client, Dugong:
.
- ⢠allows you to send multiple requests right after each other without having
+ * allows you to send multiple requests right after each other without having
to read the responses first.
- ⢠supports waiting for 100-continue before sending the request body.
- ⢠raises an exception instead of silently delivering partial data if the
+ * supports waiting for 100-continue before sending the request body.
+ * raises an exception instead of silently delivering partial data if the
connection is closed before all data has been received.
- ⢠raises one specific exception (ConnectionClosed) if the connection has been
+ * raises one specific exception (ConnectionClosed) if the connection has been
closed (while http.client connection may raise any of BrokenPipeError,
BadStatusLine, ConnectionAbortedError, ConnectionResetError, IncompleteRead
or simply return '' on read)
- ⢠supports non-blocking, asynchronous operation and is compatible with the
+ * supports non-blocking, asynchronous operation and is compatible with the
asyncio module.
- ⢠is not compatible with old HTTP 0.9 or 1.0 servers.
+ * is not compatible with old HTTP 0.9 or 1.0 servers.
.
All request and response headers are represented as str, but must be encodable
in latin1. Request and response body must be bytes-like objects or binary
Modified: packages/python-dugong/trunk/debian/copyright
===================================================================
--- packages/python-dugong/trunk/debian/copyright 2014-03-15 11:35:09 UTC (rev 28200)
+++ packages/python-dugong/trunk/debian/copyright 2014-03-15 21:07:28 UTC (rev 28201)
@@ -12,13 +12,15 @@
its associated documentation.
.
2. Subject to the terms and conditions of this License Agreement, PSF hereby
- grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce,
- analyze, test, perform and/or display publicly, prepare derivative works,
- distribute, and otherwise use Python alone or in any derivative version,
- provided, however, that PSF's License Agreement and PSF's notice of copyright,
- i.e., "Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
- 2011, 2012, 2013, 2014 Python Software Foundation; All Rights Reserved" are retained
- in Python alone or in any derivative version prepared by Licensee.
+ grants Licensee a nonexclusive, royalty-free, world-wide license to
+ reproduce, analyze, test, perform and/or display publicly, prepare
+ derivative works, distribute, and otherwise use Python alone or in
+ any derivative version, provided, however, that PSF's License
+ Agreement and PSF's notice of copyright, i.e., "Copyright (c) 2001,
+ 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012,
+ 2013, 2014 Python Software Foundation; All Rights Reserved" are
+ retained in Python alone or in any derivative version prepared by
+ Licensee.
.
3. In the event Licensee prepares a derivative work that is based on
or incorporates Python or any part thereof, and wants to make
Modified: packages/python-dugong/trunk/debian/rules
===================================================================
--- packages/python-dugong/trunk/debian/rules 2014-03-15 11:35:09 UTC (rev 28200)
+++ packages/python-dugong/trunk/debian/rules 2014-03-15 21:07:28 UTC (rev 28201)
@@ -9,6 +9,7 @@
%:
dh $@ --with python3,sphinxdoc --buildsystem=pybuild
+.PHONY: override_dh_auto_build
override_dh_auto_build:
dh_auto_build
@@ -25,10 +26,11 @@
python3 setup.py build_sphinx; \
fi
+.PHONY: override_dh_auto_clean
override_dh_auto_clean:
dh_auto_clean
rm -rf doc/html doc/doctrees
+.PHONY: update_intersphinx
update_intersphinx:
wget http://docs.python.org/3.4/objects.inv -O debian/python.inv
-
Modified: packages/python-dugong/trunk/debian/watch
===================================================================
--- packages/python-dugong/trunk/debian/watch 2014-03-15 11:35:09 UTC (rev 28200)
+++ packages/python-dugong/trunk/debian/watch 2014-03-15 21:07:28 UTC (rev 28201)
@@ -4,4 +4,3 @@
https://pypi.python.org/pypi/dugong/ \
.*/dugong-(\d\S*)\.tar\.bz2 \
debian
-
More information about the Python-modules-commits
mailing list