[Python-modules-commits] [kombu] branch debian/experimental updated (d4c57d2 -> d0a55ce)
Michael Fladischer
fladi at moszumanska.debian.org
Sun Jul 30 21:16:50 UTC 2017
This is an automated email from the git hooks/post-receive script.
fladi pushed a change to branch debian/experimental
in repository kombu.
from d4c57d2 Change package version to 4.0.2+really4.0.2+dfsg-2 after accidently uploading to unstable rather than experimental
new 4de9239 Remove repack script as upstream has merged the ICC profile removal.
new 91b1956 Add new upstream signing key.
new 73a3548 New upstream version 4.1.0
new dde04ce Updated version 4.1.0 from 'upstream/4.1.0'
new 702f64c Add patch disabling intersphinx to prevent network requests during build.
new 1191be6 New upstream release.
new b801af4 Bump Standards-Version to 4.0.0.
new d0a55ce Remove Artistic and GPL-1+ licenses from d/copyright as debian/repack.stub is no longer present.
The 8 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:
AUTHORS | 3 +
Changelog | 113 +++++++
PKG-INFO | 47 +--
README.rst | 44 +--
debian/changelog | 13 +
debian/control | 2 +-
debian/copyright | 21 --
.../0002-Disable-intershpinx-mapping-for-now.patch | 20 ++
debian/patches/series | 1 +
debian/repack.local | 12 -
debian/repack.stub | 91 ------
debian/upstream-signing-key.pgp | Bin 1200 -> 1181 bytes
debian/watch | 3 +-
docs/conf.py | 4 +-
docs/includes/introduction.txt | 14 +-
docs/reference/index.rst | 2 +
docs/reference/kombu.transport.SLMQ.rst | 1 +
.../kombu.transport.sqlalchemy.models.rst | 32 ++
docs/reference/kombu.transport.sqlalchemy.rst | 25 ++
examples/hello_consumer.py | 2 +-
extra/requirements/extras/sqlalchemy.txt | 1 +
extra/requirements/extras/sqs.txt | 2 +-
extra/requirements/funtest.txt | 2 +-
extra/requirements/pkgutils.txt | 2 +-
extra/requirements/test-ci.txt | 2 +
PKG-INFO => kombu.egg-info/PKG-INFO | 47 +--
kombu.egg-info/SOURCES.txt | 326 +++++++++++++++++++++
kombu.egg-info/dependency_links.txt | 1 +
kombu.egg-info/not-zip-safe | 1 +
kombu.egg-info/requires.txt | 39 +++
kombu.egg-info/top_level.txt | 1 +
kombu/__init__.py | 2 +-
kombu/async/aws/connection.py | 226 ++++++--------
kombu/async/aws/ext.py | 31 +-
kombu/async/aws/sqs/__init__.py | 22 --
kombu/async/aws/sqs/connection.py | 60 ++--
kombu/async/aws/sqs/ext.py | 31 +-
kombu/async/aws/sqs/message.py | 51 ++--
kombu/async/aws/sqs/queue.py | 3 +-
kombu/async/http/base.py | 9 +
kombu/async/http/curl.py | 17 +-
kombu/async/hub.py | 21 +-
kombu/clocks.py | 4 +-
kombu/common.py | 8 +-
kombu/compat.py | 6 +-
kombu/connection.py | 2 +-
kombu/entity.py | 2 +-
kombu/messaging.py | 5 +-
kombu/mixins.py | 2 +-
kombu/serialization.py | 2 +-
kombu/simple.py | 28 +-
kombu/transport/SQS.py | 222 ++++++++------
kombu/transport/__init__.py | 2 +
kombu/transport/etcd.py | 7 +-
kombu/transport/librabbitmq.py | 5 +-
kombu/transport/mongodb.py | 9 +-
kombu/transport/qpid.py | 12 +-
kombu/transport/redis.py | 5 +-
kombu/transport/sqlalchemy/__init__.py | 164 +++++++++++
kombu/transport/sqlalchemy/models.py | 67 +++++
kombu/transport/virtual/exchange.py | 2 +-
kombu/transport/zookeeper.py | 18 +-
kombu/utils/compat.py | 2 +
kombu/utils/limits.py | 4 +-
requirements/extras/sqlalchemy.txt | 1 +
requirements/extras/sqs.txt | 2 +-
requirements/funtest.txt | 2 +-
requirements/pkgutils.txt | 2 +-
requirements/test-ci.txt | 2 +
setup.cfg | 3 +-
setup.py | 4 +-
t/integration/tests/test_SQS.py | 2 +-
t/integration/tests/test_sqla.py | 13 +
t/unit/async/aws/case.py | 2 +-
t/unit/async/aws/sqs/test_connection.py | 73 ++---
t/unit/async/aws/sqs/test_message.py | 37 ---
t/unit/async/aws/sqs/test_sqs.py | 34 ---
t/unit/async/aws/test_aws.py | 2 +-
t/unit/async/aws/test_connection.py | 271 ++++-------------
t/unit/async/test_hub.py | 3 +-
t/unit/test_common.py | 21 +-
t/unit/transport/test_SQS.py | 232 ++++++++-------
t/unit/transport/test_base.py | 1 -
t/unit/transport/test_mongodb.py | 6 +
t/unit/transport/test_redis.py | 14 +
t/unit/transport/test_sqlalchemy.py | 50 ++++
t/unit/transport/test_zookeeper.py | 36 +++
87 files changed, 1669 insertions(+), 1069 deletions(-)
create mode 100644 debian/patches/0002-Disable-intershpinx-mapping-for-now.patch
delete mode 100644 debian/repack.local
delete mode 100644 debian/repack.stub
create mode 100644 docs/reference/kombu.transport.sqlalchemy.models.rst
create mode 100644 docs/reference/kombu.transport.sqlalchemy.rst
create mode 100644 extra/requirements/extras/sqlalchemy.txt
copy PKG-INFO => kombu.egg-info/PKG-INFO (92%)
create mode 100644 kombu.egg-info/SOURCES.txt
create mode 100644 kombu.egg-info/dependency_links.txt
create mode 100644 kombu.egg-info/not-zip-safe
create mode 100644 kombu.egg-info/requires.txt
create mode 100644 kombu.egg-info/top_level.txt
create mode 100644 kombu/transport/sqlalchemy/__init__.py
create mode 100644 kombu/transport/sqlalchemy/models.py
create mode 100644 requirements/extras/sqlalchemy.txt
create mode 100644 t/integration/tests/test_sqla.py
delete mode 100644 t/unit/async/aws/sqs/test_message.py
delete mode 100644 t/unit/async/aws/sqs/test_sqs.py
create mode 100644 t/unit/transport/test_sqlalchemy.py
create mode 100644 t/unit/transport/test_zookeeper.py
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/kombu.git
More information about the Python-modules-commits
mailing list