[Python-modules-commits] [python-pika] branch master updated (507d964 -> 6197050)
Jan Dittberner
jandd at moszumanska.debian.org
Wed Dec 30 13:39:26 UTC 2015
This is an automated email from the git hooks/post-receive script.
jandd pushed a change to branch master
in repository python-pika.
from 507d964 Update Vcs fields for git migration
new 02aaec8 Import python-pika_0.10.0.orig.tar.gz
new 8213095 record new upstream branch created by importing python-pika_0.10.0.orig.tar.gz and merge it
new a9ce6f1 New upstream version (Closes: #796543)
new 049da4e Update copyright years
new 244fa54 Add Python 3 support (Closes: #809315)
new 87df458 Add documentation package python-pika-doc
new c059b79 Bump Standards-Version to 3.9.6 (no changes)
new ffa365d Register HTML documentation with doc-base
new 9e6f455 Declare relationships between binary packages, add Breaks and Replaces for older versions
new 27124ac properly setup tests
new fd5e31c Fix the channel tests
new de39689 Make the test more reliable in Python 3.5
new a0799cd merge patched into master
new 88abd04 apply upstream patches for test errors (debian/patches/0001-Fix-the-channel-tests.patch and debian/patches/0002-Make-the-test-more-reliable-in-Python-3.5.patch)
new 6197050 releasing package python-pika version 0.10.0-1
The 15 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
.checkignore | 5 +
.codeclimate.yml | 8 +
.travis.yml | 22 +-
CHANGELOG.rst | 591 ++++
LICENSE | 362 +--
README.rst | 42 +-
debian/.git-dpm | 14 +-
debian/.gitignore | 1 +
debian/changelog | 17 +
debian/control | 45 +-
debian/copyright | 4 +-
debian/patches/0001-Fix-the-channel-tests.patch | 54 +
...Make-the-test-more-reliable-in-Python-3.5.patch | 27 +
debian/patches/series | 2 +
debian/python-pika-doc.doc-base | 8 +
debian/python-pika-doc.docs | 2 +
...thon-pika.examples => python-pika-doc.examples} | 0
debian/python-pika-doc.links | 1 +
debian/python-pika.docs | 1 -
debian/python-pika.links | 1 -
debian/{python-pika.docs => python3-pika.docs} | 1 -
debian/rules | 19 +-
docs/conf.py | 11 +-
docs/contributors.rst | 144 +-
docs/examples/asynchronous_consumer_example.rst | 160 +-
docs/examples/asynchronous_publisher_example.rst | 167 +-
docs/examples/blocking_publish_mandatory.rst | 3 +
docs/faq.rst | 12 -
docs/index.rst | 21 +-
docs/intro.rst | 2 -
docs/modules/adapters/asyncore.rst | 6 -
docs/modules/adapters/index.rst | 1 -
docs/version_history.rst | 369 +++
examples/twisted_service.py | 208 ++
pika/__init__.py | 5 +-
pika/adapters/__init__.py | 5 -
pika/adapters/asyncore_connection.py | 156 -
pika/adapters/base_connection.py | 212 +-
pika/adapters/blocking_connection.py | 3105 ++++++++++++++------
pika/adapters/libev_connection.py | 50 +-
pika/adapters/select_connection.py | 673 +++--
pika/adapters/tornado_connection.py | 14 +-
pika/adapters/twisted_connection.py | 35 +-
pika/callback.py | 82 +-
pika/channel.py | 369 ++-
pika/compat.py | 105 +
pika/connection.py | 234 +-
pika/credentials.py | 13 +-
pika/data.py | 168 +-
pika/exceptions.py | 103 +-
pika/frame.py | 26 +-
pika/heartbeat.py | 1 +
pika/spec.py | 1008 ++-----
setup.cfg | 2 +
setup.py | 21 +-
test-requirements.pip => test-requirements.txt | 2 +-
...ado_adapter_tests.py => async_adapter_tests.py} | 179 +-
tests/acceptance/async_test_base.py | 102 +-
tests/acceptance/asyncore_adapter_tests.py | 355 ---
tests/acceptance/blocking_adapter_test.py | 2298 +++++++++++++++
tests/acceptance/forward_server.py | 532 ++++
tests/acceptance/libev_adapter_tests.py | 382 ---
tests/acceptance/select_adapter_tests.py | 355 ---
tests/unit/amqp_object_tests.py | 9 +-
tests/unit/base_connection_tests.py | 14 +-
tests/unit/blocking_channel_tests.py | 47 +-
tests/unit/blocking_connection_tests.py | 206 ++
tests/unit/callback_tests.py | 116 +-
tests/unit/channel_tests.py | 387 ++-
tests/unit/connection_tests.py | 109 +-
tests/unit/connection_timeout_tests.py | 16 +-
tests/unit/content_frame_dispatcher_tests.py | 49 +-
tests/unit/credentials_tests.py | 15 +-
tests/unit/data_tests.py | 63 +-
tests/unit/exceptions_test.py | 7 +-
tests/unit/frame_tests.py | 35 +-
tests/unit/heartbeat_tests.py | 28 +-
tests/unit/parameter_tests.py | 26 +-
tests/unit/select_connection_ioloop_tests.py | 290 ++
tests/unit/tornado_tests.py | 5 +-
tox.ini | 15 -
utils/codegen.py | 102 +-
82 files changed, 9541 insertions(+), 4921 deletions(-)
create mode 100644 .checkignore
create mode 100644 .codeclimate.yml
create mode 100644 CHANGELOG.rst
create mode 100644 debian/.gitignore
create mode 100644 debian/patches/0001-Fix-the-channel-tests.patch
create mode 100644 debian/patches/0002-Make-the-test-more-reliable-in-Python-3.5.patch
create mode 100644 debian/patches/series
create mode 100644 debian/python-pika-doc.doc-base
create mode 100644 debian/python-pika-doc.docs
rename debian/{python-pika.examples => python-pika-doc.examples} (100%)
create mode 100644 debian/python-pika-doc.links
delete mode 100644 debian/python-pika.links
copy debian/{python-pika.docs => python3-pika.docs} (61%)
delete mode 100644 docs/modules/adapters/asyncore.rst
create mode 100644 examples/twisted_service.py
delete mode 100644 pika/adapters/asyncore_connection.py
create mode 100644 pika/compat.py
create mode 100644 setup.cfg
rename test-requirements.pip => test-requirements.txt (67%)
rename tests/acceptance/{tornado_adapter_tests.py => async_adapter_tests.py} (67%)
delete mode 100644 tests/acceptance/asyncore_adapter_tests.py
create mode 100644 tests/acceptance/blocking_adapter_test.py
create mode 100644 tests/acceptance/forward_server.py
delete mode 100644 tests/acceptance/libev_adapter_tests.py
delete mode 100644 tests/acceptance/select_adapter_tests.py
create mode 100644 tests/unit/blocking_connection_tests.py
create mode 100644 tests/unit/select_connection_ioloop_tests.py
delete mode 100644 tox.ini
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-pika.git
More information about the Python-modules-commits
mailing list