[Pkg-privacy-commits] [pyptlib] 03/06: Merge tag 'debian/0.0.4-1' into tpo-raring-backport

Ximin Luo infinity0 at moszumanska.debian.org
Sat Aug 22 13:25:27 UTC 2015


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

infinity0 pushed a commit to branch tpo-raring-backport
in repository pyptlib.

commit db6e3151411b27e5aab716089dc48d61891e22f6
Merge: 46e97a6 4c4c030
Author: Jérémy Bobbio <lunar at debian.org>
Date:   Fri Oct 4 15:16:57 2013 +0200

    Merge tag 'debian/0.0.4-1' into tpo-raring-backport
    
    Format: 1.8
    Date: Fri, 20 Sep 2013 15:39:02 +0200
    Source: pyptlib
    Binary: python-pyptlib
    Architecture: source all
    Version: 0.0.4-1
    Distribution: unstable
    Urgency: low
    Maintainer: Jérémy Bobbio <lunar at debian.org>
    Changed-By: Jérémy Bobbio <lunar at debian.org>
    Description:
     python-pyptlib - library for Tor pluggable transports written in Python
    Changes:
     pyptlib (0.0.4-1) unstable; urgency=low
     .
       * New upstream version.
       * Add watch file.
       * Only run test files that actually contain tests.
       * Also use autopkgtest script to run the test suite at build time.
    Checksums-Sha1:
     4b01f747c133a8c457564ec1d3fedcb8ff29e17b 994 pyptlib_0.0.4-1.dsc
     fba463c4331e4721a8103091928a7d5cab285f86 233102 pyptlib_0.0.4.orig.tar.gz
     078d0677d0b2940b18548a048837521853d621d1 2907 pyptlib_0.0.4-1.debian.tar.gz
     f0a902eb9e5d9bb50e837e7562456eed44242b4a 19270 python-pyptlib_0.0.4-1_all.deb
    Checksums-Sha256:
     47cadd992e4a5594a5c0ba894252903de13744595a453017687cc3be0d34cb71 994 pyptlib_0.0.4-1.dsc
     dd9e63d8f5825fd521fa882a2efd41366febe86dec799c5b18675de87bfd262c 233102 pyptlib_0.0.4.orig.tar.gz
     19aef3d83e1ca9beb26597b06073d6b1969c33d06c831e5a09a9e74f9358b01e 2907 pyptlib_0.0.4-1.debian.tar.gz
     7135a0c2e4c8871e2c4dfedca39dd7ccb08276d2c8f20bf0880023ddaced84e8 19270 python-pyptlib_0.0.4-1_all.deb
    Files:
     a6f11500befab6939e1dd8b67a0a29d0 994 python extra pyptlib_0.0.4-1.dsc
     135d36a56ba6004ac46cf739e78ba584 233102 python extra pyptlib_0.0.4.orig.tar.gz
     314cce648e65844c7a2da2159ea425e2 2907 python extra pyptlib_0.0.4-1.debian.tar.gz
     bee3c0078647c4b20a00d20116eeae4e 19270 python extra python-pyptlib_0.0.4-1_all.deb

 ChangeLog                             |   8 ++
 PKG-INFO                              |   2 +-
 debian/changelog                      |  16 +++
 debian/control                        |   3 +-
 debian/rules                          |   7 +-
 debian/tests/control                  |   2 +
 debian/tests/upstream-tests           |   7 +
 debian/watch                          |   3 +
 examples/client.py                    |  15 +-
 examples/server.py                    |  15 +-
 pyptlib.egg-info/PKG-INFO             |   2 +-
 pyptlib.egg-info/SOURCES.txt          |   9 +-
 pyptlib/__init__.py                   |   1 +
 pyptlib/client.py                     | 128 ++++++-----------
 pyptlib/client_config.py              |  66 ++-------
 pyptlib/config.py                     | 169 ++++++++--------------
 pyptlib/core.py                       | 135 +++++++++++++++++
 pyptlib/server.py                     | 133 ++++++-----------
 pyptlib/server_config.py              | 178 +++++++++--------------
 pyptlib/{ => test}/__init__.py        |   0
 pyptlib/test/test_client.py           |  42 ++----
 pyptlib/test/test_core.py             |  96 +++++++++++++
 pyptlib/test/test_server.py           | 264 +++++++++++++---------------------
 pyptlib/test/test_util_subproc.py     | 114 +++++++++++++++
 pyptlib/test/util_subproc_child.py    |  22 +++
 pyptlib/test/util_subproc_main.py     |  76 ++++++++++
 pyptlib/{util.py => util/__init__.py} |  15 +-
 pyptlib/util/subproc.py               | 198 +++++++++++++++++++++++++
 setup.py                              |  25 ++--
 sphinx/API.rst                        | 161 +++++++++++----------
 sphinx/conf.py                        |   4 +-
 31 files changed, 1150 insertions(+), 766 deletions(-)

diff --cc debian/changelog
index 8c263e7,1b5e5c7..73bfb89
--- a/debian/changelog
+++ b/debian/changelog
@@@ -1,9 -1,19 +1,25 @@@
+ pyptlib (0.0.4-1) unstable; urgency=low
+ 
+   * New upstream version.
+   * Add watch file.
+   * Only run test files that actually contain tests.
+   * Also use autopkgtest script to run the test suite at build time.
+ 
+  -- Jérémy Bobbio <lunar at debian.org>  Fri, 20 Sep 2013 15:39:02 +0200
+ 
+ pyptlib (0.0.3-2) unstable; urgency=low
+ 
+   * Add autopkgtest support to run upstream test suite.
+   * Call dh_python2 to get proper Python dependencies.
+ 
+  -- Jérémy Bobbio <lunar at debian.org>  Wed, 28 Aug 2013 20:34:15 +0200
+ 
 +pyptlib (0.0.3-1~raring+1) raring-backport; urgency=low
 +
 +  * Build for raring-backport.
 +
 + -- Jérémy Bobbio <lunar at debian.org>  Mon, 29 Apr 2013 13:30:08 +0000
 +
  pyptlib (0.0.3-1) unstable; urgency=low
  
    * Initial release. (Closes: #699921)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-privacy/packages/pyptlib.git



More information about the Pkg-privacy-commits mailing list