[Pkg-privacy-commits] [txtorcon] 05/12: Merge tag 'debian/0.9.1-1' into wheezy
Ximin Luo
infinity0 at moszumanska.debian.org
Sat Aug 22 13:26:55 UTC 2015
This is an automated email from the git hooks/post-receive script.
infinity0 pushed a commit to branch wheezy
in repository txtorcon.
commit 01bba9f7cd15c28ac9ec6ffa6cde370cfd174a3e
Merge: 73c52a5 dbb3ce0
Author: Jérémy Bobbio <lunar at debian.org>
Date: Tue Feb 11 17:40:51 2014 +0100
Merge tag 'debian/0.9.1-1' into wheezy
Format: 1.8
Date: Tue, 21 Jan 2014 15:10:52 +0100
Source: txtorcon
Binary: python-txtorcon
Architecture: source all
Version: 0.9.1-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-txtorcon - Twisted-based asynchronous Tor control protocol implementation
Changes:
txtorcon (0.9.1-1) unstable; urgency=low
.
* New upstream release.
* Update debian/watch and verify upstream signature
* Improve debian/README.source
Checksums-Sha1:
2f27e78ef393cd13dffba79f3023b8a392d2ef8a 1128 txtorcon_0.9.1-1.dsc
3e6dafdda187bf8e188c6afeee88240443adf21a 158644 txtorcon_0.9.1.orig.tar.gz
7ba73ff06f641413c5f9934aca1e79f1e6abb08c 4344 txtorcon_0.9.1-1.debian.tar.xz
a1b16c62532de55c5903e932cf115eba76fcdddf 105118 python-txtorcon_0.9.1-1_all.deb
Checksums-Sha256:
774e37648756d9360bb93aa98892b397c8bd096f100a51ee3ec637bdb9fa1285 1128 txtorcon_0.9.1-1.dsc
1895462cfa1981b20f49810132f993d154d12a8449e9f833c07c85ec988307aa 158644 txtorcon_0.9.1.orig.tar.gz
a2a52a6bedc69f26f91ded26443896581eeaa886d3a7c7fb45163921653f9738 4344 txtorcon_0.9.1-1.debian.tar.xz
f11197e3d5d7ba0bf14c1c7fc0b749f4bca5f0ecd1b26280e8e2f7adebf2a8e1 105118 python-txtorcon_0.9.1-1_all.deb
Files:
3be9f718cd393f3a52dba846e82411fe 1128 python extra txtorcon_0.9.1-1.dsc
111164da5073609ec62dbddedefc0e60 158644 python extra txtorcon_0.9.1.orig.tar.gz
67f39a64238dedea9cb74e08eb1399dc 4344 python extra txtorcon_0.9.1-1.debian.tar.xz
f7e0ea8a64b63aa875ec21e09c01a42a 105118 python extra python-txtorcon_0.9.1-1_all.deb
LICENSE | 2 +-
MANIFEST.in | 8 +-
Makefile | 83 ++++--
PKG-INFO | 112 ++++----
README => README.rst | 107 ++++---
debian/README.source | 16 +-
debian/changelog | 8 +
debian/rules | 2 +-
debian/source/include-binaries | 1 +
debian/upstream-signing-key.pgp | Bin 0 -> 1184 bytes
debian/watch | 5 +-
dev-requirements.txt | 6 +
docs/Makefile | 2 -
docs/README.rst | 2 +-
docs/index.rst | 49 +++-
docs/releases.rst | 33 ++-
docs/txtorcon-config.rst | 6 +
docs/txtorcon.rst | 1 +
docs/walkthrough.rst | 309 +++++++++++++++++++++
examples/attach_streams_by_country.py~ | 217 ---------------
examples/circuit_for_next_stream.py~ | 130 ---------
examples/foo.py | 26 --
examples/foo.py~ | 216 --------------
examples/launch_tor.py | 3 +-
examples/launch_tor.py~ | 57 ----
examples/launch_tor_endpoint.py | 8 +-
examples/launch_tor_endpoint.py~ | 55 ----
examples/launch_tor_with_hiddenservice.py | 4 +-
examples/launch_tor_with_simplehttpd.py | 2 +
examples/launch_tor_with_simplehttpd.py~ | 135 ---------
examples/monitor.py | 1 +
examples/monitor.py~ | 29 --
examples/newnym.py | 53 ++++
examples/nginx.py | 177 ------------
examples/nginx.py~ | 184 ------------
examples/stem_integration.py~ | 34 ---
examples/stream_circuit_logger.py | 6 +-
examples/stream_circuit_logger.py~ | 83 ------
examples/webui_server.py~ | 95 -------
requirements.txt | 6 +-
scripts/coverage.py | 40 ---
scripts/create-css.py | 36 ---
scripts/md-render.py | 24 --
setup.py | 20 +-
{txtorcon/test => test}/test_addrmap.py | 0
{txtorcon/test => test}/test_circuit.py | 52 +++-
{txtorcon/test => test}/test_fsm.py | 0
{txtorcon/test => test}/test_log.py | 0
{txtorcon/test => test}/test_router.py | 0
{txtorcon/test => test}/test_stream.py | 23 ++
{txtorcon/test => test}/test_torconfig.py | 156 ++++++++++-
{txtorcon/test => test}/test_torcontrolprotocol.py | 27 ++
{txtorcon/test => test}/test_torinfo.py | 0
{txtorcon/test => test}/test_torstate.py | 63 +++++
{txtorcon/test => test}/test_util.py | 88 +++++-
test/test_util_imports.py | 43 +++
txtorcon.egg-info/PKG-INFO | 112 ++++----
txtorcon.egg-info/SOURCES.txt | 50 ++--
txtorcon.egg-info/requires.txt | 2 +
txtorcon/__init__.py | 6 +-
txtorcon/circuit.py | 47 +++-
txtorcon/interface.py | 28 ++
txtorcon/stream.py | 42 +++
txtorcon/test/__init__.py | 0
txtorcon/torconfig.py | 79 ++++--
txtorcon/torcontrolprotocol.py | 20 +-
txtorcon/torstate.py | 67 ++++-
txtorcon/util.py | 125 ++++++---
68 files changed, 1552 insertions(+), 1871 deletions(-)
diff --cc debian/changelog
index b91bf07,e607052..9a0b3dc
--- a/debian/changelog
+++ b/debian/changelog
@@@ -1,9 -1,11 +1,17 @@@
+ txtorcon (0.9.1-1) unstable; urgency=low
+
+ * New upstream release.
+ * Update debian/watch and verify upstream signature
+ * Improve debian/README.source
+
+ -- Jérémy Bobbio <lunar at debian.org> Tue, 21 Jan 2014 15:10:52 +0100
+
+txtorcon (0.8.2-1~bpo70+1) wheezy-backports; urgency=low
+
+ * Rebuild for wheezy-backports.
+
+ -- Jérémy Bobbio <lunar at debian.org> Sun, 08 Dec 2013 18:15:38 +0100
+
txtorcon (0.8.2-1) unstable; urgency=low
* New upstream release.
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-privacy/packages/txtorcon.git
More information about the Pkg-privacy-commits
mailing list