[Python-modules-commits] [txfixtures] branch master updated (eddbf2d -> 72b7858)

Free Ekanayaka freee at moszumanska.debian.org
Thu Jan 5 23:51:19 UTC 2017


This is an automated email from the git hooks/post-receive script.

freee pushed a change to branch master
in repository txfixtures.

  discards  eddbf2d   Update changelog for 0.1.4-1 release
      adds  14f1710   Update changelog for 0.1.4-1 release
      adds  3c7ffd7   New upstream version 0.2.0
       new  90c8fbe   Merge tag 'upstream/0.2.0'
      adds  8c1fefb   New upstream version 0.2.1
       new  c75cbd4   Merge tag 'upstream/0.2.1'
       new  f6e68b2   New upstream release
       new  634b36a   Drop python3-compat.patch (merged upstream)
       new  55a69b5   Add upstream signature verification in watch file
      adds  4321bb7   New upstream version 0.2.2
       new  66d9cd9   Merge tag 'upstream/0.2.2'
       new  7d36536   Make tests pass on Debian
       new  789c4da   Update changelog
       new  ab72377   Build-depend on mongodb and selenium
       new  bb6dab0   Export PBR_VERSION to avoid tests failing
       new  77c6b6d   Build-Depend on procps
      adds  833bfb6   New upstream version 0.2.3
       new  d31cba8   Merge tag 'upstream/0.2.3'
       new  2353c59   New upstream release
       new  72b7858   Fix flake test_hung test

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (eddbf2d)
            \
             N -- N -- N   refs/heads/master (72b7858)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omits" are not gone; other references still
refer to them.  Any revisions marked "discards" are gone forever.

The 14 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                                            |   5 +
 ChangeLog                                          |  58 +++
 MANIFEST.in                                        |   2 +
 Makefile                                           |  18 +
 PKG-INFO                                           |  32 +-
 README                                             |  14 -
 README.rst                                         |  14 +
 debian/changelog                                   |   9 +
 debian/control                                     |  12 +
 .../0001-backport-testtools-twistedsupport.patch   | 307 ++++++++++++
 debian/patches/0001-python3-compat.patch           | 108 ----
 ...02-fix-tests-depending-on-newer-testtools.patch |  37 ++
 debian/patches/0003-skip-phantomjs-tests.patch     |  28 ++
 ...increase-mongodb-integration-test-timeout.patch |  22 +
 .../patches/0005-fix-flaky-service-hung-test.patch |  23 +
 debian/patches/series                              |   6 +-
 debian/rules                                       |   6 +-
 debian/upstream/signing-key.asc                    | 111 +++++
 debian/watch                                       |   4 +-
 doc/Makefile                                       | 216 ++++++++
 doc/api.rst                                        |  26 +
 doc/conf.py                                        | 302 ++++++++++++
 doc/index.rst                                      |  35 ++
 doc/phantomjs.rst                                  |  40 ++
 doc/reactor.rst                                    |  48 ++
 doc/service.rst                                    |  96 ++++
 requirements.txt                                   |   5 +
 setup.cfg                                          |  38 ++
 setup.py                                           |  38 +-
 tests/__init__.py                                  |   0
 tests/cannotlisten.tac                             |  27 +
 tests/okay.tac                                     |  23 +
 tests/test_mongodb.py                              |  24 +
 tests/test_phantomjs.py                            |  29 ++
 tests/test_reactor.py                              | 326 ++++++++++++
 tests/test_service.py                              | 240 +++++++++
 tests/test_tachandler.py                           | 159 ++++++
 tox.ini                                            |  26 +
 txfixtures.egg-info/PKG-INFO                       |  32 ++
 txfixtures.egg-info/SOURCES.txt                    |  48 ++
 txfixtures.egg-info/dependency_links.txt           |   1 +
 txfixtures.egg-info/not-zip-safe                   |   1 +
 txfixtures.egg-info/pbr.json                       |   1 +
 txfixtures.egg-info/requires.txt                   |  19 +
 txfixtures.egg-info/top_level.txt                  |   1 +
 txfixtures/__init__.py                             |  23 +-
 txfixtures/_twisted/__init__.py                    |   0
 txfixtures/_twisted/testing.py                     |  90 ++++
 txfixtures/_twisted/tests/__init__.py              |   0
 txfixtures/_twisted/tests/test_threading.py        |  50 ++
 txfixtures/_twisted/threading.py                   |  35 ++
 txfixtures/mongodb.py                              |  47 ++
 txfixtures/osutils.py                              |  17 +-
 txfixtures/phantomjs.py                            |  43 ++
 txfixtures/reactor.py                              | 205 ++++++++
 txfixtures/service.py                              | 549 +++++++++++++++++++++
 txfixtures/tachandler.py                           |  46 +-
 txfixtures/tests/__init__.py                       |   0
 txfixtures/tests/test_mongodb.py                   |  61 +++
 txfixtures/tests/test_phantomjs.py                 |  53 ++
 txfixtures/tests/test_reactor.py                   | 129 +++++
 txfixtures/tests/test_service.py                   | 435 ++++++++++++++++
 62 files changed, 4186 insertions(+), 214 deletions(-)
 create mode 100644 AUTHORS
 create mode 100644 ChangeLog
 create mode 100644 MANIFEST.in
 create mode 100644 Makefile
 delete mode 100644 README
 create mode 100644 README.rst
 create mode 100644 debian/patches/0001-backport-testtools-twistedsupport.patch
 delete mode 100644 debian/patches/0001-python3-compat.patch
 create mode 100644 debian/patches/0002-fix-tests-depending-on-newer-testtools.patch
 create mode 100644 debian/patches/0003-skip-phantomjs-tests.patch
 create mode 100644 debian/patches/0004-increase-mongodb-integration-test-timeout.patch
 create mode 100644 debian/patches/0005-fix-flaky-service-hung-test.patch
 create mode 100644 debian/upstream/signing-key.asc
 create mode 100644 doc/Makefile
 create mode 100644 doc/api.rst
 create mode 100644 doc/conf.py
 create mode 100644 doc/index.rst
 create mode 100644 doc/phantomjs.rst
 create mode 100644 doc/reactor.rst
 create mode 100644 doc/service.rst
 create mode 100644 requirements.txt
 create mode 100644 setup.cfg
 create mode 100644 tests/__init__.py
 create mode 100644 tests/cannotlisten.tac
 create mode 100644 tests/okay.tac
 create mode 100644 tests/test_mongodb.py
 create mode 100644 tests/test_phantomjs.py
 create mode 100644 tests/test_reactor.py
 create mode 100644 tests/test_service.py
 create mode 100644 tests/test_tachandler.py
 create mode 100644 tox.ini
 create mode 100644 txfixtures.egg-info/PKG-INFO
 create mode 100644 txfixtures.egg-info/SOURCES.txt
 create mode 100644 txfixtures.egg-info/dependency_links.txt
 create mode 100644 txfixtures.egg-info/not-zip-safe
 create mode 100644 txfixtures.egg-info/pbr.json
 create mode 100644 txfixtures.egg-info/requires.txt
 create mode 100644 txfixtures.egg-info/top_level.txt
 create mode 100644 txfixtures/_twisted/__init__.py
 create mode 100644 txfixtures/_twisted/testing.py
 create mode 100644 txfixtures/_twisted/tests/__init__.py
 create mode 100644 txfixtures/_twisted/tests/test_threading.py
 create mode 100644 txfixtures/_twisted/threading.py
 create mode 100644 txfixtures/mongodb.py
 create mode 100644 txfixtures/phantomjs.py
 create mode 100644 txfixtures/reactor.py
 create mode 100644 txfixtures/service.py
 create mode 100644 txfixtures/tests/__init__.py
 create mode 100644 txfixtures/tests/test_mongodb.py
 create mode 100644 txfixtures/tests/test_phantomjs.py
 create mode 100644 txfixtures/tests/test_reactor.py
 create mode 100644 txfixtures/tests/test_service.py

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/txfixtures.git



More information about the Python-modules-commits mailing list