diff options
author | Anas Nashif <anas.nashif@intel.com> | 2012-10-30 16:38:35 -0700 |
---|---|---|
committer | Anas Nashif <anas.nashif@intel.com> | 2012-10-30 16:38:35 -0700 |
commit | 84a74d5225e520b3f32ec1d37b7b4a5ed040b66a (patch) | |
tree | a054332610562cedcd9f72862fbb22522844b70f | |
parent | bacb91163539eca0a185298b620db7cf74660411 (diff) | |
download | dbus-python-84a74d5225e520b3f32ec1d37b7b4a5ed040b66a.tar.gz dbus-python-84a74d5225e520b3f32ec1d37b7b4a5ed040b66a.tar.bz2 dbus-python-84a74d5225e520b3f32ec1d37b7b4a5ed040b66a.zip |
Imported Upstream version 1.1.1upstream/1.1.1
-rw-r--r-- | ChangeLog | 1537 | ||||
-rw-r--r-- | Makefile.am | 12 | ||||
-rw-r--r-- | Makefile.in | 150 | ||||
-rw-r--r-- | NEWS | 57 | ||||
-rw-r--r-- | TODO | 0 | ||||
-rw-r--r-- | _dbus_bindings/Makefile.am | 1 | ||||
-rw-r--r-- | _dbus_bindings/Makefile.in | 51 | ||||
-rw-r--r-- | _dbus_bindings/abstract.c | 2 | ||||
-rw-r--r-- | _dbus_bindings/compat-internal.h | 52 | ||||
-rw-r--r-- | _dbus_bindings/message-append.c | 172 | ||||
-rw-r--r-- | _dbus_bindings/message-get-args.c | 56 | ||||
-rw-r--r-- | _dbus_glib_bindings/Makefile.in | 49 | ||||
-rw-r--r-- | aclocal.m4 | 69 | ||||
-rw-r--r-- | config.h.in | 6 | ||||
-rwxr-xr-x | configure | 438 | ||||
-rw-r--r-- | configure.ac | 18 | ||||
-rw-r--r-- | dbus/_version.py | 4 | ||||
-rw-r--r-- | dbus/gi_service.py | 83 | ||||
-rw-r--r-- | dbus/gobject_service.py | 89 | ||||
-rw-r--r-- | examples/Makefile.in | 32 | ||||
-rw-r--r-- | m4/Makefile.in | 32 | ||||
-rw-r--r-- | m4/am-check-python-headers.m4 | 4 | ||||
-rw-r--r-- | test/Makefile.in | 51 | ||||
-rwxr-xr-x | test/test-service.py | 10 | ||||
-rwxr-xr-x | test/test-standalone.py | 61 | ||||
-rw-r--r-- | test/tmp-session-bus.conf.in | 2 | ||||
-rw-r--r-- | tools/Makefile.in | 32 |
27 files changed, 1955 insertions, 1115 deletions
@@ -1,3 +1,192 @@ +commit f6066573d25508f5cbbc5c12254086d419bb8828 +Author: Simon McVittie <simon.mcvittie@collabora.co.uk> +Date: 2012-06-25 17:01:51 +0100 + + fd.o #40817: validate UTF-8 according to the same rules as libdbus + + NEWS | 8 +++ + _dbus_bindings/message-append.c | 102 ++++++++++++++++++++++++++++----------- + configure.ac | 4 ++ + test/test-standalone.py | 59 +++++++++++++++++++++- + 4 files changed, 143 insertions(+), 30 deletions(-) + +commit 4a0f4379d4a5783d576aec90019a39459eff007d +Author: Simon McVittie <simon.mcvittie@collabora.co.uk> +Date: 2012-06-05 19:39:20 +0100 + + NEWS + + NEWS | 7 ++++++- + 1 file changed, 6 insertions(+), 1 deletion(-) + +commit 6ff89bf0d05a550cf1aff2053579fc1f0192cd97 +Author: Simon McVittie <simon.mcvittie@collabora.co.uk> +Date: 2012-06-05 19:07:51 +0100 + + Py3: correctly guess the signature of ObjectPath(...) and Signature(...) + + Under Python 2, ObjectPath and Signature are subtypes of str (= bytes), + and the existing type-guessing worked. + + The type-guessing code assumed that all unicode objects were just + strings, but that assumption became false in the Python 3 port: + ObjectPath and Signature are still subtypes of str, but str now means + unicode, not bytes. + + Bug: https://bugs.freedesktop.org/show_bug.cgi?id=50740 + + _dbus_bindings/message-append.c | 14 ++++++++++++-- + test/test-standalone.py | 2 ++ + 2 files changed, 14 insertions(+), 2 deletions(-) + +commit 2f08b9e644c8530c4d324c4bd9d8a0cdb24edc92 +Author: Simon McVittie <simon.mcvittie@collabora.co.uk> +Date: 2012-05-09 17:50:59 +0100 + + Back to unreleased status + + NEWS | 5 +++++ + configure.ac | 2 +- + 2 files changed, 6 insertions(+), 1 deletion(-) + +commit 4a4bce958b3257b7cb2adc050022879660aface1 +Author: Simon McVittie <simon.mcvittie@collabora.co.uk> +Date: 2012-05-09 15:47:48 +0100 + + 1.1.0 + + NEWS | 35 +++++++++++++++++++++++++++++++++++ + configure.ac | 4 ++-- + dbus/gobject_service.py | 1 + + 3 files changed, 38 insertions(+), 2 deletions(-) + +commit e2e589889ef5257f62cc3a32561142f625716ef0 +Author: Simon McVittie <simon.mcvittie@collabora.co.uk> +Date: 2012-05-02 11:11:11 +0100 + + Make AM_CHECK_PYTHON_HEADERS compatible with Python 3 in the absence of python3-config + + m4/am-check-python-headers.m4 | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +commit 2f59718a4bf22cbea28e0c7b2f880f86d4497a7a +Author: Simon McVittie <simon.mcvittie@collabora.co.uk> +Date: 2012-05-02 10:44:13 +0100 + + Deprecate dbus.gobject_service and make it vaguely compatible with 1.0 + + Bug: https://bugs.freedesktop.org/show_bug.cgi?id=48904 + + dbus/gobject_service.py | 16 +++++++++++++++- + 1 file changed, 15 insertions(+), 1 deletion(-) + +commit 5b9f87676802f04ebc339fd16a4a30dc42e33c91 +Author: Simon McVittie <simon.mcvittie@collabora.co.uk> +Date: 2012-05-02 10:41:27 +0100 + + Reinstate the old dbus.gobject_service, but only for Python 2 + + Bug: https://bugs.freedesktop.org/show_bug.cgi?id=48904 + + Makefile.am | 6 ++++ + configure.ac | 5 ++++ + dbus/gobject_service.py | 71 +++++++++++++++++++++++++++++++++++++++++++++++ + 3 files changed, 82 insertions(+) + +commit ba3f3ff253982c9ad3b5a33df5b120e5692c9d29 +Author: Simon McVittie <simon.mcvittie@collabora.co.uk> +Date: 2012-05-02 10:39:29 +0100 + + Rename gobject_service (PyGI version) to gi_service + + Bug: https://bugs.freedesktop.org/show_bug.cgi?id=48904 + + Makefile.am | 2 +- + dbus/gi_service.py | 83 +++++++++++++++++++++++++++++++++++++++++++++++ + dbus/gobject_service.py | 83 ----------------------------------------------- + test/test-service.py | 10 +++--- + 4 files changed, 89 insertions(+), 89 deletions(-) + +commit f264e37f13720898d941f3636f77c489a9a1d845 +Author: Simon McVittie <simon.mcvittie@collabora.co.uk> +Date: 2012-03-12 11:41:00 +0000 + + Fix ref leak in dbus_py_variant_level_set + + Bug: https://bugs.freedesktop.org/show_bug.cgi?id=47108 + Signed-off-by: Simon McVittie <simon.mcvittie@collabora.co.uk> + + _dbus_bindings/abstract.c | 2 ++ + 1 file changed, 2 insertions(+) + +commit c53788657c0cfbd038325e690e7097e31f5e8430 +Author: Simon McVittie <simon.mcvittie@collabora.co.uk> +Date: 2012-02-29 13:35:24 +0000 + + Put sockets for the regression tests in /tmp, not ${builddir} + + Some automated build systems (naming no Portage) have really long build + directories, which can cause dbus-python to hit the length limit for Unix + sockets' names. + + Bug: https://bugs.freedesktop.org/show_bug.cgi?id=46747 + Signed-off-by: Simon McVittie <simon.mcvittie@collabora.co.uk> + + test/tmp-session-bus.conf.in | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +commit 1055343d746accc4048e5806f84a880143444c9f +Author: Simon McVittie <simon.mcvittie@collabora.co.uk> +Date: 2011-11-15 16:07:57 +0000 + + Use DBusBasicValue instead of reinventing it, if dbus is new enough + + If we don't find it, continue to reinvent it, but move the reinvention + to an internal header so it's at least the same in both files that want it. + + _dbus_bindings/Makefile.am | 1 + + _dbus_bindings/compat-internal.h | 52 ++++++++++++++++++++++++++++++++++ + _dbus_bindings/message-append.c | 56 ++++++++++++++++--------------------- + _dbus_bindings/message-get-args.c | 56 +++++++++++++++---------------------- + configure.ac | 5 ++++ + 5 files changed, 104 insertions(+), 66 deletions(-) + +commit 8e4836c318eb64ef720b497bebc247ac6a468b4b +Author: Simon McVittie <simon.mcvittie@collabora.co.uk> +Date: 2012-02-01 10:10:26 +0000 + + Fix _maintainer-update-htmldocs for out-of-tree builds + + Makefile.am | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +commit de81bf8dd5d70f4184412a5c7c2aacd82348d7ea +Author: Simon McVittie <simon.mcvittie@collabora.co.uk> +Date: 2012-02-01 10:10:10 +0000 + + Remove TODO, which is now empty - use bugzilla instead + + Makefile.am | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +commit 996a3f46f0998219eaf0cd68a744ebc90cfc6dd8 +Author: Simon McVittie <simon.mcvittie@collabora.co.uk> +Date: 2012-01-24 20:33:38 +0000 + + back to unreleased + + configure.ac | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +commit c59647b024b3242810fe46e500d557fd56d684d4 +Author: Simon McVittie <simon.mcvittie@collabora.co.uk> +Date: 2012-01-24 20:33:26 +0000 + + retroactively add release date + + NEWS | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + commit 5a8eb939ab4603a931457c5d4e8dfcdc323eaf89 Author: Barry Warsaw <barry@python.org> Date: 2012-01-24 16:43:05 +0000 @@ -5,7 +194,7 @@ Date: 2012-01-24 16:43:05 +0000 Install _compat.py Makefile.am | 1 + - 1 files changed, 1 insertions(+), 0 deletions(-) + 1 file changed, 1 insertion(+) commit d1ccc12dd1dee34faae52c7b325048ea801599fd Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -14,7 +203,7 @@ Date: 2012-01-24 16:41:46 +0000 Generate ChangeLog correctly when out-of-tree Makefile.am | 4 ++-- - 1 files changed, 2 insertions(+), 2 deletions(-) + 1 file changed, 2 insertions(+), 2 deletions(-) commit 1ee2b1a8cf729a71ae56e5671564c5fd62504707 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -33,7 +222,7 @@ Date: 2012-01-24 16:35:45 +0000 Remove duplicate -Werror machinery configure.ac | 8 -------- - 1 files changed, 0 insertions(+), 8 deletions(-) + 1 file changed, 8 deletions(-) commit cd4e91c65624062b5504c10b2af0a05aefbf4878 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -55,7 +244,7 @@ Date: 2012-01-24 16:21:15 +0000 Describe problems, alternatives README | 24 ++++++++++++++++++++++++ - 1 files changed, 24 insertions(+), 0 deletions(-) + 1 file changed, 24 insertions(+) commit b486edf800ecb9d2e23a35f7ac3151657ee39250 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -64,7 +253,7 @@ Date: 2012-01-24 16:06:35 +0000 Deprecate dbus.glib (use dbus.mainloop.glib or dbus.mainloop.qt4) dbus/glib.py | 10 ++++++++++ - 1 files changed, 10 insertions(+), 0 deletions(-) + 1 file changed, 10 insertions(+) commit 50fa5eb54992c28d63b0532533f755ff39f082e2 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -115,7 +304,7 @@ Date: 2012-01-11 14:04:14 +0000 Test behaviour of various Message methods test/test-standalone.py | 54 +++++++++++++++++++++++++++++++++++++++++++++++ - 1 files changed, 54 insertions(+), 0 deletions(-) + 1 file changed, 54 insertions(+) commit 69342f86b0d036ca41a19363efaf4e8352837c24 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -145,7 +334,7 @@ Date: 2012-01-11 12:58:21 +0000 so call it DBUS_PY_BYTE_BASE. _dbus_bindings/bytes.c | 18 +++++++++--------- - 1 files changed, 9 insertions(+), 9 deletions(-) + 1 file changed, 9 insertions(+), 9 deletions(-) commit beaa479066a0139bbb09f058818cd5476f1a79d2 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -194,7 +383,7 @@ Date: 2012-01-11 12:50:43 +0000 Yes, signals can have a destination. The default is to broadcast. _dbus_bindings/message.c | 7 +++++-- - 1 files changed, 5 insertions(+), 2 deletions(-) + 1 file changed, 5 insertions(+), 2 deletions(-) commit 9201d65b31305c8bef86ab072b7c33b197ede562 Author: Barry Warsaw <barry@python.org> @@ -239,7 +428,7 @@ Date: 2011-12-16 17:07:07 -0500 dbus/gobject_service.py | 76 +++++++++------- test/run-test.sh | 2 + test/test-client.py | 231 +++++++++++++++++++++++++---------------------- - test/test-service.py | 57 +++++++++---- + test/test-service.py | 57 ++++++++---- 5 files changed, 214 insertions(+), 157 deletions(-) commit 2167b305db78b8345b0f5ea23bfa445fa7cfca4d @@ -260,7 +449,7 @@ Date: 2011-12-15 19:58:06 -0500 Re-enable previously disabled test. test/cross-test-client.py | 3 ++- - 1 files changed, 2 insertions(+), 1 deletions(-) + 1 file changed, 2 insertions(+), 1 deletion(-) commit ef05d294e85978cf96a86535321cf914b605fa48 Author: Barry Warsaw <barry@python.org> @@ -294,7 +483,7 @@ Date: 2011-12-15 16:50:02 -0500 - Fix broken __all__ in Python 3. PY3PORT.rst | 227 +++++++++++++++++++++++++++++++++++++++ - _dbus_bindings/message-append.c | 26 +---- + _dbus_bindings/message-append.c | 26 ++--- dbus/types.py | 5 +- test/cross-test-client.py | 9 +- test/run-test.sh | 1 + @@ -312,19 +501,19 @@ Date: 2011-12-15 06:57:21 -0500 _dbus_bindings/bus.c | 20 +++- _dbus_bindings/bytes.c | 59 ++++++++-- _dbus_bindings/conn-methods.c | 30 +++-- - _dbus_bindings/conn.c | 32 +++++- + _dbus_bindings/conn.c | 32 ++++- _dbus_bindings/containers.c | 59 +++++++++- - _dbus_bindings/dbus_bindings-internal.h | 31 ++++- + _dbus_bindings/dbus_bindings-internal.h | 31 +++-- _dbus_bindings/exceptions.c | 4 +- - _dbus_bindings/int.c | 44 +++++-- + _dbus_bindings/int.c | 44 ++++--- _dbus_bindings/message-append.c | 195 +++++++++++++++++++++++++------ _dbus_bindings/message-get-args.c | 27 ++++- _dbus_bindings/message.c | 60 ++++++++-- _dbus_bindings/module.c | 143 +++++++++++++++-------- _dbus_bindings/server.c | 40 +++++-- _dbus_bindings/signature.c | 34 ++++-- - _dbus_bindings/string.c | 17 ++- - _dbus_bindings/types-internal.h | 12 ++- + _dbus_bindings/string.c | 17 +-- + _dbus_bindings/types-internal.h | 12 +- _dbus_bindings/unixfd.c | 7 +- _dbus_glib_bindings/Makefile.am | 2 +- _dbus_glib_bindings/module.c | 32 +++++ @@ -335,16 +524,16 @@ Date: 2011-12-15 06:57:21 -0500 dbus/_expat_introspect_parser.py | 2 +- dbus/bus.py | 23 +++- dbus/connection.py | 79 ++++++++----- - dbus/decorators.py | 19 ++- + dbus/decorators.py | 19 +-- dbus/proxies.py | 12 +- - dbus/service.py | 25 +++-- + dbus/service.py | 25 ++-- dbus/types.py | 6 +- include/dbus-python.h | 18 +++ test/cross-test-client.py | 107 ++++++++++------- test/cross-test-server.py | 34 ++++-- - test/dbus_py_test.c | 26 ++++ + test/dbus_py_test.c | 26 +++++ test/run-test.sh | 14 ++- - test/test-client.py | 149 +++++++++++++---------- + test/test-client.py | 149 ++++++++++++----------- test/test-p2p.py | 21 ++-- test/test-service.py | 9 +- test/test-standalone.py | 173 +++++++++++++++++---------- @@ -363,18 +552,18 @@ Date: 2011-12-14 15:05:16 -0500 _dbus_bindings/abstract.c | 20 ++++++-- _dbus_bindings/bus.c | 6 ++- - _dbus_bindings/bytes.c | 34 ++++++++++--- + _dbus_bindings/bytes.c | 34 +++++++++---- _dbus_bindings/conn-methods.c | 2 +- _dbus_bindings/conn.c | 2 +- _dbus_bindings/containers.c | 11 +++-- _dbus_bindings/generic.c | 4 +- - _dbus_bindings/int.c | 33 +++++++++---- + _dbus_bindings/int.c | 33 ++++++++----- _dbus_bindings/message-append.c | 21 ++++++-- _dbus_bindings/message-get-args.c | 2 +- _dbus_bindings/message.c | 2 +- - _dbus_bindings/types-internal.h | 3 + - _dbus_bindings/unixfd.c | 95 ++++++++++++++++++++++++------------ - test/test-standalone.py | 7 ++- + _dbus_bindings/types-internal.h | 3 ++ + _dbus_bindings/unixfd.c | 95 ++++++++++++++++++++++++------------- + test/test-standalone.py | 7 +-- 14 files changed, 166 insertions(+), 76 deletions(-) commit 11c639e3bd2ca3e6a87f349155dda2acc3cd92ea @@ -396,18 +585,18 @@ Date: 2011-12-14 13:36:39 -0500 PyString API. This makes the code compilable in Python 2.x (x >= 6) and Python 3. - _dbus_bindings/abstract.c | 21 +++--- + _dbus_bindings/abstract.c | 21 ++++--- _dbus_bindings/bus.c | 4 +- - _dbus_bindings/bytes.c | 8 +- + _dbus_bindings/bytes.c | 8 +-- _dbus_bindings/conn-methods.c | 40 ++++++------ _dbus_bindings/conn.c | 2 +- - _dbus_bindings/containers.c | 8 +- + _dbus_bindings/containers.c | 8 +-- _dbus_bindings/exceptions.c | 4 +- _dbus_bindings/message-append.c | 128 ++++++++++++++++++++------------------- _dbus_bindings/message.c | 12 ++-- _dbus_bindings/server.c | 6 +- _dbus_bindings/signature.c | 4 +- - _dbus_bindings/types-internal.h | 7 ++ + _dbus_bindings/types-internal.h | 7 +++ 12 files changed, 129 insertions(+), 115 deletions(-) commit ca7a705663adbac2e781d10c13fc98a5444ef646 @@ -418,11 +607,11 @@ Date: 2011-12-14 12:00:04 -0500 legal in Python 2 also. Use fancy REPR macro and the %V format code for cross-Python compatibility. - _dbus_bindings/abstract.c | 48 ++++++++++++------------ - _dbus_bindings/containers.c | 60 +++++++++++++++--------------- + _dbus_bindings/abstract.c | 48 ++++++++++++------------- + _dbus_bindings/containers.c | 60 +++++++++++++++---------------- _dbus_bindings/dbus_bindings-internal.h | 25 +++++++++++++ _dbus_bindings/int.c | 14 ++++---- - _dbus_bindings/string.c | 12 +++--- + _dbus_bindings/string.c | 12 +++---- 5 files changed, 92 insertions(+), 67 deletions(-) commit 5ff1d938ee230b47dcab8b7703409067df35ed2f @@ -448,7 +637,7 @@ Date: 2011-12-13 17:26:15 -0500 Modernize `raise` syntax in preparation of Python 3 support. dbus/decorators.py | 8 ++++---- - 1 files changed, 4 insertions(+), 4 deletions(-) + 1 file changed, 4 insertions(+), 4 deletions(-) commit e033b0c8f22a67abfe2ba1b61365d0c2570b7429 Author: Barry Warsaw <barry@python.org> @@ -468,7 +657,7 @@ Date: 2011-12-13 17:17:46 -0500 Fix an inconsequential typo. _dbus_bindings/signature.c | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) + 1 file changed, 1 insertion(+), 1 deletion(-) commit 4477b6120240e186db8d86619f6da63faca296ba Author: Barry Warsaw <barry@python.org> @@ -479,7 +668,7 @@ Date: 2011-12-13 17:15:41 -0500 _dbus_bindings/conn.c | 1 + _dbus_bindings/server.c | 1 + - 2 files changed, 2 insertions(+), 0 deletions(-) + 2 files changed, 2 insertions(+) commit 48abd4782f336de2d6dd228e58f86729778e26fb Author: Barry Warsaw <barry@python.org> @@ -488,7 +677,7 @@ Date: 2011-12-13 17:08:50 -0500 Don't leak the fast_seq object. _dbus_bindings/server.c | 5 ++++- - 1 files changed, 4 insertions(+), 1 deletions(-) + 1 file changed, 4 insertions(+), 1 deletion(-) commit 033a0f2890495053fd6474d6f52d4a6e9c32cca1 Author: Barry Warsaw <barry@python.org> @@ -528,7 +717,7 @@ Date: 2011-12-13 12:06:17 +0000 NEWS | 2 ++ configure.ac | 1 + - 2 files changed, 3 insertions(+), 0 deletions(-) + 2 files changed, 3 insertions(+) commit 75f2aaaa06e57bc1fbdbaf0530e48dea02541b03 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -537,7 +726,7 @@ Date: 2011-12-13 12:04:25 +0000 Update NEWS NEWS | 9 +++++++++ - 1 files changed, 9 insertions(+), 0 deletions(-) + 1 file changed, 9 insertions(+) commit cabcf23207a67cb9215e3efc25ae6e8d73823fd1 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -604,7 +793,7 @@ Date: 2011-12-13 11:46:17 +0000 Signed-off-by: Simon McVittie <simon.mcvittie@collabora.co.uk> _dbus_bindings/message-append.c | 6 +++--- - 1 files changed, 3 insertions(+), 3 deletions(-) + 1 file changed, 3 insertions(+), 3 deletions(-) commit fc24dbaa43e1aea47945cc608640022fd8f94093 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -654,7 +843,7 @@ Date: 2011-12-13 11:30:54 +0000 Signed-off-by: Simon McVittie <simon.mcvittie@collabora.co.uk> _dbus_bindings/message-get-args.c | 10 +++++++--- - 1 files changed, 7 insertions(+), 3 deletions(-) + 1 file changed, 7 insertions(+), 3 deletions(-) commit 876c668ecbc7b79aa04218b90e0f8b617d3997ed Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -665,7 +854,7 @@ Date: 2011-12-13 11:26:31 +0000 Signed-off-by: Simon McVittie <simon.mcvittie@collabora.co.uk> configure.ac | 3 ++- - 1 files changed, 2 insertions(+), 1 deletions(-) + 1 file changed, 2 insertions(+), 1 deletion(-) commit d1b628e10626a51c306ac8f59bcfbaae2b6fbf2b Author: Barry Warsaw <barry@python.org> @@ -676,7 +865,7 @@ Date: 2011-12-13 11:25:01 +0000 Signed-off-by: Simon McVittie <simon.mcvittie@collabora.co.uk> _dbus_bindings/message-append.c | 1 + - 1 files changed, 1 insertions(+), 0 deletions(-) + 1 file changed, 1 insertion(+) commit fb64313b8d37a7869c5489c8ee1bfad0c2c84c0f Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -690,7 +879,7 @@ Date: 2011-12-13 11:22:28 +0000 _dbus_bindings/dbus_bindings-internal.h | 4 ---- _dbus_bindings/generic.c | 23 ----------------------- - 2 files changed, 0 insertions(+), 27 deletions(-) + 2 files changed, 27 deletions(-) commit 3caf4241af3a0fbee5948a217172990bb3c5e0b7 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -699,7 +888,7 @@ Date: 2011-11-15 16:34:51 +0000 NEWS NEWS | 9 +++++++++ - 1 files changed, 9 insertions(+), 0 deletions(-) + 1 file changed, 9 insertions(+) commit 092f60d1887a907434fb34e3a8841b067c21a01e Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -710,7 +899,7 @@ Date: 2011-11-15 16:23:50 +0000 _dbus_bindings/dbus_bindings-internal.h | 7 ------- _dbus_bindings/module.c | 10 ---------- configure.ac | 2 +- - 3 files changed, 1 insertions(+), 18 deletions(-) + 3 files changed, 1 insertion(+), 18 deletions(-) commit dfa62b24adde8666df4d9cf64569d3aa51063ac8 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -720,7 +909,7 @@ Date: 2011-11-15 13:33:27 +0000 _dbus_bindings/message-append.c | 4 ---- configure.ac | 12 +----------- - 2 files changed, 1 insertions(+), 15 deletions(-) + 2 files changed, 1 insertion(+), 15 deletions(-) commit 9c26d255d7d94a6a9be961672ca666de601b561d Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -729,7 +918,7 @@ Date: 2011-05-25 13:51:24 +0100 Nano version configure.ac | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) + 1 file changed, 1 insertion(+), 1 deletion(-) commit 6bdb27482cace69935584d2d9b33bdfce50ef5ce Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -750,7 +939,7 @@ Date: 2011-05-24 17:49:20 +0100 Bug: https://bugs.freedesktop.org/show_bug.cgi?id=21017 configure.ac | 11 ++++++++++- - 1 files changed, 10 insertions(+), 1 deletions(-) + 1 file changed, 10 insertions(+), 1 deletion(-) commit e9feba0f7b3a2b67fd56154185e92eab4b932468 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -763,7 +952,7 @@ Date: 2011-05-24 17:48:36 +0100 Bug: https://bugs.freedesktop.org/show_bug.cgi?id=21017 m4/am-check-python-headers.m4 | 32 +++++++++++++++++++------------- - 1 files changed, 19 insertions(+), 13 deletions(-) + 1 file changed, 19 insertions(+), 13 deletions(-) commit d6962024d7686e40cc012905581cb31c6999b856 Merge: 4093246 cbc3f71 @@ -782,7 +971,7 @@ Date: 2011-05-18 12:30:57 +0100 NEWS NEWS | 17 +++++++++++++++++ - 1 files changed, 17 insertions(+), 0 deletions(-) + 1 file changed, 17 insertions(+) commit 86653c55435a05d047cc6bb191e2df64f3aa165c Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -794,7 +983,7 @@ Date: 2011-05-17 18:54:55 +0100 Reviewed-by: Will Thompson <will.thompson@collabora.co.uk> dbus/proxies.py | 31 ++++++++++++++++++------------- - 1 files changed, 18 insertions(+), 13 deletions(-) + 1 file changed, 18 insertions(+), 13 deletions(-) commit cbc3f71cebc313b988f8ecc461031c828bfd2302 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -803,7 +992,7 @@ Date: 2011-05-18 11:10:54 +0100 remove stray declaration of dbus_py_unixfd_range_check _dbus_bindings/types-internal.h | 1 - - 1 files changed, 0 insertions(+), 1 deletions(-) + 1 file changed, 1 deletion(-) commit 77f745f8a27af7b0ff4692ec02278591cdda2bbf Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -815,7 +1004,7 @@ Date: 2011-05-18 11:09:00 +0100 rather than choosing at random. examples/unix-fd-service.py | 17 +++++++++++------ - 1 files changed, 11 insertions(+), 6 deletions(-) + 1 file changed, 11 insertions(+), 6 deletions(-) commit 917c41bfcad70c2c519c56a8f2a62e1804c08fc1 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -824,7 +1013,7 @@ Date: 2011-05-18 11:02:58 +0100 Don't try to export DBUS_TYPE_UNIX_FD constant if not defined _dbus_bindings/module.c | 2 ++ - 1 files changed, 2 insertions(+), 0 deletions(-) + 1 file changed, 2 insertions(+) commit 04d9fe485b408bf1139e59c457f665a93f514464 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -833,7 +1022,7 @@ Date: 2011-05-18 11:02:44 +0100 unixfd: improve documentation _dbus_bindings/unixfd.c | 36 ++++++++++++++++++------------------ - 1 files changed, 18 insertions(+), 18 deletions(-) + 1 file changed, 18 insertions(+), 18 deletions(-) commit 9d848d864606866f06d3a61cf74e6b9ae44180c1 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -842,7 +1031,7 @@ Date: 2011-05-18 10:49:11 +0100 _message_iter_get_pyobject: fix whitespace _dbus_bindings/message-get-args.c | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) + 1 file changed, 1 insertion(+), 1 deletion(-) commit c1f49ac473ac8910aa14f65362088a22e3f60a42 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -867,7 +1056,7 @@ Date: 2011-05-18 10:38:49 +0100 unixfd: coding style _dbus_bindings/unixfd.c | 18 +++++++++--------- - 1 files changed, 9 insertions(+), 9 deletions(-) + 1 file changed, 9 insertions(+), 9 deletions(-) commit 13503a5c05b63f19f2d2f65c872fe70debf11700 Author: Elvis Pfützenreuter <epx@signove.com> @@ -897,7 +1086,7 @@ Date: 2011-05-17 18:56:45 +0100 Bug: https://bugs.freedesktop.org/show_bug.cgi?id=22560 examples/example-async-client.py | 12 ------------ - 1 files changed, 0 insertions(+), 12 deletions(-) + 1 file changed, 12 deletions(-) commit 070bddd9a60604ea47f003a0982ee90356092be5 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -906,7 +1095,7 @@ Date: 2011-05-17 18:06:40 +0100 adjust Scott's patch to force boolean to be 0 or 1, and for coding style _dbus_bindings/conn-methods.c | 6 ++++-- - 1 files changed, 4 insertions(+), 2 deletions(-) + 1 file changed, 4 insertions(+), 2 deletions(-) commit 4965899a9a6bfa1d9969895720089986b997189e Author: Scott Tsai <scottt.tw@gmail.com> @@ -918,7 +1107,7 @@ Date: 2011-02-16 23:46:39 +0800 Signed-off-by: Simon McVittie <simon.mcvittie@collabora.co.uk> _dbus_bindings/conn-methods.c | 20 ++++++++++++++++++++ - 1 files changed, 20 insertions(+), 0 deletions(-) + 1 file changed, 20 insertions(+) commit d2fc8a5a4ac2ce8eab519557c40432a6879a7c23 Author: Scott Tsai <scottt.tw@gmail.com> @@ -929,7 +1118,7 @@ Date: 2011-03-24 22:13:55 +0800 Signed-off-by: Simon McVittie <smcv@debian.org> dbus/proxies.py | 1 + - 1 files changed, 1 insertions(+), 0 deletions(-) + 1 file changed, 1 insertion(+) commit 73fce893626e2e2640a35798266f4ee2bc6c05eb Author: Simon McVittie <smcv@debian.org> @@ -948,7 +1137,7 @@ Date: 2010-12-02 17:41:12 +0000 NEWS NEWS | 24 +++++++++++++++++++++++- - 1 files changed, 23 insertions(+), 1 deletions(-) + 1 file changed, 23 insertions(+), 1 deletion(-) commit 59a0ea47f343da7626ea6f10f661a942f8eb284a Author: Simon McVittie <smcv@debian.org> @@ -957,7 +1146,7 @@ Date: 2010-12-02 17:39:08 +0000 DBusPyException_ConsumeError: check whether the constructor failed _dbus_bindings/exceptions.c | 5 +++++ - 1 files changed, 5 insertions(+), 0 deletions(-) + 1 file changed, 5 insertions(+) commit 28880468dddbb0e063d80dd003145a6322238507 Author: Simon McVittie <smcv@debian.org> @@ -969,7 +1158,7 @@ Date: 2010-12-02 17:28:33 +0000 configure.ac | 4 ++++ test/Makefile.am | 8 +++++++- test/import-repeatedly.c | 16 ++++++++++++++++ - 4 files changed, 29 insertions(+), 1 deletions(-) + 4 files changed, 29 insertions(+), 1 deletion(-) commit d3f57baf2a9e5e26e2365313abd2890239b6572a Author: Simon McVittie <smcv@debian.org> @@ -995,7 +1184,7 @@ Date: 2010-12-02 17:27:34 +0000 _dbus_bindings/server.c | 2 ++ _dbus_bindings/signature.c | 1 + _dbus_bindings/string.c | 1 + - 13 files changed, 25 insertions(+), 0 deletions(-) + 13 files changed, 25 insertions(+) commit 56ad64cd14e52b479489549f76343f19e3842139 Author: Simon McVittie <smcv@debian.org> @@ -1003,24 +1192,24 @@ Date: 2010-12-02 16:31:07 +0000 Use Py_CLEAR for greater robustness - _dbus_bindings/abstract.c | 36 ++++++++-------- - _dbus_bindings/bus.c | 10 ++-- + _dbus_bindings/abstract.c | 36 ++++++++--------- + _dbus_bindings/bus.c | 10 ++--- _dbus_bindings/bytes.c | 6 +-- _dbus_bindings/conn-methods.c | 60 ++++++++++++++-------------- - _dbus_bindings/conn.c | 18 ++++---- + _dbus_bindings/conn.c | 18 ++++----- _dbus_bindings/containers.c | 78 ++++++++++++++++++------------------- _dbus_bindings/exceptions.c | 8 ++-- _dbus_bindings/generic.c | 2 +- - _dbus_bindings/int.c | 32 ++++++++-------- + _dbus_bindings/int.c | 32 +++++++-------- _dbus_bindings/message-append.c | 59 ++++++++++++++-------------- - _dbus_bindings/message-get-args.c | 42 +++++++++---------- + _dbus_bindings/message-get-args.c | 42 ++++++++++---------- _dbus_bindings/message.c | 14 +++---- _dbus_bindings/module.c | 2 +- _dbus_bindings/pending-call.c | 16 ++++---- - _dbus_bindings/server.c | 18 ++++---- + _dbus_bindings/server.c | 18 ++++----- _dbus_bindings/signature.c | 6 +-- _dbus_bindings/string.c | 4 +- - _dbus_glib_bindings/module.c | 10 ++-- + _dbus_glib_bindings/module.c | 10 ++--- test/dbus_py_test.c | 8 ++-- 19 files changed, 209 insertions(+), 220 deletions(-) @@ -1034,7 +1223,7 @@ Date: 2010-12-02 15:15:02 +0000 pointing if the last call to dbus_signature_iter_next indicated "no more". _dbus_bindings/message-append.c | 36 ++++++++++++++++++++++-------------- - 1 files changed, 22 insertions(+), 14 deletions(-) + 1 file changed, 22 insertions(+), 14 deletions(-) commit db66571902a3406fc58ac453d8bfa7f689f46c42 Author: Simon McVittie <smcv@debian.org> @@ -1047,7 +1236,7 @@ Date: 2010-12-02 15:13:28 +0000 failure, rather than just returning INVALID. _dbus_bindings/message-append.c | 9 +++++++++ - 1 files changed, 9 insertions(+), 0 deletions(-) + 1 file changed, 9 insertions(+) commit 3813781fec33ed3cf33cedbfe7d1ecaf8af34aee Author: Simon McVittie <smcv@debian.org> @@ -1069,7 +1258,7 @@ Date: 2010-12-02 15:09:00 +0000 _message_iter_append_multi: assert that mode is what we expect _dbus_bindings/message-append.c | 5 +++++ - 1 files changed, 5 insertions(+), 0 deletions(-) + 1 file changed, 5 insertions(+) commit abefbed911ecab8fb5c08d887479f21b449b392b Author: Simon McVittie <smcv@debian.org> @@ -1078,7 +1267,7 @@ Date: 2010-12-02 15:08:15 +0000 Makefile.am: build API docs etc. last, so they pick up any recent changes Makefile.am | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) + 1 file changed, 1 insertion(+), 1 deletion(-) commit 53e9cde2ca64de906967546750e5c6dd6aa58da6 Author: Simon McVittie <smcv@debian.org> @@ -1092,7 +1281,7 @@ Date: 2010-11-23 19:17:19 +0000 _dbus_bindings/message-get-args.c | 6 ++++++ test/test-standalone.py | 7 +++++++ - 2 files changed, 13 insertions(+), 0 deletions(-) + 2 files changed, 13 insertions(+) commit 292a9eab92e908b6dc0e97b5ea07c432f41b8bae Author: Simon McVittie <smcv@debian.org> @@ -1105,7 +1294,7 @@ Date: 2010-11-23 19:06:17 +0000 warnings. configure.ac | 4 ++-- - 1 files changed, 2 insertions(+), 2 deletions(-) + 1 file changed, 2 insertions(+), 2 deletions(-) commit 83b51706c422662dd0a7d55a40030a1d75c38f88 Author: Elvis Pfützenreuter <epx signove.com> @@ -1114,7 +1303,7 @@ Date: 2010-10-14 23:19:14 -0300 Fix compilation in 64-bit architecture _dbus_bindings/message-append.c | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) + 1 file changed, 1 insertion(+), 1 deletion(-) commit 0ed654e18e29f8c23add3d69e57f6b3628c8f848 Author: Louis-Francis Ratté-Boulianne <louis-francis.ratte-boulianne@collabora.co.uk> @@ -1128,7 +1317,7 @@ Date: 2010-08-18 14:02:11 -0400 Reviewed-by: Simon McVittie <simon.mcvittie@collabora.co.uk> configure.ac | 4 +++- - 1 files changed, 3 insertions(+), 1 deletions(-) + 1 file changed, 3 insertions(+), 1 deletion(-) commit f68a143ac3b19bd40709cbc85b5112fcb0d2e07b Author: Johan Sandelin <johan@alphafish.com> @@ -1139,7 +1328,7 @@ Date: 2010-03-23 15:15:33 +0100 Reviewed-by: Simon McVittie <simon.mcvittie@collabora.co.uk> dbus/bus.py | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) + 1 file changed, 1 insertion(+), 1 deletion(-) commit e2262071188067360a7798ae30d4b694229f6f0f Author: Simon McVittie <smcv@debian.org> @@ -1149,7 +1338,7 @@ Date: 2010-02-18 18:11:34 +0000 NEWS | 5 +++++ configure.ac | 2 +- - 2 files changed, 6 insertions(+), 1 deletions(-) + 2 files changed, 6 insertions(+), 1 deletion(-) commit 49884241db42ea4d2eadd08cb8b5805a6708c925 Author: Simon McVittie <smcv@debian.org> @@ -1182,7 +1371,7 @@ Date: 2010-02-18 17:35:11 +0000 Require a halfway modern Automake configure.ac | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) + 1 file changed, 1 insertion(+), 1 deletion(-) commit 4bef0dcf7a040d3656b60e480e9e94b663887ab9 Author: Simon McVittie <smcv@debian.org> @@ -1191,7 +1380,7 @@ Date: 2010-02-18 17:35:01 +0000 Support silent rules if automake >= 1.11 configure.ac | 1 + - 1 files changed, 1 insertions(+), 0 deletions(-) + 1 file changed, 1 insertion(+) commit ea197112c5601b0b527b933c3e1241a1bdb02f9f Author: Simon McVittie <smcv@debian.org> @@ -1200,7 +1389,7 @@ Date: 2010-02-18 17:22:14 +0000 Fix signature and return value of Connection_tp_init (oops) _dbus_bindings/conn.c | 4 +++- - 1 files changed, 3 insertions(+), 1 deletions(-) + 1 file changed, 3 insertions(+), 1 deletion(-) commit 1c9d2019260b38f7ee2eef1f73d07c0620ba51f2 Author: Simon McVittie <smcv@debian.org> @@ -1231,7 +1420,7 @@ Date: 2010-02-18 17:15:48 +0000 Ignore generated files from newer libtool .gitignore | 5 +++++ - 1 files changed, 5 insertions(+), 0 deletions(-) + 1 file changed, 5 insertions(+) commit 35f4c2e950539f3c72628eb758b62ed2a0b70492 Author: Simon McVittie <smcv@debian.org> @@ -1240,7 +1429,7 @@ Date: 2010-02-18 17:02:13 +0000 Use git log rather than git-log, to support distcheck with modern git Makefile.am | 4 ++-- - 1 files changed, 2 insertions(+), 2 deletions(-) + 1 file changed, 2 insertions(+), 2 deletions(-) commit 50f0a326c63f35b2cafe8cb9e9082bc2c4a3fa1b Author: Simon McVittie <smcv@debian.org> @@ -1249,7 +1438,7 @@ Date: 2010-02-18 15:07:39 +0000 fd.o#21172: avoid DeprecationWarning with Python 2.6 _dbus_bindings/conn.c | 9 ++++++++- - 1 files changed, 8 insertions(+), 1 deletions(-) + 1 file changed, 8 insertions(+), 1 deletion(-) commit abdf6021b21883beb51d92862caafc127d3c25ec Author: Simon McVittie <smcv@debian.org> @@ -1280,7 +1469,7 @@ Date: 2008-09-30 15:38:16 +0100 Update NEWS again NEWS | 3 +++ - 1 files changed, 3 insertions(+), 0 deletions(-) + 1 file changed, 3 insertions(+) commit a6df6fb20142e7624b78b5c84e9e23cba3d3a3b9 Author: Huang Peng <shawn.p.huang gmail com> @@ -1293,7 +1482,7 @@ Date: 2008-09-30 15:35:39 +0100 as "org.freedesktop.DBus". _dbus_bindings/message.c | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) + 1 file changed, 1 insertion(+), 1 deletion(-) commit 98d85a33c8570dff007ce79d87657b19e67e0f00 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -1302,7 +1491,7 @@ Date: 2008-09-30 15:34:24 +0100 NEWS: mention mpg's bugfix NEWS | 4 ++++ - 1 files changed, 4 insertions(+), 0 deletions(-) + 1 file changed, 4 insertions(+) commit 29774bca65ef7f887f9dafda56cb167dc0a2e80e Merge: 884acb5 6a94507 @@ -1319,7 +1508,7 @@ Date: 2008-09-16 11:26:24 +0100 NEWS | 9 +++++++++ configure.ac | 2 +- - 2 files changed, 10 insertions(+), 1 deletions(-) + 2 files changed, 10 insertions(+), 1 deletion(-) commit 6a945076699cd0a5eebde6bcf22a3cc4a4f9e547 Author: Marco Pesenti Gritti <mpgritti gmail com> @@ -1342,7 +1531,7 @@ Date: 2008-09-15 18:09:00 +0100 Signed-off-by: Simon McVittie <simon.mcvittie@collabora.co.uk> dbus/connection.py | 10 +++++++++- - 1 files changed, 9 insertions(+), 1 deletions(-) + 1 file changed, 9 insertions(+), 1 deletion(-) commit 81d0dcd79e1bc6187faa2f6a2f6d4d821f879a0e Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -1363,7 +1552,7 @@ Date: 2008-07-23 17:36:41 +0100 _dbus_bindings/dbus_bindings-internal.h | 1 + _dbus_glib_bindings/module.c | 2 ++ test/dbus_py_test.c | 2 ++ - 3 files changed, 5 insertions(+), 0 deletions(-) + 3 files changed, 5 insertions(+) commit fe5981ca2b90978c75d3308b0f58844fabf8ea4d Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -1373,7 +1562,7 @@ Date: 2008-07-23 17:36:24 +0100 Makefile.am | 5 ++++- NEWS | 2 ++ - 2 files changed, 6 insertions(+), 1 deletions(-) + 2 files changed, 6 insertions(+), 1 deletion(-) commit 7ef26213b5b3b46444f87a603ee3bb5c6381a56a Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -1396,7 +1585,7 @@ Date: 2008-07-17 13:06:06 +0100 Update NEWS again NEWS | 15 ++++++++++----- - 1 files changed, 10 insertions(+), 5 deletions(-) + 1 file changed, 10 insertions(+), 5 deletions(-) commit d1ded84e774c4aaad9bf02842e1898580dd599ea Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -1417,7 +1606,7 @@ Date: 2008-07-17 13:00:15 +0100 dbus/service.py | 5 ++++- test/test-client.py | 37 +++++++++++++++++++++++++++++++++++++ test/test-service.py | 22 ++++++++++++++++++++++ - 4 files changed, 96 insertions(+), 1 deletions(-) + 4 files changed, 96 insertions(+), 1 deletion(-) commit b962965f8c30d785ade69dd6a60924b42d6a1c8d Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -1443,7 +1632,7 @@ Date: 2008-07-15 19:37:00 +0100 Bugfix for: if using Connection.add_message_filter, only the last filter will be called _dbus_bindings/conn-methods.c | 1 + - 1 files changed, 1 insertions(+), 0 deletions(-) + 1 file changed, 1 insertion(+) commit a7725c9d7589773de7c068f11ca63b95f99ccfcc Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -1466,7 +1655,7 @@ Date: 2008-07-15 19:30:33 +0100 Initialize LibDBusConnection correctly _dbus_bindings/module.c | 2 ++ - 1 files changed, 2 insertions(+), 0 deletions(-) + 1 file changed, 2 insertions(+) commit 07196538f58c069313eeda2c496278f8289b9437 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -1475,7 +1664,7 @@ Date: 2008-07-15 19:22:33 +0100 Add some more compiler warning flags if supported configure.ac | 5 +++++ - 1 files changed, 5 insertions(+), 0 deletions(-) + 1 file changed, 5 insertions(+) commit 88a08077393d4c6f091109ccc819c6ec4664ba71 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -1484,7 +1673,7 @@ Date: 2008-07-15 19:22:21 +0100 Make DBusPyConnection_NewConsumingDBusConnection static now nobody else needs to call it _dbus_bindings/conn.c | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) + 1 file changed, 1 insertion(+), 1 deletion(-) commit 2f7e3865c5cae60769b98dac163802e224345fb9 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -1493,7 +1682,7 @@ Date: 2008-07-15 19:21:51 +0100 DbusPyServer: construct connections by calling the type, so the object will be fully initialized _dbus_bindings/server.c | 28 ++++++++++++++++++++-------- - 1 files changed, 20 insertions(+), 8 deletions(-) + 1 file changed, 20 insertions(+), 8 deletions(-) commit bdc76e63da5ca9e017cfbea6c1ce1b0e21ebf706 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -1505,8 +1694,8 @@ Date: 2008-07-15 19:15:42 +0100 to do strange sideways inheritance, we can just chain up to the superclass constructor. - _dbus_bindings/bus.c | 85 ++++++++++++++++++++++++++++++++++--------------- - 1 files changed, 59 insertions(+), 26 deletions(-) + _dbus_bindings/bus.c | 85 +++++++++++++++++++++++++++++++++++--------------- + 1 file changed, 59 insertions(+), 26 deletions(-) commit 0f0193180b7853cfea486d0aef1b60d4fa067ed2 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -1522,7 +1711,7 @@ Date: 2008-07-15 19:13:55 +0100 but most of it is fixable like this. _dbus_bindings/conn.c | 40 +++++++++++++++++++++++++++------------- - 1 files changed, 27 insertions(+), 13 deletions(-) + 1 file changed, 27 insertions(+), 13 deletions(-) commit 9d53f6c5179c590089bd6560e266dda538202f93 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -1531,7 +1720,7 @@ Date: 2008-07-15 18:59:33 +0100 [trivial] un-extern Struct_tp_getattro _dbus_bindings/containers.c | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) + 1 file changed, 1 insertion(+), 1 deletion(-) commit 9d9322f9faf49f7ac8b4c3048f1333a9d7cabb48 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -1540,7 +1729,7 @@ Date: 2008-07-15 18:54:54 +0100 Add LibDBusConnection in _dbus_bindings _dbus_bindings/Makefile.am | 1 + - _dbus_bindings/conn-internal.h | 5 + + _dbus_bindings/conn-internal.h | 5 ++ _dbus_bindings/dbus_bindings-internal.h | 16 +++- _dbus_bindings/libdbusconn.c | 124 +++++++++++++++++++++++++++++++ 4 files changed, 143 insertions(+), 3 deletions(-) @@ -1552,7 +1741,7 @@ Date: 2008-07-14 18:44:15 +0100 Add Connection.call_on_disconnection dbus/connection.py | 24 ++++++++++++++++++++++++ - 1 files changed, 24 insertions(+), 0 deletions(-) + 1 file changed, 24 insertions(+) commit a7e29e3dbab9651761fc9a7c3ec7fbc27c711286 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -1561,7 +1750,7 @@ Date: 2008-07-14 17:30:43 +0100 Actually create objects of class Server->conn_class _dbus_bindings/server.c | 7 ++++--- - 1 files changed, 4 insertions(+), 3 deletions(-) + 1 file changed, 4 insertions(+), 3 deletions(-) commit ee4c9f80cd6a6e839eeebd2e592e4793e9bb61a8 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -1570,7 +1759,7 @@ Date: 2008-07-14 17:24:35 +0100 dbus.server.Server: implement a stub version of _on_new_connection dbus/server.py | 17 +++++++++++++++++ - 1 files changed, 17 insertions(+), 0 deletions(-) + 1 file changed, 17 insertions(+) commit 689e366ec0192920bcc961a0c44e89898d9bd8b1 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -1579,7 +1768,7 @@ Date: 2008-07-14 17:19:56 +0100 Fix *another* thinko in dbus.server dbus/server.py | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) + 1 file changed, 1 insertion(+), 1 deletion(-) commit 2a646b1a5ac0ac15923e657058703f146f12a452 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -1588,7 +1777,7 @@ Date: 2008-07-14 17:18:45 +0100 Fix thinko in dbus.server: actually instantiate a _Server dbus/server.py | 2 ++ - 1 files changed, 2 insertions(+), 0 deletions(-) + 1 file changed, 2 insertions(+) commit b9925dc51a1fe6d07c263f7f956005b44ca95b29 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -1597,7 +1786,7 @@ Date: 2008-07-14 16:56:02 +0100 Add some whitespace to make reStructuredText happy dbus/_dbus.py | 2 ++ - 1 files changed, 2 insertions(+), 0 deletions(-) + 1 file changed, 2 insertions(+) commit c731758bd9d5dfcfe2a9e3176596bb43777ea334 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -1612,7 +1801,7 @@ Date: 2008-07-14 16:54:16 +0100 _dbus_bindings/dbus_bindings-internal.h | 8 ++++++++ _dbus_bindings/mainloop.c | 19 +++++++++++++++++++ _dbus_bindings/module.c | 2 ++ - 5 files changed, 31 insertions(+), 0 deletions(-) + 5 files changed, 31 insertions(+) commit 6dcd530f0b6aa158330726d7a5cca9d6dd96eafb Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -1641,7 +1830,7 @@ Date: 2008-07-14 16:40:32 +0100 test-server: import Connection from the right place test/test-server.py | 4 ++-- - 1 files changed, 2 insertions(+), 2 deletions(-) + 1 file changed, 2 insertions(+), 2 deletions(-) commit 54a64a6571a6de18b87177ff1410e5d57f574463 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -1650,7 +1839,7 @@ Date: 2008-07-14 16:16:22 +0100 DBusPyServer initialization: remove some debugging printfs _dbus_bindings/server.c | 8 +++----- - 1 files changed, 3 insertions(+), 5 deletions(-) + 1 file changed, 3 insertions(+), 5 deletions(-) commit 05c19f23c63246322e4c9dfed2af47aaf77f7619 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -1659,7 +1848,7 @@ Date: 2008-07-14 16:15:43 +0100 DBusPyServer get_address, get_id: correct docs, these return str not String _dbus_bindings/server.c | 4 ++-- - 1 files changed, 2 insertions(+), 2 deletions(-) + 1 file changed, 2 insertions(+), 2 deletions(-) commit cf64e96607157f4e73c6dacaa34fb54fead26d1f Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -1668,7 +1857,7 @@ Date: 2008-07-14 16:14:48 +0100 DBusPyServer tp_dealloc: remove a stray debugging printf _dbus_bindings/server.c | 1 - - 1 files changed, 0 insertions(+), 1 deletions(-) + 1 file changed, 1 deletion(-) commit d9821035d58c4fe161a9ff0a2546198e2c1dbb49 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -1677,7 +1866,7 @@ Date: 2008-07-14 16:13:34 +0100 DBusPyServer: correctly unref the partially constructed DBusPyServer on errors _dbus_bindings/server.c | 3 ++- - 1 files changed, 2 insertions(+), 1 deletions(-) + 1 file changed, 2 insertions(+), 1 deletion(-) commit 6d77f23d062f047437dc8ce428d86a7ad9fa05b2 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -1686,7 +1875,7 @@ Date: 2008-07-14 16:12:27 +0100 DBusPyServer: correctly unref the weakref object on errors _dbus_bindings/server.c | 3 ++- - 1 files changed, 2 insertions(+), 1 deletions(-) + 1 file changed, 2 insertions(+), 1 deletion(-) commit 603d449610275db1e51816104630cce6d74ac9d4 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -1695,7 +1884,7 @@ Date: 2008-07-14 16:11:30 +0100 DBusPyServer: fix a typo _dbus_bindings/server.c | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) + 1 file changed, 1 insertion(+), 1 deletion(-) commit 0a888fb732074426d9b0dd6f487dffe5cee9df39 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -1704,7 +1893,7 @@ Date: 2008-07-14 16:09:57 +0100 DBusPyServer: Fix refcounting of the main loop _dbus_bindings/server.c | 6 ++++-- - 1 files changed, 4 insertions(+), 2 deletions(-) + 1 file changed, 4 insertions(+), 2 deletions(-) commit 1144c656fa9d956853fd8c03dc52937f60d3ee2e Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -1716,7 +1905,7 @@ Date: 2008-07-14 16:09:27 +0100 set already. _dbus_bindings/server.c | 8 +++++++- - 1 files changed, 7 insertions(+), 1 deletions(-) + 1 file changed, 7 insertions(+), 1 deletion(-) commit 37fd41a721a5417eeb72e90cbe3296f823ccc1b2 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -1727,7 +1916,7 @@ Date: 2008-07-14 16:08:26 +0100 Rename it to DBusPyServer_NewConsumingDBusServer to make this clearer. _dbus_bindings/server.c | 14 +++++++++----- - 1 files changed, 9 insertions(+), 5 deletions(-) + 1 file changed, 9 insertions(+), 5 deletions(-) commit 1896381006ec54b1dfaf8bbcaaeab14b8a12ed32 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -1736,7 +1925,7 @@ Date: 2008-07-14 15:45:35 +0100 DBusPyServer: remove some stray debugging printfs _dbus_bindings/server.c | 3 --- - 1 files changed, 0 insertions(+), 3 deletions(-) + 1 file changed, 3 deletions(-) commit ac83797b39b1d0eacaafcdf42772eab8ca91ce63 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -1751,8 +1940,8 @@ Date: 2008-07-14 15:39:02 +0100 unicode, accepting FooObject and trying to use it as an authentication method "<FooObject at 0xdeadbeef>" would be silly) - _dbus_bindings/server.c | 52 ++++++++++++++++++++++++++-------------------- - 1 files changed, 29 insertions(+), 23 deletions(-) + _dbus_bindings/server.c | 52 ++++++++++++++++++++++++++--------------------- + 1 file changed, 29 insertions(+), 23 deletions(-) commit 9774cdade2306b9bb641162a14645510fc822c86 Author: Mathias Hasselmann <mathias@openismus.com> @@ -1763,7 +1952,7 @@ Date: 2008-01-31 23:26:30 +0100 _dbus_bindings/server.c | 535 +++++++++++++++++++++++++++++++++++++++++++++++ dbus/server.py | 38 ++++ test/test-server.py | 74 +++++++ - 3 files changed, 647 insertions(+), 0 deletions(-) + 3 files changed, 647 insertions(+) commit dff98456995c37d964eb32a7de7ca718fc3d48d7 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -1773,7 +1962,7 @@ Date: 2008-01-22 12:01:18 +0000 NEWS | 4 ++++ dbus/service.py | 5 ++++- - 2 files changed, 8 insertions(+), 1 deletions(-) + 2 files changed, 8 insertions(+), 1 deletion(-) commit 2295b58e4eef9f41a2f917c51408f83a4d2b7efd Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -1783,7 +1972,7 @@ Date: 2007-12-19 18:19:02 +0000 Based on a patch from Phil Thompson, riverbankcomputing.co.uk doc/tutorial.txt | 6 +++++- - 1 files changed, 5 insertions(+), 1 deletions(-) + 1 file changed, 5 insertions(+), 1 deletion(-) commit e0883f3518f137399077c13409f7a469924c0fd8 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -1793,7 +1982,7 @@ Date: 2007-12-10 17:40:23 +0000 NEWS | 7 +++++++ configure.ac | 2 +- - 2 files changed, 8 insertions(+), 1 deletions(-) + 2 files changed, 8 insertions(+), 1 deletion(-) commit a536c5ed08c21e35937bc8ea52844c2f19bfdc55 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -1802,7 +1991,7 @@ Date: 2007-12-10 17:39:20 +0000 Add a maintainer-upload target to the Makefile.am, which uploads the current .tar.gz and .tar.gz.asc Makefile.am | 7 ++++++- - 1 files changed, 6 insertions(+), 1 deletions(-) + 1 file changed, 6 insertions(+), 1 deletion(-) commit ca0a58e3ef9fe1cc2b1282b52f652c71b736e182 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -1811,7 +2000,7 @@ Date: 2007-12-10 15:14:06 +0000 Version 0.82.4 configure.ac | 4 ++-- - 1 files changed, 2 insertions(+), 2 deletions(-) + 1 file changed, 2 insertions(+), 2 deletions(-) commit ae97b7432232bc008e20e4696c512bcf69938dd8 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -1830,7 +2019,7 @@ Date: 2007-10-12 11:34:37 +0100 Update NEWS NEWS | 14 ++++++++++++++ - 1 files changed, 14 insertions(+), 0 deletions(-) + 1 file changed, 14 insertions(+) commit 6076d4222af7da5a8aa1de28626423d811ba6be2 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -1839,7 +2028,7 @@ Date: 2007-10-12 11:34:28 +0100 Don't try to make dbus/Makefile from dbus/Makefile.in; the fix for #12741 removed it configure.ac | 1 - - 1 files changed, 0 insertions(+), 1 deletions(-) + 1 file changed, 1 deletion(-) commit 4fdbc65e42d940ba6cc4445a8a83af90dc3d3a34 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -1850,7 +2039,7 @@ Date: 2007-10-09 12:26:21 +0100 This reverts commit 5321d836844f3bc06a6d5796c9ca902e0bd6f4cc. Makefile.am | 7 ++++++- - 1 files changed, 6 insertions(+), 1 deletions(-) + 1 file changed, 6 insertions(+), 1 deletion(-) commit 09611c45b3301e93a34a03366e058c3edc184e47 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -1859,7 +2048,7 @@ Date: 2007-10-09 12:24:52 +0100 Don't distribute COPYING.*, which we no longer have or need Makefile.am | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) + 1 file changed, 1 insertion(+), 1 deletion(-) commit 81897e3143ff5d4c660e4960cc103b92d54ae14d Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -1868,7 +2057,7 @@ Date: 2007-10-09 12:24:15 +0100 Don't try to distribute COPYING.AFL-2.1 and COPYING.GPL-2, which we no longer have or need Makefile.am | 2 -- - 1 files changed, 0 insertions(+), 2 deletions(-) + 1 file changed, 2 deletions(-) commit 0a8b67e2d99ed36f30d6709277a40fdd2812953d Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -1906,7 +2095,7 @@ Date: 2007-10-09 12:07:57 +0100 Make sure extensions are built before docs; get rid of strange inter-directory dependency Makefile.am | 7 +------ - 1 files changed, 1 insertions(+), 6 deletions(-) + 1 file changed, 1 insertion(+), 6 deletions(-) commit 07b0486fa32ede65b5c05011d56f2ee0694a5176 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -1927,7 +2116,7 @@ Date: 2007-10-09 11:42:00 +0100 test/dbus_py_test.c | 25 ++++++++++++++++++++++++- test/run-test.sh | 3 +++ test/run-with-tmp-session-bus.sh | 4 ++++ - 3 files changed, 31 insertions(+), 1 deletions(-) + 3 files changed, 31 insertions(+), 1 deletion(-) commit 5295a01631b2a02f948d22417de997a3200a2cee Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -1946,7 +2135,7 @@ Date: 2007-09-28 11:49:28 +0100 examples/gconf-proxy-client.py | 23 +++++++++++++++++++++++ examples/gconf-proxy-service2.py | 24 ++++++++++++++++++++++++ examples/list-system-services.py | 23 +++++++++++++++++++++++ - 8 files changed, 185 insertions(+), 0 deletions(-) + 8 files changed, 185 insertions(+) commit c658f7804cf892c2c45548dc9283c06ce7249925 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -1969,7 +2158,7 @@ Date: 2007-09-27 19:05:06 +0100 Unset dbus_python_released following release configure.ac | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) + 1 file changed, 1 insertion(+), 1 deletion(-) commit 137f8e8bbfcd1bef30efe8aec4923c407da180eb Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -1988,7 +2177,7 @@ Date: 2007-09-27 18:31:20 +0100 Don't try to distribute COPYING.LGPL-2.1 - no longer exists Makefile.am | 9 +++++++-- - 1 files changed, 7 insertions(+), 2 deletions(-) + 1 file changed, 7 insertions(+), 2 deletions(-) commit dfa86e6e601be2ebef25ad99056929ff30e1cac9 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -1997,7 +2186,7 @@ Date: 2007-09-27 18:24:58 +0100 Fix NEWS indentation NEWS | 1 + - 1 files changed, 1 insertions(+), 0 deletions(-) + 1 file changed, 1 insertion(+) commit 4e39a3c08aef2b502e9d330b372b7ab96fac6881 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2006,7 +2195,7 @@ Date: 2007-09-27 18:21:16 +0100 Mention relicensing in NEWS NEWS | 5 +++++ - 1 files changed, 5 insertions(+), 0 deletions(-) + 1 file changed, 5 insertions(+) commit 2afba7e53cf65fccfd15c87852e791845cff8467 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2017,7 +2206,7 @@ Date: 2007-09-27 18:19:16 +0100 NEWS | 11 +++++++++++ test/test-client.py | 15 +++++++++++++++ test/test-service.py | 8 ++++++++ - 3 files changed, 34 insertions(+), 0 deletions(-) + 3 files changed, 34 insertions(+) commit cb1ffaea799249d6c2dcc9452f758f57392f55e7 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2026,7 +2215,7 @@ Date: 2007-09-27 18:14:11 +0100 fd.o #12432: fix documentation for remove_from_connection dbus/service.py | 4 ---- - 1 files changed, 0 insertions(+), 4 deletions(-) + 1 file changed, 4 deletions(-) commit 05460fdecf77c56640c332d290a5950884f26769 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2035,7 +2224,7 @@ Date: 2007-09-27 18:13:42 +0100 dbus.exceptions.DBusException: allow setting _dbus_error_name in subclasses dbus/exceptions.py | 4 +++- - 1 files changed, 3 insertions(+), 1 deletions(-) + 1 file changed, 3 insertions(+), 1 deletion(-) commit 79b4ea50399db59fa8459badf33918764677248d Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2047,7 +2236,7 @@ Date: 2007-09-27 17:57:15 +0100 strange more-than-one-way-to-do-it APIs. dbus/_dbus.py | 11 ++++------- - 1 files changed, 4 insertions(+), 7 deletions(-) + 1 file changed, 4 insertions(+), 7 deletions(-) commit d8c154284ca464f493c81a4d3b5a37890d68acec Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2057,31 +2246,31 @@ Date: 2007-09-27 13:57:49 +0100 COPYING | 36 ++- COPYING.LGPL-2.1 | 510 ------------------------------- - _dbus_bindings/abstract.c | 33 ++- - _dbus_bindings/bus.c | 33 ++- - _dbus_bindings/bytes.c | 33 ++- + _dbus_bindings/abstract.c | 33 +- + _dbus_bindings/bus.c | 33 +- + _dbus_bindings/bytes.c | 33 +- _dbus_bindings/conn-internal.h | 30 +- _dbus_bindings/conn-methods.c | 31 +- _dbus_bindings/conn.c | 31 +- - _dbus_bindings/containers.c | 33 ++- + _dbus_bindings/containers.c | 33 +- _dbus_bindings/dbus_bindings-internal.h | 31 +- - _dbus_bindings/debug.c | 33 ++- - _dbus_bindings/exceptions.c | 33 ++- - _dbus_bindings/float.c | 33 ++- - _dbus_bindings/generic.c | 33 ++- - _dbus_bindings/int.c | 33 ++- - _dbus_bindings/mainloop.c | 33 ++- - _dbus_bindings/message-append.c | 33 ++- - _dbus_bindings/message-get-args.c | 33 ++- - _dbus_bindings/message-internal.h | 33 ++- - _dbus_bindings/message.c | 33 ++- - _dbus_bindings/module.c | 33 ++- - _dbus_bindings/pending-call.c | 33 ++- - _dbus_bindings/signature.c | 33 ++- - _dbus_bindings/string.c | 33 ++- - _dbus_bindings/types-internal.h | 33 ++- + _dbus_bindings/debug.c | 33 +- + _dbus_bindings/exceptions.c | 33 +- + _dbus_bindings/float.c | 33 +- + _dbus_bindings/generic.c | 33 +- + _dbus_bindings/int.c | 33 +- + _dbus_bindings/mainloop.c | 33 +- + _dbus_bindings/message-append.c | 33 +- + _dbus_bindings/message-get-args.c | 33 +- + _dbus_bindings/message-internal.h | 33 +- + _dbus_bindings/message.c | 33 +- + _dbus_bindings/module.c | 33 +- + _dbus_bindings/pending-call.c | 33 +- + _dbus_bindings/signature.c | 33 +- + _dbus_bindings/string.c | 33 +- + _dbus_bindings/types-internal.h | 33 +- _dbus_bindings/validation.c | 31 +- - _dbus_glib_bindings/module.c | 33 ++- + _dbus_glib_bindings/module.c | 33 +- dbus/bus.py | 30 +- dbus/connection.py | 30 +- dbus/exceptions.py | 22 ++ @@ -2089,11 +2278,11 @@ Date: 2007-09-27 13:57:49 +0100 dbus/lowlevel.py | 30 +- dbus/mainloop/__init__.py | 30 +- doc/tutorial.txt | 34 ++- - include/dbus-python.h | 33 ++- + include/dbus-python.h | 33 +- test/cross-test-client.py | 30 +- test/cross-test-server.py | 30 +- test/crosstest.py | 30 +- - test/test-standalone.py | 32 ++- + test/test-standalone.py | 32 +- test/test-unusable-main-loop.py | 22 ++ 40 files changed, 707 insertions(+), 1036 deletions(-) @@ -2105,7 +2294,7 @@ Date: 2007-09-27 13:56:01 +0100 (fd.o #12403, https://dev.laptop.org/ticket/3370) dbus/service.py | 11 ++++++++++- - 1 files changed, 10 insertions(+), 1 deletions(-) + 1 file changed, 10 insertions(+), 1 deletion(-) commit 7028d177352b18efa3cc567f6753e1dbdab8f025 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2114,7 +2303,7 @@ Date: 2007-08-06 14:27:01 +0100 Update NEWS NEWS | 4 ++++ - 1 files changed, 4 insertions(+), 0 deletions(-) + 1 file changed, 4 insertions(+) commit 050bf4a893e24061c3de35eb24c05d3d1002ed28 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2136,7 +2325,7 @@ Date: 2007-08-01 21:37:50 +0100 NEWS | 3 +++ configure.ac | 2 +- - 2 files changed, 4 insertions(+), 1 deletions(-) + 2 files changed, 4 insertions(+), 1 deletion(-) commit af16daa9ff5d7217f361d68ce2bfe405f2cbd412 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2155,7 +2344,7 @@ Date: 2007-08-01 20:00:37 +0100 Mention in NEWS that API docs are generated by default NEWS | 3 +++ - 1 files changed, 3 insertions(+), 0 deletions(-) + 1 file changed, 3 insertions(+) commit 44471aab0502cfccef6a4fb63f01feeb6bf8732e Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2164,7 +2353,7 @@ Date: 2007-08-01 19:59:19 +0100 Reorganise README to reflect that API docs are generated by default README | 31 +++++++++++-------------------- - 1 files changed, 11 insertions(+), 20 deletions(-) + 1 file changed, 11 insertions(+), 20 deletions(-) commit d3208ff19c3b61ae006403a9096c7a7ac09d4f5f Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2173,7 +2362,7 @@ Date: 2007-08-01 19:58:59 +0100 Mention incompatibility with 0.82.1 more prominently NEWS | 18 ++++++++++++------ - 1 files changed, 12 insertions(+), 6 deletions(-) + 1 file changed, 12 insertions(+), 6 deletions(-) commit 8a27b1d1164c6c63467d79c497330fefd7c6de6e Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2182,7 +2371,7 @@ Date: 2007-08-01 19:27:30 +0100 Check for epydoc version >= 3, and default to building API docs if available configure.ac | 17 +++++++++++++++-- - 1 files changed, 15 insertions(+), 2 deletions(-) + 1 file changed, 15 insertions(+), 2 deletions(-) commit 44f7d60ff7ea038c2e314f05f1ccbc3a76f258d5 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2191,7 +2380,7 @@ Date: 2007-08-01 19:15:45 +0100 Update NEWS to mention #11623 fix NEWS | 10 ++++++++++ - 1 files changed, 10 insertions(+), 0 deletions(-) + 1 file changed, 10 insertions(+) commit 5e6fa32bf95a0d17fe5ce6a4ecdcae5dd3f967d5 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2222,7 +2411,7 @@ Date: 2007-08-01 18:36:37 +0100 Update NEWS NEWS | 3 +++ - 1 files changed, 3 insertions(+), 0 deletions(-) + 1 file changed, 3 insertions(+) commit 159319390404ed58406dba5a42d931740660af78 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2242,7 +2431,7 @@ Date: 2007-07-31 19:01:11 +0100 NEWS: mention the solved build problems related to python-config NEWS | 4 ++++ - 1 files changed, 4 insertions(+), 0 deletions(-) + 1 file changed, 4 insertions(+) commit e821e102b2fa3baff4de719411b03385132dd0f4 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2251,7 +2440,7 @@ Date: 2007-07-31 18:49:43 +0100 Re-fix checking for Python include paths. Use $PYTHON-config like in 0.82.1 if we can, use the hard-coded logic from versions prior to 0.82.0 if we can't. m4/am-check-python-headers.m4 | 27 +++++++++++++++++++-------- - 1 files changed, 19 insertions(+), 8 deletions(-) + 1 file changed, 19 insertions(+), 8 deletions(-) commit f0291410ce950913593d5ae6c9fd4fabd5eaaa3f Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2297,7 +2486,7 @@ Date: 2007-07-31 17:40:20 +0100 This reverts commit 7c9d08d1ba7f5b0a9aa4a37118e56b1725cdaef9. m4/am-check-python-headers.m4 | 5 ++++- - 1 files changed, 4 insertions(+), 1 deletions(-) + 1 file changed, 4 insertions(+), 1 deletion(-) commit 66ebaa801a13be7403e6ec47de1f322ccf310346 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2311,7 +2500,7 @@ Date: 2007-07-31 13:01:04 +0100 the objects in libdbus' abstraction are Python objects. _dbus_bindings/mainloop.c | 357 --------------------------------------------- - 1 files changed, 0 insertions(+), 357 deletions(-) + 1 file changed, 357 deletions(-) commit 4856b6c485c430ac15d4a634b6958d5f6af89dfa Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2320,7 +2509,7 @@ Date: 2007-07-31 12:55:16 +0100 NEWS: update with timeout fix NEWS | 13 +++++++++++++ - 1 files changed, 13 insertions(+), 0 deletions(-) + 1 file changed, 13 insertions(+) commit 5ab6cdc200267095edd56645df536dac5d4dc986 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2331,7 +2520,7 @@ Date: 2007-07-31 12:38:02 +0100 dbus/connection.py | 2 +- test/test-client.py | 40 ++++++++++++++++++++++++++++++++++++++++ test/test-service.py | 13 +++++++++++++ - 3 files changed, 54 insertions(+), 1 deletions(-) + 3 files changed, 54 insertions(+), 1 deletion(-) commit 70f802152547898f225a0a675789fb923a5ea410 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2340,7 +2529,7 @@ Date: 2007-07-26 17:04:44 +0100 test-client: Avoid deprecated usage - explicitly pass SessionBus() to BusName ctor test/test-client.py | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) + 1 file changed, 1 insertion(+), 1 deletion(-) commit f5eb61dce982d6c51a78f5bb745ebd632ef1ad70 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2363,7 +2552,7 @@ Date: 2007-07-12 16:26:05 +0100 Bump version to 0.82.1.YYYYMMDD configure.ac | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) + 1 file changed, 1 insertion(+), 1 deletion(-) commit 07bb7f1de21c64ea1f19ff107910daa2a14ec4ba Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2373,7 +2562,7 @@ Date: 2007-07-12 13:13:13 +0100 _dbus_bindings/containers.c | 6 +----- _dbus_bindings/int.c | 14 -------------- - 2 files changed, 1 insertions(+), 19 deletions(-) + 2 files changed, 1 insertion(+), 19 deletions(-) commit a94d9d68d17fd5284aa549187ac6fbb29c188efd Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2403,7 +2592,7 @@ Date: 2007-07-03 19:54:06 +0100 Unset dbus_python_released configure.ac | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) + 1 file changed, 1 insertion(+), 1 deletion(-) commit a2ee1a4bbdef1613c44be8131b9a89bf8c4543ba Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2412,7 +2601,7 @@ Date: 2007-06-29 17:54:02 +0100 .gitignore: ignore patch(1) cruft, and detached signatures for the release tarballs .gitignore | 3 +++ - 1 files changed, 3 insertions(+), 0 deletions(-) + 1 file changed, 3 insertions(+) commit 439ceed581837381aa690b6a0b809a06470d167d Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2421,7 +2610,7 @@ Date: 2007-06-29 17:47:23 +0100 Update NEWS NEWS | 23 +++++++++++++++++++++++ - 1 files changed, 23 insertions(+), 0 deletions(-) + 1 file changed, 23 insertions(+) commit 1b91d2d408ea471af1e4641e7fb31b4534026a70 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2430,7 +2619,7 @@ Date: 2007-06-29 17:38:46 +0100 dbus.proxies: If making a call with ignore_reply=True, don't block for introspection dbus/proxies.py | 3 ++- - 1 files changed, 2 insertions(+), 1 deletions(-) + 1 file changed, 2 insertions(+), 1 deletion(-) commit 06810eb34ed2cdc5f0def02b45680915b0e0b985 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2439,7 +2628,7 @@ Date: 2007-06-21 01:22:27 +0100 dbus.service: use DBUS_INTROSPECT_1_0_XML_DOCTYPE_DECL_NODE dbus/service.py | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) + 1 file changed, 1 insertion(+), 1 deletion(-) commit 9556649e48df344f6ec0010c4af00a076a751760 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2448,7 +2637,7 @@ Date: 2007-06-21 01:22:04 +0100 Expose HANDLER_RESULT_HANDLED, HANDLER_RESULT_NOT_YET_HANDLED as public API in dbus.lowlevel dbus/lowlevel.py | 7 +++++-- - 1 files changed, 5 insertions(+), 2 deletions(-) + 1 file changed, 5 insertions(+), 2 deletions(-) commit 0d4f60d771305572594fb2cfb502bf565230fa37 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2457,7 +2646,7 @@ Date: 2007-06-21 01:21:33 +0100 Get stacklevel right on deprecation of not specifying bus in BusName.__init__ dbus/service.py | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) + 1 file changed, 1 insertion(+), 1 deletion(-) commit 11925e0a12989793926f82d2286cbb20ef7a179d Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2466,7 +2655,7 @@ Date: 2007-06-21 01:20:39 +0100 _dbus_bindings: add DBUS_INTROSPECT_1_0_XML_DOCTYPE_DECL_NODE etc. _dbus_bindings/module.c | 9 +++++++++ - 1 files changed, 9 insertions(+), 0 deletions(-) + 1 file changed, 9 insertions(+) commit d45d56a6ba455ee9b12af4d2c8c448392d74d1b4 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2476,7 +2665,7 @@ Date: 2007-06-21 01:19:39 +0100 _dbus_bindings/mainloop.c | 8 +++++++- configure.ac | 6 ++++++ - 2 files changed, 13 insertions(+), 1 deletions(-) + 2 files changed, 13 insertions(+), 1 deletion(-) commit a2f7458105791f37be52e1de22b710968904b235 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2486,7 +2675,7 @@ Date: 2007-06-20 18:01:19 +0100 Explicit is better than implicit. dbus/service.py | 17 +++++++++++++---- - 1 files changed, 13 insertions(+), 4 deletions(-) + 1 file changed, 13 insertions(+), 4 deletions(-) commit 39c996ac7439c5c9a61ddb0efc92bada491fa0e5 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2496,7 +2685,7 @@ Date: 2007-06-20 18:00:10 +0100 Closes bugs.fd.o #11209. doc/tutorial.txt | 45 +++++++++++++++++++-------------------------- - 1 files changed, 19 insertions(+), 26 deletions(-) + 1 file changed, 19 insertions(+), 26 deletions(-) commit 9f2e2040c33b09196e438c818379290c9e41a4ca Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2514,11 +2703,11 @@ Date: 2007-06-19 13:59:23 +0100 Improve API documentation markup, particularly adding :Since: annotations - dbus/bus.py | 63 +++++++++++++++++++++++++++++++++++---------------- - dbus/connection.py | 5 ++++ - dbus/decorators.py | 14 +++++++++++ - dbus/proxies.py | 6 ++-- - dbus/service.py | 30 +++++++++++++++++++----- + dbus/bus.py | 63 +++++++++++++++++++++++++++++++++++----------------- + dbus/connection.py | 5 +++++ + dbus/decorators.py | 14 ++++++++++++ + dbus/proxies.py | 6 ++--- + dbus/service.py | 30 +++++++++++++++++++------ 5 files changed, 88 insertions(+), 30 deletions(-) commit e631446a0c3113260c380284fe1f71419d5a7edb @@ -2528,7 +2717,7 @@ Date: 2007-06-19 13:58:37 +0100 Mark Bus.get_connection() as deprecated; improve Bus.__repr__ dbus/_dbus.py | 18 ++++++++++-------- - 1 files changed, 10 insertions(+), 8 deletions(-) + 1 file changed, 10 insertions(+), 8 deletions(-) commit 10c49fa072b4f28713cfc873444b902b0bbe021e Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2537,7 +2726,7 @@ Date: 2007-06-19 13:37:30 +0100 Update NEWS with recent changes; next version should be 0.82.0 I think NEWS | 19 +++++++++++++++---- - 1 files changed, 15 insertions(+), 4 deletions(-) + 1 file changed, 15 insertions(+), 4 deletions(-) commit 7c9d08d1ba7f5b0a9aa4a37118e56b1725cdaef9 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2547,7 +2736,7 @@ Date: 2007-06-19 13:22:31 +0100 Thanks to Sebastien Bacher. m4/am-check-python-headers.m4 | 5 +---- - 1 files changed, 1 insertions(+), 4 deletions(-) + 1 file changed, 1 insertion(+), 4 deletions(-) commit 543ebc088ffbef9a52de333d99361b47301571b3 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2562,8 +2751,8 @@ Date: 2007-06-18 16:31:20 +0100 dbus/decorators.py | 115 +++++++++++++++++++++++++++++++------------------- dbus/service.py | 52 +++++++++++++++++++++-- - test/run-test.sh | 3 + - test/test-client.py | 22 ++++++++- + test/run-test.sh | 3 ++ + test/test-client.py | 22 ++++++++-- test/test-service.py | 39 +++++++++++++++++ test/test-signals.py | 28 ++++++++++-- 6 files changed, 205 insertions(+), 54 deletions(-) @@ -2575,7 +2764,7 @@ Date: 2007-06-15 19:03:03 +0100 Unset dbus_python_released configure.ac | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) + 1 file changed, 1 insertion(+), 1 deletion(-) commit c5f1a34d6319e768f38f18817b09134849c74794 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2584,7 +2773,7 @@ Date: 2007-06-15 18:51:46 +0100 Update NEWS NEWS | 29 +++++++++++++++++++++++++++++ - 1 files changed, 29 insertions(+), 0 deletions(-) + 1 file changed, 29 insertions(+) commit b4a34bf6ac17fae4f0cc67f5b5082856f0aa7283 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2593,7 +2782,7 @@ Date: 2007-06-14 11:05:39 +0100 doc/tutorial.txt: @service and @method take dbus_interface=..., not interface=... doc/tutorial.txt | 8 ++++---- - 1 files changed, 4 insertions(+), 4 deletions(-) + 1 file changed, 4 insertions(+), 4 deletions(-) commit dbfb6d7b676d22dc98c3ef88071a9deeffa79648 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2602,7 +2791,7 @@ Date: 2007-06-12 14:27:39 +0100 dbus.bus: In watch_name_owner, only watch the desired name! dbus/bus.py | 3 ++- - 1 files changed, 2 insertions(+), 1 deletions(-) + 1 file changed, 2 insertions(+), 1 deletion(-) commit 5b408fd8501d79f87bd752f9ce483f5beb6f157b Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2611,7 +2800,7 @@ Date: 2007-06-11 18:10:16 +0100 dbus.bus: Ignore any errors while cleaning up signal matches, so we can make the call asynchronously dbus/bus.py | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) + 1 file changed, 1 insertion(+), 1 deletion(-) commit 7f2e0bfe0c205af512af716f4fcb7b8508269eb7 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2622,7 +2811,7 @@ Date: 2007-06-11 14:51:59 +0100 dbus.decorators: Allow connection_keyword on signals and methods, so we can tell which connection to use for any follow-up actions. - dbus/decorators.py | 81 ++++++++++++++----- + dbus/decorators.py | 81 +++++++++++++------ dbus/service.py | 209 ++++++++++++++++++++++++++++++++++++++++++-------- test/test-service.py | 8 +- 3 files changed, 239 insertions(+), 59 deletions(-) @@ -2635,7 +2824,7 @@ Date: 2007-06-07 20:11:57 +0100 Unique names are not recycled, so no more signals can arrive for that name. dbus/bus.py | 19 ++++++++++--------- - 1 files changed, 10 insertions(+), 9 deletions(-) + 1 file changed, 10 insertions(+), 9 deletions(-) commit c2773de718d0cbcac27a60d2fc56063499eeef0e Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2644,7 +2833,7 @@ Date: 2007-06-04 14:47:15 +0100 Update date in NEWS for 0.81.1 release NEWS | 4 ++-- - 1 files changed, 2 insertions(+), 2 deletions(-) + 1 file changed, 2 insertions(+), 2 deletions(-) commit 8d5f51a95f04ddc524e8790a00635082c851b4a1 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2653,7 +2842,7 @@ Date: 2007-06-04 14:19:21 +0100 Version 0.81.1 configure.ac | 4 ++-- - 1 files changed, 2 insertions(+), 2 deletions(-) + 1 file changed, 2 insertions(+), 2 deletions(-) commit 382b890175ecef7818ce07d8d36cdaab138032df Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2662,7 +2851,7 @@ Date: 2007-06-04 12:26:15 +0100 NEWS: update NEWS | 4 ++-- - 1 files changed, 2 insertions(+), 2 deletions(-) + 1 file changed, 2 insertions(+), 2 deletions(-) commit f1c2dcd0f7b9d177877aafed95fe64343862c1cf Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2683,7 +2872,7 @@ Date: 2007-06-04 12:10:53 +0100 Patch from Phil Thompson at Riverbank Computing Ltd. dbus-python.pc.in | 1 + - 1 files changed, 1 insertions(+), 0 deletions(-) + 1 file changed, 1 insertion(+) commit cf4afc9ccf1408f0f0fde2a01e2dd68ba59de1f9 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2692,7 +2881,7 @@ Date: 2007-05-30 15:52:36 +0100 NEWS: Describe the fix for #10457 NEWS | 3 +++ - 1 files changed, 3 insertions(+), 0 deletions(-) + 1 file changed, 3 insertions(+) commit c87b55c6ab30542d5d17f2e2041e4c87b3df712d Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2712,7 +2901,7 @@ Date: 2007-05-29 15:33:44 +0100 NEWS: mention list_exported_child_objects() and its use in introspection NEWS | 4 ++++ - 1 files changed, 4 insertions(+), 0 deletions(-) + 1 file changed, 4 insertions(+) commit 5618e6182ded0d1861a9fcb5a26440e4454801f6 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2721,7 +2910,7 @@ Date: 2007-05-29 15:33:18 +0100 dbus.service: include child nodes in introspection dbus/service.py | 4 ++++ - 1 files changed, 4 insertions(+), 0 deletions(-) + 1 file changed, 4 insertions(+) commit 26288ab181eb2452fad7fd94c9bc00c817b4137d Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2732,8 +2921,8 @@ Date: 2007-05-29 15:32:01 +0100 _dbus_bindings/conn-methods.c | 62 +++++++++++++++++++++++++++++++++++++++++ test/test-client.py | 3 ++ - test/test-service.py | 8 +++++ - 3 files changed, 73 insertions(+), 0 deletions(-) + test/test-service.py | 8 ++++++ + 3 files changed, 73 insertions(+) commit f0947ab721499d5202cdbfcaad6fac7d781b5666 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2742,7 +2931,7 @@ Date: 2007-05-28 19:47:25 +0100 NEWS: mention the fix for Debian#426412 NEWS | 5 +++++ - 1 files changed, 5 insertions(+), 0 deletions(-) + 1 file changed, 5 insertions(+) commit ffb1d3310d97bc4d86a09604649f334e3367816f Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2770,7 +2959,7 @@ Date: 2007-05-21 13:18:18 +0100 dbus.bus: detect NameHasNoOwner correctly, using new get_dbus_name() method dbus/bus.py | 12 ++++++------ - 1 files changed, 6 insertions(+), 6 deletions(-) + 1 file changed, 6 insertions(+), 6 deletions(-) commit 09e138af65710b11363e0852711171c3a9f8ef00 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2779,7 +2968,7 @@ Date: 2007-05-21 13:15:48 +0100 NEWS: Describe new DBusException 'args' support NEWS | 3 +++ - 1 files changed, 3 insertions(+), 0 deletions(-) + 1 file changed, 3 insertions(+) commit c68cc723a95f6a4716d61b4ae455e3f8382347e3 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2788,7 +2977,7 @@ Date: 2007-05-21 13:10:09 +0100 Describe DBusException.get_dbus_name() in NEWS NEWS | 11 +++++++++++ - 1 files changed, 11 insertions(+), 0 deletions(-) + 1 file changed, 11 insertions(+) commit 000536a6b707fe3b28f7afd5360058d48e281688 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2797,7 +2986,7 @@ Date: 2007-05-17 12:41:05 +0100 dbus.proxies: Log more informatively when introspection fails, and use logging rather than just stderr dbus/proxies.py | 7 ++++++- - 1 files changed, 6 insertions(+), 1 deletions(-) + 1 file changed, 6 insertions(+), 1 deletion(-) commit b052211a63cf833ac394ca529c344c288e921401 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2811,14 +3000,14 @@ Date: 2007-05-16 11:05:29 +0100 _dbus_bindings/exceptions.c | 99 ++++++++++++++++++------------- _dbus_bindings/message.c | 6 +- _dbus_bindings/module.c | 2 - - dbus/__init__.py | 7 +- + dbus/__init__.py | 7 +-- dbus/_dbus.py | 3 +- dbus/bus.py | 2 +- - dbus/connection.py | 11 +-- + dbus/connection.py | 11 ++-- dbus/dbus_bindings.py | 2 +- dbus/decorators.py | 2 + - dbus/exceptions.py | 22 ++++++- - dbus/service.py | 11 ++- + dbus/exceptions.py | 22 +++++-- + dbus/service.py | 11 ++-- 14 files changed, 105 insertions(+), 75 deletions(-) commit df88e33eb69ef1528f76d06429d451b8274bd69b @@ -2828,7 +3017,7 @@ Date: 2007-05-16 11:03:34 +0100 configure.ac: Reset released flag to 0 configure.ac | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) + 1 file changed, 1 insertion(+), 1 deletion(-) commit 523e63fcef2c3391e94ded7959abdba739a52354 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2837,7 +3026,7 @@ Date: 2007-05-09 10:13:02 +0100 Update NEWS for 0.81.0 NEWS | 85 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 1 files changed, 85 insertions(+), 0 deletions(-) + 1 file changed, 85 insertions(+) commit fac67418d9bc51b75f39b108c3e5f0bd9d7e6a98 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2846,7 +3035,7 @@ Date: 2007-05-09 10:03:06 +0100 Increment version to 0.81.0 configure.ac | 6 +++--- - 1 files changed, 3 insertions(+), 3 deletions(-) + 1 file changed, 3 insertions(+), 3 deletions(-) commit 756d092e3bb346dbf791af32f31c0efe520573d1 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2855,7 +3044,7 @@ Date: 2007-05-09 10:02:33 +0100 Don't run the examples during "make check" - timing/startup issues cause intermittent failures test/run-test.sh | 24 ++++++++++++------------ - 1 files changed, 12 insertions(+), 12 deletions(-) + 1 file changed, 12 insertions(+), 12 deletions(-) commit 32c4636888e03025b5f01167cea6530a8fb1ce53 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2876,7 +3065,7 @@ Date: 2007-05-07 15:53:59 +0100 dbus/gobject_service.py: Make ExportedGObject __init__ accept GObject properties dbus/gobject_service.py | 25 +++++++++++++++++++++++-- - 1 files changed, 23 insertions(+), 2 deletions(-) + 1 file changed, 23 insertions(+), 2 deletions(-) commit 863cec2464edd80fcf7fbdf62cf1c89ecab647d0 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2885,7 +3074,7 @@ Date: 2007-05-04 19:51:50 +0100 Create doc directory before writing HTML into it Makefile.am | 5 +++-- - 1 files changed, 3 insertions(+), 2 deletions(-) + 1 file changed, 3 insertions(+), 2 deletions(-) commit 727fa4079d91f8dd1b301e21d3e4279c202a9739 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2894,7 +3083,7 @@ Date: 2007-05-04 19:44:18 +0100 doc/tutorial.txt: Don't claim we have a tutorial for p2p connections yet doc/tutorial.txt | 3 ++- - 1 files changed, 2 insertions(+), 1 deletions(-) + 1 file changed, 2 insertions(+), 1 deletion(-) commit 3033d92876dc094d5f86404bdf997af9b3bb3a82 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2904,7 +3093,7 @@ Date: 2007-05-04 19:43:14 +0100 Also remove old ./configure substitutions and update to avoid deprecated API. doc/tutorial.txt | 100 ++++++++++++++++++++++++++++++------------------------ - 1 files changed, 56 insertions(+), 44 deletions(-) + 1 file changed, 56 insertions(+), 44 deletions(-) commit f1d118f3d8c7dee8f5611cba2786a77e3b3cdaf1 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2925,7 +3114,7 @@ Date: 2007-05-04 19:39:54 +0100 dbus/service.py: Before emitting an error, configure logging to write to stderr, unless already configured dbus/service.py | 1 + - 1 files changed, 1 insertions(+), 0 deletions(-) + 1 file changed, 1 insertion(+) commit 24bee8cea054fa21d3229c97d75b2c08f273d9d9 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2934,7 +3123,7 @@ Date: 2007-05-04 19:39:16 +0100 Remove contents of TODO: the peer-to-peer Connection now exists and the string change has been rejected TODO | 8 -------- - 1 files changed, 0 insertions(+), 8 deletions(-) + 1 file changed, 8 deletions(-) commit ed2ace3161337789924e03f559603dccfa40c56e Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2945,7 +3134,7 @@ Date: 2007-05-04 17:09:57 +0100 export Objects on a plain Connection. dbus/service.py | 4 +--- - 1 files changed, 1 insertions(+), 3 deletions(-) + 1 file changed, 1 insertion(+), 3 deletions(-) commit 774e133d2cdc1a0fda2bd14d2354a9da2deece88 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -2953,9 +3142,9 @@ Date: 2007-05-03 13:20:59 +0100 Deprecate all arguments called named_service; use bus_name instead - dbus/bus.py | 49 ++++++++++++++++++++++++++++++-------- + dbus/bus.py | 49 +++++++++++++++++++++++++++++--------- dbus/connection.py | 61 ++++++++++++++++++++++++++++++++++++++++-------- - dbus/proxies.py | 66 +++++++++++++++++++++++++++++++++++++-------------- + dbus/proxies.py | 66 ++++++++++++++++++++++++++++++++++++++-------------- 3 files changed, 137 insertions(+), 39 deletions(-) commit 040adaef5646823dfb9247247104cb678cecacad @@ -2965,7 +3154,7 @@ Date: 2007-05-03 13:19:12 +0100 examples/list-system-services.py: Make more exemplary examples/list-system-services.py | 14 +++++++++----- - 1 files changed, 9 insertions(+), 5 deletions(-) + 1 file changed, 9 insertions(+), 5 deletions(-) commit e6d5bb0209c9cba4d42f12a448bd708a2cabaa9f Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3001,8 +3190,8 @@ Date: 2007-05-01 12:18:50 +0100 having a method set_sender_name_owner(), and make it hashable so we can use it to look up associated signal-sender matches in a dict. - dbus/bus.py | 94 +++++++++++++++++++++++++++++++-------------------- - dbus/connection.py | 54 +++++++++++++++++++---------- + dbus/bus.py | 94 +++++++++++++++++++++++++++++++--------------------- + dbus/connection.py | 54 +++++++++++++++++++----------- 2 files changed, 92 insertions(+), 56 deletions(-) commit 77f19ef18864f3468b7373bd75461aad3239fe52 @@ -3016,7 +3205,7 @@ Date: 2007-04-30 13:38:50 +0100 test/Makefile.am | 1 + test/run-test.sh | 3 ++ test/test-p2p.py | 91 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 3 files changed, 95 insertions(+), 0 deletions(-) + 3 files changed, 95 insertions(+) commit a5905b31f82b898eaa3f80a907ea636e1e3d71eb Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3025,7 +3214,7 @@ Date: 2007-04-30 13:33:11 +0100 dbus/connection.py: comments dbus/connection.py | 6 ++++++ - 1 files changed, 6 insertions(+), 0 deletions(-) + 1 file changed, 6 insertions(+) commit c38536726dfced572da01604909888f1f78a0492 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3034,7 +3223,7 @@ Date: 2007-04-30 13:32:52 +0100 dbus/bus.py: correct name of logger dbus/bus.py | 4 ++-- - 1 files changed, 2 insertions(+), 2 deletions(-) + 1 file changed, 2 insertions(+), 2 deletions(-) commit e96509a88425c0f48c203fbfff100cde901adc7c Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3044,7 +3233,7 @@ Date: 2007-04-30 13:15:28 +0100 dbus/_dbus.py | 412 +--------------------------------------------------- dbus/bus.py | 90 +++++++++++- - dbus/connection.py | 387 +++++++++++++++++++++++++++++++++++++++++++++++-- + dbus/connection.py | 387 ++++++++++++++++++++++++++++++++++++++++++++++-- 3 files changed, 464 insertions(+), 425 deletions(-) commit 494191632d27aa60c6f7c8fbcb1b595f8ff0253e @@ -3054,7 +3243,7 @@ Date: 2007-04-30 12:55:21 +0100 tools/check-coding-style.mk: Work correctly with out-of-tree builds tools/check-coding-style.mk | 1 + - 1 files changed, 1 insertions(+), 0 deletions(-) + 1 file changed, 1 insertion(+) commit 060ffcc1d3f3296c679b4e91c1ed070b2e0205f9 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3062,8 +3251,8 @@ Date: 2007-04-30 12:36:37 +0100 Move get_object, constants into Connection and BusConnection. Add docstrings - dbus/_dbus.py | 64 +++++---------------------------------------------- - dbus/bus.py | 60 ++++++++++++++++++++++++++++++++++++++++++++++-- + dbus/_dbus.py | 64 ++++++---------------------------------------------- + dbus/bus.py | 60 +++++++++++++++++++++++++++++++++++++++++++++--- dbus/connection.py | 30 ++++++++++++++++++++++++ 3 files changed, 94 insertions(+), 60 deletions(-) @@ -3089,7 +3278,7 @@ Date: 2007-04-30 11:43:26 +0100 dbus/service.py: Use public API for dbus.SessionBus, since we cause an import anyway dbus/service.py | 4 ++-- - 1 files changed, 2 insertions(+), 2 deletions(-) + 1 file changed, 2 insertions(+), 2 deletions(-) commit 2eb946f58e132706683890a8b961423e16998efe Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3098,7 +3287,7 @@ Date: 2007-04-30 11:41:44 +0100 dbus/_dbus.py: in SignalMatch, use get_name_owner() dbus/_dbus.py | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) + 1 file changed, 1 insertion(+), 1 deletion(-) commit 26cccef4d8e049613b4b815bf9b9bd5ac86dc087 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3116,8 +3305,8 @@ Date: 2007-04-30 11:38:32 +0100 dbus/_dbus.py: import constants from _dbus_bindings; use "from...import" - dbus/_dbus.py | 58 +++++++++++++++++++++++++++++++------------------------- - 1 files changed, 32 insertions(+), 26 deletions(-) + dbus/_dbus.py | 58 +++++++++++++++++++++++++++++++-------------------------- + 1 file changed, 32 insertions(+), 26 deletions(-) commit 1d4594e2463e00def64dd10a71101a4a45e63553 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3126,7 +3315,7 @@ Date: 2007-04-30 11:35:54 +0100 dbus/connection.py: Import constants from _dbus_bindings; check for reserved local interface as well as path dbus/connection.py | 13 +++++++------ - 1 files changed, 7 insertions(+), 6 deletions(-) + 1 file changed, 7 insertions(+), 6 deletions(-) commit 02d302ce90b136991de60015285ff7a39ff54375 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3135,7 +3324,7 @@ Date: 2007-04-30 11:34:33 +0100 dbus/bus.py: get BUS_DAEMON_NAME etc. from _dbus_bindings dbus/bus.py | 7 ++----- - 1 files changed, 2 insertions(+), 5 deletions(-) + 1 file changed, 2 insertions(+), 5 deletions(-) commit 84beab96c9b9a1270e82e670aa3dca3f208b728f Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3144,7 +3333,7 @@ Date: 2007-04-30 11:33:31 +0100 dbus/proxies.py: get INTROSPECTABLE_IFACE from _dbus_bindings dbus/proxies.py | 5 ++--- - 1 files changed, 2 insertions(+), 3 deletions(-) + 1 file changed, 2 insertions(+), 3 deletions(-) commit 3c62924718ff00839843cecaae09598e36199f79 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3156,9 +3345,9 @@ Date: 2007-04-30 11:31:22 +0100 we don't need to introspect anything). dbus/Makefile.am | 1 + - dbus/_dbus.py | 7 +- - dbus/bus.py | 76 ++++++++++-------------- - dbus/connection.py | 139 ++++++++++++++++++++++++++++++++++++++++++++ + dbus/_dbus.py | 7 ++- + dbus/bus.py | 76 +++++++++++-------------- + dbus/connection.py | 139 +++++++++++++++++++++++++++++++++++++++++++++ dbus/proxies.py | 161 +++++++++++++++++++++------------------------------- 5 files changed, 241 insertions(+), 143 deletions(-) @@ -3174,7 +3363,7 @@ Date: 2007-04-30 11:23:58 +0100 * Convert BusImplementation.__new__ into Connection._new_for_bus * Have dbus.Bus subclass _dbus_bindings.Connection directly - _dbus_bindings/bus.c | 134 ++++++++++++--------------------------- + _dbus_bindings/bus.c | 134 ++++++++++++---------------------------- _dbus_bindings/conn-internal.h | 5 ++ _dbus_bindings/conn-methods.c | 30 +++++++++ _dbus_bindings/module.c | 2 - @@ -3202,7 +3391,7 @@ Date: 2007-04-27 12:44:45 +0100 dbus/proxies.py: Give Interface some properties. Vastly simplify __getattr__ on Interface and ProxyObject dbus/proxies.py | 55 +++++++++++++++++++++++++++++-------------------------- - 1 files changed, 29 insertions(+), 26 deletions(-) + 1 file changed, 29 insertions(+), 26 deletions(-) commit f6fd7b7102ac5cfd961f4e53532eb7904f877a6e Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3211,7 +3400,7 @@ Date: 2007-04-27 12:22:54 +0100 Move Interface from dbus._dbus to dbus.proxies (it belongs there really). Make it a new-style object and document it more clearly. - dbus/__init__.py | 5 ++- + dbus/__init__.py | 5 +- dbus/_dbus.py | 134 +----------------------------------------------------- dbus/proxies.py | 72 +++++++++++++++++++++++++++++ 3 files changed, 77 insertions(+), 134 deletions(-) @@ -3223,7 +3412,7 @@ Date: 2007-04-27 12:12:54 +0100 Remove redundant constants dbus/_dbus.py | 3 --- - 1 files changed, 0 insertions(+), 3 deletions(-) + 1 file changed, 3 deletions(-) commit a6a86fbfc299cdc61c6d013a0081c2eec878f99a Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3232,7 +3421,7 @@ Date: 2007-04-27 12:11:28 +0100 dbus/_dbus.py: Match NameOwnerChanged correctly dbus/_dbus.py | 3 ++- - 1 files changed, 2 insertions(+), 1 deletions(-) + 1 file changed, 2 insertions(+), 1 deletion(-) commit 6457e018adf4bf87a1bb4791ba5a08ad6ac6ba51 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3241,7 +3430,7 @@ Date: 2007-04-26 15:53:06 +0100 test/test-service.py: Use constants for the bus name and object path test/test-service.py | 9 +++++---- - 1 files changed, 5 insertions(+), 4 deletions(-) + 1 file changed, 5 insertions(+), 4 deletions(-) commit db310619c1bd0496259cd251e6df0c83af73f3d1 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3250,7 +3439,7 @@ Date: 2007-04-25 18:33:55 +0100 dbus/__init__.py: Add well-known interface, path, bus-name constants dbus/__init__.py | 8 ++++++++ - 1 files changed, 8 insertions(+), 0 deletions(-) + 1 file changed, 8 insertions(+) commit 4be15d3a5d949107c7cf51a87a02f8555791868e Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3259,7 +3448,7 @@ Date: 2007-04-25 18:30:52 +0100 dbus/__init__.py: Remove pseudo-tutorial from docstring, we have a tutorial now dbus/__init__.py | 111 ------------------------------------------------------ - 1 files changed, 0 insertions(+), 111 deletions(-) + 1 file changed, 111 deletions(-) commit 4a027b3240152f7b9d5eabb66c2c1a94bd5ef831 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3268,7 +3457,7 @@ Date: 2007-04-25 18:29:48 +0100 _dbus_bindings/module.c: Add some useful constants _dbus_bindings/module.c | 17 +++++++++++++++++ - 1 files changed, 17 insertions(+), 0 deletions(-) + 1 file changed, 17 insertions(+) commit b6e2f84963ea0b399d50bbfeab7df046f6f24f5b Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3277,7 +3466,7 @@ Date: 2007-04-25 17:46:54 +0100 Make ProxyObject a new-style class, since it now has properties dbus/proxies.py | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) + 1 file changed, 1 insertion(+), 1 deletion(-) commit 26965c2bf04ffb3b101623bbe02c34f43bee9232 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3288,7 +3477,7 @@ Date: 2007-04-25 14:07:49 +0100 implemented. dbus/proxies.py | 43 +++++++++++++++++++++++++++++++++++++++++-- - 1 files changed, 41 insertions(+), 2 deletions(-) + 1 file changed, 41 insertions(+), 2 deletions(-) commit a81f1e90b293f1279ad4797753649f4264c559f3 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3298,7 +3487,7 @@ Date: 2007-04-24 14:49:44 +0100 Making this work correctly will also require changes to the introspect code. dbus/decorators.py | 13 +++---------- - 1 files changed, 3 insertions(+), 10 deletions(-) + 1 file changed, 3 insertions(+), 10 deletions(-) commit e4050f2750d2fdb5c05a7d7b9cb4030b99133f13 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3309,7 +3498,7 @@ Date: 2007-04-24 14:45:14 +0100 kwargs, as well as the sender * Let exported signals be emitted from a variable object-path - dbus/decorators.py | 81 ++++++++++++++++++++++++++++++++++++++++++++----- + dbus/decorators.py | 81 ++++++++++++++++++++++++++++++++++++++++++++------ dbus/service.py | 8 ++++- test/test-client.py | 11 +++++++ test/test-service.py | 8 +++++ @@ -3339,7 +3528,7 @@ Date: 2007-04-24 17:45:03 +0100 dbus/service.py | 8 +++++++- test/test-client.py | 6 ++++++ test/test-service.py | 5 +++++ - 3 files changed, 18 insertions(+), 1 deletions(-) + 3 files changed, 18 insertions(+), 1 deletion(-) commit 705b343c205b82c93aab0f31535d1dc99a3c0265 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3348,7 +3537,7 @@ Date: 2007-04-24 17:39:27 +0100 test/test-service.py: use a constant for the interface name, for clarity test/test-service.py | 43 +++++++++++++++++++++++-------------------- - 1 files changed, 23 insertions(+), 20 deletions(-) + 1 file changed, 23 insertions(+), 20 deletions(-) commit a2fa9563ee9e3bfca549397c0bf58946eaff37b2 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3357,7 +3546,7 @@ Date: 2007-04-24 17:21:11 +0100 .gitignore: Ignore INSTALL and dbus-python-*.tar.gz .gitignore | 2 ++ - 1 files changed, 2 insertions(+), 0 deletions(-) + 1 file changed, 2 insertions(+) commit 50469e3e0a04d27be1ee227518ca377e16919626 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3366,7 +3555,7 @@ Date: 2007-04-24 14:41:45 +0100 Remember to include tools in dist Makefile.am | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) + 1 file changed, 1 insertion(+), 1 deletion(-) commit df42e53ab497dce7f00bd2eb3f2af1c022c0096c Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3411,7 +3600,7 @@ Date: 2007-04-24 13:47:09 +0100 tools/check-coding-style.mk | 25 +++++++++++++++++++++++++ tools/check-py-style.sh | 18 ++++++++++++++++++ tools/check-whitespace.sh | 17 +++++++++++++++++ - 8 files changed, 104 insertions(+), 1 deletions(-) + 8 files changed, 104 insertions(+), 1 deletion(-) commit b5552a3ea76b3e229f40a06d32a5860b0e9e2217 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3425,12 +3614,12 @@ Date: 2007-04-24 13:05:17 +0100 Makefile.am | 4 +- acinclude.m4 | 109 ---------------------------------------- autogen.sh | 64 ++++------------------- - configure.ac | 7 +-- + configure.ac | 7 ++- m4/Makefile.am | 5 ++ m4/am-check-pymod.m4 | 37 ++++++++++++++ m4/am-check-python-headers.m4 | 24 +++++++++ - m4/dbus-py-add-rst2htmlflag.m4 | 20 +++++++ - m4/jh-add-cflag.m4 | 23 ++++++++ + m4/dbus-py-add-rst2htmlflag.m4 | 20 ++++++++ + m4/jh-add-cflag.m4 | 23 +++++++++ 9 files changed, 126 insertions(+), 167 deletions(-) commit 29fae4fdfd02cc2dd4c896a2cb271d9a3597623c @@ -3440,7 +3629,7 @@ Date: 2007-04-24 12:27:18 +0100 test/run-with-tmp-session-bus.sh: untabify, remove trailing whitespace test/run-with-tmp-session-bus.sh | 8 ++++---- - 1 files changed, 4 insertions(+), 4 deletions(-) + 1 file changed, 4 insertions(+), 4 deletions(-) commit d6b644f9317346211c94a2ae75b77ca9369a7088 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3449,7 +3638,7 @@ Date: 2007-04-24 12:26:42 +0100 test/test-client.py: untabify test/test-client.py | 16 ++++++++-------- - 1 files changed, 8 insertions(+), 8 deletions(-) + 1 file changed, 8 insertions(+), 8 deletions(-) commit 35808b1bae43f846fdbcb740c359c66977231518 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3458,7 +3647,7 @@ Date: 2007-04-24 12:24:02 +0100 dbus/service.py: untabify dbus/service.py | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) + 1 file changed, 1 insertion(+), 1 deletion(-) commit 7207bc9f616b2401de609b36dc774bbe79fa7166 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3467,7 +3656,7 @@ Date: 2007-04-24 12:23:47 +0100 configure.ac: untabify configure.ac | 12 ++++++------ - 1 files changed, 6 insertions(+), 6 deletions(-) + 1 file changed, 6 insertions(+), 6 deletions(-) commit c2aa57fc64f32e0c197320b050b93e71949edd53 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3476,7 +3665,7 @@ Date: 2007-04-24 12:23:24 +0100 _dbus_bindings/message.c: untabify _dbus_bindings/message.c | 60 +++++++++++++++++++++++----------------------- - 1 files changed, 30 insertions(+), 30 deletions(-) + 1 file changed, 30 insertions(+), 30 deletions(-) commit a7110d5ee20f04f17346079a6a824a7c017fe124 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3489,7 +3678,7 @@ Date: 2007-03-02 18:46:12 +0000 reinvent this solution. dbus/gobject_service.py | 37 +++++++++++++++++++++++++++++++++++++ - 1 files changed, 37 insertions(+), 0 deletions(-) + 1 file changed, 37 insertions(+) commit cfb1ea5f32a5ab77078ce184cb13602f2e28fec1 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3500,7 +3689,7 @@ Date: 2007-03-02 18:43:09 +0000 * BusName: don't even try to claim an invalid bus name either. dbus/service.py | 8 ++++++++ - 1 files changed, 8 insertions(+), 0 deletions(-) + 1 file changed, 8 insertions(+) commit 5ee2e05d5056584d589991f5d5fd0d22df598676 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3513,7 +3702,7 @@ Date: 2007-03-02 18:41:01 +0000 on a ProxyObject without going via a dbus.Interface. dbus/proxies.py | 9 ++++++--- - 1 files changed, 6 insertions(+), 3 deletions(-) + 1 file changed, 6 insertions(+), 3 deletions(-) commit f2fda30b23b0176dd314329050127f61b5e92255 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3522,7 +3711,7 @@ Date: 2007-03-02 18:38:00 +0000 SignalMatch: check that interface, member and sender are either valid, or None dbus/_dbus.py | 9 +++++++++ - 1 files changed, 9 insertions(+), 0 deletions(-) + 1 file changed, 9 insertions(+) commit 91d0a865d574325328b67ec8c5dab9b841b9218c Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3531,7 +3720,7 @@ Date: 2007-03-02 18:29:34 +0000 SignalMatch: remove assorted commented-out debug messages dbus/_dbus.py | 24 +++--------------------- - 1 files changed, 3 insertions(+), 21 deletions(-) + 1 file changed, 3 insertions(+), 21 deletions(-) commit bfc541fad2dec718abce406caa0285b1e40c4958 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3540,7 +3729,7 @@ Date: 2007-03-02 18:13:23 +0000 Remove FIXME comment - I think the current behaviour is correct. dbus/service.py | 2 -- - 1 files changed, 0 insertions(+), 2 deletions(-) + 1 file changed, 2 deletions(-) commit cf48b799ebdcaf7dca0b6f729516b413be21e989 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3552,7 +3741,7 @@ Date: 2007-03-02 18:12:47 +0000 * Do earlier validation of bus names etc. in client proxies. dbus/proxies.py | 19 ++++++++++++++++++- - 1 files changed, 18 insertions(+), 1 deletions(-) + 1 file changed, 18 insertions(+), 1 deletion(-) commit f1e0a64b9f02a77cfd468f146ed3f398b2c1c8bc Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3564,7 +3753,7 @@ Date: 2007-02-21 15:04:20 +0000 trackerd with dbus-inspector) causes us to be disconnected by the bus daemon. _dbus_bindings/conn-methods.c | 7 +++++++ - 1 files changed, 7 insertions(+), 0 deletions(-) + 1 file changed, 7 insertions(+) commit 8dce2df1ceacffb2aa6e2cc8b1d4b58ee95ac5b1 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3575,7 +3764,7 @@ Date: 2007-02-21 12:31:15 +0000 so we don't have to. _dbus_bindings/conn-methods.c | 9 +++------ - 1 files changed, 3 insertions(+), 6 deletions(-) + 1 file changed, 3 insertions(+), 6 deletions(-) commit 4f88700588d80861c8520e56407d3a40d5bd86e6 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3584,7 +3773,7 @@ Date: 2007-02-19 14:17:08 +0000 dbus/_dbus.py: When an exception is raised by a signal handler, print it to stderr dbus/_dbus.py | 54 ++++++++++++++++++++++++++++++++---------------------- - 1 files changed, 32 insertions(+), 22 deletions(-) + 1 file changed, 32 insertions(+), 22 deletions(-) commit a79f8dacbf86efce563cc29104bbacecb5ef9739 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3593,7 +3782,7 @@ Date: 2007-02-13 17:54:55 +0000 Update NEWS file for 0.80.2 (not actually present in the release, but at least it'll be in the next release's NEWS file) NEWS | 9 +++++++++ - 1 files changed, 9 insertions(+), 0 deletions(-) + 1 file changed, 9 insertions(+) commit 22f2a483aa45720711b42fa8ce4ddf2d9fdbaec9 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3602,7 +3791,7 @@ Date: 2007-02-13 17:44:38 +0000 Set released flag back to 0 configure.ac | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) + 1 file changed, 1 insertion(+), 1 deletion(-) commit 728e8f47d884bdff66106b89cc1d803fa5f30456 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3611,7 +3800,7 @@ Date: 2007-02-13 16:54:51 +0000 Release version 0.80.2 configure.ac | 6 +++--- - 1 files changed, 3 insertions(+), 3 deletions(-) + 1 file changed, 3 insertions(+), 3 deletions(-) commit 87dc3d5807ba12c6396dbcb1acdebb8f453e8fcd Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3665,7 +3854,7 @@ Date: 2007-02-07 17:05:29 +0000 COPYING.AFL-2.1 | 197 +++++++++++++++++++++ COPYING.GPL-2 | 342 ++++++++++++++++++++++++++++++++++++ COPYING.LGPL-2.1 | 510 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 3 files changed, 1049 insertions(+), 0 deletions(-) + 3 files changed, 1049 insertions(+) commit 278b57d9f4a1aed4f0296b17a94bde2a36145a45 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3678,7 +3867,7 @@ Date: 2007-02-07 13:15:17 +0000 _dbus_bindings/conn.c | 5 +++++ _dbus_bindings/mainloop.c | 3 ++- - 2 files changed, 7 insertions(+), 1 deletions(-) + 2 files changed, 7 insertions(+), 1 deletion(-) commit ffe3b55b4b293c5dfb36de8cf2dc2b91d09a9f0d Merge: 5135a35 66fb274 @@ -3702,10 +3891,10 @@ Date: 2007-02-07 12:50:48 +0000 * With this change, allocating objects in a loop no longer leaks memory, and neither does the test case supplied by Luka Renko. - _dbus_bindings/abstract.c | 194 +++++++++++++++++++++++++++++++------- - _dbus_bindings/containers.c | 132 +++++++++++++++++++++----- + _dbus_bindings/abstract.c | 194 +++++++++++++++++++++++++++++++-------- + _dbus_bindings/containers.c | 132 ++++++++++++++++++++------ _dbus_bindings/message-append.c | 6 +- - _dbus_bindings/string.c | 75 ++++++--------- + _dbus_bindings/string.c | 75 +++++++-------- _dbus_bindings/types-internal.h | 10 ++ 5 files changed, 309 insertions(+), 108 deletions(-) @@ -3716,7 +3905,7 @@ Date: 2007-02-05 16:21:13 +0000 Close a couple of reference leaks in String (there's another somewhere, but I can't find it) _dbus_bindings/string.c | 30 ++++++++++++++++++++++-------- - 1 files changed, 22 insertions(+), 8 deletions(-) + 1 file changed, 22 insertions(+), 8 deletions(-) commit c04456ff1b24de8695cda14f91e8886ca9c0bf0f Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3725,7 +3914,7 @@ Date: 2007-02-05 15:18:39 +0000 Don't leak memory in Struct repr() _dbus_bindings/containers.c | 7 +++++-- - 1 files changed, 5 insertions(+), 2 deletions(-) + 1 file changed, 5 insertions(+), 2 deletions(-) commit 192bd48b8a17e4f62400b64e037df22c3b47de88 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3734,7 +3923,7 @@ Date: 2007-02-05 15:18:14 +0000 Don't leak memory in _StringBase and _LongBase repr() _dbus_bindings/abstract.c | 12 ++++++++++-- - 1 files changed, 10 insertions(+), 2 deletions(-) + 1 file changed, 10 insertions(+), 2 deletions(-) commit 630f912b2155e6328a3fa48deb832f5c3d114b94 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3743,7 +3932,7 @@ Date: 2007-02-05 13:18:19 +0000 Switch _IntBase back to using generic alloc/free implementation rather than half-participating in the int free list (which would result in _IntBase instances leaking) _dbus_bindings/abstract.c | 3 ++- - 1 files changed, 2 insertions(+), 1 deletions(-) + 1 file changed, 2 insertions(+), 1 deletion(-) commit 95c0d3618041e8c8f9173a3eb8e8ddc93c456952 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3752,7 +3941,7 @@ Date: 2007-02-05 13:17:12 +0000 Fix a couple of memory leaks - D-Bus signature strings, and decoded Unicode objects _dbus_bindings/message-get-args.c | 18 +++++++++++------- - 1 files changed, 11 insertions(+), 7 deletions(-) + 1 file changed, 11 insertions(+), 7 deletions(-) commit 99e0758b1d4f958e5753d51e843f1254e15b93b2 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3763,7 +3952,7 @@ Date: 2007-01-31 13:47:49 +0000 but best to be correct). _dbus_bindings/pending-call.c | 5 +++-- - 1 files changed, 3 insertions(+), 2 deletions(-) + 1 file changed, 3 insertions(+), 2 deletions(-) commit 66fb2745189037ba634cc3574f174f26e53a9be6 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3772,7 +3961,7 @@ Date: 2007-01-31 13:27:16 +0000 Fix a leak of references to Py_None in slightly pathological cases (should never be a problem in practice, but correctness is good) _dbus_bindings/pending-call.c | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) + 1 file changed, 1 insertion(+), 1 deletion(-) commit 9285b0648419a6860ca274d381cdb2924f85fdd2 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3781,7 +3970,7 @@ Date: 2007-01-31 13:07:49 +0000 _pending_call_notify_function: stop leaking a Message per call _dbus_bindings/pending-call.c | 3 ++- - 1 files changed, 2 insertions(+), 1 deletions(-) + 1 file changed, 2 insertions(+), 1 deletion(-) commit c0c48abc99e66998b4c81436a8f6eca58f93cef4 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3791,7 +3980,7 @@ Date: 2007-01-25 12:59:39 +0000 Also improve clarity of help message for --enable-html-docs. configure.ac | 11 ++++++++--- - 1 files changed, 8 insertions(+), 3 deletions(-) + 1 file changed, 8 insertions(+), 3 deletions(-) commit d7c11cccfcdc3ef94f183d79203fac136e2c3494 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3800,7 +3989,7 @@ Date: 2007-01-25 12:49:57 +0000 doc/tutorial.txt.in: Add copyright and license (GPL2/AFL2.1, like the code) doc/tutorial.txt.in | 23 +++++++++++++++++++++++ - 1 files changed, 23 insertions(+), 0 deletions(-) + 1 file changed, 23 insertions(+) commit dc6b66210bda929f92524ef10f5c3edbb3cb495c Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3809,7 +3998,7 @@ Date: 2007-01-25 12:43:57 +0000 COPYING: Remove information about files we no longer have COPYING | 6 ++---- - 1 files changed, 2 insertions(+), 4 deletions(-) + 1 file changed, 2 insertions(+), 4 deletions(-) commit 00ffd01f3186bf7eab88a5408daa59d162efdf70 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3825,7 +4014,7 @@ Date: 2007-01-25 12:43:13 +0000 test/test-service.py | 2 -- test/test-signals.py | 2 -- test/test-standalone.py | 2 -- - 8 files changed, 0 insertions(+), 16 deletions(-) + 8 files changed, 16 deletions(-) commit 41694b4df5c1dbf745e5ddd443571d5cb67d74b3 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3867,7 +4056,7 @@ Date: 2007-01-25 12:38:53 +0000 dbus/mainloop/glib.py | 2 -- dbus/proxies.py | 2 -- dbus/service.py | 2 -- - 34 files changed, 0 insertions(+), 68 deletions(-) + 34 files changed, 68 deletions(-) commit 3706648c6ba07d2781fb9723eddc202a7e2b8a72 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3876,7 +4065,7 @@ Date: 2007-01-24 20:29:17 +0000 Use AC_PREREQ(2.59c) to make sure we can use docdir, which is relatively new configure.ac | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) + 1 file changed, 1 insertion(+), 1 deletion(-) commit 4c9b10a511f9465ee87e4f87065445c04a34d7e5 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3885,7 +4074,7 @@ Date: 2007-01-24 16:37:03 +0000 Reset released flag configure.ac | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) + 1 file changed, 1 insertion(+), 1 deletion(-) commit 130d1a59220a921af7cc7738306804a6f8878062 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3906,7 +4095,7 @@ Date: 2007-01-24 16:03:37 +0000 Clear "released" flag after release configure.ac | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) + 1 file changed, 1 insertion(+), 1 deletion(-) commit 876f343d4eb39519ca155a4add1483d4f6ced641 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3915,7 +4104,7 @@ Date: 2007-01-24 16:01:09 +0000 Relax dbus requirement to 0.93, to be nice to Ubuntu 6.10 and Fedora Core 6 users. Release version 0.80.0 configure.ac | 10 +++++----- - 1 files changed, 5 insertions(+), 5 deletions(-) + 1 file changed, 5 insertions(+), 5 deletions(-) commit 1ad24fa7b36a333a0a4e0ce1f0afd2b201f09245 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3924,7 +4113,7 @@ Date: 2007-01-24 14:55:43 +0000 Remove unnecessary "..." in AC_MSG_CHECKING; correct quoting in AC_MSG_RESULT and tests configure.ac | 14 +++++++------- - 1 files changed, 7 insertions(+), 7 deletions(-) + 1 file changed, 7 insertions(+), 7 deletions(-) commit 3edafe1f009d0e228109368dcec3ba3da2d559a1 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3933,7 +4122,7 @@ Date: 2007-01-24 14:37:32 +0000 Clear "released" flag. Improve checking for rst2html and epydoc. configure.ac | 48 +++++++++++++++++++++++++++++++++++++++--------- - 1 files changed, 39 insertions(+), 9 deletions(-) + 1 file changed, 39 insertions(+), 9 deletions(-) commit 057317ea759323f49133351e997ce7b892394889 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3952,7 +4141,7 @@ Date: 2007-01-24 14:31:29 +0000 Remove from EXTRA_DIST files we'd already be distributing Makefile.am | 4 +--- - 1 files changed, 1 insertions(+), 3 deletions(-) + 1 file changed, 1 insertion(+), 3 deletions(-) commit 36deedcc043fb5abde7cbb432b3a3b24a5031da0 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -3965,10 +4154,10 @@ Date: 2007-01-24 14:13:50 +0000 Tweak documentation generation so deprecated stuff isn't documented. API_CHANGES.txt | 124 --------------------------------------------------- - HACKING.txt | 62 ------------------------- + HACKING.txt | 62 -------------------------- Makefile.am | 35 ++++++++++++--- - dbus/__init__.py | 7 +++- - dbus/_dbus.py | 39 +++++++++------- + dbus/__init__.py | 7 ++- + dbus/_dbus.py | 39 ++++++++-------- doc/API_CHANGES.txt | 124 +++++++++++++++++++++++++++++++++++++++++++++++++++ doc/HACKING.txt | 68 ++++++++++++++++++++++++++++ 7 files changed, 248 insertions(+), 211 deletions(-) @@ -3980,7 +4169,7 @@ Date: 2007-01-24 12:12:39 +0000 Install dbus-python.h in $includedir/dbus-1.0/dbus rather than $includedir for consistency with libdbus-glib and libdbus Makefile.am | 3 ++- - 1 files changed, 2 insertions(+), 1 deletions(-) + 1 file changed, 2 insertions(+), 1 deletion(-) commit 6708a7bb677ac91cb1190f5f6761e2136f6dc779 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4000,7 +4189,7 @@ Date: 2007-01-22 18:52:00 +0000 Build pre-release version 0.79.94 (= 0.80rc4) configure.ac | 4 ++-- - 1 files changed, 2 insertions(+), 2 deletions(-) + 1 file changed, 2 insertions(+), 2 deletions(-) commit 7ab85ec3ad175ed8631409e2fb216162fda70d67 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4010,7 +4199,7 @@ Date: 2007-01-22 18:34:11 +0000 .gitignore | 1 + Makefile.am | 124 ++++++++++------------------------------------------------ - configure.ac | 5 ++ + configure.ac | 5 +++ 3 files changed, 27 insertions(+), 103 deletions(-) commit 625bfaac68f6c7afd85d62752e34fc8e00405790 @@ -4024,10 +4213,10 @@ Date: 2007-01-22 18:26:36 +0000 _dbus_bindings/Makefile.am | 30 ++++++++++++++++++++++++++ _dbus_glib_bindings/Makefile.am | 9 ++++++++ - dbus/Makefile.am | 21 ++++++++++++++++++ + dbus/Makefile.am | 21 +++++++++++++++++++ examples/Makefile.am | 8 +++++++ test/Makefile.am | 44 +++++++++++++++++++++++++++++++++++++++ - 5 files changed, 112 insertions(+), 0 deletions(-) + 5 files changed, 112 insertions(+) commit 6edb71ddccce139f6c7de1e43f885fed37f58b1b Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4046,7 +4235,7 @@ Date: 2007-01-22 16:49:52 +0000 configure.ac: When building a non-release version, compile with -Werror configure.ac | 5 ++++- - 1 files changed, 4 insertions(+), 1 deletions(-) + 1 file changed, 4 insertions(+), 1 deletion(-) commit 795927e72a9b5e0a14ea7125c31972d2fc3501dc Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4060,7 +4249,7 @@ Date: 2007-01-19 12:31:56 +0000 * change dbus_python_released back to 0 and commit again configure.ac | 8 +++++++- - 1 files changed, 7 insertions(+), 1 deletions(-) + 1 file changed, 7 insertions(+), 1 deletion(-) commit 43c48b9c7fdbb5741daa024df9e7a319d1993dac Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4086,7 +4275,7 @@ Date: 2007-01-17 13:06:33 +0000 threadsafe (I think) dbus/proxies.py | 145 +++++++++++++++++++++++++++++++++---------------------- - 1 files changed, 87 insertions(+), 58 deletions(-) + 1 file changed, 87 insertions(+), 58 deletions(-) commit 4dbee87fbe9dd7abb56d8d150d8c8ae7bd01f261 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4096,7 +4285,7 @@ Date: 2007-01-17 12:28:38 +0000 (thanks Phil Thompson, <phil riverbankcomputing co uk>) dbus/service.py | 4 ++-- - 1 files changed, 2 insertions(+), 2 deletions(-) + 1 file changed, 2 insertions(+), 2 deletions(-) commit cc4dfc18c7fe0843b5e118d35a94ca9cca563f98 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4106,7 +4295,7 @@ Date: 2007-01-17 12:27:51 +0000 (thanks Phil Thompson, <phil riverbankcomputing co uk>) _dbus_glib_bindings/module.c | 1 + - 1 files changed, 1 insertions(+), 0 deletions(-) + 1 file changed, 1 insertion(+) commit 47860b5c25c823587e4e06636acc926b252fe114 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4119,9 +4308,9 @@ Date: 2007-01-16 19:52:45 +0000 Makefile.am | 11 ++++- test/dbus_py_test.c | 101 +++++++++++++++++++++++++++++++++++++++ - test/run-test.sh | 6 ++ + test/run-test.sh | 6 +++ test/test-unusable-main-loop.py | 17 +++++++ - 4 files changed, 134 insertions(+), 1 deletions(-) + 4 files changed, 134 insertions(+), 1 deletion(-) commit 916df7703d828afec95635d309ca83bc1c05fd98 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4131,7 +4320,7 @@ Date: 2007-01-16 19:51:28 +0000 examples/example-client.py | 2 -- examples/list-system-services.py | 3 +-- - 2 files changed, 1 insertions(+), 4 deletions(-) + 2 files changed, 1 insertion(+), 4 deletions(-) commit f0deb687acad02173c20a0dc644323774b24dc0e Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4159,7 +4348,7 @@ Date: 2007-01-16 19:36:05 +0000 <tsuraan at gmail.com> for the bug report. _dbus_bindings/conn.c | 5 ++++- - 1 files changed, 4 insertions(+), 1 deletions(-) + 1 file changed, 4 insertions(+), 1 deletion(-) commit 6d7356140055082a30090161c586b4575f8f0fa7 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4168,7 +4357,7 @@ Date: 2007-01-16 18:08:04 +0000 Correctly don't build HTML docs if rst2html is not found configure.ac | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) + 1 file changed, 1 insertion(+), 1 deletion(-) commit b33efe312c8d89ecc6e2ba9f075d2d0a9e28c3e1 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4189,7 +4378,7 @@ Date: 2007-01-16 17:24:00 +0000 Always install text documentation, even if we're not able to build the HTML Makefile.am | 8 ++++---- - 1 files changed, 4 insertions(+), 4 deletions(-) + 1 file changed, 4 insertions(+), 4 deletions(-) commit 597d278a3973ad411e345ab8938adf6c582da42d Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4209,7 +4398,7 @@ Date: 2007-01-16 17:19:03 +0000 (now passes make distcheck DISTCHECK_CONFIGURE_ARGS=--enable-api-docs) Makefile.am | 3 +++ - 1 files changed, 3 insertions(+), 0 deletions(-) + 1 file changed, 3 insertions(+) commit 0557d5bdcf90dc79ed3662144d8ecd1df28e5dcf Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4218,7 +4407,7 @@ Date: 2007-01-16 17:09:10 +0000 Remove generated HTML documentation on distclean Makefile.am | 2 ++ - 1 files changed, 2 insertions(+), 0 deletions(-) + 1 file changed, 2 insertions(+) commit 3504ac8bc098b5872be747c151f304bbe80d2131 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4235,7 +4424,7 @@ Date: 2007-01-16 17:04:37 +0000 - Implement with modifications to ProxyObject so it resolves the unique name on construction, if required (activating it if necessary) - dbus/_dbus.py | 71 ++++++++++++++++-------------------------------------- + dbus/_dbus.py | 71 ++++++++++++++++--------------------------------------- dbus/proxies.py | 34 ++++++++++++++++++++++---- 2 files changed, 50 insertions(+), 55 deletions(-) @@ -4252,7 +4441,7 @@ Date: 2007-01-16 17:00:00 +0000 not happen (messages will be directed to the unique name by default, so stateful communication can work). - _dbus_bindings/message-append.c | 55 +++++++++++++++++++++++++------------- + _dbus_bindings/message-append.c | 55 +++++++++++++++++++++++++-------------- test/test-standalone.py | 44 ++++++++++++++++++++++++++++++- 2 files changed, 79 insertions(+), 20 deletions(-) @@ -4263,7 +4452,7 @@ Date: 2007-01-16 15:05:31 +0000 test/run-test.sh: Re-order to run the simpler tests (standalone, examples, cross tests) first test/run-test.sh | 34 ++++++++++++++++++---------------- - 1 files changed, 18 insertions(+), 16 deletions(-) + 1 file changed, 18 insertions(+), 16 deletions(-) commit c7fa08a7a7cc6ae3811b1164b0fdd627a9377e43 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4272,7 +4461,7 @@ Date: 2007-01-16 14:44:01 +0000 Write some more of the tutorial doc/tutorial.txt.in | 289 +++++++++++++++++++++++++++++++++++++++++++++++---- - 1 files changed, 267 insertions(+), 22 deletions(-) + 1 file changed, 267 insertions(+), 22 deletions(-) commit e018fa3f6a7e4e0da334453c81e3bde22da46fe1 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4281,7 +4470,7 @@ Date: 2007-01-16 12:08:05 +0000 Comment on why we're putting the client at path /Test test/cross-test-client.py | 2 ++ - 1 files changed, 2 insertions(+), 0 deletions(-) + 1 file changed, 2 insertions(+) commit c98c7742c13ff38998bbc6b6acca390a529e9c7f Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4290,7 +4479,7 @@ Date: 2007-01-16 11:40:47 +0000 Use autoconf's usual directory for docs Makefile.am | 7 ++----- - 1 files changed, 2 insertions(+), 5 deletions(-) + 1 file changed, 2 insertions(+), 5 deletions(-) commit 24d8be176996913853b01f0e3ed1d33082640dec Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4300,7 +4489,7 @@ Date: 2007-01-15 20:24:59 +0000 Makefile.am | 22 ++++++++++++++++++++++ configure.ac | 7 ++++++- - 2 files changed, 28 insertions(+), 1 deletions(-) + 2 files changed, 28 insertions(+), 1 deletion(-) commit a9575bf47b9ba5bc02ad5280fe35652758c0d00e Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4321,7 +4510,7 @@ Date: 2007-01-15 20:22:52 +0000 Ignore generated documentation .gitignore | 2 ++ - 1 files changed, 2 insertions(+), 0 deletions(-) + 1 file changed, 2 insertions(+) commit 6053bac21757a0d87abd0c50135f6c783fdf63b9 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4340,7 +4529,7 @@ Date: 2007-01-15 19:09:04 +0000 Makefile.am: ship example-async-client so it can be used as a test Makefile.am | 1 + - 1 files changed, 1 insertions(+), 0 deletions(-) + 1 file changed, 1 insertion(+) commit 618e13ee5bdce6dd129600a698910f5edb7ab4db Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4350,7 +4539,7 @@ Date: 2007-01-10 13:11:33 +0000 Distribution packagers may want to build-depend on docutils, and configure with --docdir=... if their distribution would usually use a location other than PREFIX/share/doc/dbus-python - for instance Debian/Ubuntu should use --docdir=/usr/share/doc/python-dbus. doc/tutorial.txt.in | 399 +++++++++++++++++++++++++++++++++++++++++++++++++++ - 1 files changed, 399 insertions(+), 0 deletions(-) + 1 file changed, 399 insertions(+) commit bde53f1cf59b743d5e38b6ac4fbdf348bdf773db Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4358,7 +4547,7 @@ Date: 2007-01-10 13:05:23 +0000 Add special case to serialization: objects with a __dbus_object_path__ attribute are serialized as that object path. Add that attribute to ProxyObject, dbus.Interface and dbus.service.Object. - _dbus_bindings/abstract.c | 4 + + _dbus_bindings/abstract.c | 4 ++ _dbus_bindings/message-append.c | 120 +++++++++++++++++++++++++++++++-------- _dbus_bindings/types-internal.h | 1 + dbus/_dbus.py | 5 ++ @@ -4375,7 +4564,7 @@ Date: 2007-01-10 12:45:06 +0000 dbus/.cvsignore | 10 ---------- examples/.cvsignore | 2 -- - 2 files changed, 0 insertions(+), 12 deletions(-) + 2 files changed, 12 deletions(-) commit 984b7fc404a89b61f5efefb2a82d203a6b4fd143 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4384,7 +4573,7 @@ Date: 2007-01-09 16:49:58 +0000 Validate that the signature on an Array or Dict has the right number of complete types _dbus_bindings/containers.c | 58 ++++++++++++++++++++++++++++++++++++++++--- - 1 files changed, 54 insertions(+), 4 deletions(-) + 1 file changed, 54 insertions(+), 4 deletions(-) commit 6e4a93545a40a13af7308b97e435921a0eee7805 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4403,7 +4592,7 @@ Date: 2007-01-09 15:27:52 +0000 Improve documentation of type conversion from D-Bus to Python _dbus_bindings/message-get-args.c | 23 ++++++++++++----------- - 1 files changed, 12 insertions(+), 11 deletions(-) + 1 file changed, 12 insertions(+), 11 deletions(-) commit e5cef62c8ed04f5842257653bc6ec70abbdd20bb Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4423,7 +4612,7 @@ Date: 2007-01-09 14:53:55 +0000 Improve docstrings for String and UTF8String explaining how to get UTF8String from the API. _dbus_bindings/string.c | 26 ++++++++++++++++++++++++++ - 1 files changed, 26 insertions(+), 0 deletions(-) + 1 file changed, 26 insertions(+) commit d75fec04ba79b46872801c6132afad7b9f192c94 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4431,8 +4620,8 @@ Date: 2007-01-09 14:53:16 +0000 Subscripting a ByteArray now gives 1-character strings again (for least astonishment). Also document how to get a ByteArray from the API - _dbus_bindings/bytes.c | 75 +++++++++++------------------------------------ - 1 files changed, 18 insertions(+), 57 deletions(-) + _dbus_bindings/bytes.c | 75 ++++++++++++------------------------------------ + 1 file changed, 18 insertions(+), 57 deletions(-) commit b68d891998983ab94e68555855d10f85a3dca019 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4441,7 +4630,7 @@ Date: 2007-01-09 14:29:46 +0000 Correct usage in example-async-client: you need to use example-client (or kill(1) of course) to shut down the example service examples/example-async-client.py | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) + 1 file changed, 1 insertion(+), 1 deletion(-) commit 26ce68b8de3f48187091d3686cb30b75375b84d0 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4451,10 +4640,10 @@ Date: 2007-01-09 14:05:28 +0000 examples/example-async-client.py | 109 ++++++++++++++++++++++++++++++++++ examples/example-client.py | 6 ++ - examples/example-service.py | 10 +++ + examples/example-service.py | 10 ++++ examples/example-signal-recipient.py | 1 - test/run-test.sh | 13 ++++ - 5 files changed, 138 insertions(+), 1 deletions(-) + 5 files changed, 138 insertions(+), 1 deletion(-) commit 9ede20248d690d9bb2cb9fba6b75955770930a94 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4480,7 +4669,7 @@ Date: 2007-01-09 13:03:27 +0000 Thanks to Ulisses Furquim <ulissesf at gmail.com> for the patch. dbus/_dbus.py | 14 ++++++++++---- - 1 files changed, 10 insertions(+), 4 deletions(-) + 1 file changed, 10 insertions(+), 4 deletions(-) commit 88011f8e449d92959f83e304d8b6b2db44ec02bc Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4489,7 +4678,7 @@ Date: 2007-01-09 12:59:31 +0000 Stop trying to get macros from the autotools directory (no longer needed) configure.ac | 2 -- - 1 files changed, 0 insertions(+), 2 deletions(-) + 1 file changed, 2 deletions(-) commit adf16bd849e1ebf98f65e288bc42956810a3e2eb Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4500,7 +4689,7 @@ Date: 2007-01-09 12:47:26 +0000 autotools/as-ac-expand.m4 | 40 ----------------------------- autotools/jhflags.m4 | 21 --------------- autotools/python.m4 | 62 --------------------------------------------- - 3 files changed, 0 insertions(+), 123 deletions(-) + 3 files changed, 123 deletions(-) commit 2a100a94dc4db5174244b9dac89f4ca5c1083103 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4509,7 +4698,7 @@ Date: 2007-01-09 12:46:53 +0000 Remove setup.py (no longer used in favour of autotools) setup.py | 195 -------------------------------------------------------------- - 1 files changed, 0 insertions(+), 195 deletions(-) + 1 file changed, 195 deletions(-) commit d0004b6162a18c3d9f02dbc4404f8f452f1c3e79 Author: John (J5) Palmieri <quinticent@localhost.localdomain> @@ -4534,12 +4723,12 @@ Date: 2006-12-21 19:51:54 +0000 _dbus_bindings/abstract.c | 28 ++++++++++-- _dbus_bindings/bus.c | 8 +++- _dbus_bindings/bytes.c | 28 +++++++++--- - _dbus_bindings/containers.c | 59 +++++++++++++++--------- - _dbus_bindings/generic.c | 3 + + _dbus_bindings/containers.c | 59 ++++++++++++++---------- + _dbus_bindings/generic.c | 3 ++ _dbus_bindings/int.c | 91 +++++++++++++++++++------------------ _dbus_bindings/message-get-args.c | 2 +- - _dbus_bindings/message.c | 35 +++++++++++--- - _dbus_bindings/module.c | 10 ++--- + _dbus_bindings/message.c | 35 ++++++++++---- + _dbus_bindings/module.c | 10 ++-- _dbus_bindings/pending-call.c | 3 +- _dbus_bindings/signature.c | 11 +++-- _dbus_bindings/string.c | 25 ++++++---- @@ -4553,7 +4742,7 @@ Date: 2006-12-21 18:39:51 +0000 Fix recommendation given by exception message bringing it into sync with current API (spotted by Phil Thompson) _dbus_bindings/conn.c | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) + 1 file changed, 1 insertion(+), 1 deletion(-) commit 7f7262c8d6b1e3aa6cdc541ac0cdb275f9e68501 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4562,7 +4751,7 @@ Date: 2006-12-19 17:48:34 +0000 Makefile.am: if in a git checkout, generate the ChangeLog (correctly) Makefile.am | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) + 1 file changed, 1 insertion(+), 1 deletion(-) commit 06e9507ebca33369c106b616f948fe6af4fe71c9 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4572,7 +4761,7 @@ Date: 2006-12-19 17:44:35 +0000 NEWS | 7 ++++++- README | 1 + - 2 files changed, 7 insertions(+), 1 deletions(-) + 2 files changed, 7 insertions(+), 1 deletion(-) commit d62626c19c32348c28b90e269c47635a421247f3 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4581,7 +4770,7 @@ Date: 2006-12-19 17:42:57 +0000 .gitignore: ignore the generated Makefile .gitignore | 1 + - 1 files changed, 1 insertions(+), 0 deletions(-) + 1 file changed, 1 insertion(+) commit 75a897710ffafb1fc4df17460784829df844666f Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4590,7 +4779,7 @@ Date: 2006-12-19 17:37:11 +0000 Makefile.am: if in a git checkout, generate the ChangeLog Makefile.am | 13 +++++++++++-- - 1 files changed, 11 insertions(+), 2 deletions(-) + 1 file changed, 11 insertions(+), 2 deletions(-) commit 6020c7f6252833c2d5bf890c68335ee4cc6f777c Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4599,7 +4788,7 @@ Date: 2006-12-19 15:57:11 +0000 dbus-python.h: Alter header comment, use a better cpp define name for the multiple-inclusion guard include/dbus-python.h | 10 ++++++---- - 1 files changed, 6 insertions(+), 4 deletions(-) + 1 file changed, 6 insertions(+), 4 deletions(-) commit 75111a7da5f12f3f01d736694158ea266926139b Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4608,7 +4797,7 @@ Date: 2006-12-19 15:43:57 +0000 Remove old introspect_parser from Makefile.am too Makefile.am | 1 - - 1 files changed, 0 insertions(+), 1 deletions(-) + 1 file changed, 1 deletion(-) commit 550390810f9ee63a3f251e854f3e234c6a948436 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4617,7 +4806,7 @@ Date: 2006-12-19 15:17:12 +0000 Remove old libxml2-based introspection parser dbus/introspect_parser.py | 90 --------------------------------------------- - 1 files changed, 0 insertions(+), 90 deletions(-) + 1 file changed, 90 deletions(-) commit d6bfbdd4a270a0b2421e8cba566805211b711c77 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4626,7 +4815,7 @@ Date: 2006-12-19 15:16:43 +0000 Include the cross-test in 'make check' test/run-test.sh | 30 ++++++++++++++++++++++++++++++ - 1 files changed, 30 insertions(+), 0 deletions(-) + 1 file changed, 30 insertions(+) commit 432694be74b0a6bfb5336e4fa493958b1bf1ac4e Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4635,7 +4824,7 @@ Date: 2006-12-19 15:16:22 +0000 Add missing _expat_introspect_parser.py; fix cross-test to work for out-of-tree builds Makefile.am | 5 +++-- - 1 files changed, 3 insertions(+), 2 deletions(-) + 1 file changed, 3 insertions(+), 2 deletions(-) commit 0bccb0f1fd68b224e7aee6d21aef8e36cdc8d980 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4644,7 +4833,7 @@ Date: 2006-12-19 15:15:01 +0000 Remove Makefile (auto-generated since switching to autotools) Makefile | 1088 -------------------------------------------------------------- - 1 files changed, 0 insertions(+), 1088 deletions(-) + 1 file changed, 1088 deletions(-) commit b3c9b4c65aaefc6c940793e00fcdb60831367d10 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4655,7 +4844,7 @@ Date: 2006-12-19 14:45:16 +0000 dbus/_expat_introspect_parser.py | 83 ++++++++++++++++++++++++++++++++++++++ dbus/proxies.py | 2 +- - 2 files changed, 84 insertions(+), 1 deletions(-) + 2 files changed, 84 insertions(+), 1 deletion(-) commit 164f38ea01187c1bbe9606dde81e09efd62362e5 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4687,7 +4876,7 @@ Date: 2006-12-19 14:05:15 +0000 Do cross-product of options in more obvious way test/test-client.py | 25 +++++++++++++------------ - 1 files changed, 13 insertions(+), 12 deletions(-) + 1 file changed, 13 insertions(+), 12 deletions(-) commit e6eb7b5307da2a446e1c8c6b0cb6b11fc6705b00 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4762,7 +4951,7 @@ Date: 2006-12-18 12:03:27 +0000 _dbus_bindings/conn-internal.h | 2 +- _dbus_bindings/dbus_bindings-internal.h | 4 +- - _dbus_glib_bindings/module.c | 13 ++-- + _dbus_glib_bindings/module.c | 13 +++-- include/dbus-python.h | 96 +++++++++++++++++++++++++++++++ include/dbus_bindings.h | 96 ------------------------------- 5 files changed, 106 insertions(+), 105 deletions(-) @@ -4774,7 +4963,7 @@ Date: 2006-12-15 12:56:36 +0000 COMPAT.txt: cross off some to-do items, patches now sent upstream COMPAT.txt | 17 ++++++++--------- - 1 files changed, 8 insertions(+), 9 deletions(-) + 1 file changed, 8 insertions(+), 9 deletions(-) commit 6376c0c422063a48554719f9ec72162c1b63fdda Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4788,7 +4977,7 @@ Date: 2006-12-14 16:18:13 +0000 multi-threaded. _dbus_bindings/module.c | 10 ++++++++++ - 1 files changed, 10 insertions(+), 0 deletions(-) + 1 file changed, 10 insertions(+) commit 274314c98304fdaa23bcc7b3940ab48e7afe0e8c Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4808,7 +4997,7 @@ Date: 2006-12-13 15:02:07 +0000 MANIFEST.in: include Makefile (for the benefit of mjj29's interop test) and examples MANIFEST.in | 2 ++ - 1 files changed, 2 insertions(+), 0 deletions(-) + 1 file changed, 2 insertions(+) commit 717c5b4b3852c5e519bc4a1ccb9df8414d4c019c Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4817,7 +5006,7 @@ Date: 2006-12-13 14:48:56 +0000 list-system-services.py: Use the NULL_MAIN_LOOP examples/list-system-services.py | 4 +++- - 1 files changed, 3 insertions(+), 1 deletions(-) + 1 file changed, 3 insertions(+), 1 deletion(-) commit b70364f2a37e64585c53a72e36481407e375808c Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4850,7 +5039,7 @@ Date: 2006-12-13 14:39:03 +0000 dbus/_dbus.py: Strongly reference shared connections, so they stay alive and signal handlers etc. stick. On close, remove them from the table of shared connections first dbus/_dbus.py | 8 +++++++- - 1 files changed, 7 insertions(+), 1 deletions(-) + 1 file changed, 7 insertions(+), 1 deletion(-) commit 4a7f442a322a8df6306f50ae22aaf049d3807c9f Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4859,7 +5048,7 @@ Date: 2006-12-13 14:36:00 +0000 dbus/__init__.py: Import exceptions too in case someone is relying on it dbus/__init__.py | 1 + - 1 files changed, 1 insertions(+), 0 deletions(-) + 1 file changed, 1 insertion(+) commit 1cd510ab8be262106e1a57359a06708236b9dd39 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4868,7 +5057,7 @@ Date: 2006-12-13 13:53:38 +0000 test/test-client.py: Add test case for weak reference logic (which would segfault on 0.80rc1) test/test-client.py | 10 ++++++++++ - 1 files changed, 10 insertions(+), 0 deletions(-) + 1 file changed, 10 insertions(+) commit a3f966c49e6158a3382a2dce553b91ceb64376fe Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4877,7 +5066,7 @@ Date: 2006-12-13 13:50:38 +0000 dbus/__init__.py: Import types submodule into dbus, because Sugar assumes it'll be available dbus/__init__.py | 3 +++ - 1 files changed, 3 insertions(+), 0 deletions(-) + 1 file changed, 3 insertions(+) commit a4b88e345e8ee03ddcf12ce323730d12d51193db Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4886,7 +5075,7 @@ Date: 2006-12-13 13:49:38 +0000 dbus/_dbus.py: Use absolute import for proxies dbus/_dbus.py | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) + 1 file changed, 1 insertion(+), 1 deletion(-) commit 8edf45a9dc51a70ce4897606f4cd2b08e3536332 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4896,7 +5085,7 @@ Date: 2006-12-13 13:48:40 +0000 _dbus_bindings/message-append.c | 1 + _dbus_bindings/message-get-args.c | 1 + - 2 files changed, 2 insertions(+), 0 deletions(-) + 2 files changed, 2 insertions(+) commit 422855dd98922b8a3038f7315809462ed6a54ba6 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4905,8 +5094,8 @@ Date: 2006-12-13 13:48:03 +0000 _dbus_bindings/conn.c: Fix broken weak reference handling, which caused a segfault on OLPC. Also add debug related to this. - _dbus_bindings/conn.c | 55 ++++++++++++++++++++++++++++++++++++++---------- - 1 files changed, 43 insertions(+), 12 deletions(-) + _dbus_bindings/conn.c | 55 ++++++++++++++++++++++++++++++++++++++----------- + 1 file changed, 43 insertions(+), 12 deletions(-) commit 6ff6bd99176b7b1d7931bb16c8a7c8a75e3755ee Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4915,7 +5104,7 @@ Date: 2006-12-13 13:46:29 +0000 conn-methods.c: Add tracing _dbus_bindings/conn-methods.c | 21 +++++++++++++++++++++ - 1 files changed, 21 insertions(+), 0 deletions(-) + 1 file changed, 21 insertions(+) commit 98f392d386ae89e3b7ebe397beee6a15869511df Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4924,7 +5113,7 @@ Date: 2006-12-13 13:45:55 +0000 conn-internal.h: Comment weakref list _dbus_bindings/conn-internal.h | 1 + - 1 files changed, 1 insertions(+), 0 deletions(-) + 1 file changed, 1 insertion(+) commit d1bc9f29818e576b07946e0ea9a89e90e1d5ec42 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4933,7 +5122,7 @@ Date: 2006-12-13 13:45:28 +0000 bus.c: Add tracing and a couple of missed assertions _dbus_bindings/bus.c | 11 +++++++++++ - 1 files changed, 11 insertions(+), 0 deletions(-) + 1 file changed, 11 insertions(+) commit 6afa6d2e76c83c921c799bec3a7b3259248eb57f Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4942,7 +5131,7 @@ Date: 2006-12-13 13:45:01 +0000 Add TRACE macro and allow debug to be turned off per file _dbus_bindings/dbus_bindings-internal.h | 10 +++++++++- - 1 files changed, 9 insertions(+), 1 deletions(-) + 1 file changed, 9 insertions(+), 1 deletion(-) commit 2ad0498ce6f253da333907ed87df11c6b5a8cf1e Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4951,7 +5140,7 @@ Date: 2006-12-12 19:56:17 +0000 conn.c: Correct number of varargs to debug message _dbus_bindings/conn.c | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) + 1 file changed, 1 insertion(+), 1 deletion(-) commit 53c4f8628eac5c1ba62e9ccf3be6e1b4c0990b20 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4960,7 +5149,7 @@ Date: 2006-12-12 19:55:38 +0000 conn.c: Use __func__ instead of incorrect __FUNC__ _dbus_bindings/conn.c | 8 ++++---- - 1 files changed, 4 insertions(+), 4 deletions(-) + 1 file changed, 4 insertions(+), 4 deletions(-) commit d8a2d78963cf76051a72bb18e7c9d9dd0afd27e8 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4980,7 +5169,7 @@ Date: 2006-12-12 19:46:54 +0000 _dbus_bindings/dbus_bindings-internal.h: Add wrapper macro "DBG_WHEREAMI;" _dbus_bindings/dbus_bindings-internal.h | 4 +++- - 1 files changed, 3 insertions(+), 1 deletions(-) + 1 file changed, 3 insertions(+), 1 deletion(-) commit 883b24563b5f9bf406fcde5edb19caabbc812ac2 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -4988,8 +5177,8 @@ Date: 2006-12-12 19:44:41 +0000 Add assertion macros and supporting functions - _dbus_bindings/dbus_bindings-internal.h | 28 +++++++++++++++++++++- - _dbus_bindings/debug.c | 38 +++++++++++++++++++++++++++++- + _dbus_bindings/dbus_bindings-internal.h | 28 +++++++++++++++++++++-- + _dbus_bindings/debug.c | 38 +++++++++++++++++++++++++++++-- 2 files changed, 62 insertions(+), 4 deletions(-) commit b7d21102b99e717e3b4f103d71ce96e8f056cfd4 @@ -4999,9 +5188,9 @@ Date: 2006-12-11 21:57:52 +0000 Whitespace consistency: Don't put a space between function name and parentheses around arguments _dbus_bindings/bus.c | 98 +++++++++--------- - _dbus_bindings/message-append.c | 92 ++++++++-------- + _dbus_bindings/message-append.c | 92 ++++++++--------- _dbus_bindings/message-get-args.c | 4 +- - _dbus_bindings/message.c | 204 ++++++++++++++++++------------------ + _dbus_bindings/message.c | 204 ++++++++++++++++++------------------- 4 files changed, 199 insertions(+), 199 deletions(-) commit 830f94f31010d4783490217d4b02f6f87927ae4c @@ -5020,8 +5209,8 @@ Date: 2006-12-11 21:45:29 +0000 _dbus_bindings/message-get-args-impl.h | 511 ---------------- _dbus_bindings/message-get-args.c | 512 ++++++++++++++++ _dbus_bindings/message-internal.h | 48 ++ - _dbus_bindings/message.c | 91 ++-- - _dbus_bindings/module.c | 191 ++++++- + _dbus_bindings/message.c | 91 ++- + _dbus_bindings/module.c | 191 +++++- _dbus_bindings/validation-impl.h | 352 ----------- _dbus_bindings/validation.c | 243 ++++++++ setup.py | 5 + @@ -5065,7 +5254,7 @@ Date: 2006-12-11 20:06:09 +0000 _dbus_bindings/bytes-impl.h | 48 +- _dbus_bindings/conn.c | 14 +- _dbus_bindings/containers-impl.h | 141 ++--- - _dbus_bindings/dbus_bindings-internal.h | 45 ++- + _dbus_bindings/dbus_bindings-internal.h | 45 +- _dbus_bindings/exceptions-impl.h | 71 --- _dbus_bindings/exceptions.c | 64 ++ _dbus_bindings/floattypes-impl.h | 34 +- @@ -5079,7 +5268,7 @@ Date: 2006-12-11 20:06:09 +0000 _dbus_bindings/pending-call-impl.h | 290 --------- _dbus_bindings/pending-call.c | 292 +++++++++ _dbus_bindings/signature-impl.h | 24 +- - _dbus_bindings/types-impl.h | 261 ++++----- + _dbus_bindings/types-impl.h | 261 ++++---- _dbus_bindings/types-internal.h | 81 +++ setup.py | 3 + 22 files changed, 1895 insertions(+), 1892 deletions(-) @@ -5093,7 +5282,7 @@ Date: 2006-12-08 17:57:12 +0000 _dbus_bindings/debug-impl.h | 60 ------------------------------------------- _dbus_bindings/debug.c | 60 +++++++++++++++++++++++++++++++++++++++++++ _dbus_bindings/module.c | 1 - - setup.py | 2 + + setup.py | 2 ++ 4 files changed, 62 insertions(+), 61 deletions(-) commit 3273a66c7b0d8a91ffe68732a482d17775627273 @@ -5125,7 +5314,7 @@ Date: 2006-12-08 17:50:25 +0000 _dbus_bindings/exceptions-impl.h | 28 +- _dbus_bindings/generic-impl.h | 16 +- _dbus_bindings/mainloop-impl.h | 47 +- - _dbus_bindings/message-impl.h | 57 +-- + _dbus_bindings/message-impl.h | 57 +- _dbus_bindings/module.c | 8 +- _dbus_bindings/pending-call-impl.h | 7 +- _dbus_bindings/types-impl.h | 2 +- @@ -5141,7 +5330,7 @@ Date: 2006-12-08 16:10:12 +0000 _dbus_bindings/conn-impl.h: Be more careful that referenced Connections always have a DBusConnection _dbus_bindings/conn-impl.h | 26 ++++++++++++++++++++++---- - 1 files changed, 22 insertions(+), 4 deletions(-) + 1 file changed, 22 insertions(+), 4 deletions(-) commit 93b846e642ea1830b40aee6dfc600b8cd18b51bf Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -5150,7 +5339,7 @@ Date: 2006-12-08 16:08:56 +0000 _dbus_bindings/bus-impl.h: Correctly construct Bus objects with non-default addresses _dbus_bindings/bus-impl.h | 2 ++ - 1 files changed, 2 insertions(+), 0 deletions(-) + 1 file changed, 2 insertions(+) commit 9c4374aba50a9de68e307b85dc0f4d0425ee0b1b Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -5159,7 +5348,7 @@ Date: 2006-12-07 18:43:07 +0000 gconf-proxy-{client,service2}.py: Print a message warning that these might not work. gconf-proxy-service.py: Delete, it uses API which was obsoleted long ago. - dbus/examples/gconf-proxy-client.py | 2 + + dbus/examples/gconf-proxy-client.py | 2 ++ dbus/examples/gconf-proxy-service.py | 43 --------------------------------- dbus/examples/gconf-proxy-service2.py | 1 + 3 files changed, 3 insertions(+), 43 deletions(-) @@ -5171,7 +5360,7 @@ Date: 2006-12-07 18:40:31 +0000 dbus/examples/example-*.py: update to current API dbus/examples/example-client.py | 49 ++++++++++++++++---- - dbus/examples/example-service.py | 46 +++++++++++++----- + dbus/examples/example-service.py | 46 +++++++++++++------ dbus/examples/example-signal-emitter.py | 39 +++++++++++----- dbus/examples/example-signal-recipient.py | 71 +++++++++++++++++++---------- 4 files changed, 147 insertions(+), 58 deletions(-) @@ -5193,7 +5382,7 @@ Date: 2006-12-07 18:37:58 +0000 dbus/decorators: Remove explicitly_pass_message dbus/decorators.py | 21 +-------------------- - 1 files changed, 1 insertions(+), 20 deletions(-) + 1 file changed, 1 insertion(+), 20 deletions(-) commit 090091828e1d616171601d68aed00991d93dfd49 Author: Simon McVittie <simon.mcvittie@collabora.co.uk> @@ -5202,7 +5391,7 @@ Date: 2006-12-07 16:53:42 +0000 examples/list-system-services.py: Print services in a nicer form, once per line. Offer to connect to the session bus instead. dbus/examples/list-system-services.py | 47 +++++++++++++++++++++++---------- - 1 files changed, 33 insertions(+), 14 deletions(-) + 1 file changed, 33 insertions(+), 14 deletions(-) commit 9802e3eb22d1ed464eec71153067593db7071764 Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -5222,7 +5411,7 @@ Date: 2006-12-05 18:46:45 +0000 MANIFEST.in: add TODO (but not COMPAT.txt, which shouldn't go in the sdist) MANIFEST.in | 1 + - 1 files changed, 1 insertions(+), 0 deletions(-) + 1 file changed, 1 insertion(+) commit 49ea22f2a1be697437f7c232613c87920957bc86 Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -5232,7 +5421,7 @@ Date: 2006-12-05 18:38:36 +0000 COMPAT.txt | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ TODO | 8 ++++++++ - 2 files changed, 56 insertions(+), 0 deletions(-) + 2 files changed, 56 insertions(+) commit aa0710da718fb04079076b6b02c486a177323322 Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -5241,7 +5430,7 @@ Date: 2006-12-05 18:37:54 +0000 dbus/__init__.py, dbus/_dbus.py, dbus/service.py: Improve docstrings, imports, __all__ dbus/__init__.py | 160 ++++++++++++++++++++++++++++++++++++++++++++++++++---- - dbus/_dbus.py | 96 +++++++++------------------------ + dbus/_dbus.py | 96 +++++++++----------------------- dbus/service.py | 49 +++++++++++++---- 3 files changed, 213 insertions(+), 92 deletions(-) @@ -5252,7 +5441,7 @@ Date: 2006-12-05 18:36:53 +0000 _dbus_bindings/validation-impl.h: Mark new functions as :Since: 0.80 _dbus_bindings/validation-impl.h | 9 +++++++++ - 1 files changed, 9 insertions(+), 0 deletions(-) + 1 file changed, 9 insertions(+) commit e4a70180d3ab0eb77264dc1a9f22b2521e5d3607 Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -5261,7 +5450,7 @@ Date: 2006-12-05 18:36:21 +0000 _dbus_bindings/types-impl.h: Always implement Int64 and UInt64 at least as a stub, raising NotImplementedError from the constructor on 64-bit-deficient platforms. Improve docstrings. _dbus_bindings/types-impl.h | 258 ++++++++++++++++++++++++++++++++++++------- - 1 files changed, 217 insertions(+), 41 deletions(-) + 1 file changed, 217 insertions(+), 41 deletions(-) commit 34b237b3e1ed0c6665892f3a4765b09e29bdb3a5 Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -5270,7 +5459,7 @@ Date: 2006-12-05 18:34:58 +0000 _dbus_bindings/signature-impl.h: Improve Signature class docstring _dbus_bindings/signature-impl.h | 19 ++++++++++++++++--- - 1 files changed, 16 insertions(+), 3 deletions(-) + 1 file changed, 16 insertions(+), 3 deletions(-) commit 69d95e61f95c21708596d2f973f46cde61521e68 Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -5288,8 +5477,8 @@ Date: 2006-12-05 18:32:25 +0000 _dbus_bindings/containers-impl.h: Disallow empty structs. Improve docstrings - _dbus_bindings/containers-impl.h | 80 +++++++++++++++++++++++++++++++------ - 1 files changed, 67 insertions(+), 13 deletions(-) + _dbus_bindings/containers-impl.h | 80 +++++++++++++++++++++++++++++++------- + 1 file changed, 67 insertions(+), 13 deletions(-) commit 42ea333ddd2351b4dc87c12089efbda89165783b Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -5298,7 +5487,7 @@ Date: 2006-12-05 18:31:54 +0000 _dbus_bindings/module.c: Add Constructor, Supported usage field declarations for epydoc _dbus_bindings/module.c | 6 +++++- - 1 files changed, 5 insertions(+), 1 deletions(-) + 1 file changed, 5 insertions(+), 1 deletion(-) commit 4779424a806aecfce2754eb8fc4673f0ce35823e Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -5307,7 +5496,7 @@ Date: 2006-12-05 11:36:50 +0000 dbus/decorators.py: Say that explicitly_pass_message() is deprecated dbus/decorators.py | 13 +++++++++---- - 1 files changed, 9 insertions(+), 4 deletions(-) + 1 file changed, 9 insertions(+), 4 deletions(-) commit c08743227d9e78da2d02d1e1f5a621d43d38efc4 Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -5316,7 +5505,7 @@ Date: 2006-12-05 11:36:17 +0000 dbus/glib.py: mention that the new API only works in >= 0.80 dbus/glib.py | 6 +++--- - 1 files changed, 3 insertions(+), 3 deletions(-) + 1 file changed, 3 insertions(+), 3 deletions(-) commit cb7538d514e968c19c3fea74bd5de89330112ed5 Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -5325,7 +5514,7 @@ Date: 2006-12-05 11:35:51 +0000 dbus/introspect_parser.py: Add docstring for process_introspection_data() dbus/introspect_parser.py | 12 ++++++++++++ - 1 files changed, 12 insertions(+), 0 deletions(-) + 1 file changed, 12 insertions(+) commit 3c606fda6ea70622ee234cc51d63644ab27e6e55 Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -5335,7 +5524,7 @@ Date: 2006-12-05 11:35:23 +0000 dbus/mainloop/__init__.py | 4 ++++ dbus/mainloop/glib.py | 7 +++++++ - 2 files changed, 11 insertions(+), 0 deletions(-) + 2 files changed, 11 insertions(+) commit 0c7cc37a5ac8fe1a044cfcf6d615aa8341dcb30e Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -5344,7 +5533,7 @@ Date: 2006-12-05 11:34:54 +0000 dbus/proxies.py: trivial change to process_introspection_data() invocation: import and "." => from-import dbus/proxies.py | 4 ++-- - 1 files changed, 2 insertions(+), 2 deletions(-) + 1 file changed, 2 insertions(+), 2 deletions(-) commit 01a91b63644b7f1e8b23dea20f639a9b13bb36ef Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -5354,7 +5543,7 @@ Date: 2006-12-05 11:33:51 +0000 dbus/matchrules.py | 271 ---------------------------------------------------- setup.py | 1 - - 2 files changed, 0 insertions(+), 272 deletions(-) + 2 files changed, 272 deletions(-) commit 3655f865eb742eacc9f677c34757b0f115a7179b Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -5363,7 +5552,7 @@ Date: 2006-12-05 11:33:10 +0000 Stop asserting that dbus.Struct(()) works test/test-standalone.py | 4 ++-- - 1 files changed, 2 insertions(+), 2 deletions(-) + 1 file changed, 2 insertions(+), 2 deletions(-) commit 880a2a87e78355e546dc97f0661f500c1c42da73 Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -5372,7 +5561,7 @@ Date: 2006-12-04 14:13:24 +0000 dbus/__init__.py: remove FIXME comment dbus/__init__.py | 4 ---- - 1 files changed, 0 insertions(+), 4 deletions(-) + 1 file changed, 4 deletions(-) commit 8339653949802cb296811fe488b53b721d63e0f7 Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -5381,7 +5570,7 @@ Date: 2006-12-04 14:11:40 +0000 dbus/proxies.py: Ignore unused result from send_message. Pass on SignalMatch result from add_signal_receiver() so caller can disconnect the signal more easily. dbus/proxies.py | 3 ++- - 1 files changed, 2 insertions(+), 1 deletions(-) + 1 file changed, 2 insertions(+), 1 deletion(-) commit 539faca6578f418da4bbbbd9d4a77c2f5fad682c Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -5390,7 +5579,7 @@ Date: 2006-12-04 13:43:42 +0000 dbus/introspect_parser.py: Import the right exceptions module, so we can raise the right exception dbus/introspect_parser.py | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) + 1 file changed, 1 insertion(+), 1 deletion(-) commit f6284a1b6552652c84e76585fd208ea361ff288b Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -5398,9 +5587,9 @@ Date: 2006-12-04 13:42:43 +0000 test/test-signals.py: add test case for signal handling; test/run-test.sh: run test-signals. - test/run-test.sh | 3 + + test/run-test.sh | 3 ++ test/test-signals.py | 128 ++++++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 131 insertions(+), 0 deletions(-) + 2 files changed, 131 insertions(+) commit 14ae543d77a0d6ec72d10ba33c5a50c801f1feab Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -5408,8 +5597,8 @@ Date: 2006-12-04 13:41:48 +0000 dbus/_dbus.py: Re-work signal matching so it does the right thing when name ownership changes - dbus/_dbus.py | 410 ++++++++++++++++++++++++++++++++++++++++++++------------ - 1 files changed, 322 insertions(+), 88 deletions(-) + dbus/_dbus.py | 410 ++++++++++++++++++++++++++++++++++++++++++++------------- + 1 file changed, 322 insertions(+), 88 deletions(-) commit 601a1a2b4bbabebb248310334a60413bffde9780 Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -5418,7 +5607,7 @@ Date: 2006-12-04 13:35:24 +0000 _dbus_bindings/bus-impl.h: Correct docstring for Bus.remove_match_string _dbus_bindings/bus-impl.h | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) + 1 file changed, 1 insertion(+), 1 deletion(-) commit a61bb622aa26d48de7cb1cb269d4b4cfc75dda3f Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -5438,7 +5627,7 @@ Date: 2006-11-30 17:22:49 +0000 _dbus_bindings/pending-call-impl.h: Fix reference counting _dbus_bindings/pending-call-impl.h | 8 ++++++-- - 1 files changed, 6 insertions(+), 2 deletions(-) + 1 file changed, 6 insertions(+), 2 deletions(-) commit 2c5f7716211f0157bf6a4fe93ea3df7f03c5f5e8 Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -5447,7 +5636,7 @@ Date: 2006-11-30 17:15:00 +0000 _dbus_bindings/mainloop-impl.h: Fix compilation with debug enabled _dbus_bindings/mainloop-impl.h | 8 ++++---- - 1 files changed, 4 insertions(+), 4 deletions(-) + 1 file changed, 4 insertions(+), 4 deletions(-) commit 114f98df9c1a6897b0030430550a23b3d5da0a83 Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -5456,7 +5645,7 @@ Date: 2006-11-30 17:02:02 +0000 dbus.proxies: Alter calls to methods which have become public dbus/proxies.py | 16 +++++++--------- - 1 files changed, 7 insertions(+), 9 deletions(-) + 1 file changed, 7 insertions(+), 9 deletions(-) commit 535e860b648798aae2644b2b222f19990484be88 Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -5465,7 +5654,7 @@ Date: 2006-11-30 17:00:07 +0000 setup.py: Add dbus.lowlevel setup.py | 1 + - 1 files changed, 1 insertions(+), 0 deletions(-) + 1 file changed, 1 insertion(+) commit 4237e29b6f76e7dcfc1b34b984f9640e9a57fb7d Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -5474,7 +5663,7 @@ Date: 2006-11-30 16:59:48 +0000 dbus/__init__.py: Document existence of dbus.lowlevel dbus/__init__.py | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) + 1 file changed, 1 insertion(+), 1 deletion(-) commit 0586633996ed3d529588b1c429f2dd02ecb9bf5a Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -5482,8 +5671,8 @@ Date: 2006-11-30 16:59:22 +0000 _dbus_bindings/pending-call-impl.h: Make block() public and work around dbus_pending_call_set_notify() race - _dbus_bindings/pending-call-impl.h | 75 ++++++++++++++++++++++++++++++----- - 1 files changed, 64 insertions(+), 11 deletions(-) + _dbus_bindings/pending-call-impl.h | 75 ++++++++++++++++++++++++++++++------ + 1 file changed, 64 insertions(+), 11 deletions(-) commit 181ff34cbd75fdb0cdfe71628f22d7b5f4b34d7b Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -5504,7 +5693,7 @@ Date: 2006-11-30 16:56:49 +0000 Make send, etc. public, but rename to send_message etc. _dbus_bindings/conn-methods-impl.h | 85 +++++++++++++++++++++--------------- - 1 files changed, 49 insertions(+), 36 deletions(-) + 1 file changed, 49 insertions(+), 36 deletions(-) commit 7db487a5e4efcdaf6c8ff59dfa6f26c5042ee1e9 Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -5513,9 +5702,9 @@ Date: 2006-11-30 13:48:26 +0000 Document the absence of dbus.mainloop.MainLoop in this release. Add get_object_by_unique_name to Bus objects. - _dbus_bindings/mainloop-impl.h | 14 ++++++---- - dbus/_dbus.py | 54 ++++++++++++++++++++++++++++++++++----- - dbus/proxies.py | 3 ++ + _dbus_bindings/mainloop-impl.h | 14 ++++++----- + dbus/_dbus.py | 54 ++++++++++++++++++++++++++++++++++------ + dbus/proxies.py | 3 +++ 3 files changed, 58 insertions(+), 13 deletions(-) commit 69660ac1b650a2328f21dc2d9953700d1efe1e17 @@ -5525,7 +5714,7 @@ Date: 2006-11-30 11:08:41 +0000 API_CHANGES.txt: Document mainloop changes API_CHANGES.txt | 63 ++++++++++++++++++++++++++++++++++++++++++++++++------- - 1 files changed, 55 insertions(+), 8 deletions(-) + 1 file changed, 55 insertions(+), 8 deletions(-) commit 77778920c41ddc3fe99771f4bd0f865e9550868c Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -5534,7 +5723,7 @@ Date: 2006-11-30 11:08:08 +0000 dbus/mainloop/__init__.py: Export glib submodule; improve docstrings dbus/mainloop/__init__.py | 41 +++++++++++++++++++++++++++++++++++------ - 1 files changed, 35 insertions(+), 6 deletions(-) + 1 file changed, 35 insertions(+), 6 deletions(-) commit c5e4c6f8d67ad4305ab7e2254de10a6320b9c305 Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -5543,7 +5732,7 @@ Date: 2006-11-30 11:07:16 +0000 Emulate old bus_request_name, bus_release_name dbus/dbus_bindings.py | 4 ++++ - 1 files changed, 4 insertions(+), 0 deletions(-) + 1 file changed, 4 insertions(+) commit e54d3f2c370ebcdb07269b49081519017981bcdb Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -5552,7 +5741,7 @@ Date: 2006-11-30 11:06:53 +0000 dbus/service.py: Allow a Connection as parameter to Object constructor, to avoid having to have a well-known bus name dbus/service.py | 44 +++++++++++++++++++++++++++++++------------- - 1 files changed, 31 insertions(+), 13 deletions(-) + 1 file changed, 31 insertions(+), 13 deletions(-) commit 6120021f3563f2df73fc35b2ded4ae30958a47da Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -5561,7 +5750,7 @@ Date: 2006-11-30 11:05:55 +0000 dbus/__init__.py: Export get_default_main_loop, set_default_main_loop and submodules service and mainloop dbus/__init__.py | 4 ++++ - 1 files changed, 4 insertions(+), 0 deletions(-) + 1 file changed, 4 insertions(+) commit 9c1b58183966ae8a622796ae3df4a5a699bfd5fc Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -5570,7 +5759,7 @@ Date: 2006-11-30 11:05:17 +0000 dbus/glib.py: Use new API to set main loop as default dbus/glib.py | 13 ++++++++++++- - 1 files changed, 12 insertions(+), 1 deletions(-) + 1 file changed, 12 insertions(+), 1 deletion(-) commit f3a23de9e022e708b9884d36f65ab9ccaf634bee Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -5579,7 +5768,7 @@ Date: 2006-11-30 11:04:48 +0000 dbus/_dbus.py: Import get_default_main_loop, set_default_main_loop dbus/_dbus.py | 14 ++++++++++++-- - 1 files changed, 12 insertions(+), 2 deletions(-) + 1 file changed, 12 insertions(+), 2 deletions(-) commit 605a8ec83eba854b319d94c9fee3467e52999005 Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -5587,8 +5776,8 @@ Date: 2006-11-30 11:04:06 +0000 _dbus_glib_bindings/module.c: Support set_as_default keyword argument - _dbus_glib_bindings/module.c | 50 ++++++++++++++++++++++++++++++++++++----- - 1 files changed, 44 insertions(+), 6 deletions(-) + _dbus_glib_bindings/module.c | 50 +++++++++++++++++++++++++++++++++++++----- + 1 file changed, 44 insertions(+), 6 deletions(-) commit 3aff827e8fe14a9fb9b1846e00c32f01afee40b2 Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -5597,11 +5786,11 @@ Date: 2006-11-30 11:03:19 +0000 _dbus_bindings: Change default-main-loop API to use global functions get_default_main_loop, set_default_main_loop. Improve docstrings - _dbus_bindings/bus-impl.h | 5 ++- - _dbus_bindings/conn-impl.h | 32 ++++++---------- - _dbus_bindings/conn-methods-impl.h | 56 ---------------------------- - _dbus_bindings/mainloop-impl.h | 70 ++++++++++++++++++++++++++++++++++- - _dbus_bindings/module.c | 12 ++++-- + _dbus_bindings/bus-impl.h | 5 +-- + _dbus_bindings/conn-impl.h | 32 +++++++---------- + _dbus_bindings/conn-methods-impl.h | 56 ----------------------------- + _dbus_bindings/mainloop-impl.h | 70 ++++++++++++++++++++++++++++++++++-- + _dbus_bindings/module.c | 12 ++++--- 5 files changed, 91 insertions(+), 84 deletions(-) commit 919cd3aeac6676b19246091a6ff762bb6e154773 @@ -5611,8 +5800,8 @@ Date: 2006-11-24 13:00:13 +0000 include/dbus_bindings.h: Put _dbus_bindings in a static variable when imported into e.g. _dbus_glib_bindings. Re-indent for consistency. - include/dbus_bindings.h | 53 ++++++++++++++++++++++++---------------------- - 1 files changed, 28 insertions(+), 25 deletions(-) + include/dbus_bindings.h | 53 +++++++++++++++++++++++++---------------------- + 1 file changed, 28 insertions(+), 25 deletions(-) commit 16d460e5c4987d67a4db248c5fd1a69ca8b0ab23 Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -5623,7 +5812,7 @@ Date: 2006-11-24 12:58:39 +0000 should still appear in tarballs. setup.py | 12 +----------- - 1 files changed, 1 insertions(+), 11 deletions(-) + 1 file changed, 1 insertion(+), 11 deletions(-) commit 894bafef2cae44d4b41845ed900cffe65dd63900 Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -5634,7 +5823,7 @@ Date: 2006-11-23 16:44:21 +0000 _dbus_bindings/generic-impl.h | 23 +++ _dbus_bindings/mainloop-impl.h | 354 ++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 377 insertions(+), 0 deletions(-) + 2 files changed, 377 insertions(+) commit aabf7935466aee3c8cc82f9c08a39017fcb603f8 Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -5643,7 +5832,7 @@ Date: 2006-11-23 16:43:05 +0000 _dbus_bindings/conn-methods-impl.h: Correct docstring: there is no dbus.mainloop.base _dbus_bindings/conn-methods-impl.h | 4 ++-- - 1 files changed, 2 insertions(+), 2 deletions(-) + 1 file changed, 2 insertions(+), 2 deletions(-) commit 4a51f14170ffa4750b459fa4250bd7ce89bfa801 Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -5662,7 +5851,7 @@ Date: 2006-11-22 18:25:47 +0000 MANIFEST.in: include MANIFEST.in itself MANIFEST.in | 1 + - 1 files changed, 1 insertions(+), 0 deletions(-) + 1 file changed, 1 insertion(+) commit f064ecd77fb99506ea32c500e687a59ee68d9425 Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -5671,7 +5860,7 @@ Date: 2006-11-22 18:24:48 +0000 Include top-level dbus_bindings.py (missed in previous commit) dbus_bindings.py | 5 +++++ - 1 files changed, 5 insertions(+), 0 deletions(-) + 1 file changed, 5 insertions(+) commit 5bcdc1378cceb0885fc2138e55259f15a83fa1ce Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -5693,7 +5882,7 @@ Date: 2006-11-22 17:34:56 +0000 Remove _dbus_bindings/test.py (duplicates bits of test-standalone) _dbus_bindings/test.py | 30 ------------------------------ - 1 files changed, 0 insertions(+), 30 deletions(-) + 1 file changed, 30 deletions(-) commit 4a0902b38a50d34f28ce022fe0684aec8ce91718 Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -5702,7 +5891,7 @@ Date: 2006-11-22 17:33:59 +0000 MANIFEST.in: pass through LC_ALL=C sort -k2 MANIFEST.in | 13 ++++++------- - 1 files changed, 6 insertions(+), 7 deletions(-) + 1 file changed, 6 insertions(+), 7 deletions(-) commit f2c08d18ac2645311e4c0d94da0b06b3754a6def Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -5713,14 +5902,14 @@ Date: 2006-11-22 17:28:56 +0000 are supported, but a pure-Python main loop could be supported without incompatible API changes. - _dbus_bindings/bus-impl.h | 19 ++--- + _dbus_bindings/bus-impl.h | 19 ++-- _dbus_bindings/conn-impl.h | 55 ++++++++---- _dbus_bindings/conn-methods-impl.h | 56 ++++++++++++ _dbus_bindings/mainloop-impl.h | 175 ++++++++++++++++++++++++++++++++++++ - _dbus_bindings/module.c | 22 +++++- + _dbus_bindings/module.c | 22 ++++- _dbus_glib_bindings/module.c | 65 +++++++++++++- dbus/__init__.py | 2 - - dbus/_dbus.py | 74 +++++++-------- + dbus/_dbus.py | 74 ++++++++------- dbus/glib.py | 15 +--- dbus/mainloop/__init__.py | 7 ++ dbus/mainloop/glib.py | 32 +++++++ @@ -5736,7 +5925,7 @@ Date: 2006-11-21 18:13:14 +0000 _dbus_bindings/conn-impl.h: Check for errors, printing them if necessary, before releasing GIL _dbus_bindings/conn-impl.h | 6 ++++++ - 1 files changed, 6 insertions(+), 0 deletions(-) + 1 file changed, 6 insertions(+) commit df744af92832a69dbdbe97014bee38f6271ca30a Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -5755,7 +5944,7 @@ Date: 2006-11-16 14:25:27 +0000 MANIFEST.in: remove README, which doesn't exist MANIFEST.in | 1 - - 1 files changed, 0 insertions(+), 1 deletions(-) + 1 file changed, 1 deletion(-) commit 280061c0e03fb59f1eabf950fa4ab0716b4b7a39 Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -5768,7 +5957,7 @@ Date: 2006-11-15 19:26:56 +0000 dbus/_dbus.py | 10 ++++++++++ dbus/proxies.py | 9 +++++++++ - 2 files changed, 19 insertions(+), 0 deletions(-) + 2 files changed, 19 insertions(+) commit 48a87921075edbe3b94cdd1ddfef90b8f6e3a152 Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -5777,7 +5966,7 @@ Date: 2006-11-15 19:02:20 +0000 HACKING.txt: fix typo HACKING.txt | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) + 1 file changed, 1 insertion(+), 1 deletion(-) commit 192d203341d584a3f6502d0c3fb45d26870e7698 Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -5807,7 +5996,7 @@ Date: 2006-11-15 15:51:28 +0000 dbus._dbus: Whitespace dbus/_dbus.py | 11 ++++++----- - 1 files changed, 6 insertions(+), 5 deletions(-) + 1 file changed, 6 insertions(+), 5 deletions(-) commit b02991564418e2136ac305669afa8457595fd397 Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -5816,7 +6005,7 @@ Date: 2006-11-15 15:44:09 +0000 _dbus_bindings/bus-impl.h: Remove duplicate registration of name_has_owner method _dbus_bindings/bus-impl.h | 1 - - 1 files changed, 0 insertions(+), 1 deletions(-) + 1 file changed, 1 deletion(-) commit d3aa18da0ee31f4c7c6e17b9d027237021402292 Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -5825,7 +6014,7 @@ Date: 2006-11-15 15:16:59 +0000 Makefile: Produce warning about "development use only" for all targets. Set targets PHONY. Make docs depend on build, now the build is quicker Makefile | 18 ++++++++++++------ - 1 files changed, 12 insertions(+), 6 deletions(-) + 1 file changed, 12 insertions(+), 6 deletions(-) commit 6008b37253f7a04b563b28a2aa9357de8cfd29d1 Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -5857,7 +6046,7 @@ Date: 2006-11-14 14:31:43 +0000 Test UTF8String as well as String test/cross-test-client.py | 1 + - 1 files changed, 1 insertions(+), 0 deletions(-) + 1 file changed, 1 insertion(+) commit 7416bf25886650aec413eea2ca2c42b69f5a3537 Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -5880,7 +6069,7 @@ Date: 2006-11-14 14:29:13 +0000 Update API_CHANGES.txt API_CHANGES.txt | 43 ++++++++++++++++++++----------------------- - 1 files changed, 20 insertions(+), 23 deletions(-) + 1 file changed, 20 insertions(+), 23 deletions(-) commit 9997fd83b55e16d1c50fe04ce57951483f867982 Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -5894,7 +6083,7 @@ Date: 2006-11-14 14:28:36 +0000 backwards compatibility). Makefile | 11 ++++++++--- - 1 files changed, 8 insertions(+), 3 deletions(-) + 1 file changed, 8 insertions(+), 3 deletions(-) commit 1a4b9502f1d06e94fd5f90bfd85cf4d47b88c1fd Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -5903,7 +6092,7 @@ Date: 2006-11-14 14:26:14 +0000 setup.py: Import CFLAGS from environment (used by development Makefile for warning control) setup.py | 7 +++++++ - 1 files changed, 7 insertions(+), 0 deletions(-) + 1 file changed, 7 insertions(+) commit 4ce650d5c4ca5807c8eb4bc6f8074ff6eddab359 Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -5912,7 +6101,7 @@ Date: 2006-11-14 14:25:39 +0000 Remove Variant from API, add UTF8String dbus/__init__.py | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) + 1 file changed, 1 insertion(+), 1 deletion(-) commit bf5550fdcbd02a55d18f17d2b79e692145dfad58 Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -5921,7 +6110,7 @@ Date: 2006-11-14 14:25:04 +0000 Import the newly re-added types into dbus.types dbus/types.py | 10 ++++------ - 1 files changed, 4 insertions(+), 6 deletions(-) + 1 file changed, 4 insertions(+), 6 deletions(-) commit 0bd42c7cce423ce04def63217675b730228294af Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -5942,7 +6131,7 @@ Date: 2006-11-14 14:20:10 +0000 - Remove Variant type _dbus_bindings/containers-impl.h | 538 ++++++++++++++------------------------ - 1 files changed, 194 insertions(+), 344 deletions(-) + 1 file changed, 194 insertions(+), 344 deletions(-) commit 481428655794be4491cf7fd33f86b8e9e059a2d6 Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -5956,7 +6145,7 @@ Date: 2006-11-14 14:18:30 +0000 - Annotate unused arguments _dbus_bindings/conn-methods-impl.h | 35 ++++++++++++++++++++++------------- - 1 files changed, 22 insertions(+), 13 deletions(-) + 1 file changed, 22 insertions(+), 13 deletions(-) commit 5c908374f838e7b88c6725c6b54308316d8ed798 Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -5968,7 +6157,7 @@ Date: 2006-11-14 14:15:51 +0000 - Add UTF8String and (unicode) String types _dbus_bindings/types-impl.h | 481 ++++++++++++++++++++++++++----------------- - 1 files changed, 291 insertions(+), 190 deletions(-) + 1 file changed, 291 insertions(+), 190 deletions(-) commit 5bed478bed959ad477efac7da01ced0d0a76d6ed Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -5977,7 +6166,7 @@ Date: 2006-11-14 14:12:47 +0000 Make Signature a subclass of DBusPythonString _dbus_bindings/signature-impl.h | 22 ++++++++-------------- - 1 files changed, 8 insertions(+), 14 deletions(-) + 1 file changed, 8 insertions(+), 14 deletions(-) commit 23013477f373aae9569e05bf793dcb3ec92530fb Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -5988,8 +6177,8 @@ Date: 2006-11-14 14:12:11 +0000 - Include "abstract" base classes and float types in module.c _dbus_bindings/floattypes-impl.h | 159 ++++++++++++++++++++++++++++++++++++++ - _dbus_bindings/module.c | 8 ++- - 2 files changed, 166 insertions(+), 1 deletions(-) + _dbus_bindings/module.c | 8 +- + 2 files changed, 166 insertions(+), 1 deletion(-) commit 3c5d7904ea641f2b4adcf1edb1165e1381119120 Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -6002,7 +6191,7 @@ Date: 2006-11-14 14:10:16 +0000 - Don't try to do clever things for Byte memory allocation _dbus_bindings/bytes-impl.h | 105 +++++++++++++------------------------------ - 1 files changed, 31 insertions(+), 74 deletions(-) + 1 file changed, 31 insertions(+), 74 deletions(-) commit 77c594008a1a4a655a94868c0028ef6fdec0b492 Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -6011,7 +6200,7 @@ Date: 2006-11-14 14:01:25 +0000 Add abstract-impl.h: abstract base classes for D-Bus types that subclass int/float/long/str, with a variant_level attribute. _dbus_bindings/abstract-impl.h | 518 ++++++++++++++++++++++++++++++++++++++++ - 1 files changed, 518 insertions(+), 0 deletions(-) + 1 file changed, 518 insertions(+) commit ec4382fc301ddd60c4abfa0175e912880980de68 Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -6033,7 +6222,7 @@ Date: 2006-11-14 13:58:02 +0000 Add Glue_immutable_setattro, DEFINE_CHECK, UNUSED attribute. Remove generic repr() functions _dbus_bindings/generic-impl.h | 96 +++++++++-------------------------------- - 1 files changed, 21 insertions(+), 75 deletions(-) + 1 file changed, 21 insertions(+), 75 deletions(-) commit 3ab7a818a7a7a92a15de50ef848318ca61a6d2df Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -6078,7 +6267,7 @@ Date: 2006-10-05 17:36:25 +0100 test/test-standalone.py: Test API guarantee that integer types subclass int or long test/test-standalone.py | 8 ++++++++ - 1 files changed, 8 insertions(+), 0 deletions(-) + 1 file changed, 8 insertions(+) commit 6a9cafc90a31cf1d396b8a492fc1d618ef03dc65 Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -6086,8 +6275,8 @@ Date: 2006-10-02 15:28:00 +0100 test/cross-test-client.py: Add more workarounds for odd dbus-java behaviour. Compare InvertMapping results better. - test/cross-test-client.py | 75 ++++++++++++++++++++++++++++++++------------ - 1 files changed, 54 insertions(+), 21 deletions(-) + test/cross-test-client.py | 75 ++++++++++++++++++++++++++++++++------------- + 1 file changed, 54 insertions(+), 21 deletions(-) commit df50fee665eb68d27394123ca79475bd37a0c528 Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -6096,7 +6285,7 @@ Date: 2006-10-02 15:26:42 +0100 Produce debug output test/cross-test-server.py | 10 ++++++++-- - 1 files changed, 8 insertions(+), 2 deletions(-) + 1 file changed, 8 insertions(+), 2 deletions(-) commit 3ad6bd460e0addc46cb503984e6d9cf2868111f5 Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -6105,7 +6294,7 @@ Date: 2006-10-02 15:26:17 +0100 Use a temp variable to make crash debugging easier (although I now can't reproduce the crash...) _dbus_bindings/pending-call-impl.h | 8 +++++--- - 1 files changed, 5 insertions(+), 3 deletions(-) + 1 file changed, 5 insertions(+), 3 deletions(-) commit 8801e3159d5a5a048eb30bd030ecb5dbd16610f9 Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -6114,7 +6303,7 @@ Date: 2006-09-29 20:47:09 +0100 Make cross-test stricter by including extreme values for integers, etc. test/cross-test-client.py | 34 +++++++++++++++++++++++----------- - 1 files changed, 23 insertions(+), 11 deletions(-) + 1 file changed, 23 insertions(+), 11 deletions(-) commit 52336a79a623dc2674ce22965eb6f0b010078b5e Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -6123,7 +6312,7 @@ Date: 2006-09-29 20:46:13 +0100 When trying to validate an int64 it helps if you put it in a 64-bit variable. _dbus_bindings/types-impl.h | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) + 1 file changed, 1 insertion(+), 1 deletion(-) commit 0590a83202f27a98b8bb898876339a9b02a60896 Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -6167,7 +6356,7 @@ Date: 2006-09-28 15:59:17 +0100 setup.py: Remove "import extract" (no longer exists) setup.py | 4 ++-- - 1 files changed, 2 insertions(+), 2 deletions(-) + 1 file changed, 2 insertions(+), 2 deletions(-) commit fcd45af4aa4fd81454f1c8a8fa7b8b5790f44b54 Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -6197,7 +6386,7 @@ Date: 2006-09-27 14:26:44 +0100 test/test-client.py | 23 +++++++++++++++++++++++ test/test-service.py | 22 ++++++++++++++++++++++ test/test-standalone.py | 21 +++++++++++++++++++++ - 15 files changed, 341 insertions(+), 0 deletions(-) + 15 files changed, 341 insertions(+) commit 329dc1e985c5090bba889e8ac5543d47c6abb5e2 Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -6206,7 +6395,7 @@ Date: 2006-09-27 14:16:29 +0100 Put AUTHORS in the right order AUTHORS | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) + 1 file changed, 1 insertion(+), 1 deletion(-) commit 7aed1104ddafd10c708234189345c4696cc2759e Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -6215,7 +6404,7 @@ Date: 2006-09-27 13:50:07 +0100 dbus/extract.py: Remove (no longer used now we're not using Pyrex) dbus/extract.py | 245 ------------------------------------------------------- - 1 files changed, 0 insertions(+), 245 deletions(-) + 1 file changed, 245 deletions(-) commit b4d4ab76adabd4a8d0a14efa678c057f51d23431 Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -6224,10 +6413,10 @@ Date: 2006-09-27 13:30:49 +0100 Extend and correct docstrings. Set epydoc to expect reStructuredText by default. Makefile | 2 +- - _dbus_bindings/conn-methods-impl.h | 40 ++++++++++++++++++++----------- - _dbus_bindings/message-append-impl.h | 8 +++--- + _dbus_bindings/conn-methods-impl.h | 40 +++++++++++++++++++++----------- + _dbus_bindings/message-append-impl.h | 8 +++---- _dbus_bindings/message-get-args-impl.h | 38 +++++++++++++++--------------- - _dbus_bindings/validation-impl.h | 33 ++++++++++++++++--------- + _dbus_bindings/validation-impl.h | 33 ++++++++++++++++---------- 5 files changed, 71 insertions(+), 50 deletions(-) commit 78a7b67f03f9267fd47ab3686f971d1190cadf1a @@ -6237,7 +6426,7 @@ Date: 2006-09-27 13:03:26 +0100 Cast to PyCFunction to avoid compiler warning for function with kwargs _dbus_bindings/module.c | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) + 1 file changed, 1 insertion(+), 1 deletion(-) commit 274b4601130abb67b5b7f68de38c71ee7a64d3fb Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -6246,7 +6435,7 @@ Date: 2006-09-27 13:02:53 +0100 Correct argument parsing in validate_bus_name _dbus_bindings/validation-impl.h | 6 ++++-- - 1 files changed, 4 insertions(+), 2 deletions(-) + 1 file changed, 4 insertions(+), 2 deletions(-) commit b235e382198fc7599a2183a5b4cba10f650659bc Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -6255,7 +6444,7 @@ Date: 2006-09-27 13:00:58 +0100 setup.py: Remove _util from modules to install setup.py | 1 - - 1 files changed, 0 insertions(+), 1 deletions(-) + 1 file changed, 1 deletion(-) commit cdc40aa20b52b4a8e9910e8fe48824205b4e7591 Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -6267,8 +6456,8 @@ Date: 2006-09-27 12:50:06 +0100 _dbus_bindings/module.c | 9 ++++ _dbus_bindings/validation-impl.h | 91 ++++++++++++++++++++++++++++++++++++++ - dbus/_util.py | 13 ----- - dbus/decorators.py | 9 +++- + dbus/_util.py | 13 ------ + dbus/decorators.py | 9 ++-- 4 files changed, 106 insertions(+), 16 deletions(-) commit 9c7ee716288ffc80d1c931c84cc2b3242acf0b1e @@ -6278,7 +6467,7 @@ Date: 2006-09-27 12:47:55 +0100 Minor docstring correction _dbus_bindings/types-impl.h | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) + 1 file changed, 1 insertion(+), 1 deletion(-) commit 4c53d31fcc5b2f3a8e5578cae57e51db84a396fb Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -6287,7 +6476,7 @@ Date: 2006-09-27 12:47:27 +0100 _dbus_bindings/message-get-args-impl: Fix ByteArray unmarshalling. _dbus_bindings/message-get-args-impl.h | 4 +++- - 1 files changed, 3 insertions(+), 1 deletions(-) + 1 file changed, 3 insertions(+), 1 deletion(-) commit aa5cb1a66951705540a51645eb8efd3cbcf6788e Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -6296,7 +6485,7 @@ Date: 2006-09-27 12:45:58 +0100 dbus/_dbus.py: Now that Bus subclasses Connection, simplify signature of signal filter dbus/_dbus.py | 4 ++-- - 1 files changed, 2 insertions(+), 2 deletions(-) + 1 file changed, 2 insertions(+), 2 deletions(-) commit 747b2b9d37329796c4bf0bdaa1ca99e1d82d420d Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -6306,7 +6495,7 @@ Date: 2006-09-27 11:55:46 +0100 Fix ByteArray unmarshalling. test/test-standalone.py | 112 ++++++++++++++++++++++++++++++++++++++--------- - 1 files changed, 91 insertions(+), 21 deletions(-) + 1 file changed, 91 insertions(+), 21 deletions(-) commit de8aeda1687948230bb97fa4083744087356e738 Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -6315,7 +6504,7 @@ Date: 2006-09-27 11:01:18 +0100 .gitignore: Ignore MANIFEST, dist/ .gitignore | 2 ++ - 1 files changed, 2 insertions(+), 0 deletions(-) + 1 file changed, 2 insertions(+) commit a7bcad2d2239e28bb32ef7cfe74105c514a32ee5 Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -6324,7 +6513,7 @@ Date: 2006-09-27 11:00:35 +0100 _dbus_bindings/module.c: PEP7-style whitespace _dbus_bindings/module.c | 44 ++++++++++++++++++++++---------------------- - 1 files changed, 22 insertions(+), 22 deletions(-) + 1 file changed, 22 insertions(+), 22 deletions(-) commit 888110c46b864b613a3281e3d0bf76ed85b04b01 Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -6334,7 +6523,7 @@ Date: 2006-09-27 10:59:01 +0100 Also don't abort() if adding constants to the module fails. _dbus_bindings/module.c | 8 ++++++-- - 1 files changed, 6 insertions(+), 2 deletions(-) + 1 file changed, 6 insertions(+), 2 deletions(-) commit 552b7b4c997ea44de86f68e79341ecf323b9ead5 Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -6343,7 +6532,7 @@ Date: 2006-09-27 10:44:25 +0100 MANIFEST.in: Include added files, stop trying to include the Pyrex version MANIFEST.in | 11 ++++++----- - 1 files changed, 6 insertions(+), 5 deletions(-) + 1 file changed, 6 insertions(+), 5 deletions(-) commit 84be4d92f3f913f04941562ffb4cde5d21a63b37 Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -6353,7 +6542,7 @@ Date: 2006-09-27 10:43:21 +0100 Makefile | 2 +- setup.py | 1 - - 2 files changed, 1 insertions(+), 2 deletions(-) + 2 files changed, 1 insertion(+), 2 deletions(-) commit 78ce34da2c1cea65372b96505e21529d3896634f Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -6367,7 +6556,7 @@ Date: 2006-09-27 10:38:44 +0100 dbus/_dbus_bindings.pyx | 1820 ------------------------------------ dbus/_dbus_glib_bindings.pyx | 17 - dbus/dbus_h_wrapper.h | 3 - - 6 files changed, 0 insertions(+), 2032 deletions(-) + 6 files changed, 2032 deletions(-) commit 97d01a1d540e5ec31b752c31ad9f2b794eddf472 Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -6382,10 +6571,10 @@ Date: 2006-09-26 20:50:58 +0100 dbus/_dbus.py | 56 +++++--------------- dbus/decorators.py | 13 ++--- dbus/exceptions.py | 3 +- - dbus/proxies.py | 90 +++++++++++++++++++++----------- + dbus/proxies.py | 90 ++++++++++++++++++++------------ dbus/service.py | 82 +++++++++++++++-------------- dbus/types.py | 26 +++------- - setup.py | 25 ++------- + setup.py | 25 +++------ test/cross-test-client.py | 55 ++++++++++---------- test/cross-test-server.py | 11 +++- test/run-test.sh | 3 +- @@ -6413,7 +6602,7 @@ Date: 2006-09-26 19:30:58 +0100 a method get_args() returning a tuple. _dbus_bindings/message-get-args-impl.h | 16 +++++++--------- - 1 files changed, 7 insertions(+), 9 deletions(-) + 1 file changed, 7 insertions(+), 9 deletions(-) commit 24eb072bd8aabbc4d0f916b981e2283be0848e97 Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -6422,7 +6611,7 @@ Date: 2006-09-26 19:27:24 +0100 dbus/matchrules.py: Use absolute import dbus/matchrules.py | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) + 1 file changed, 1 insertion(+), 1 deletion(-) commit 97900c452754b832d0817edc03f3e00fe888d24a Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -6430,7 +6619,7 @@ Date: 2006-09-26 18:53:55 +0100 Add a C reimplementation of the formerly-Pyrex bits of dbus-python. - HACKING.txt | 35 + + HACKING.txt | 35 ++ _dbus_bindings/bus-impl.h | 415 +++++++++++++ _dbus_bindings/bytes-impl.h | 420 +++++++++++++ _dbus_bindings/conn-impl.h | 551 +++++++++++++++++ @@ -6448,10 +6637,10 @@ Date: 2006-09-26 18:53:55 +0100 _dbus_bindings/signature-impl.h | 238 +++++++ _dbus_bindings/test.py | 30 + _dbus_bindings/types-impl.h | 635 +++++++++++++++++++ - _dbus_bindings/validation-impl.h | 241 +++++++ + _dbus_bindings/validation-impl.h | 241 ++++++++ _dbus_glib_bindings/module.c | 74 +++ include/dbus_bindings.h | 64 ++ - 21 files changed, 7053 insertions(+), 0 deletions(-) + 21 files changed, 7053 insertions(+) commit 0a189b73baa8e7b1d1d7743534b635fabe1aaf80 Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -6460,7 +6649,7 @@ Date: 2006-09-26 18:43:04 +0100 Add Makefile rule to do a clean build (setup.py doesn't track .h dependencies properly) and make it the default Makefile | 4 ++++ - 1 files changed, 4 insertions(+), 0 deletions(-) + 1 file changed, 4 insertions(+) commit d1e74259da30f732ebf58057188478367b492840 Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -6469,7 +6658,7 @@ Date: 2006-09-26 18:42:16 +0100 Add self to AUTHORS AUTHORS | 1 + - 1 files changed, 1 insertions(+), 0 deletions(-) + 1 file changed, 1 insertion(+) commit 3b1b6ec26d55e08c4a9fbed12714913974f8e0c3 Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -6490,7 +6679,7 @@ Date: 2006-09-08 18:08:27 +0100 dbus/_dbus_bindings.pyx: More docstrings dbus/_dbus_bindings.pyx | 20 +++++++++++++++++--- - 1 files changed, 17 insertions(+), 3 deletions(-) + 1 file changed, 17 insertions(+), 3 deletions(-) commit 82c249159bbbfa1ad1d77d26b8e3a2f0615a80ee Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -6499,7 +6688,7 @@ Date: 2006-09-08 18:08:04 +0100 dbus/proxies.py: Set __docformat__ to 'restructuredtext' for epydoc dbus/proxies.py | 3 +++ - 1 files changed, 3 insertions(+), 0 deletions(-) + 1 file changed, 3 insertions(+) commit 3f77ab99f21400fbea5642affff2e8bc0c8faf28 Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -6508,7 +6697,7 @@ Date: 2006-09-08 18:07:23 +0100 dbus/_dbus.py: More docstrings dbus/_dbus.py | 30 ++++++++++++++++++++++++++++-- - 1 files changed, 28 insertions(+), 2 deletions(-) + 1 file changed, 28 insertions(+), 2 deletions(-) commit d65d0b6654b19522e250a6a4a361f06fa1ccd2d2 Author: Simon McVittie <smcv@celebrin.pseudorandom.co.uk> @@ -6544,8 +6733,8 @@ Date: 2006-09-06 13:30:13 +0100 * Add more docstrings and note methods which I don't think should be public. * When append_byte() fails, raise a more informative TypeError - dbus/_dbus_bindings.pyx | 64 +++++++++++++++++++++++++++++++++++++++++++++- - 1 files changed, 62 insertions(+), 2 deletions(-) + dbus/_dbus_bindings.pyx | 64 +++++++++++++++++++++++++++++++++++++++++++++-- + 1 file changed, 62 insertions(+), 2 deletions(-) commit e37b430efed0dcfa5ff6196046e0b4302b79662a Author: Simon McVittie <smcv@celebrin.(none)> @@ -6554,7 +6743,7 @@ Date: 2006-09-06 13:26:58 +0100 dbus/_dbus.py: Add exceptions to __all__ so they'll be imported into __init__ dbus/_dbus.py | 9 ++++++++- - 1 files changed, 8 insertions(+), 1 deletions(-) + 1 file changed, 8 insertions(+), 1 deletion(-) commit 99bd2cf0aad0f26cc41459be2c89256f226832f0 Author: Simon McVittie <smcv@celebrin.(none)> @@ -6563,7 +6752,7 @@ Date: 2006-09-06 13:26:24 +0100 dbus/__init__.py: Annotate __all__ with where the objects come from dbus/__init__.py | 9 +++++++-- - 1 files changed, 7 insertions(+), 2 deletions(-) + 1 file changed, 7 insertions(+), 2 deletions(-) commit c0574acbc663094fbb722cd6bdc97b02e7111100 Author: Simon McVittie <smcv@celebrin.(none)> @@ -6572,7 +6761,7 @@ Date: 2006-09-01 16:24:46 +0100 _dbus_bindings.pyx: Spell "negative" correctly dbus/_dbus_bindings.pyx | 6 +++--- - 1 files changed, 3 insertions(+), 3 deletions(-) + 1 file changed, 3 insertions(+), 3 deletions(-) commit cf1599248d81b848016672cc129a714095f5f11e Author: Simon McVittie <smcv@celebrin.(none)> @@ -6581,7 +6770,7 @@ Date: 2006-09-01 16:22:57 +0100 test/test-client.py: Rename dbus.dbus_bindings to _dbus_bindings in test too test/test-client.py | 8 ++++---- - 1 files changed, 4 insertions(+), 4 deletions(-) + 1 file changed, 4 insertions(+), 4 deletions(-) commit 9c4ad587bb237921ff49ac78581eb66a863e6105 Author: Simon McVittie <smcv@celebrin.(none)> @@ -6590,7 +6779,7 @@ Date: 2006-09-01 16:21:55 +0100 .gitignore: Add files generated during test .gitignore | 2 ++ - 1 files changed, 2 insertions(+), 0 deletions(-) + 1 file changed, 2 insertions(+) commit fc2c0c457100003c4b2c85d6202d75e796b89454 Author: Simon McVittie <smcv@celebrin.(none)> @@ -6599,7 +6788,7 @@ Date: 2006-09-01 16:14:21 +0100 _dbus_bindings.pyx: Remove no-op constructor overrides which just use superclass dbus/_dbus_bindings.pyx | 26 ++++---------------------- - 1 files changed, 4 insertions(+), 22 deletions(-) + 1 file changed, 4 insertions(+), 22 deletions(-) commit 188e54fd97c48d9183a16cc2373de62a60f36a39 Author: Simon McVittie <smcv@celebrin.(none)> @@ -6608,7 +6797,7 @@ Date: 2006-09-01 15:56:16 +0100 .gitignore: Amend for renaming of dbus_bindings .gitignore | 6 +++--- - 1 files changed, 3 insertions(+), 3 deletions(-) + 1 file changed, 3 insertions(+), 3 deletions(-) commit 10186487194e31889f0a255f7986577b169220ac Author: Simon McVittie <smcv@celebrin.(none)> @@ -6616,8 +6805,8 @@ Date: 2006-09-01 15:54:47 +0100 dbus._dbus, _dbus_bindings, dbus.proxies: Add docstrings - dbus/_dbus.py | 152 +++++++++++++++++++++++++++++++++++++++++++--- - dbus/_dbus_bindings.pyx | 110 ++++++++++++++++++++++++++++++++- + dbus/_dbus.py | 152 +++++++++++++++++++++++++++++++++++++++++++---- + dbus/_dbus_bindings.pyx | 110 ++++++++++++++++++++++++++++++++-- dbus/proxies.py | 39 ++++++++++++ 3 files changed, 287 insertions(+), 14 deletions(-) @@ -6628,7 +6817,7 @@ Date: 2006-08-31 18:14:40 +0100 Makefile: add. Makefile for developer convenience, currently does API documentation using epydoc Makefile | 9 +++++++++ - 1 files changed, 9 insertions(+), 0 deletions(-) + 1 file changed, 9 insertions(+) commit bb8600d38b16999d08950a03473f03d8705394bf Author: Simon McVittie <smcv@celebrin.(none)> @@ -6637,7 +6826,7 @@ Date: 2006-08-31 18:13:39 +0100 dbus._dbus: add __all__ dbus/_dbus.py | 1 + - 1 files changed, 1 insertions(+), 0 deletions(-) + 1 file changed, 1 insertion(+) commit 5098824725bc8984e4a84f2bede278648941960d Author: Simon McVittie <smcv@celebrin.(none)> @@ -6646,7 +6835,7 @@ Date: 2006-08-31 18:13:07 +0100 dbus.types: add __all__ dbus/types.py | 4 ++++ - 1 files changed, 4 insertions(+), 0 deletions(-) + 1 file changed, 4 insertions(+) commit 656bb219b37ac18ad9bc953ac9a2fb2b5fa6234d Author: Simon McVittie <smcv@celebrin.(none)> @@ -6655,7 +6844,7 @@ Date: 2006-08-31 18:09:23 +0100 dbus/__init__.py: Add __all__ (listing a sensible set of public API), __docformat__, __version__ dbus/__init__.py | 19 ++++++++++++++++--- - 1 files changed, 16 insertions(+), 3 deletions(-) + 1 file changed, 16 insertions(+), 3 deletions(-) commit aac6f58ae96faab86e6080702d2dac2bd3a69d66 Author: Simon McVittie <smcv@celebrin.(none)> @@ -6689,11 +6878,11 @@ Date: 2006-08-30 20:15:07 +0100 Add some docstrings (reStructuredText with epydoc annotations) - dbus/__init__.py | 9 +++++++ - dbus/_dbus.py | 35 ++++++++++++++------------- - dbus/decorators.py | 44 +++++++++++++++++++++++++++++++++++ - dbus/exceptions.py | 7 +++++ - dbus/service.py | 64 +++++++++++++++++++++++++++++++++++++++++++++++++-- + dbus/__init__.py | 9 ++++++++ + dbus/_dbus.py | 35 ++++++++++++++-------------- + dbus/decorators.py | 44 ++++++++++++++++++++++++++++++++++++ + dbus/exceptions.py | 7 ++++++ + dbus/service.py | 64 +++++++++++++++++++++++++++++++++++++++++++++++++--- 5 files changed, 139 insertions(+), 20 deletions(-) commit 00435b5adc76a745e17b13386d15a2a1d6b2bb16 @@ -6703,7 +6892,7 @@ Date: 2006-08-30 20:12:08 +0100 .gitignore: Add. Ignore distutils build dir, Python bytecode, Vim swapfiles, and generated ChangeLog, .pxd and .c files. .gitignore | 8 ++++++++ - 1 files changed, 8 insertions(+), 0 deletions(-) + 1 file changed, 8 insertions(+) commit 1b1d5b77a841e68043fd1f27900b7b97b4610b33 Author: John (J5) Palmieri <johnp@remedyz.boston.redhat.com> @@ -6713,7 +6902,7 @@ Date: 2006-07-27 14:00:14 -0400 <alex at weej dot com> - Add flags when requesting a name dbus/service.py | 9 +++++++-- - 1 files changed, 7 insertions(+), 2 deletions(-) + 1 file changed, 7 insertions(+), 2 deletions(-) commit eae6cd4e466d9d6dd477cf0bb5ef2b183f4c69f9 Author: John (J5) Palmieri <johnp@remedyz.boston.redhat.com> @@ -6722,7 +6911,7 @@ Date: 2006-07-27 13:57:56 -0400 * setup.py: read the stdout pipe before stderr setup.py | 6 +++--- - 1 files changed, 3 insertions(+), 3 deletions(-) + 1 file changed, 3 insertions(+), 3 deletions(-) commit f5258f571de77b18354e17073d44f316d1e0af1b Author: John (J5) Palmieri <johnp@remedyz.boston.redhat.com> @@ -6732,7 +6921,7 @@ Date: 2006-07-27 12:40:36 -0400 flag. We check for an error and if so revert to just calling git-log setup.py | 20 +++++++++++++++----- - 1 files changed, 15 insertions(+), 5 deletions(-) + 1 file changed, 15 insertions(+), 5 deletions(-) commit 49948f1f9554b4431d668992b4953ff09962149f Author: John (J5) Palmieri <johnp@remedyz.boston.redhat.com> @@ -6753,7 +6942,7 @@ Date: 2006-07-24 14:05:26 -0400 setup.py | 25 +++++++++++++++++++++++++ test/run-test.sh | 1 - - 2 files changed, 25 insertions(+), 1 deletions(-) + 2 files changed, 25 insertions(+), 1 deletion(-) commit 5f76b5a3eec271192e9657213c6693121c3d8df9 Author: John (J5) Palmieri <johnp@redhat.com> @@ -6762,7 +6951,7 @@ Date: 2006-07-21 17:17:46 -0400 * fix import of dbus_bindings test/test-client.py | 6 +++--- - 1 files changed, 3 insertions(+), 3 deletions(-) + 1 file changed, 3 insertions(+), 3 deletions(-) commit 163206f228efad53051677a08d3813fcc5d0ab97 Author: John (J5) Palmieri <johnp@redhat.com> @@ -6771,7 +6960,7 @@ Date: 2006-07-21 16:42:54 -0400 * Automate building of ChangeLog setup.py | 18 ++++++++++++++++++ - 1 files changed, 18 insertions(+), 0 deletions(-) + 1 file changed, 18 insertions(+) commit f262d88279991faba06578dde48d0c607ce4b0b8 Author: John (J5) Palmieri <johnp@redhat.com> @@ -6780,7 +6969,7 @@ Date: 2006-07-21 16:27:59 -0400 * fixed where the binary modules are installed into setup.py | 4 ++-- - 1 files changed, 2 insertions(+), 2 deletions(-) + 1 file changed, 2 insertions(+), 2 deletions(-) commit 7d73bb0ea7631ce1191de1cd6fbbcb07fe215f31 Author: John (J5) Palmieri <johnp@redhat.com> @@ -6791,7 +6980,7 @@ Date: 2006-07-17 16:58:42 -0400 MANIFEST.in | 2 ++ NEWS | 6 ++++++ - 2 files changed, 8 insertions(+), 0 deletions(-) + 2 files changed, 8 insertions(+) commit 8728a13fa422955aa96bf2d8644af773407dbe65 Author: John (J5) Palmieri <johnp@redhat.com> @@ -6799,7 +6988,7 @@ Date: 2006-07-17 16:43:42 -0400 * remove ChangeLog as it will be generated by git-whatchanged - 0 files changed, 0 insertions(+), 0 deletions(-) + 0 files changed commit caaabe86ac7a91c84d022c5806e67a42617fa566 Author: John (J5) Palmieri <quinticent@phuket.(none)> @@ -6808,7 +6997,7 @@ Date: 2006-07-14 12:52:53 -0400 * Add Osvaldo S. Neto to AUTHORS for his distutils patch AUTHORS | 1 + - 1 files changed, 1 insertions(+), 0 deletions(-) + 1 file changed, 1 insertion(+) commit 4b1d99c3fbf0d402cb7badbcb8e6ea682f7e54c6 Author: John (J5) Palmieri <quinticent@phuket.(none)> @@ -6818,7 +7007,7 @@ Date: 2006-07-12 21:40:13 -0400 added the tools directory MANIFEST.in | 1 + - 1 files changed, 1 insertions(+), 0 deletions(-) + 1 file changed, 1 insertion(+) commit 9c70ef78b9368b5fd090dd3aafb3f189cc88616d Author: John (J5) Palmieri <quinticent@phuket.(none)> @@ -6828,7 +7017,7 @@ Date: 2006-07-12 21:32:57 -0400 create the .service file before we launch dbus test/run-test.sh | 17 ++++++++--------- - 1 files changed, 8 insertions(+), 9 deletions(-) + 1 file changed, 8 insertions(+), 9 deletions(-) commit 7a0389c01ac8c775b7b677bcc20cc0da716b1c19 Author: John (J5) Palmieri <quinticent@phuket.(none)> @@ -6856,7 +7045,7 @@ Date: 2006-07-12 18:11:07 -0400 MANIFEST.in | 11 +++++++++++ setup.py | 2 +- - 2 files changed, 12 insertions(+), 1 deletions(-) + 2 files changed, 12 insertions(+), 1 deletion(-) commit c72e8df76cda925d0bac0e99af94a4d3760e74b1 Author: John (J5) Palmieri <quinticent@phuket.(none)> @@ -6867,7 +7056,7 @@ Date: 2006-07-12 17:34:58 -0400 need to get the system's header files dbus/dbus_glib_bindings.pyx | 4 ++-- - 1 files changed, 2 insertions(+), 2 deletions(-) + 1 file changed, 2 insertions(+), 2 deletions(-) commit 98bdb18235a405339041596c571f213ea5fa3c24 Author: John (J5) Palmieri <quinticent@phuket.(none)> @@ -6876,7 +7065,7 @@ Date: 2006-07-12 17:29:04 -0400 - s/dbus/-Idbus\// in includedirs_flag setup.py | 6 +++--- - 1 files changed, 3 insertions(+), 3 deletions(-) + 1 file changed, 3 insertions(+), 3 deletions(-) commit 82a4e8afb8ca163416f602fdb1df96b11765ecb2 Author: Robert McQueen <robot101@thubuntu.(none)> @@ -6898,7 +7087,7 @@ Date: 2006-07-12 19:40:37 +0100 dbus/__init__.py: Set version to 0.70. dbus/__init__.py | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) + 1 file changed, 1 insertion(+), 1 deletion(-) commit fb63da94f9e207e807f7f0ae18425d3b73173d43 Author: Robert McQueen <robot101@thubuntu.(none)> @@ -6907,8 +7096,8 @@ Date: 2006-07-12 19:28:30 +0100 dbus/Makefile.am, dbus/examples/Makefile.am: removed dbus/Makefile.am | 56 --------------------------------------------- - dbus/examples/Makefile.am | 13 ---------- - 2 files changed, 0 insertions(+), 69 deletions(-) + dbus/examples/Makefile.am | 13 ----------- + 2 files changed, 69 deletions(-) commit cc9eb8989a5782f62f8ca786d76e1267e48ec8bf Author: Robert McQueen <robot101@thubuntu.(none)> @@ -6983,7 +7172,7 @@ Date: 2006-07-12 19:25:47 +0100 COPYING: Have the file with its contents and not a file full of NULLs (thanks XFS) COPYING | Bin 29056 -> 29056 bytes - 1 files changed, 0 insertions(+), 0 deletions(-) + 1 file changed, 0 insertions(+), 0 deletions(-) commit 85ef4b2f21a67fa6f8ebb7977fc62a69208d86fe Author: Robert McQueen <robot101@thubuntu.(none)> @@ -6993,7 +7182,7 @@ Date: 2006-07-12 19:24:09 +0100 AUTHORS | 16 ++++++++++++++++ COPYING | Bin 0 -> 29056 bytes - 2 files changed, 16 insertions(+), 0 deletions(-) + 2 files changed, 16 insertions(+) commit 7d136b1b7749b9d52703f00f546524a8967aeebc Author: John (J5) Palmieri <johnp@redhat.com> @@ -7005,7 +7194,7 @@ Date: 2006-03-02 23:28:18 +0000 (Patch from Artem Kachitchkine <Artem.Kachitchkin at Sun.COM>) python/dbus_bindings.pyx | 3 --- - 1 files changed, 0 insertions(+), 3 deletions(-) + 1 file changed, 3 deletions(-) commit 6387ac0ee38cbc2c613f1ec6b481693451e6a1d6 Author: John (J5) Palmieri <johnp@redhat.com> @@ -7020,7 +7209,7 @@ Date: 2006-02-24 18:18:41 +0000 * proxies.py: Fix the callchain python/proxies.py | 96 +++++++++++++++++++++++++---------------------------- - 1 files changed, 45 insertions(+), 51 deletions(-) + 1 file changed, 45 insertions(+), 51 deletions(-) commit 7ce7ad66afac2b35ddab72190d31c8470a2e4d2d Author: Robert McQueen <robot101@debian.org> @@ -7055,7 +7244,7 @@ Date: 2005-12-06 12:38:07 +0000 and reading from the same variable. Oops. python/service.py | 8 ++++---- - 1 files changed, 4 insertions(+), 4 deletions(-) + 1 file changed, 4 insertions(+), 4 deletions(-) commit e48f4d56533ef815d05e05b31128e53640bd7ded Author: Robert McQueen <robot101@debian.org> @@ -7072,7 +7261,7 @@ Date: 2005-11-27 17:44:19 +0000 values. python/dbus_bindings.pyx | 22 ++++++++++++++++------ - 1 files changed, 16 insertions(+), 6 deletions(-) + 1 file changed, 16 insertions(+), 6 deletions(-) commit b5df8fdfae7b488156cef4ccc536523bfb892895 Author: Robert McQueen <robot101@debian.org> @@ -7084,7 +7273,7 @@ Date: 2005-11-27 16:55:09 +0000 method return message for property getters python/dbus_bindings.pyx | 8 ++------ - 1 files changed, 2 insertions(+), 6 deletions(-) + 1 file changed, 2 insertions(+), 6 deletions(-) commit e9046cf6eabcc6e9f86e6dc8cb73a0b28ccc3347 Author: Robert McQueen <robot101@debian.org> @@ -7147,7 +7336,7 @@ Date: 2005-11-14 20:59:32 +0000 send an exception over the bus. _BEST_ _PATCH_ _EVER_ python/service.py | 4 +++- - 1 files changed, 3 insertions(+), 1 deletions(-) + 1 file changed, 3 insertions(+), 1 deletion(-) commit 321ace3a0cf031e638bba1d753818ac068672dee Author: Robert McQueen <robot101@debian.org> @@ -7165,7 +7354,7 @@ Date: 2005-11-14 02:53:29 +0000 python/decorators.py | 6 +++++- python/service.py | 4 ++++ - 2 files changed, 9 insertions(+), 1 deletions(-) + 2 files changed, 9 insertions(+), 1 deletion(-) commit cb37041d6ffeab9e7623dd7c51acc64cbaa7534d Author: Robert McQueen <robot101@debian.org> @@ -7224,9 +7413,9 @@ Date: 2005-11-07 12:14:52 +0000 * test/python/test-client.py: Add tests for instance caching of buses and bus name objects. - python/_dbus.py | 75 +++++++++++++++++++++++++++++++++------------ - python/dbus_bindings.pyx | 9 ++++- - python/service.py | 62 ++++++++++++++++++++++++++++++++------ + python/_dbus.py | 75 +++++++++++++++++++++++++++++++++------------- + python/dbus_bindings.pyx | 9 ++++-- + python/service.py | 62 +++++++++++++++++++++++++++++++------- 3 files changed, 114 insertions(+), 32 deletions(-) commit c6d4440b37c43681a4ecf11edfa5a4b0371734ea @@ -7283,8 +7472,8 @@ Date: 2005-11-03 21:47:31 +0000 async callback tests, rather than passing them to the low-level bindings to be ignored in a noisy and frustrating manner. - python/service.py | 252 +++++++++++++++++++++++++++++----------------------- - 1 files changed, 140 insertions(+), 112 deletions(-) + python/service.py | 252 +++++++++++++++++++++++++++++------------------------ + 1 file changed, 140 insertions(+), 112 deletions(-) commit b4a92c736cb37f2daba25283e830615dcf7137e8 Author: Robert McQueen <robot101@debian.org> @@ -7340,8 +7529,8 @@ Date: 2005-10-29 22:41:07 +0000 case to try invoking an method that overrides one inherited from a D-Bus interface class. - python/service.py | 234 ++++++++++++++++++++++++++++++++-------------------- - 1 files changed, 144 insertions(+), 90 deletions(-) + python/service.py | 234 ++++++++++++++++++++++++++++++++--------------------- + 1 file changed, 144 insertions(+), 90 deletions(-) commit f14661ee73a5efc92dfcbe22e4230dab153a4d69 Author: Robert McQueen <robot101@debian.org> @@ -7362,12 +7551,12 @@ Date: 2005-10-29 22:04:01 +0000 obsolete and broken test scripts for old bindings. We have up to date and working tests in test/python/. - python/dbus_bindings.pyx | 10 ++- + python/dbus_bindings.pyx | 10 ++-- python/examples/example-service.py | 6 +- python/examples/gconf-proxy-service.py | 5 +- python/examples/gconf-proxy-service2.py | 5 +- python/tests/test-client.py | 100 ------------------------------- - python/tests/test-server.py | 17 ----- + python/tests/test-server.py | 17 ------ 6 files changed, 15 insertions(+), 128 deletions(-) commit a10facab362212f630b4fc3191a711523ed367b1 @@ -7399,7 +7588,7 @@ Date: 2005-10-29 19:13:17 +0000 python/dbus_bindings.pyx | 119 ++++++++++++++++++++++++++++------------------ python/decorators.py | 12 +++-- - python/proxies.py | 11 ++-- + python/proxies.py | 11 ++--- python/service.py | 43 +++++++++++++++-- 4 files changed, 124 insertions(+), 61 deletions(-) @@ -7491,7 +7680,7 @@ Date: 2005-10-13 23:34:11 +0000 the key to None python/service.py | 10 +++++----- - 1 files changed, 5 insertions(+), 5 deletions(-) + 1 file changed, 5 insertions(+), 5 deletions(-) commit fb3300cea133630f45d13776a66dcbbd71c46d97 Author: John (J5) Palmieri <johnp@redhat.com> @@ -7502,7 +7691,7 @@ Date: 2005-10-13 23:26:00 +0000 signal tag even when there are no arguments python/service.py | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) + 1 file changed, 1 insertion(+), 1 deletion(-) commit 137d6a5121de6ae44a37ca99c5519c4300cc9dea Author: John (J5) Palmieri <johnp@redhat.com> @@ -7511,7 +7700,7 @@ Date: 2005-10-06 04:43:52 +0000 * actualy add the introspection parser to CVS :-) python/introspect_parser.py | 50 +++++++++++++++++++++++++++++++++++++++++++ - 1 files changed, 50 insertions(+), 0 deletions(-) + 1 file changed, 50 insertions(+) commit 423589e748db1783cbce03452e5fe5685b83f750 Author: John (J5) Palmieri <johnp@redhat.com> @@ -7559,10 +7748,10 @@ Date: 2005-10-05 20:43:46 +0000 allows us to test the robustness of the GLib bindings and interlanguage communications. - python/Makefile.am | 13 +++- + python/Makefile.am | 13 ++- python/dbus_bindings.pyx | 197 +++++++++++++++++++++++++++++++++++++--------- python/exceptions.py | 4 + - python/proxies.py | 75 ++++++++++++++--- + python/proxies.py | 75 ++++++++++++++---- python/service.py | 3 +- 5 files changed, 239 insertions(+), 53 deletions(-) @@ -7572,8 +7761,8 @@ Date: 2005-09-26 22:12:17 +0000 * dbus/Python.pyx: Fixed memory leaks when throwing errors. We now copy the message from a DBusError and then free the error object befor throwing the error - python/dbus_bindings.pyx | 54 ++++++++++++++++++++++++++++++++------------- - 1 files changed, 38 insertions(+), 16 deletions(-) + python/dbus_bindings.pyx | 54 ++++++++++++++++++++++++++++++++-------------- + 1 file changed, 38 insertions(+), 16 deletions(-) commit 583a8acad47cf49f9e28d8f7360f8bb1a409e0d4 Author: John (J5) Palmieri <johnp@redhat.com> @@ -7582,7 +7771,7 @@ Date: 2005-09-06 22:42:54 +0000 - update to next release version python/__init__.py | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) + 1 file changed, 1 insertion(+), 1 deletion(-) commit 8f6b65becb2183f68e5c923854c4b5946a40dbfd Author: John (J5) Palmieri <johnp@redhat.com> @@ -7619,7 +7808,7 @@ Date: 2005-09-06 22:38:54 +0000 * python/__init__.py: Sync version with libdbus to (0,50,0) python/__init__.py | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) + 1 file changed, 1 insertion(+), 1 deletion(-) commit c9ce6ac673fef6ca5189480d73b542e7f2c283f3 Author: John (J5) Palmieri <johnp@redhat.com> @@ -7683,7 +7872,7 @@ Date: 2005-08-31 02:18:43 +0000 the lock is released. python/dbus_bindings.pyx | 110 +++++++++++++++++++++++++++------------------- - 1 files changed, 65 insertions(+), 45 deletions(-) + 1 file changed, 65 insertions(+), 45 deletions(-) commit ccba1a75d274300215ac3b8eb06792c06679de55 Author: John (J5) Palmieri <johnp@redhat.com> @@ -7692,7 +7881,7 @@ Date: 2005-08-30 15:21:04 +0000 * python/dbus_bindings.pyx (_pending_call_notification): Obtain the GIL global lock when calling back into Python python/dbus_bindings.pyx | 25 +++++++++++++++---------- - 1 files changed, 15 insertions(+), 10 deletions(-) + 1 file changed, 15 insertions(+), 10 deletions(-) commit 780a08253b6e9ac0270d50cb0498cb7085bd05a2 Author: John (J5) Palmieri <johnp@redhat.com> @@ -7705,7 +7894,7 @@ Date: 2005-08-26 04:23:33 +0000 get picked up from the system python/dbus_bindings.pyx | 13 ++++++++----- - 1 files changed, 8 insertions(+), 5 deletions(-) + 1 file changed, 8 insertions(+), 5 deletions(-) commit 068820cbec569f14277f0dc52e4219ad123bed24 Author: John (J5) Palmieri <johnp@redhat.com> @@ -7738,7 +7927,7 @@ Date: 2005-08-23 17:43:59 +0000 of defining DBusConnection ourselves. python/dbus_glib_bindings.pyx | 12 +++++------- - 1 files changed, 5 insertions(+), 7 deletions(-) + 1 file changed, 5 insertions(+), 7 deletions(-) commit 0caa747c4dac110d7a1550cfcded41c03d5bf4f7 Author: John (J5) Palmieri <johnp@redhat.com> @@ -7750,7 +7939,7 @@ Date: 2005-08-18 20:57:28 +0000 python/Makefile.am | 3 +++ python/dbus.pth | 1 + - 2 files changed, 4 insertions(+), 0 deletions(-) + 2 files changed, 4 insertions(+) commit 53aee6867499fb4b2135ed06dd5c4c6cd96058e0 Author: John (J5) Palmieri <johnp@redhat.com> @@ -7939,7 +8128,7 @@ Date: 2005-07-15 20:28:05 +0000 compiler looks in the right places during distcheck python/Makefile.am | 10 +++++----- - 1 files changed, 5 insertions(+), 5 deletions(-) + 1 file changed, 5 insertions(+), 5 deletions(-) commit dc94fa7e3cd71c0dd29b4899bb0d956dc4019b34 Author: John (J5) Palmieri <johnp@redhat.com> @@ -7958,7 +8147,7 @@ Date: 2005-07-15 17:33:17 +0000 * python/__init__.py: Upped to version (0,42,0) because of the API change python/__init__.py | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) + 1 file changed, 1 insertion(+), 1 deletion(-) commit 96a7dee3c739e4c5eb6b18cc093bec41bb42da35 Author: John (J5) Palmieri <johnp@redhat.com> @@ -7975,7 +8164,7 @@ Date: 2005-07-15 15:21:43 +0000 * doc/TODO: remove sending message to oneself TODO item python/service.py | 4 ++-- - 1 files changed, 2 insertions(+), 2 deletions(-) + 1 file changed, 2 insertions(+), 2 deletions(-) commit 557f47a57fed5a5b4e56677ed0cf5ae8f2987536 Author: John (J5) Palmieri <johnp@redhat.com> @@ -8122,8 +8311,8 @@ Date: 2005-06-28 19:36:51 +0000 * python/dbus_bindings.pyx.in (cunregister_function_handler, cmessage_function_handler): Patch from Anthony Baxter <anthony@interlink.com.au> fixes threading problems by using the Py_GILState_Ensure/Release to synchronize with the python runtime. - python/dbus_bindings.pyx.in | 60 +++++++++++++++++++++++++----------------- - 1 files changed, 36 insertions(+), 24 deletions(-) + python/dbus_bindings.pyx.in | 60 ++++++++++++++++++++++++++----------------- + 1 file changed, 36 insertions(+), 24 deletions(-) commit b9ef3eaf17a91f258af17c6e9ae8acb23eb7b411 Author: Colin Walters <walters@verbum.org> @@ -8142,7 +8331,7 @@ Date: 2005-06-16 05:51:46 +0000 Patch from Joe Markus Clarke for FreeBSD support. python/dbus_bindings.pyx.in | 8 ++++++++ - 1 files changed, 8 insertions(+), 0 deletions(-) + 1 file changed, 8 insertions(+) commit 4a8fc73472c80880c0c6c5cf1401f3ab9817965f Author: Colin Walters <walters@verbum.org> @@ -8333,7 +8522,7 @@ Date: 2005-06-13 03:01:17 +0000 * test/glib/test-dbus-glib.c: Add many more tests. python/Makefile.am | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) + 1 file changed, 1 insertion(+), 1 deletion(-) commit fc5d7298d72e20bfc3e209e44e6791643a838f49 Author: John (J5) Palmieri <johnp@redhat.com> @@ -8342,7 +8531,7 @@ Date: 2005-05-24 16:34:38 +0000 * python/__init__.py: Python bindings deserve a minor version update. Upped to (0, 40, 2) python/__init__.py | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) + 1 file changed, 1 insertion(+), 1 deletion(-) commit abd0204928614dc1d36125e9d3634c25e068af59 Author: John (J5) Palmieri <johnp@redhat.com> @@ -8381,7 +8570,7 @@ Date: 2005-05-24 00:21:07 +0000 use new match classes to handle signals. python/Makefile.am | 2 +- - python/_dbus.py | 69 +++++------- + python/_dbus.py | 69 +++++------ python/decorators.py | 10 +- python/examples/example-signal-emitter.py | 8 +- python/examples/example-signal-recipient.py | 4 +- @@ -8395,7 +8584,7 @@ Date: 2005-05-19 20:27:19 +0000 - s/TYPE_PATH/TYPE_OBJECT_PATH python/dbus_bindings.pyx.in | 4 ++-- - 1 files changed, 2 insertions(+), 2 deletions(-) + 1 file changed, 2 insertions(+), 2 deletions(-) commit 3979e97cf4245f720aed1764009a5d1fa875f595 Author: John (J5) Palmieri <johnp@redhat.com> @@ -8427,7 +8616,7 @@ Date: 2005-05-05 18:27:34 +0000 the bus (Bug#1685 comment 3). python/proxies.py | 2 ++ - 1 files changed, 2 insertions(+), 0 deletions(-) + 1 file changed, 2 insertions(+) commit 933695891ea748308d76faaab23bc548c585b7b8 Author: John (J5) Palmieri <johnp@redhat.com> @@ -8473,7 +8662,7 @@ Date: 2005-05-01 19:34:58 +0000 python/_dbus.py | 219 +++++++++++ python/_util.py | 12 + python/dbus.py | 562 --------------------------- - python/dbus_bindings.pyx.in | 146 +++++++- + python/dbus_bindings.pyx.in | 146 ++++++- python/decorators.py | 37 ++ python/examples/example-service.py | 2 + python/examples/example-signal-emitter.py | 2 + @@ -8534,7 +8723,7 @@ Date: 2005-03-29 17:01:43 +0000 * python/Makefile.am: removed refrences to lvalue_cast_post_process.py - python/Makefile.am | 7 +-- + python/Makefile.am | 7 +--- python/lvalue_cast_post_process.py | 80 ------------------------------------ 2 files changed, 2 insertions(+), 85 deletions(-) @@ -8548,7 +8737,7 @@ Date: 2005-03-21 21:13:56 +0000 run dbus_bindings.c through lvalue_cast_post_process.py and copy the results back to dbus_binding.c - python/Makefile.am | 7 ++- + python/Makefile.am | 7 +++- python/lvalue_cast_post_process.py | 80 ++++++++++++++++++++++++++++++++++++ 2 files changed, 85 insertions(+), 2 deletions(-) @@ -8561,7 +8750,7 @@ Date: 2005-02-23 19:36:24 +0000 s/dbus_pending_call_get_reply/dbus_pending_call_steal_reply python/dbus_bindings.pyx.in | 4 +++- - 1 files changed, 3 insertions(+), 1 deletions(-) + 1 file changed, 3 insertions(+), 1 deletion(-) commit 4940b112efc417868f567d885e36297e14e43244 Author: John (J5) Palmieri <johnp@redhat.com> @@ -8669,7 +8858,7 @@ Date: 2004-12-30 18:28:03 +0000 * python/dbus.py: s/ACTIVATION_REPLY_ACTIVE/ACTIVATION_REPLY_ACTIVATED python/dbus.py | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) + 1 file changed, 1 insertion(+), 1 deletion(-) commit 32e2f57ac99f528d159b68b8dfafc74c39a3c4cc Author: John (J5) Palmieri <johnp@redhat.com> @@ -8683,7 +8872,7 @@ Date: 2004-12-30 14:19:53 +0000 autogenerated. python/dbus_bindings.pyx.in | 5 +++-- - 1 files changed, 3 insertions(+), 2 deletions(-) + 1 file changed, 3 insertions(+), 2 deletions(-) commit 01740aa1f3c4c2cecdf37a3c043a42d0dbffc773 Author: John (J5) Palmieri <johnp@redhat.com> @@ -8699,7 +8888,7 @@ Date: 2004-12-27 16:01:13 +0000 python/dbus.py | 7 +++++++ python/dbus_bindings.pyx.in | 16 ++++++++++++++++ - 2 files changed, 23 insertions(+), 0 deletions(-) + 2 files changed, 23 insertions(+) commit f33050956dca770af4d188768bcd8537a1686d45 Author: John (J5) Palmieri <johnp@redhat.com> @@ -8721,7 +8910,7 @@ Date: 2004-09-16 19:56:26 +0000 * python/dbus_bindings.pyx.in: Add support for int64 and uint64 python/dbus_bindings.pyx.in | 66 ++++++++++++++++++++++++++++++++++++++++++- - 1 files changed, 65 insertions(+), 1 deletions(-) + 1 file changed, 65 insertions(+), 1 deletion(-) commit 6e5b6a98a792653e9248767be746a031e851cb84 Author: Anders Carlsson <andersca@gnome.org> @@ -8736,7 +8925,7 @@ Date: 2004-07-28 18:14:55 +0000 python/dbus.py | 13 ++++++++++++- python/dbus_bindings.pyx.in | 4 ++++ - 2 files changed, 16 insertions(+), 1 deletions(-) + 2 files changed, 16 insertions(+), 1 deletion(-) commit bac1c708b7ae971bf96500161f56edec4120ad3b Author: Seth Nickell <seth@gnome.org> @@ -8792,7 +8981,7 @@ Date: 2004-07-11 03:09:03 +0000 Fix distcheck breakage caused by new examples. python/examples/Makefile.am | 17 +++++++++-------- - 1 files changed, 9 insertions(+), 8 deletions(-) + 1 file changed, 9 insertions(+), 8 deletions(-) commit e386459734ff05d09c43d50b8623659512d36975 Author: Seth Nickell <seth@gnome.org> @@ -8827,10 +9016,10 @@ Date: 2004-07-11 03:02:14 +0000 python/dbus.py | 91 ++++++++++++++++++--------- python/examples/example-service.py | 2 +- - python/examples/example-signal-emitter.py | 18 +++++ + python/examples/example-signal-emitter.py | 18 ++++++ python/examples/example-signal-recipient.py | 19 ++++++ python/examples/example-signals.py | 27 -------- - python/examples/gconf-proxy-service.py | 8 +- + python/examples/gconf-proxy-service.py | 8 +-- python/examples/gconf-proxy-service2.py | 2 +- 7 files changed, 104 insertions(+), 63 deletions(-) @@ -8841,7 +9030,7 @@ Date: 2004-06-23 14:59:43 +0000 * switched include directory from glib/ to dbus/ since dbus-glib.h moved python/Makefile.am | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) + 1 file changed, 1 insertion(+), 1 deletion(-) commit 3ba6699d5e975a50693807268923bda69a15773a Author: Owen Fraser-Green <owen@discobabe.net> @@ -8850,7 +9039,7 @@ Date: 2004-06-10 12:13:39 +0000 Fixed typo for python/examples make python/examples/Makefile.am | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) + 1 file changed, 1 insertion(+), 1 deletion(-) commit 5e41974dd9ea8db84985ff5b31d3ea525fbf0947 Author: John (J5) Palmieri <johnp@redhat.com> @@ -8859,7 +9048,7 @@ Date: 2004-06-08 02:35:43 +0000 * Python bindings are updated to reflect C API changes which now accept plain path strings instead of an array of path elements. python/dbus_bindings.pyx.in | 35 +++-------------------------------- - 1 files changed, 3 insertions(+), 32 deletions(-) + 1 file changed, 3 insertions(+), 32 deletions(-) commit e29bd0928368c6303209b6a2a4ea1ed749f6e58f Author: Seth Nickell <seth@gnome.org> @@ -8869,7 +9058,7 @@ Date: 2004-06-01 06:16:13 +0000 python/.cvsignore | 6 ++++++ python/examples/.cvsignore | 2 ++ - 2 files changed, 8 insertions(+), 0 deletions(-) + 2 files changed, 8 insertions(+) commit 22ac6379fbc251ac40e1635353e2b83676f6ea66 Author: Seth Nickell <seth@gnome.org> @@ -8902,8 +9091,8 @@ Date: 2004-06-01 01:20:59 +0000 (fix string array memory trashing bug... oops) - python/dbus_bindings.pyx.in | 82 ++++++++++++++++++++++++++++++++++++------ - python/tests/test-client.py | 20 +++++++++- + python/dbus_bindings.pyx.in | 82 ++++++++++++++++++++++++++++++++++++------- + python/tests/test-client.py | 20 +++++++++-- 2 files changed, 88 insertions(+), 14 deletions(-) commit 897be0d7a55449df0fb97b1126afecbb6906c083 @@ -8934,7 +9123,7 @@ Date: 2004-05-30 08:20:58 +0000 Reverse the argument order to deal with dbus.Object constructor changes. - python/dbus.py | 52 ++++++++++++++++++++++-------- + python/dbus.py | 52 ++++++++++++++++++++++--------- python/examples/Makefile.am | 1 + python/examples/example-service.py | 2 +- python/examples/gconf-proxy-service.py | 42 ++++++++++--------------- @@ -8996,8 +9185,8 @@ Date: 2004-05-30 05:30:09 +0000 Add tests that check to make sure values of all types can be echoed from a service w/o mangling. - python/dbus.py | 58 +++++++++++++++++--------------------- - python/dbus_bindings.pyx.in | 66 +++++++++++++++++++++++++++++++++++------- + python/dbus.py | 58 +++++++++++++++++-------------------- + python/dbus_bindings.pyx.in | 66 +++++++++++++++++++++++++++++++++++-------- python/tests/test-client.py | 28 ++++++++++++++++++ python/tests/test-server.py | 17 +++++++++++ 4 files changed, 126 insertions(+), 43 deletions(-) @@ -9022,10 +9211,10 @@ Date: 2004-05-30 02:26:48 +0000 get/set on string and int GConf keys using the ObjectTree. python/dbus.py | 52 +++++++++++++++++++++++++++++++- - python/examples/Makefile.am | 2 + + python/examples/Makefile.am | 2 ++ python/examples/gconf-proxy-client.py | 11 +++++++ python/examples/gconf-proxy-service.py | 48 +++++++++++++++++++++++++++++ - 4 files changed, 112 insertions(+), 1 deletions(-) + 4 files changed, 112 insertions(+), 1 deletion(-) commit 188e82d59c07729efbefe22d0919150054d8b374 Author: Seth Nickell <seth@gnome.org> @@ -9057,7 +9246,7 @@ Date: 2004-05-28 18:43:55 +0000 Forget to add Makefile.am. Do not pass go. python/examples/Makefile.am | 9 +++++++++ - 1 files changed, 9 insertions(+), 0 deletions(-) + 1 file changed, 9 insertions(+) commit ab5a89c0348c8bd271015bfdb2a32f7d4cdf586c Author: Seth Nickell <seth@gnome.org> @@ -9074,7 +9263,7 @@ Date: 2004-05-28 02:52:23 +0000 python/Makefile.am | 2 ++ python/examples/list-system-services.py | 24 ++++++++++++++++++++++++ - 2 files changed, 26 insertions(+), 0 deletions(-) + 2 files changed, 26 insertions(+) commit eff8859282d14b81b24f6092a6e155b5a0df8183 Author: Seth Nickell <seth@gnome.org> @@ -9098,8 +9287,8 @@ Date: 2004-05-10 18:16:29 +0000 * Fixed python bindings by defining all need parameter and variable types - python/dbus_bindings.pyx.in | 192 ++++++++++++++++++++++++++++-------------- - 1 files changed, 128 insertions(+), 64 deletions(-) + python/dbus_bindings.pyx.in | 192 ++++++++++++++++++++++++++++--------------- + 1 file changed, 128 insertions(+), 64 deletions(-) commit 7b93322959ed78fc28deda8c84835dfe2531a59d Author: Michael Meeks <michael@ximian.com> @@ -9108,7 +9297,7 @@ Date: 2004-03-29 12:50:45 +0000 hush. python/.cvsignore | 3 +++ - 1 files changed, 3 insertions(+), 0 deletions(-) + 1 file changed, 3 insertions(+) commit 4f3a79f0e6ba96167dd92c730f122be5c7999889 Author: Havoc Pennington <hp@redhat.com> @@ -9129,7 +9318,7 @@ Date: 2004-03-19 22:36:30 +0000 sources; run moc python/Makefile.am | 3 ++- - 1 files changed, 2 insertions(+), 1 deletions(-) + 1 file changed, 2 insertions(+), 1 deletion(-) commit e150be4e0a9e55b16eac520bdb5bd0c96621ea5a Author: David Zeuthen <david@fubar.dk> @@ -9142,7 +9331,7 @@ Date: 2003-12-01 20:49:53 +0000 remove_signal_receiver python/dbus.py | 12 ++++++++++-- - 1 files changed, 10 insertions(+), 2 deletions(-) + 1 file changed, 10 insertions(+), 2 deletions(-) commit 5dd7e406571391570edc02ed1e0998cdad9f8493 Author: David Zeuthen <david@fubar.dk> @@ -9154,7 +9343,7 @@ Date: 2003-10-29 00:06:07 +0000 return types. Fixup TYPE_* to reflect changes in dbus/dbus-protocol.h python/dbus_bindings.pyx.in | 25 ++++++++++++++++++++++++- - 1 files changed, 24 insertions(+), 1 deletions(-) + 1 file changed, 24 insertions(+), 1 deletion(-) commit 8a404b1ab5ed430112d35a23e6155c06a72f236f Author: David Zeuthen <david@fubar.dk> @@ -9168,7 +9357,7 @@ Date: 2003-10-15 21:25:13 +0000 the bindings actually work. python/dbus_bindings.pyx.in | 4 ++-- - 1 files changed, 2 insertions(+), 2 deletions(-) + 1 file changed, 2 insertions(+), 2 deletions(-) commit c4a01481d5ec9530af0f1e08130420f099ffc96c Author: Seth Nickell <seth@gnome.org> @@ -9177,7 +9366,7 @@ Date: 2003-10-15 11:56:12 +0000 Fix makefile.am python/Makefile.am | 1 + - 1 files changed, 1 insertions(+), 0 deletions(-) + 1 file changed, 1 insertion(+) commit 2a5101364f1b42e52dff3967e999419cfe266f8f Author: Seth Nickell <seth@gnome.org> @@ -9191,7 +9380,7 @@ Date: 2003-10-13 23:07:34 +0000 that weren't included in the final version. python/Makefile.am | 4 +--- - 1 files changed, 1 insertions(+), 3 deletions(-) + 1 file changed, 1 insertion(+), 3 deletions(-) commit 362dd3f1415326f9dd545e0ac6dc11ffc9507409 Author: Havoc Pennington <hp@redhat.com> @@ -9202,7 +9391,7 @@ Date: 2003-09-30 02:41:13 +0000 python/examples/example-client.py | 12 ++++++++++++ python/examples/example-service.py | 18 ++++++++++++++++++ python/examples/example-signals.py | 27 +++++++++++++++++++++++++++ - 3 files changed, 57 insertions(+), 0 deletions(-) + 3 files changed, 57 insertions(+) commit 8253b8df29181efd8d6ddd84098384d27a403698 Author: Havoc Pennington <hp@redhat.com> @@ -9215,7 +9404,7 @@ Date: 2003-09-30 02:40:49 +0000 python/dbus_bindings.pyx.in | 917 +++++++++++++++++++++++++++++++++++++++++++ python/dbus_h_wrapper.h | 3 + python/extract.py | 237 +++++++++++ - 5 files changed, 1452 insertions(+), 0 deletions(-) + 5 files changed, 1452 insertions(+) commit bdadc55cae07f4034bf64604398b382951098ada Author: John (J5) Palmieri <johnp@redhat.com> @@ -9223,4 +9412,4 @@ Date: 2006-06-28 08:13:11 -0400 Initial commit of module dbus-python - 0 files changed, 0 insertions(+), 0 deletions(-) + 0 files changed diff --git a/Makefile.am b/Makefile.am index a410650..ebc2e43 100644 --- a/Makefile.am +++ b/Makefile.am @@ -26,8 +26,8 @@ nobase_python_PYTHON = \ dbus/decorators.py \ dbus/exceptions.py \ dbus/_expat_introspect_parser.py \ + dbus/gi_service.py \ dbus/glib.py \ - dbus/gobject_service.py \ dbus/__init__.py \ dbus/lowlevel.py \ dbus/mainloop/__init__.py \ @@ -37,6 +37,12 @@ nobase_python_PYTHON = \ dbus/service.py \ dbus/types.py +if !HAVE_PYTHON_3 +nobase_python_PYTHON += \ + dbus/gobject_service.py \ + $(NULL) +endif + check_py_sources = $(nobase_python_PYTHON) include $(top_srcdir)/tools/check-coding-style.mk @@ -77,7 +83,7 @@ TXT_RSTDOCS = \ RSTDOCS = \ README \ NEWS \ - TODO + $(NULL) dist_doc_DATA = $(TXT_RSTDOCS) $(RSTDOCS) maintainer-upload: @@ -90,7 +96,7 @@ maintainer-update-website: _maintainer-update-apidocs \ if ENABLE_DOCS _maintainer-update-htmldocs: $(HTML_TXT_RSTDOCS) $(HTML_RSTDOCS) rsync -rtvzPp --chmod=Dg+s,ug+rwX,o=rX doc \ - $(RSTDOCS) $(HTML_RSTDOCS) \ + $(patsubst %,$(srcdir)/%,$(RSTDOCS)) $(HTML_RSTDOCS) \ dbus.freedesktop.org:/srv/dbus.freedesktop.org/www/doc/dbus-python/ HTML_TXT_RSTDOCS = $(patsubst %.txt,%.html,$(TXT_RSTDOCS)) diff --git a/Makefile.in b/Makefile.in index 84f0cf0..8ff549a 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.11.2 from Makefile.am. +# Makefile.in generated by automake 1.11.5 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, @@ -17,6 +17,23 @@ VPATH = @srcdir@ +am__make_dryrun = \ + { \ + am__dry=no; \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ + | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ + *) \ + for am__flg in $$MAKEFLAGS; do \ + case $$am__flg in \ + *=*|--*) ;; \ + *n*) am__dry=yes; break;; \ + esac; \ + done;; \ + esac; \ + test $$am__dry = yes; \ + } pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ @@ -35,15 +52,19 @@ PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ -DIST_COMMON = README $(am__configure_deps) $(dbusinclude_HEADERS) \ - $(dist_doc_DATA) $(nobase_python_PYTHON) $(srcdir)/Makefile.am \ - $(srcdir)/Makefile.in $(srcdir)/config.h.in \ - $(srcdir)/dbus-python.pc.in $(top_srcdir)/configure \ - $(top_srcdir)/dbus/_version.py.in \ +@HAVE_PYTHON_3_FALSE@am__append_1 = \ +@HAVE_PYTHON_3_FALSE@ dbus/gobject_service.py \ +@HAVE_PYTHON_3_FALSE@ $(NULL) + +DIST_COMMON = README $(am__configure_deps) \ + $(am__nobase_python_PYTHON_DIST) $(dbusinclude_HEADERS) \ + $(dist_doc_DATA) $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ + $(srcdir)/config.h.in $(srcdir)/dbus-python.pc.in \ + $(top_srcdir)/configure $(top_srcdir)/dbus/_version.py.in \ $(top_srcdir)/tools/check-coding-style.mk AUTHORS COPYING \ - ChangeLog INSTALL NEWS TODO compile config.guess config.sub \ - depcomp install-sh ltmain.sh missing py-compile -@ENABLE_DOCS_TRUE@am__append_1 = $(nodist_doc_DATA) + ChangeLog INSTALL NEWS compile config.guess config.sub depcomp \ + install-sh ltmain.sh missing py-compile +@ENABLE_DOCS_TRUE@am__append_2 = $(nodist_doc_DATA) subdir = . ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/am-check-pymod.m4 \ @@ -63,11 +84,11 @@ mkinstalldirs = $(install_sh) -d CONFIG_HEADER = config.h CONFIG_CLEAN_FILES = dbus-python.pc dbus/_version.py CONFIG_CLEAN_VPATH_FILES = -AM_V_GEN = $(am__v_GEN_$(V)) -am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; -AM_V_at = $(am__v_at_$(V)) -am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ SOURCES = DIST_SOURCES = @@ -78,6 +99,19 @@ RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ install-pdf-recursive install-ps-recursive install-recursive \ installcheck-recursive installdirs-recursive pdf-recursive \ ps-recursive uninstall-recursive +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__nobase_python_PYTHON_DIST = dbus/bus.py dbus/connection.py \ + dbus/_compat.py dbus/_dbus.py dbus/_version.py \ + dbus/decorators.py dbus/exceptions.py \ + dbus/_expat_introspect_parser.py dbus/gi_service.py \ + dbus/glib.py dbus/__init__.py dbus/lowlevel.py \ + dbus/mainloop/__init__.py dbus/mainloop/glib.py \ + dbus/proxies.py dbus/server.py dbus/service.py dbus/types.py \ + dbus/gobject_service.py am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ @@ -124,9 +158,11 @@ DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) distdir = $(PACKAGE)-$(VERSION) top_distdir = $(distdir) am__remove_distdir = \ - { test ! -d "$(distdir)" \ - || { find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \ - && rm -fr "$(distdir)"; }; } + if test -d "$(distdir)"; then \ + find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \ + && rm -rf "$(distdir)" \ + || { sleep 5 && rm -rf "$(distdir)"; }; \ + else :; fi am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ @@ -302,7 +338,7 @@ ACLOCAL_AMFLAGS = -I m4 # the api, doc, include subdirs don't need their own Makefile.am # the dbus subdir is handled with non-recursive make because of #12741 SUBDIRS = _dbus_bindings _dbus_glib_bindings examples m4 test tools . -CLEANFILES = $(am__append_1) +CLEANFILES = $(am__append_2) EXTRA_DIST = \ dbus-python.pc.in \ AUTHORS \ @@ -312,26 +348,13 @@ EXTRA_DIST = \ # miss out the gconf examples for now - they don't work # === dbus package === -nobase_python_PYTHON = \ - dbus/bus.py \ - dbus/connection.py \ - dbus/_compat.py \ - dbus/_dbus.py \ - dbus/_version.py \ - dbus/decorators.py \ - dbus/exceptions.py \ - dbus/_expat_introspect_parser.py \ - dbus/glib.py \ - dbus/gobject_service.py \ - dbus/__init__.py \ - dbus/lowlevel.py \ - dbus/mainloop/__init__.py \ - dbus/mainloop/glib.py \ - dbus/proxies.py \ - dbus/server.py \ - dbus/service.py \ - dbus/types.py - +nobase_python_PYTHON = dbus/bus.py dbus/connection.py dbus/_compat.py \ + dbus/_dbus.py dbus/_version.py dbus/decorators.py \ + dbus/exceptions.py dbus/_expat_introspect_parser.py \ + dbus/gi_service.py dbus/glib.py dbus/__init__.py \ + dbus/lowlevel.py dbus/mainloop/__init__.py \ + dbus/mainloop/glib.py dbus/proxies.py dbus/server.py \ + dbus/service.py dbus/types.py $(am__append_1) check_py_sources = $(nobase_python_PYTHON) # === Devel stuff === @@ -349,7 +372,7 @@ TXT_RSTDOCS = \ RSTDOCS = \ README \ NEWS \ - TODO + $(NULL) dist_doc_DATA = $(TXT_RSTDOCS) $(RSTDOCS) @ENABLE_DOCS_TRUE@HTML_TXT_RSTDOCS = $(patsubst %.txt,%.html,$(TXT_RSTDOCS)) @@ -385,6 +408,7 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \ esac; +$(top_srcdir)/tools/check-coding-style.mk: $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) $(SHELL) ./config.status --recheck @@ -424,8 +448,11 @@ distclean-libtool: -rm -f libtool config.lt install-nobase_pythonPYTHON: $(nobase_python_PYTHON) @$(NORMAL_INSTALL) - test -z "$(pythondir)" || $(MKDIR_P) "$(DESTDIR)$(pythondir)" @list='$(nobase_python_PYTHON)'; test -n "$(pythondir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(pythondir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(pythondir)" || exit 1; \ + fi; \ $(am__nobase_list) | while read dir files; do \ xfiles=; for p in $$files; do \ if test -f "$$p"; then b=; else b="$(srcdir)/"; fi; \ @@ -458,8 +485,11 @@ uninstall-nobase_pythonPYTHON: exit $$st install-dist_docDATA: $(dist_doc_DATA) @$(NORMAL_INSTALL) - test -z "$(docdir)" || $(MKDIR_P) "$(DESTDIR)$(docdir)" @list='$(dist_doc_DATA)'; test -n "$(docdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(docdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(docdir)" || exit 1; \ + fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ @@ -476,8 +506,11 @@ uninstall-dist_docDATA: dir='$(DESTDIR)$(docdir)'; $(am__uninstall_files_from_dir) install-nodist_docDATA: $(nodist_doc_DATA) @$(NORMAL_INSTALL) - test -z "$(docdir)" || $(MKDIR_P) "$(DESTDIR)$(docdir)" @list='$(nodist_doc_DATA)'; test -n "$(docdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(docdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(docdir)" || exit 1; \ + fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ @@ -494,8 +527,11 @@ uninstall-nodist_docDATA: dir='$(DESTDIR)$(docdir)'; $(am__uninstall_files_from_dir) install-pkgconfigDATA: $(pkgconfig_DATA) @$(NORMAL_INSTALL) - test -z "$(pkgconfigdir)" || $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)" @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(pkgconfigdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)" || exit 1; \ + fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ @@ -512,8 +548,11 @@ uninstall-pkgconfigDATA: dir='$(DESTDIR)$(pkgconfigdir)'; $(am__uninstall_files_from_dir) install-dbusincludeHEADERS: $(dbusinclude_HEADERS) @$(NORMAL_INSTALL) - test -z "$(dbusincludedir)" || $(MKDIR_P) "$(DESTDIR)$(dbusincludedir)" @list='$(dbusinclude_HEADERS)'; test -n "$(dbusincludedir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(dbusincludedir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(dbusincludedir)" || exit 1; \ + fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ @@ -698,13 +737,10 @@ distdir: $(DISTFILES) done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ - test -d "$(distdir)/$$subdir" \ - || $(MKDIR_P) "$(distdir)/$$subdir" \ - || exit 1; \ - fi; \ - done - @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ + $(am__make_dryrun) \ + || test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ @@ -742,6 +778,10 @@ dist-bzip2: distdir tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2 $(am__remove_distdir) +dist-lzip: distdir + tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz + $(am__remove_distdir) + dist-lzma: distdir tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma $(am__remove_distdir) @@ -778,6 +818,8 @@ distcheck: dist bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ *.tar.lzma*) \ lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\ + *.tar.lz*) \ + lzip -dc $(distdir).tar.lz | $(am__untar) ;;\ *.tar.xz*) \ xz -dc $(distdir).tar.xz | $(am__untar) ;;\ *.tar.Z*) \ @@ -972,9 +1014,9 @@ uninstall-am: uninstall-dbusincludeHEADERS uninstall-dist_docDATA \ .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ all all-am am--refresh check check-am check-local clean \ clean-generic clean-libtool clean-local ctags ctags-recursive \ - dist dist-all dist-bzip2 dist-gzip dist-hook dist-lzma \ - dist-shar dist-tarZ dist-xz dist-zip distcheck distclean \ - distclean-generic distclean-hdr distclean-libtool \ + dist dist-all dist-bzip2 dist-gzip dist-hook dist-lzip \ + dist-lzma dist-shar dist-tarZ dist-xz dist-zip distcheck \ + distclean distclean-generic distclean-hdr distclean-libtool \ distclean-tags distcleancheck distdir distuninstallcheck dvi \ dvi-am html html-am info info-am install install-am \ install-data install-data-am install-dbusincludeHEADERS \ @@ -1047,7 +1089,7 @@ maintainer-update-website: _maintainer-update-apidocs \ @ENABLE_DOCS_TRUE@_maintainer-update-htmldocs: $(HTML_TXT_RSTDOCS) $(HTML_RSTDOCS) @ENABLE_DOCS_TRUE@ rsync -rtvzPp --chmod=Dg+s,ug+rwX,o=rX doc \ -@ENABLE_DOCS_TRUE@ $(RSTDOCS) $(HTML_RSTDOCS) \ +@ENABLE_DOCS_TRUE@ $(patsubst %,$(srcdir)/%,$(RSTDOCS)) $(HTML_RSTDOCS) \ @ENABLE_DOCS_TRUE@ dbus.freedesktop.org:/srv/dbus.freedesktop.org/www/doc/dbus-python/ @ENABLE_DOCS_TRUE@$(HTML_TXT_RSTDOCS) : %.html: %.txt @@ -1,4 +1,56 @@ -D-Bus Python Bindings 1.0.0 (UNRELEASED) +D-Bus Python Bindings 1.1.1 (2012-06-25) +======================================== + +The "Lemonade Sky" release. + +Dependencies: + +* libdbus 1.6 or later is now recommended. It is not strictly required yet. + +Fixes: + +• Validate UTF-8 according to the rules libdbus uses, falling back to our + own (inefficient) implementation if not compiled against dbus >= 1.6 + (fd.o #40817) + +• Under Python 3, in the absence of introspection or signature='...', + pass dbus.ObjectPath or dbus.Signature arguments with the obvious + signature 'o' or 'g', not 's'. This previously only worked in Python 2. + (fd.o #50740) + +D-Bus Python Bindings 1.1.0 (2012-05-09) +======================================== + +The “eaten by spiders” release. + +Deprecations: + +• dbus.gobject_service is deprecated. Use dbus.gi_service and PyGI in new code. + +API changes: + +• dbus.gobject_service works in legacy PyGObject 2 applications again, + like it did before 1.0. The down side is that it doesn't work in all PyGI + applications any more, unlike 1.0. In PyGI applications, depend on + dbus-python >= 1.1 and use dbus.gi_service instead - its API is the same. + (fd.o #48904, Debian #670516) + +• dbus.gobject_service has been removed from Python 3 builds altogether. + +Enhancements: + +• Use DBusBasicValue from libdbus 1.5, if available, rather than reinventing it + +Fixes: + +• Put sockets for the regression tests in /tmp, not the builddir, fixing + test failures in a really long builddir (fd.o #46747) + +• Fix a reference leak in dbus_py_variant_level_set (fd.o #47108) + +• Modify AM_CHECK_PYTHON_HEADERS so the "another way" works with Python 3 + +D-Bus Python Bindings 1.0.0 (2012-01-24) ======================================== The "never trust a .0 release?" release. @@ -23,6 +75,9 @@ API changes: * The Python 3 API is not the same as the Python 2 API; see PY3PORT.rst for details. +• dbus.gobject_service uses PyGI, not PyGObject. (This was not meant to be + an incompatible change, but unfortunately, it was. It was reverted in 1.1.0.) + Enhancements: * Python 3 compatibility (fd.o #26420, Barry Warsaw) diff --git a/_dbus_bindings/Makefile.am b/_dbus_bindings/Makefile.am index 02d2ce0..2a5ec28 100644 --- a/_dbus_bindings/Makefile.am +++ b/_dbus_bindings/Makefile.am @@ -8,6 +8,7 @@ _dbus_bindings_la_SOURCES = \ abstract.c \ bus.c \ bytes.c \ + compat-internal.h \ conn.c \ conn-internal.h \ conn-methods.c \ diff --git a/_dbus_bindings/Makefile.in b/_dbus_bindings/Makefile.in index d59499a..97d72c0 100644 --- a/_dbus_bindings/Makefile.in +++ b/_dbus_bindings/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.11.2 from Makefile.am. +# Makefile.in generated by automake 1.11.5 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, @@ -16,6 +16,23 @@ @SET_MAKE@ VPATH = @srcdir@ +am__make_dryrun = \ + { \ + am__dry=no; \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ + | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ + *) \ + for am__flg in $$MAKEFLAGS; do \ + case $$am__flg in \ + *=*|--*) ;; \ + *n*) am__dry=yes; break;; \ + esac; \ + done;; \ + esac; \ + test $$am__dry = yes; \ + } pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ @@ -89,8 +106,8 @@ am__dbus_bindings_la_OBJECTS = abstract.lo bus.lo bytes.lo conn.lo \ message-append.lo message.lo message-get-args.lo module.lo \ pending-call.lo server.lo signature.lo string.lo validation.lo _dbus_bindings_la_OBJECTS = $(am__dbus_bindings_la_OBJECTS) -AM_V_lt = $(am__v_lt_$(V)) -am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) +AM_V_lt = $(am__v_lt_@AM_V@) +am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp @@ -102,24 +119,29 @@ LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) -AM_V_CC = $(am__v_CC_$(V)) -am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) +AM_V_CC = $(am__v_CC_@AM_V@) +am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; -AM_V_at = $(am__v_at_$(V)) -am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CCLD = $(am__v_CCLD_$(V)) -am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) +AM_V_CCLD = $(am__v_CCLD_@AM_V@) +am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; -AM_V_GEN = $(am__v_GEN_$(V)) -am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; SOURCES = $(_dbus_bindings_la_SOURCES) DIST_SOURCES = $(_dbus_bindings_la_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) @@ -272,6 +294,7 @@ _dbus_bindings_la_SOURCES = \ abstract.c \ bus.c \ bytes.c \ + compat-internal.h \ conn.c \ conn-internal.h \ conn-methods.c \ @@ -323,6 +346,7 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; +$(top_srcdir)/tools/check-coding-style.mk: $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh @@ -334,7 +358,6 @@ $(ACLOCAL_M4): $(am__aclocal_m4_deps) $(am__aclocal_m4_deps): install-pyexecLTLIBRARIES: $(pyexec_LTLIBRARIES) @$(NORMAL_INSTALL) - test -z "$(pyexecdir)" || $(MKDIR_P) "$(DESTDIR)$(pyexecdir)" @list='$(pyexec_LTLIBRARIES)'; test -n "$(pyexecdir)" || list=; \ list2=; for p in $$list; do \ if test -f $$p; then \ @@ -342,6 +365,8 @@ install-pyexecLTLIBRARIES: $(pyexec_LTLIBRARIES) else :; fi; \ done; \ test -z "$$list2" || { \ + echo " $(MKDIR_P) '$(DESTDIR)$(pyexecdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(pyexecdir)" || exit 1; \ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(pyexecdir)'"; \ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(pyexecdir)"; \ } @@ -363,7 +388,7 @@ clean-pyexecLTLIBRARIES: echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done -_dbus_bindings.la: $(_dbus_bindings_la_OBJECTS) $(_dbus_bindings_la_DEPENDENCIES) +_dbus_bindings.la: $(_dbus_bindings_la_OBJECTS) $(_dbus_bindings_la_DEPENDENCIES) $(EXTRA__dbus_bindings_la_DEPENDENCIES) $(AM_V_CCLD)$(LINK) -rpath $(pyexecdir) $(_dbus_bindings_la_OBJECTS) $(_dbus_bindings_la_LIBADD) $(LIBS) mostlyclean-compile: diff --git a/_dbus_bindings/abstract.c b/_dbus_bindings/abstract.c index 2b31d43..f2cbebc 100644 --- a/_dbus_bindings/abstract.c +++ b/_dbus_bindings/abstract.c @@ -98,9 +98,11 @@ dbus_py_variant_level_set(PyObject *obj, long variant_level) return FALSE; } if (PyDict_SetItem(_dbus_py_variant_levels, key, vl_obj) < 0) { + Py_CLEAR(vl_obj); Py_CLEAR(key); return FALSE; } + Py_CLEAR(vl_obj); } Py_CLEAR(key); return TRUE; diff --git a/_dbus_bindings/compat-internal.h b/_dbus_bindings/compat-internal.h new file mode 100644 index 0000000..143f23a --- /dev/null +++ b/_dbus_bindings/compat-internal.h @@ -0,0 +1,52 @@ +/* Old D-Bus compatibility: implementation internals + * + * Copyright © 2006-2011 Collabora Ltd. + * Copyright © 2011 Nokia Corporation + * + * Permission is hereby granted, free of charge, to any person + * obtaining a copy of this software and associated documentation + * files (the "Software"), to deal in the Software without + * restriction, including without limitation the rights to use, copy, + * modify, merge, publish, distribute, sublicense, and/or sell copies + * of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be + * included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + * DEALINGS IN THE SOFTWARE. + */ + +#ifndef DBUS_BINDINGS_COMPAT_INTERNAL_H +#define DBUS_BINDINGS_COMPAT_INTERNAL_H + +#include "config.h" +#include "dbus_bindings-internal.h" + +#ifndef HAVE_DBUSBASICVALUE +typedef union { + dbus_bool_t bool_val; + double dbl; + dbus_uint16_t u16; + dbus_int16_t i16; + dbus_uint32_t u32; + dbus_int32_t i32; +#if defined(DBUS_HAVE_INT64) && defined(HAVE_LONG_LONG) + dbus_uint64_t u64; + dbus_int64_t i64; +#endif + const char *str; + unsigned char byt; + float f; + int fd; +} DBusBasicValue; +#endif + +#endif diff --git a/_dbus_bindings/message-append.c b/_dbus_bindings/message-append.c index 6dab214..e519ae2 100644 --- a/_dbus_bindings/message-append.c +++ b/_dbus_bindings/message-append.c @@ -29,6 +29,7 @@ #include <assert.h> #define DBG_IS_TOO_VERBOSE +#include "compat-internal.h" #include "types-internal.h" #include "message-internal.h" @@ -248,8 +249,16 @@ _signature_string_from_pyobject(PyObject *obj, long *variant_level_ptr) return NATIVESTR_FROMSTR(DBUS_TYPE_INT64_AS_STRING); } #endif /* PY3 */ - else if (PyUnicode_Check(obj)) - return NATIVESTR_FROMSTR(DBUS_TYPE_STRING_AS_STRING); + else if (PyUnicode_Check(obj)) { + /* Object paths and signatures are unicode subtypes in Python 3 + * (the first two cases will never be true in Python 2) */ + if (DBusPyObjectPath_Check(obj)) + return NATIVESTR_FROMSTR(DBUS_TYPE_OBJECT_PATH_AS_STRING); + else if (DBusPySignature_Check(obj)) + return NATIVESTR_FROMSTR(DBUS_TYPE_SIGNATURE_AS_STRING); + else + return NATIVESTR_FROMSTR(DBUS_TYPE_STRING_AS_STRING); + } #if defined(DBUS_TYPE_UNIX_FD) else if (DBusPyUnixFd_Check(obj)) return NATIVESTR_FROMSTR(DBUS_TYPE_UNIX_FD_AS_STRING); @@ -265,6 +274,8 @@ _signature_string_from_pyobject(PyObject *obj, long *variant_level_ptr) return NATIVESTR_FROMSTR(DBUS_TYPE_DOUBLE_AS_STRING); } else if (PyBytes_Check(obj)) { + /* Object paths and signatures are bytes subtypes in Python 2 + * (the first two cases will never be true in Python 3) */ if (DBusPyObjectPath_Check(obj)) return NATIVESTR_FROMSTR(DBUS_TYPE_OBJECT_PATH_AS_STRING); else if (DBusPySignature_Check(obj)) @@ -520,6 +531,7 @@ _message_iter_append_string(DBusMessageIter *appender, dbus_bool_t allow_object_path_attr) { char *s; + PyObject *utf8; if (sig_type == DBUS_TYPE_OBJECT_PATH && allow_object_path_attr) { PyObject *object_path = get_object_path (obj); @@ -539,44 +551,87 @@ _message_iter_append_string(DBusMessageIter *appender, } if (PyBytes_Check(obj)) { - PyObject *unicode; - - /* Raise TypeError if the string has embedded NULs */ - if (PyBytes_AsStringAndSize(obj, &s, NULL) < 0) return -1; - /* Surely there's a faster stdlib way to validate UTF-8... */ - unicode = PyUnicode_DecodeUTF8(s, PyBytes_GET_SIZE(obj), NULL); - if (!unicode) { - PyErr_SetString(PyExc_UnicodeError, "String parameters " - "to be sent over D-Bus must be valid UTF-8"); - return -1; - } - Py_CLEAR(unicode); - - DBG("Performing actual append: string %s", s); - if (!dbus_message_iter_append_basic(appender, sig_type, - &s)) { - PyErr_NoMemory(); - return -1; - } + utf8 = obj; + Py_INCREF(obj); } else if (PyUnicode_Check(obj)) { - PyObject *utf8 = PyUnicode_AsUTF8String(obj); + utf8 = PyUnicode_AsUTF8String(obj); if (!utf8) return -1; - /* Raise TypeError if the string has embedded NULs */ - if (PyBytes_AsStringAndSize(utf8, &s, NULL) < 0) return -1; - DBG("Performing actual append: string (from unicode) %s", s); - if (!dbus_message_iter_append_basic(appender, sig_type, &s)) { - Py_CLEAR(utf8); - PyErr_NoMemory(); - return -1; - } - Py_CLEAR(utf8); } else { PyErr_SetString(PyExc_TypeError, "Expected a string or unicode object"); return -1; } + + /* Raise TypeError if the string has embedded NULs */ + if (PyBytes_AsStringAndSize(utf8, &s, NULL) < 0) + return -1; + + /* Validate UTF-8, strictly */ +#ifdef HAVE_DBUS_VALIDATE_UTF8 + if (!dbus_validate_utf8(s, NULL)) { + PyErr_SetString(PyExc_UnicodeError, "String parameters " + "to be sent over D-Bus must be valid UTF-8 " + "with no noncharacter code points"); + return -1; + } +#else + { + PyObject *back_to_unicode; + PyObject *utf32; + Py_ssize_t i; + + /* This checks for syntactically valid UTF-8, but does not check + * for noncharacters (U+nFFFE, U+nFFFF for any n, or U+FDD0..U+FDEF). + */ + back_to_unicode = PyUnicode_DecodeUTF8(s, PyBytes_GET_SIZE(utf8), + "strict"); + + if (!back_to_unicode) { + return -1; + } + + utf32 = PyUnicode_AsUTF32String(back_to_unicode); + Py_CLEAR(back_to_unicode); + + if (!utf32) { + return -1; + } + + for (i = 0; i < PyBytes_GET_SIZE(utf32) / 4; i++) { + dbus_uint32_t *p; + + p = (dbus_uint32_t *) (PyBytes_AS_STRING(utf32)) + i; + + if (/* noncharacters U+nFFFE, U+nFFFF */ + (*p & 0xFFFF) == 0xFFFE || + (*p & 0xFFFF) == 0xFFFF || + /* noncharacters U+FDD0..U+FDEF */ + (*p >= 0xFDD0 && *p <= 0xFDEF) || + /* surrogates U+D800..U+DBFF (low), U+DC00..U+DFFF (high) */ + (*p >= 0xD800 && *p <= 0xDFFF) || + (*p >= 0x110000)) { + Py_CLEAR(utf32); + PyErr_SetString(PyExc_UnicodeError, "String parameters " + "to be sent over D-Bus must be valid UTF-8 " + "with no noncharacter code points"); + return -1; + } + } + + Py_CLEAR(utf32); + } +#endif + + DBG("Performing actual append: string (from unicode) %s", s); + if (!dbus_message_iter_append_basic(appender, sig_type, &s)) { + Py_CLEAR(utf8); + PyErr_NoMemory(); + return -1; + } + + Py_CLEAR(utf8); return 0; } @@ -999,18 +1054,7 @@ _message_iter_append_pyobject(DBusMessageIter *appender, dbus_bool_t *more) { int sig_type = dbus_signature_iter_get_current_type(sig_iter); - union { - dbus_bool_t b; - double d; - dbus_uint16_t uint16; - dbus_int16_t int16; - dbus_uint32_t uint32; - dbus_int32_t int32; -#if defined(DBUS_HAVE_INT64) && defined(HAVE_LONG_LONG) - dbus_uint64_t uint64; - dbus_int64_t int64; -#endif - } u; + DBusBasicValue u; int ret = -1; #ifdef USING_DBG @@ -1026,13 +1070,13 @@ _message_iter_append_pyobject(DBusMessageIter *appender, case DBUS_TYPE_BOOLEAN: if (PyObject_IsTrue(obj)) { - u.b = 1; + u.bool_val = 1; } else { - u.b = 0; + u.bool_val = 0; } - DBG("Performing actual append: bool(%ld)", (long)u.b); - if (!dbus_message_iter_append_basic(appender, sig_type, &u.b)) { + DBG("Performing actual append: bool(%ld)", (long)u.bool_val); + if (!dbus_message_iter_append_basic(appender, sig_type, &u.bool_val)) { PyErr_NoMemory(); ret = -1; break; @@ -1041,13 +1085,13 @@ _message_iter_append_pyobject(DBusMessageIter *appender, break; case DBUS_TYPE_DOUBLE: - u.d = PyFloat_AsDouble(obj); + u.dbl = PyFloat_AsDouble(obj); if (PyErr_Occurred()) { ret = -1; break; } - DBG("Performing actual append: double(%f)", u.d); - if (!dbus_message_iter_append_basic(appender, sig_type, &u.d)) { + DBG("Performing actual append: double(%f)", u.dbl); + if (!dbus_message_iter_append_basic(appender, sig_type, &u.dbl)) { PyErr_NoMemory(); ret = -1; break; @@ -1057,12 +1101,14 @@ _message_iter_append_pyobject(DBusMessageIter *appender, #ifdef WITH_DBUS_FLOAT32 case DBUS_TYPE_FLOAT: - u.d = PyFloat_AsDouble(obj); + u.dbl = PyFloat_AsDouble(obj); if (PyErr_Occurred()) { ret = -1; break; } - u.f = (float)u.d; + /* FIXME: DBusBasicValue will need to grow a float member if + * float32 becomes supported */ + u.f = (float)u.dbl; DBG("Performing actual append: float(%f)", u.f); if (!dbus_message_iter_append_basic(appender, sig_type, &u.f)) { PyErr_NoMemory(); @@ -1075,14 +1121,14 @@ _message_iter_append_pyobject(DBusMessageIter *appender, /* The integer types are all basically the same - we delegate to intNN_range_check() */ -#define PROCESS_INTEGER(size) \ - u.size = dbus_py_##size##_range_check(obj);\ - if (u.size == (dbus_##size##_t)(-1) && PyErr_Occurred()) {\ +#define PROCESS_INTEGER(size, member) \ + u.member = dbus_py_##size##_range_check(obj);\ + if (u.member == (dbus_##size##_t)(-1) && PyErr_Occurred()) {\ ret = -1; \ break; \ }\ - DBG("Performing actual append: " #size "(%lld)", (long long)u.size); \ - if (!dbus_message_iter_append_basic(appender, sig_type, &u.size)) {\ + DBG("Performing actual append: " #size "(%lld)", (long long)u.member); \ + if (!dbus_message_iter_append_basic(appender, sig_type, &u.member)) {\ PyErr_NoMemory();\ ret = -1;\ break;\ @@ -1090,23 +1136,23 @@ _message_iter_append_pyobject(DBusMessageIter *appender, ret = 0; case DBUS_TYPE_INT16: - PROCESS_INTEGER(int16) + PROCESS_INTEGER(int16, i16) break; case DBUS_TYPE_UINT16: - PROCESS_INTEGER(uint16) + PROCESS_INTEGER(uint16, u16) break; case DBUS_TYPE_INT32: - PROCESS_INTEGER(int32) + PROCESS_INTEGER(int32, i32) break; case DBUS_TYPE_UINT32: - PROCESS_INTEGER(uint32) + PROCESS_INTEGER(uint32, u32) break; #if defined(DBUS_HAVE_INT64) && defined(HAVE_LONG_LONG) case DBUS_TYPE_INT64: - PROCESS_INTEGER(int64) + PROCESS_INTEGER(int64, i64) break; case DBUS_TYPE_UINT64: - PROCESS_INTEGER(uint64) + PROCESS_INTEGER(uint64, u64) break; #else case DBUS_TYPE_INT64: diff --git a/_dbus_bindings/message-get-args.c b/_dbus_bindings/message-get-args.c index ceea3a4..44aa469 100644 --- a/_dbus_bindings/message-get-args.c +++ b/_dbus_bindings/message-get-args.c @@ -27,6 +27,7 @@ #define PY_SIZE_T_CLEAN 1 #define DBG_IS_TOO_VERBOSE +#include "compat-internal.h" #include "types-internal.h" #include "message-internal.h" @@ -190,22 +191,7 @@ _message_iter_get_pyobject(DBusMessageIter *iter, Message_get_args_options *opts, long variant_level) { - union { - const char *s; - unsigned char y; - dbus_bool_t b; - double d; - float f; - dbus_uint16_t u16; - dbus_int16_t i16; - dbus_uint32_t u32; - dbus_int32_t i32; -#if defined(DBUS_HAVE_INT64) && defined(HAVE_LONG_LONG) - dbus_uint64_t u64; - dbus_int64_t i64; -#endif - int fd; - } u; + DBusBasicValue u; int type = dbus_message_iter_get_arg_type(iter); PyObject *args = NULL; PyObject *kwargs = NULL; @@ -243,17 +229,17 @@ _message_iter_get_pyobject(DBusMessageIter *iter, case DBUS_TYPE_STRING: DBG("%s", "found a string"); - dbus_message_iter_get_basic(iter, &u.s); + dbus_message_iter_get_basic(iter, &u.str); #ifndef PY3 if (opts->utf8_strings) { - args = Py_BuildValue("(s)", u.s); + args = Py_BuildValue("(s)", u.str); if (!args) break; ret = PyObject_Call((PyObject *)&DBusPyUTF8String_Type, args, kwargs); } else { #endif - unicode = PyUnicode_DecodeUTF8(u.s, strlen(u.s), NULL); + unicode = PyUnicode_DecodeUTF8(u.str, strlen(u.str), NULL); if (!unicode) { break; } @@ -270,24 +256,24 @@ _message_iter_get_pyobject(DBusMessageIter *iter, case DBUS_TYPE_SIGNATURE: DBG("%s", "found a signature"); - dbus_message_iter_get_basic(iter, &u.s); - args = Py_BuildValue("(s)", u.s); + dbus_message_iter_get_basic(iter, &u.str); + args = Py_BuildValue("(s)", u.str); if (!args) break; ret = PyObject_Call((PyObject *)&DBusPySignature_Type, args, kwargs); break; case DBUS_TYPE_OBJECT_PATH: DBG("%s", "found an object path"); - dbus_message_iter_get_basic(iter, &u.s); - args = Py_BuildValue("(s)", u.s); + dbus_message_iter_get_basic(iter, &u.str); + args = Py_BuildValue("(s)", u.str); if (!args) break; ret = PyObject_Call((PyObject *)&DBusPyObjectPath_Type, args, kwargs); break; case DBUS_TYPE_DOUBLE: DBG("%s", "found a double"); - dbus_message_iter_get_basic(iter, &u.d); - args = Py_BuildValue("(f)", u.d); + dbus_message_iter_get_basic(iter, &u.dbl); + args = Py_BuildValue("(f)", u.dbl); if (!args) break; ret = PyObject_Call((PyObject *)&DBusPyDouble_Type, args, kwargs); break; @@ -295,6 +281,8 @@ _message_iter_get_pyobject(DBusMessageIter *iter, #ifdef WITH_DBUS_FLOAT32 case DBUS_TYPE_FLOAT: DBG("%s", "found a float"); + /* FIXME: DBusBasicValue will need to grow a float member if + * float32 becomes supported */ dbus_message_iter_get_basic(iter, &u.f); args = Py_BuildValue("(f)", (double)u.f); if (!args) break; @@ -376,8 +364,8 @@ _message_iter_get_pyobject(DBusMessageIter *iter, case DBUS_TYPE_BYTE: DBG("%s", "found a byte"); - dbus_message_iter_get_basic(iter, &u.y); - args = Py_BuildValue("(l)", (long)u.y); + dbus_message_iter_get_basic(iter, &u.byt); + args = Py_BuildValue("(l)", (long)u.byt); if (!args) break; ret = PyObject_Call((PyObject *)&DBusPyByte_Type, args, kwargs); @@ -385,8 +373,8 @@ _message_iter_get_pyobject(DBusMessageIter *iter, case DBUS_TYPE_BOOLEAN: DBG("%s", "found a bool"); - dbus_message_iter_get_basic(iter, &u.b); - args = Py_BuildValue("(l)", (long)u.b); + dbus_message_iter_get_basic(iter, &u.bool_val); + args = Py_BuildValue("(l)", (long)u.bool_val); if (!args) break; ret = PyObject_Call((PyObject *)&DBusPyBoolean_Type, args, kwargs); @@ -412,18 +400,18 @@ _message_iter_get_pyobject(DBusMessageIter *iter, DBG("%s", "actually, a byte array..."); dbus_message_iter_recurse(iter, &sub); dbus_message_iter_get_fixed_array(&sub, - (const unsigned char **)&u.s, + (const unsigned char **)&u.str, &n); - if (n == 0 && u.s == NULL) { + if (n == 0 && u.str == NULL) { /* fd.o #21831: s# turns (NULL, 0) into None, but * dbus_message_iter_get_fixed_array produces (NULL, 0) * for an empty byte-blob... */ - u.s = ""; + u.str = ""; } #ifdef PY3 - args = Py_BuildValue("(y#)", u.s, (Py_ssize_t)n); + args = Py_BuildValue("(y#)", u.str, (Py_ssize_t)n); #else - args = Py_BuildValue("(s#)", u.s, (Py_ssize_t)n); + args = Py_BuildValue("(s#)", u.str, (Py_ssize_t)n); #endif if (!args) break; ret = PyObject_Call((PyObject *)&DBusPyByteArray_Type, diff --git a/_dbus_glib_bindings/Makefile.in b/_dbus_glib_bindings/Makefile.in index e029f28..c8b4ae3 100644 --- a/_dbus_glib_bindings/Makefile.in +++ b/_dbus_glib_bindings/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.11.2 from Makefile.am. +# Makefile.in generated by automake 1.11.5 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, @@ -16,6 +16,23 @@ @SET_MAKE@ VPATH = @srcdir@ +am__make_dryrun = \ + { \ + am__dry=no; \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ + | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ + *) \ + for am__flg in $$MAKEFLAGS; do \ + case $$am__flg in \ + *=*|--*) ;; \ + *n*) am__dry=yes; break;; \ + esac; \ + done;; \ + esac; \ + test $$am__dry = yes; \ + } pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ @@ -84,8 +101,8 @@ LTLIBRARIES = $(pyexec_LTLIBRARIES) _dbus_glib_bindings_la_LIBADD = am__dbus_glib_bindings_la_OBJECTS = module.lo _dbus_glib_bindings_la_OBJECTS = $(am__dbus_glib_bindings_la_OBJECTS) -AM_V_lt = $(am__v_lt_$(V)) -am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) +AM_V_lt = $(am__v_lt_@AM_V@) +am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp @@ -97,24 +114,29 @@ LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) -AM_V_CC = $(am__v_CC_$(V)) -am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) +AM_V_CC = $(am__v_CC_@AM_V@) +am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; -AM_V_at = $(am__v_at_$(V)) -am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CCLD = $(am__v_CCLD_$(V)) -am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) +AM_V_CCLD = $(am__v_CCLD_@AM_V@) +am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; -AM_V_GEN = $(am__v_GEN_$(V)) -am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; SOURCES = $(_dbus_glib_bindings_la_SOURCES) DIST_SOURCES = $(_dbus_glib_bindings_la_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) @@ -302,7 +324,6 @@ $(ACLOCAL_M4): $(am__aclocal_m4_deps) $(am__aclocal_m4_deps): install-pyexecLTLIBRARIES: $(pyexec_LTLIBRARIES) @$(NORMAL_INSTALL) - test -z "$(pyexecdir)" || $(MKDIR_P) "$(DESTDIR)$(pyexecdir)" @list='$(pyexec_LTLIBRARIES)'; test -n "$(pyexecdir)" || list=; \ list2=; for p in $$list; do \ if test -f $$p; then \ @@ -310,6 +331,8 @@ install-pyexecLTLIBRARIES: $(pyexec_LTLIBRARIES) else :; fi; \ done; \ test -z "$$list2" || { \ + echo " $(MKDIR_P) '$(DESTDIR)$(pyexecdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(pyexecdir)" || exit 1; \ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(pyexecdir)'"; \ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(pyexecdir)"; \ } @@ -331,7 +354,7 @@ clean-pyexecLTLIBRARIES: echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done -_dbus_glib_bindings.la: $(_dbus_glib_bindings_la_OBJECTS) $(_dbus_glib_bindings_la_DEPENDENCIES) +_dbus_glib_bindings.la: $(_dbus_glib_bindings_la_OBJECTS) $(_dbus_glib_bindings_la_DEPENDENCIES) $(EXTRA__dbus_glib_bindings_la_DEPENDENCIES) $(AM_V_CCLD)$(LINK) -rpath $(pyexecdir) $(_dbus_glib_bindings_la_OBJECTS) $(_dbus_glib_bindings_la_LIBADD) $(LIBS) mostlyclean-compile: @@ -1,4 +1,4 @@ -# generated automatically by aclocal 1.11.2 -*- Autoconf -*- +# generated automatically by aclocal 1.11.5 -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, # 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, @@ -14,8 +14,8 @@ m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl -m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.68],, -[m4_warning([this file was generated for autoconf 2.68. +m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.69],, +[m4_warning([this file was generated for autoconf 2.69. You have another version of autoconf. It may work, but is not guaranteed to. If you have problems, you may need to regenerate the build system entirely. To do so, use the procedure documented by the package, typically `autoreconf'.])]) @@ -198,7 +198,7 @@ AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version='1.11' dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to dnl require some minimum version. Point them to the right macro. -m4_if([$1], [1.11.2], [], +m4_if([$1], [1.11.5], [], [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl ]) @@ -214,7 +214,7 @@ m4_define([_AM_AUTOCONF_VERSION], []) # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. # This function is AC_REQUIREd by AM_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], -[AM_AUTOMAKE_VERSION([1.11.2])dnl +[AM_AUTOMAKE_VERSION([1.11.5])dnl m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) @@ -972,7 +972,7 @@ AC_DEFUN([_AM_IF_OPTION], # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. -# serial 1 +# serial 2 # AM_PATH_PYTHON([MINIMUM-VERSION], [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) # --------------------------------------------------------------------------- @@ -1076,9 +1076,7 @@ AC_DEFUN([AM_PATH_PYTHON], dnl site-packages directory, not the python standard library dnl directory like in previous automake betas. This behavior dnl is more consistent with lispdir.m4 for example. - dnl Query distutils for this directory. distutils does not exist in - dnl Python 1.5, so we fall back to the hardcoded directory if it - dnl doesn't work. + dnl Query distutils for this directory. AC_CACHE_CHECK([for $am_display_PYTHON script directory], [am_cv_python_pythondir], [if test "x$prefix" = xNONE @@ -1087,8 +1085,7 @@ AC_DEFUN([AM_PATH_PYTHON], else am_py_prefix=$prefix fi - am_cv_python_pythondir=`$PYTHON -c "import sys; from distutils import sysconfig; sys.stdout.write(sysconfig.get_python_lib(0,0,prefix='$am_py_prefix'))" 2>/dev/null || - echo "$PYTHON_PREFIX/lib/python$PYTHON_VERSION/site-packages"` + am_cv_python_pythondir=`$PYTHON -c "import sys; from distutils import sysconfig; sys.stdout.write(sysconfig.get_python_lib(0,0,prefix='$am_py_prefix'))" 2>/dev/null` case $am_cv_python_pythondir in $am_py_prefix*) am__strip_prefix=`echo "$am_py_prefix" | sed 's|.|.|g'` @@ -1114,9 +1111,7 @@ AC_DEFUN([AM_PATH_PYTHON], dnl pyexecdir -- directory for installing python extension modules dnl (shared libraries) - dnl Query distutils for this directory. distutils does not exist in - dnl Python 1.5, so we fall back to the hardcoded directory if it - dnl doesn't work. + dnl Query distutils for this directory. AC_CACHE_CHECK([for $am_display_PYTHON extension module directory], [am_cv_python_pyexecdir], [if test "x$exec_prefix" = xNONE @@ -1125,8 +1120,7 @@ AC_DEFUN([AM_PATH_PYTHON], else am_py_exec_prefix=$exec_prefix fi - am_cv_python_pyexecdir=`$PYTHON -c "import sys; from distutils import sysconfig; sys.stdout.write(sysconfig.get_python_lib(1,0,prefix='$am_py_exec_prefix'))" 2>/dev/null || - echo "$PYTHON_EXEC_PREFIX/lib/python$PYTHON_VERSION/site-packages"` + am_cv_python_pyexecdir=`$PYTHON -c "import sys; from distutils import sysconfig; sys.stdout.write(sysconfig.get_python_lib(1,0,prefix='$am_py_exec_prefix'))" 2>/dev/null` case $am_cv_python_pyexecdir in $am_py_exec_prefix*) am__strip_prefix=`echo "$am_py_exec_prefix" | sed 's|.|.|g'` @@ -1258,13 +1252,13 @@ Check your system clock]) fi AC_MSG_RESULT(yes)]) -# Copyright (C) 2009 Free Software Foundation, Inc. +# Copyright (C) 2009, 2011 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. -# serial 1 +# serial 2 # AM_SILENT_RULES([DEFAULT]) # -------------------------- @@ -1279,6 +1273,36 @@ yes) AM_DEFAULT_VERBOSITY=0;; no) AM_DEFAULT_VERBOSITY=1;; *) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);; esac +dnl +dnl A few `make' implementations (e.g., NonStop OS and NextStep) +dnl do not support nested variable expansions. +dnl See automake bug#9928 and bug#10237. +am_make=${MAKE-make} +AC_CACHE_CHECK([whether $am_make supports nested variables], + [am_cv_make_support_nested_variables], + [if AS_ECHO([['TRUE=$(BAR$(V)) +BAR0=false +BAR1=true +V=1 +am__doit: + @$(TRUE) +.PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then + am_cv_make_support_nested_variables=yes +else + am_cv_make_support_nested_variables=no +fi]) +if test $am_cv_make_support_nested_variables = yes; then + dnl Using `$V' instead of `$(V)' breaks IRIX make. + AM_V='$(V)' + AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' +else + AM_V=$AM_DEFAULT_VERBOSITY + AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY +fi +AC_SUBST([AM_V])dnl +AM_SUBST_NOTMAKE([AM_V])dnl +AC_SUBST([AM_DEFAULT_V])dnl +AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl AC_SUBST([AM_DEFAULT_VERBOSITY])dnl AM_BACKSLASH='\' AC_SUBST([AM_BACKSLASH])dnl @@ -1336,7 +1360,7 @@ AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) # Check how to create a tarball. -*- Autoconf -*- -# Copyright (C) 2004, 2005 Free Software Foundation, Inc. +# Copyright (C) 2004, 2005, 2012 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1358,10 +1382,11 @@ AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) # a tarball read from stdin. # $(am__untar) < result.tar AC_DEFUN([_AM_PROG_TAR], -[# Always define AMTAR for backward compatibility. -AM_MISSING_PROG([AMTAR], [tar]) +[# Always define AMTAR for backward compatibility. Yes, it's still used +# in the wild :-( We should find a proper way to deprecate it ... +AC_SUBST([AMTAR], ['$${TAR-tar}']) m4_if([$1], [v7], - [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'], + [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'], [m4_case([$1], [ustar],, [pax],, [m4_fatal([Unknown tar format])]) AC_MSG_CHECKING([how to create a $1 tar archive]) diff --git a/config.h.in b/config.h.in index e038a2e..72d1bc1 100644 --- a/config.h.in +++ b/config.h.in @@ -9,6 +9,12 @@ /* dbus-python minor version */ #undef DBUS_PYTHON_MINOR_VERSION +/* Define to 1 if the system has the type `DBusBasicValue'. */ +#undef HAVE_DBUSBASICVALUE + +/* Define to 1 if you have the `dbus_validate_utf8' function. */ +#undef HAVE_DBUS_VALIDATE_UTF8 + /* Define to 1 if you have the <dlfcn.h> header file. */ #undef HAVE_DLFCN_H @@ -1,13 +1,11 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.68 for dbus-python 1.0.0. +# Generated by GNU Autoconf 2.69 for dbus-python 1.1.1. # # Report bugs to <http://bugs.freedesktop.org/enter_bug.cgi?product=dbus&component=python>. # # -# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, -# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software -# Foundation, Inc. +# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. # # # This configure script is free software; the Free Software Foundation @@ -136,6 +134,31 @@ export LANGUAGE # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH +# Use a proper internal environment variable to ensure we don't fall + # into an infinite loop, continuously re-executing ourselves. + if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then + _as_can_reexec=no; export _as_can_reexec; + # We cannot yet assume a decent shell, so we have to provide a +# neutralization value for shells without unset; and this also +# works around shells that cannot unset nonexistent variables. +# Preserve -v and -x to the replacement shell. +BASH_ENV=/dev/null +ENV=/dev/null +(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV +case $- in # (((( + *v*x* | *x*v* ) as_opts=-vx ;; + *v* ) as_opts=-v ;; + *x* ) as_opts=-x ;; + * ) as_opts= ;; +esac +exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} +# Admittedly, this is quite paranoid, since all the known shells bail +# out after a failed `exec'. +$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 +as_fn_exit 255 + fi + # We don't want this to propagate to other subprocesses. + { _as_can_reexec=; unset _as_can_reexec;} if test "x$CONFIG_SHELL" = x; then as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then : emulate sh @@ -169,7 +192,8 @@ if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then : else exitcode=1; echo positional parameters were not saved. fi -test x\$exitcode = x0 || exit 1" +test x\$exitcode = x0 || exit 1 +test -x / || exit 1" as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && @@ -222,21 +246,25 @@ IFS=$as_save_IFS if test "x$CONFIG_SHELL" != x; then : - # We cannot yet assume a decent shell, so we have to provide a - # neutralization value for shells without unset; and this also - # works around shells that cannot unset nonexistent variables. - # Preserve -v and -x to the replacement shell. - BASH_ENV=/dev/null - ENV=/dev/null - (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV - export CONFIG_SHELL - case $- in # (((( - *v*x* | *x*v* ) as_opts=-vx ;; - *v* ) as_opts=-v ;; - *x* ) as_opts=-x ;; - * ) as_opts= ;; - esac - exec "$CONFIG_SHELL" $as_opts "$as_myself" ${1+"$@"} + export CONFIG_SHELL + # We cannot yet assume a decent shell, so we have to provide a +# neutralization value for shells without unset; and this also +# works around shells that cannot unset nonexistent variables. +# Preserve -v and -x to the replacement shell. +BASH_ENV=/dev/null +ENV=/dev/null +(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV +case $- in # (((( + *v*x* | *x*v* ) as_opts=-vx ;; + *v* ) as_opts=-v ;; + *x* ) as_opts=-x ;; + * ) as_opts= ;; +esac +exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} +# Admittedly, this is quite paranoid, since all the known shells bail +# out after a failed `exec'. +$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 +exit 255 fi if test x$as_have_required = xno; then : @@ -340,6 +368,14 @@ $as_echo X"$as_dir" | } # as_fn_mkdir_p + +# as_fn_executable_p FILE +# ----------------------- +# Test if FILE is an executable regular file. +as_fn_executable_p () +{ + test -f "$1" && test -x "$1" +} # as_fn_executable_p # as_fn_append VAR VALUE # ---------------------- # Append the text in VALUE to the end of the definition contained in VAR. Take @@ -461,6 +497,10 @@ as_cr_alnum=$as_cr_Letters$as_cr_digits chmod +x "$as_me.lineno" || { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } + # If we had to re-execute with $CONFIG_SHELL, we're ensured to have + # already done that, so ensure we don't try to do so again and fall + # in an infinite loop. This has already happened in practice. + _as_can_reexec=no; export _as_can_reexec # Don't try to exec as it changes $[0], causing all sort of problems # (the dirname of $[0] is not the place where we might find the # original and so on. Autoconf is especially sensitive to this). @@ -495,16 +535,16 @@ if (echo >conf$$.file) 2>/dev/null; then # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. - # In both cases, we have to default to `cp -p'. + # In both cases, we have to default to `cp -pR'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || - as_ln_s='cp -p' + as_ln_s='cp -pR' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else - as_ln_s='cp -p' + as_ln_s='cp -pR' fi else - as_ln_s='cp -p' + as_ln_s='cp -pR' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null @@ -516,28 +556,8 @@ else as_mkdir_p=false fi -if test -x / >/dev/null 2>&1; then - as_test_x='test -x' -else - if ls -dL / >/dev/null 2>&1; then - as_ls_L_option=L - else - as_ls_L_option= - fi - as_test_x=' - eval sh -c '\'' - if test -d "$1"; then - test -d "$1/."; - else - case $1 in #( - -*)set "./$1";; - esac; - case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #(( - ???[sx]*):;;*)false;;esac;fi - '\'' sh - ' -fi -as_executable_p=$as_test_x +as_test_x='test -x' +as_executable_p=as_fn_executable_p # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" @@ -571,8 +591,8 @@ MAKEFLAGS= # Identity of this package. PACKAGE_NAME='dbus-python' PACKAGE_TARNAME='dbus-python' -PACKAGE_VERSION='1.0.0' -PACKAGE_STRING='dbus-python 1.0.0' +PACKAGE_VERSION='1.1.1' +PACKAGE_STRING='dbus-python 1.1.1' PACKAGE_BUGREPORT='http://bugs.freedesktop.org/enter_bug.cgi?product=dbus&component=python' PACKAGE_URL='' @@ -633,6 +653,8 @@ RST2HTML EPYDOC PYTHON_LIBS PLATFORM +HAVE_PYTHON_3_FALSE +HAVE_PYTHON_3_TRUE PYTHON_INCLUDES pkgpyexecdir pyexecdir @@ -718,6 +740,8 @@ DBUS_PYTHON_MINOR_VERSION DBUS_PYTHON_MAJOR_VERSION AM_BACKSLASH AM_DEFAULT_VERBOSITY +AM_DEFAULT_V +AM_V target_alias host_alias build_alias @@ -1247,8 +1271,6 @@ target=$target_alias if test "x$host_alias" != x; then if test "x$build_alias" = x; then cross_compiling=maybe - $as_echo "$as_me: WARNING: if you wanted to set the --build type, don't use --host. - If a cross compiler is detected then cross compile mode will be used" >&2 elif test "x$build_alias" != "x$host_alias"; then cross_compiling=yes fi @@ -1334,7 +1356,7 @@ if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures dbus-python 1.0.0 to adapt to many kinds of systems. +\`configure' configures dbus-python 1.1.1 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1404,7 +1426,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of dbus-python 1.0.0:";; + short | recursive ) echo "Configuration of dbus-python 1.1.1:";; esac cat <<\_ACEOF @@ -1532,10 +1554,10 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -dbus-python configure 1.0.0 -generated by GNU Autoconf 2.68 +dbus-python configure 1.1.1 +generated by GNU Autoconf 2.69 -Copyright (C) 2010 Free Software Foundation, Inc. +Copyright (C) 2012 Free Software Foundation, Inc. This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. _ACEOF @@ -1611,7 +1633,7 @@ $as_echo "$ac_try_echo"; } >&5 test ! -s conftest.err } && test -s conftest$ac_exeext && { test "$cross_compiling" = yes || - $as_test_x conftest$ac_exeext + test -x conftest$ac_exeext }; then : ac_retval=0 else @@ -1806,12 +1828,66 @@ $as_echo "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_func + +# ac_fn_c_check_type LINENO TYPE VAR INCLUDES +# ------------------------------------------- +# Tests whether TYPE exists after having included INCLUDES, setting cache +# variable VAR accordingly. +ac_fn_c_check_type () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 +$as_echo_n "checking for $2... " >&6; } +if eval \${$3+:} false; then : + $as_echo_n "(cached) " >&6 +else + eval "$3=no" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$4 +int +main () +{ +if (sizeof ($2)) + return 0; + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$4 +int +main () +{ +if (sizeof (($2))) + return 0; + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + +else + eval "$3=yes" +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +eval ac_res=\$$3 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +$as_echo "$ac_res" >&6; } + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + +} # ac_fn_c_check_type cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by dbus-python $as_me 1.0.0, which was -generated by GNU Autoconf 2.68. Invocation command line was +It was created by dbus-python $as_me 1.1.1, which was +generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -2169,6 +2245,33 @@ yes) AM_DEFAULT_VERBOSITY=0;; no) AM_DEFAULT_VERBOSITY=1;; *) AM_DEFAULT_VERBOSITY=1;; esac +am_make=${MAKE-make} +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5 +$as_echo_n "checking whether $am_make supports nested variables... " >&6; } +if ${am_cv_make_support_nested_variables+:} false; then : + $as_echo_n "(cached) " >&6 +else + if $as_echo 'TRUE=$(BAR$(V)) +BAR0=false +BAR1=true +V=1 +am__doit: + @$(TRUE) +.PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then + am_cv_make_support_nested_variables=yes +else + am_cv_make_support_nested_variables=no +fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5 +$as_echo "$am_cv_make_support_nested_variables" >&6; } +if test $am_cv_make_support_nested_variables = yes; then + AM_V='$(V)' + AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' +else + AM_V=$AM_DEFAULT_VERBOSITY + AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY +fi AM_BACKSLASH='\' @@ -2178,14 +2281,14 @@ $as_echo "#define DBUS_PYTHON_MAJOR_VERSION 1" >>confdefs.h DBUS_PYTHON_MAJOR_VERSION=1 -$as_echo "#define DBUS_PYTHON_MINOR_VERSION 0" >>confdefs.h +$as_echo "#define DBUS_PYTHON_MINOR_VERSION 1" >>confdefs.h -DBUS_PYTHON_MINOR_VERSION=0 +DBUS_PYTHON_MINOR_VERSION=1 -$as_echo "#define DBUS_PYTHON_MICRO_VERSION 0" >>confdefs.h +$as_echo "#define DBUS_PYTHON_MICRO_VERSION 1" >>confdefs.h -DBUS_PYTHON_MICRO_VERSION=0 +DBUS_PYTHON_MICRO_VERSION=1 @@ -2260,7 +2363,7 @@ case $as_dir/ in #(( # by default. for ac_prog in ginstall scoinst install; do for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then if test $ac_prog = install && grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # AIX install. It has an incompatible calling convention. @@ -2429,7 +2532,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_STRIP="${ac_tool_prefix}strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -2469,7 +2572,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_STRIP="strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -2520,7 +2623,7 @@ do test -z "$as_dir" && as_dir=. for ac_prog in mkdir gmkdir; do for ac_exec_ext in '' $ac_executable_extensions; do - { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; } || continue + as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( 'mkdir (GNU coreutils) '* | \ 'mkdir (coreutils) '* | \ @@ -2573,7 +2676,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_AWK="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -2659,7 +2762,7 @@ fi # Define the identity of the package. PACKAGE='dbus-python' - VERSION='1.0.0' + VERSION='1.1.1' cat >>confdefs.h <<_ACEOF @@ -2689,11 +2792,11 @@ MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} # We need awk for the "check" target. The system "awk" is bad on # some platforms. -# Always define AMTAR for backward compatibility. - -AMTAR=${AMTAR-"${am_missing_run}tar"} +# Always define AMTAR for backward compatibility. Yes, it's still used +# in the wild :-( We should find a proper way to deprecate it ... +AMTAR='$${TAR-tar}' -am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -' +am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -' @@ -2985,7 +3088,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -3025,7 +3128,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -3078,7 +3181,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -3119,7 +3222,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then ac_prog_rejected=yes continue @@ -3177,7 +3280,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -3221,7 +3324,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -3667,8 +3770,7 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include <stdarg.h> #include <stdio.h> -#include <sys/types.h> -#include <sys/stat.h> +struct stat; /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ struct buf { int x; }; FILE * (*rcsopen) (struct buf *, struct stat *, int); @@ -3903,7 +4005,7 @@ do for ac_prog in sed gsed; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_SED="$as_dir/$ac_prog$ac_exec_ext" - { test -f "$ac_path_SED" && $as_test_x "$ac_path_SED"; } || continue + as_fn_executable_p "$ac_path_SED" || continue # Check for GNU ac_path_SED and select it if it is found. # Check for GNU $ac_path_SED case `"$ac_path_SED" --version 2>&1` in @@ -3979,7 +4081,7 @@ do for ac_prog in grep ggrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" - { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue + as_fn_executable_p "$ac_path_GREP" || continue # Check for GNU ac_path_GREP and select it if it is found. # Check for GNU $ac_path_GREP case `"$ac_path_GREP" --version 2>&1` in @@ -4045,7 +4147,7 @@ do for ac_prog in egrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" - { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue + as_fn_executable_p "$ac_path_EGREP" || continue # Check for GNU ac_path_EGREP and select it if it is found. # Check for GNU $ac_path_EGREP case `"$ac_path_EGREP" --version 2>&1` in @@ -4112,7 +4214,7 @@ do for ac_prog in fgrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_FGREP="$as_dir/$ac_prog$ac_exec_ext" - { test -f "$ac_path_FGREP" && $as_test_x "$ac_path_FGREP"; } || continue + as_fn_executable_p "$ac_path_FGREP" || continue # Check for GNU ac_path_FGREP and select it if it is found. # Check for GNU $ac_path_FGREP case `"$ac_path_FGREP" --version 2>&1` in @@ -4368,7 +4470,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_DUMPBIN="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -4412,7 +4514,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_DUMPBIN="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -4836,7 +4938,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_OBJDUMP="${ac_tool_prefix}objdump" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -4876,7 +4978,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_OBJDUMP="objdump" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -5182,7 +5284,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_DLLTOOL="${ac_tool_prefix}dlltool" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -5222,7 +5324,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_DLLTOOL="dlltool" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -5326,7 +5428,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_AR="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -5370,7 +5472,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_AR="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -5495,7 +5597,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_STRIP="${ac_tool_prefix}strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -5535,7 +5637,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_STRIP="strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -5594,7 +5696,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -5634,7 +5736,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_RANLIB="ranlib" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -6283,7 +6385,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_MANIFEST_TOOL="${ac_tool_prefix}mt" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -6323,7 +6425,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_MANIFEST_TOOL="mt" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -6403,7 +6505,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_DSYMUTIL="${ac_tool_prefix}dsymutil" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -6443,7 +6545,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_DSYMUTIL="dsymutil" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -6495,7 +6597,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_NMEDIT="${ac_tool_prefix}nmedit" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -6535,7 +6637,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_NMEDIT="nmedit" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -6587,7 +6689,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_LIPO="${ac_tool_prefix}lipo" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -6627,7 +6729,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_LIPO="lipo" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -6679,7 +6781,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_OTOOL="${ac_tool_prefix}otool" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -6719,7 +6821,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_OTOOL="otool" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -6771,7 +6873,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_OTOOL64="${ac_tool_prefix}otool64" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -6811,7 +6913,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_OTOOL64="otool64" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -11494,7 +11596,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_PYTHON="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -11559,7 +11661,7 @@ $as_echo "$am_cv_python_platform" >&6; } - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $am_display_PYTHON script directory" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $am_display_PYTHON script directory" >&5 $as_echo_n "checking for $am_display_PYTHON script directory... " >&6; } if ${am_cv_python_pythondir+:} false; then : $as_echo_n "(cached) " >&6 @@ -11570,8 +11672,7 @@ else else am_py_prefix=$prefix fi - am_cv_python_pythondir=`$PYTHON -c "import sys; from distutils import sysconfig; sys.stdout.write(sysconfig.get_python_lib(0,0,prefix='$am_py_prefix'))" 2>/dev/null || - echo "$PYTHON_PREFIX/lib/python$PYTHON_VERSION/site-packages"` + am_cv_python_pythondir=`$PYTHON -c "import sys; from distutils import sysconfig; sys.stdout.write(sysconfig.get_python_lib(0,0,prefix='$am_py_prefix'))" 2>/dev/null` case $am_cv_python_pythondir in $am_py_prefix*) am__strip_prefix=`echo "$am_py_prefix" | sed 's|.|.|g'` @@ -11597,7 +11698,7 @@ $as_echo "$am_cv_python_pythondir" >&6; } pkgpythondir=\${pythondir}/$PACKAGE - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $am_display_PYTHON extension module directory" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $am_display_PYTHON extension module directory" >&5 $as_echo_n "checking for $am_display_PYTHON extension module directory... " >&6; } if ${am_cv_python_pyexecdir+:} false; then : $as_echo_n "(cached) " >&6 @@ -11608,8 +11709,7 @@ else else am_py_exec_prefix=$exec_prefix fi - am_cv_python_pyexecdir=`$PYTHON -c "import sys; from distutils import sysconfig; sys.stdout.write(sysconfig.get_python_lib(1,0,prefix='$am_py_exec_prefix'))" 2>/dev/null || - echo "$PYTHON_EXEC_PREFIX/lib/python$PYTHON_VERSION/site-packages"` + am_cv_python_pyexecdir=`$PYTHON -c "import sys; from distutils import sysconfig; sys.stdout.write(sysconfig.get_python_lib(1,0,prefix='$am_py_exec_prefix'))" 2>/dev/null` case $am_cv_python_pyexecdir in $am_py_exec_prefix*) am__strip_prefix=`echo "$am_py_exec_prefix" | sed 's|.|.|g'` @@ -11657,8 +11757,8 @@ $as_echo "$PYTHON_INCLUDES" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: failed, will try another way" >&5 $as_echo "failed, will try another way" >&6; } - py_prefix=`$PYTHON -c "import sys; print sys.prefix"` - py_exec_prefix=`$PYTHON -c "import sys; print sys.exec_prefix"` + py_prefix=`$PYTHON -c "import sys; print(sys.prefix)"` + py_exec_prefix=`$PYTHON -c "import sys; print(sys.exec_prefix)"` { $as_echo "$as_me:${as_lineno-$LINENO}: checking for Python headers in $py_prefix and $py_exec_prefix" >&5 $as_echo_n "checking for Python headers in $py_prefix and $py_exec_prefix... " >&6; } PYTHON_INCLUDES="-I${py_prefix}/include/python${PYTHON_VERSION}" @@ -11692,6 +11792,17 @@ rm -f conftest.err conftest.i conftest.$ac_ext CPPFLAGS="$save_CPPFLAGS" +# This command exits 0 (success) if sys.version >= "3", or 1 (failure) +# if sys.version < "3" (i.e. starts with "2"). + if $PYTHON -c "import sys; sys.exit(sys.version < '3')"; then + HAVE_PYTHON_3_TRUE= + HAVE_PYTHON_3_FALSE='#' +else + HAVE_PYTHON_3_TRUE='#' + HAVE_PYTHON_3_FALSE= +fi + + PLATFORM=`$PYTHON -c "from __future__ import print_function; from distutils import util; print(util.get_platform())"` @@ -11800,7 +11911,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_EPYDOC="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -11870,7 +11981,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_RST2HTML="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -12121,7 +12232,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -12164,7 +12275,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -12397,6 +12508,35 @@ $as_echo "yes" >&6; } fi +dbuspy_save_CFLAGS="$CFLAGS" +dbuspy_save_LIBS="$LIBS" +CFLAGS="$CFLAGS $DBUS_CFLAGS" +LIBS="$CFLAGS $DBUS_LIBS" +ac_fn_c_check_type "$LINENO" "DBusBasicValue" "ac_cv_type_DBusBasicValue" "#include <dbus/dbus.h> +" +if test "x$ac_cv_type_DBusBasicValue" = xyes; then : + +cat >>confdefs.h <<_ACEOF +#define HAVE_DBUSBASICVALUE 1 +_ACEOF + + +fi + +for ac_func in dbus_validate_utf8 +do : + ac_fn_c_check_func "$LINENO" "dbus_validate_utf8" "ac_cv_func_dbus_validate_utf8" +if test "x$ac_cv_func_dbus_validate_utf8" = xyes; then : + cat >>confdefs.h <<_ACEOF +#define HAVE_DBUS_VALIDATE_UTF8 1 +_ACEOF + +fi +done + +CFLAGS="$dbuspy_save_CFLAGS" +LIBS="$dbuspy_save_LIBS" + { $as_echo "$as_me:${as_lineno-$LINENO}: checking to see if compiler understands " >&5 $as_echo_n "checking to see if compiler understands ... " >&6; } @@ -12838,6 +12978,10 @@ if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then as_fn_error $? "conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi +if test -z "${HAVE_PYTHON_3_TRUE}" && test -z "${HAVE_PYTHON_3_FALSE}"; then + as_fn_error $? "conditional \"HAVE_PYTHON_3\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi if test -z "${ENABLE_API_DOCS_TRUE}" && test -z "${ENABLE_API_DOCS_FALSE}"; then as_fn_error $? "conditional \"ENABLE_API_DOCS\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 @@ -13144,16 +13288,16 @@ if (echo >conf$$.file) 2>/dev/null; then # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. - # In both cases, we have to default to `cp -p'. + # In both cases, we have to default to `cp -pR'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || - as_ln_s='cp -p' + as_ln_s='cp -pR' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else - as_ln_s='cp -p' + as_ln_s='cp -pR' fi else - as_ln_s='cp -p' + as_ln_s='cp -pR' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null @@ -13213,28 +13357,16 @@ else as_mkdir_p=false fi -if test -x / >/dev/null 2>&1; then - as_test_x='test -x' -else - if ls -dL / >/dev/null 2>&1; then - as_ls_L_option=L - else - as_ls_L_option= - fi - as_test_x=' - eval sh -c '\'' - if test -d "$1"; then - test -d "$1/."; - else - case $1 in #( - -*)set "./$1";; - esac; - case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #(( - ???[sx]*):;;*)false;;esac;fi - '\'' sh - ' -fi -as_executable_p=$as_test_x + +# as_fn_executable_p FILE +# ----------------------- +# Test if FILE is an executable regular file. +as_fn_executable_p () +{ + test -f "$1" && test -x "$1" +} # as_fn_executable_p +as_test_x='test -x' +as_executable_p=as_fn_executable_p # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" @@ -13255,8 +13387,8 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by dbus-python $as_me 1.0.0, which was -generated by GNU Autoconf 2.68. Invocation command line was +This file was extended by dbus-python $as_me 1.1.1, which was +generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES CONFIG_HEADERS = $CONFIG_HEADERS @@ -13321,11 +13453,11 @@ _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -dbus-python config.status 1.0.0 -configured by $0, generated by GNU Autoconf 2.68, +dbus-python config.status 1.1.1 +configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" -Copyright (C) 2010 Free Software Foundation, Inc. +Copyright (C) 2012 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." @@ -13416,7 +13548,7 @@ fi _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 if \$ac_cs_recheck; then - set X '$SHELL' '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion + set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion shift \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6 CONFIG_SHELL='$SHELL' diff --git a/configure.ac b/configure.ac index 7b26ada..1ce8965 100644 --- a/configure.ac +++ b/configure.ac @@ -5,8 +5,8 @@ dnl If not 1, append datestamp to the version number m4_define(dbus_python_released, 1) dnl The dbus-python version number (must actually be numeric at the moment) m4_define(dbus_python_major_version, 1) -m4_define(dbus_python_minor_version, 0) -m4_define(dbus_python_micro_version, 0) +m4_define(dbus_python_minor_version, 1) +m4_define(dbus_python_micro_version, 1) m4_define(dbus_python_maybe_datestamp, m4_esyscmd([if test x]dbus_python_released[ != x1; then date +.%Y%m%d | tr -d '\n\r'; fi])) @@ -50,6 +50,11 @@ AM_PATH_PYTHON([2.6]) AM_CHECK_PYTHON_HEADERS(,[AC_MSG_ERROR(could not find Python headers)]) +# This command exits 0 (success) if sys.version >= "3", or 1 (failure) +# if sys.version < "3" (i.e. starts with "2"). +AM_CONDITIONAL([HAVE_PYTHON_3], + [$PYTHON -c "import sys; sys.exit(sys.version < '3')"]) + PLATFORM=`$PYTHON -c "from __future__ import print_function; from distutils import util; print(util.get_platform())"` AC_SUBST(PLATFORM) @@ -152,6 +157,15 @@ AM_CONDITIONAL([ENABLE_DOCS], [test "$enable_html_docs" != no]) PKG_CHECK_MODULES(DBUS, [dbus-1 >= 1.4]) PKG_CHECK_MODULES(DBUS_GLIB, [dbus-glib-1 >= 0.70]) +dbuspy_save_CFLAGS="$CFLAGS" +dbuspy_save_LIBS="$LIBS" +CFLAGS="$CFLAGS $DBUS_CFLAGS" +LIBS="$CFLAGS $DBUS_LIBS" +AC_CHECK_TYPES([DBusBasicValue], [], [], [#include <dbus/dbus.h>]) +AC_CHECK_FUNCS([dbus_validate_utf8]) +CFLAGS="$dbuspy_save_CFLAGS" +LIBS="$dbuspy_save_LIBS" + TP_COMPILER_WARNINGS([CFLAGS_WARNINGS], [test] dbus_python_released [= 0], [all \ extra \ diff --git a/dbus/_version.py b/dbus/_version.py index aa2819e..4a304ed 100644 --- a/dbus/_version.py +++ b/dbus/_version.py @@ -1,3 +1,3 @@ # dbus/_version.py. Generated from _version.py.in by configure. -version = (1, 0, 0) -__version__ = "1.0.0" +version = (1, 1, 1) +__version__ = "1.1.1" diff --git a/dbus/gi_service.py b/dbus/gi_service.py new file mode 100644 index 0000000..924442f --- /dev/null +++ b/dbus/gi_service.py @@ -0,0 +1,83 @@ +"""Support code for implementing D-Bus services via PyGI.""" + +# Copyright (C) 2007 Collabora Ltd. <http://www.collabora.co.uk/> +# +# Permission is hereby granted, free of charge, to any person +# obtaining a copy of this software and associated documentation +# files (the "Software"), to deal in the Software without +# restriction, including without limitation the rights to use, copy, +# modify, merge, publish, distribute, sublicense, and/or sell copies +# of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be +# included in all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +# HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +# DEALINGS IN THE SOFTWARE. + +__all__ = ['ExportedGObject'] + +from gi.repository import GObject +import dbus.service + +# The odd syntax used here is required so that the code is compatible with +# both Python 2 and Python 3. It essentially creates a new class called +# ExportedGObject with a metaclass of ExportGObjectType and an __init__() +# function. +# +# Because GObject and `dbus.service.Object` both have custom metaclasses, the +# naive approach using simple multiple inheritance won't work. This class has +# `ExportedGObjectType` as its metaclass, which is sufficient to make it work +# correctly. + +class ExportedGObjectType(GObject.GObjectMeta, dbus.service.InterfaceType): + """A metaclass which inherits from both GObjectMeta and + `dbus.service.InterfaceType`. Used as the metaclass for `ExportedGObject`. + """ + def __init__(cls, name, bases, dct): + GObject.GObjectMeta.__init__(cls, name, bases, dct) + dbus.service.InterfaceType.__init__(cls, name, bases, dct) + + +def ExportedGObject__init__(self, conn=None, object_path=None, **kwargs): + """Initialize an exported GObject. + + :Parameters: + `conn` : dbus.connection.Connection + The D-Bus connection or bus + `object_path` : str + The object path at which to register this object. + :Keywords: + `bus_name` : dbus.service.BusName + A bus name to be held on behalf of this object, or None. + `gobject_properties` : dict + GObject properties to be set on the constructed object. + + Any unrecognised keyword arguments will also be interpreted + as GObject properties. + """ + bus_name = kwargs.pop('bus_name', None) + gobject_properties = kwargs.pop('gobject_properties', None) + + if gobject_properties is not None: + kwargs.update(gobject_properties) + GObject.GObject.__init__(self, **kwargs) + dbus.service.Object.__init__(self, conn=conn, + object_path=object_path, + bus_name=bus_name) + +ExportedGObject__doc__ = 'A GObject which is exported on the D-Bus.' + +ExportedGObject = ExportedGObjectType( + 'ExportedGObject', + (GObject.GObject, dbus.service.Object), + {'__init__': ExportedGObject__init__, + '__doc__': ExportedGObject__doc__, + }) diff --git a/dbus/gobject_service.py b/dbus/gobject_service.py index 47a2b5f..1c96546 100644 --- a/dbus/gobject_service.py +++ b/dbus/gobject_service.py @@ -22,20 +22,23 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER # DEALINGS IN THE SOFTWARE. -__all__ = ['ExportedGObject'] +import sys +from warnings import warn as _warn +_warn(DeprecationWarning("""\ +dbus.gobject_service is deprecated, and is not available under Python 3. -from gi.repository import GObject as gobject -import dbus.service +Porting from gobject (PyGObject 2) to gi.repository.GObject (PyGObject 3), +and using dbus.gi_service instead of dbus.gobject_service, is recommended. +"""), DeprecationWarning, stacklevel=2) -# The odd syntax used here is required so that the code is compatible with -# both Python 2 and Python 3. It essentially creates a new class called -# ExportedGObject with a metaclass of ExportGObjectType and an __init__() -# function. -# -# Because GObject and `dbus.service.Object` both have custom metaclasses, the -# naive approach using simple multiple inheritance won't work. This class has -# `ExportedGObjectType` as its metaclass, which is sufficient to make it work -# correctly. +if 'gi' in sys.modules: + # this worked in dbus-python 1.0, so preserve the functionality + from gi.repository import GObject as gobject +else: + # this worked in dbus-python < 1.0 + import gobject + +import dbus.service class ExportedGObjectType(gobject.GObjectMeta, dbus.service.InterfaceType): """A metaclass which inherits from both GObjectMeta and @@ -45,39 +48,39 @@ class ExportedGObjectType(gobject.GObjectMeta, dbus.service.InterfaceType): gobject.GObjectMeta.__init__(cls, name, bases, dct) dbus.service.InterfaceType.__init__(cls, name, bases, dct) +class ExportedGObject(gobject.GObject, dbus.service.Object): + """A GObject which is exported on the D-Bus. -def ExportedGObject__init__(self, conn=None, object_path=None, **kwargs): - """Initialize an exported GObject. - - :Parameters: - `conn` : dbus.connection.Connection - The D-Bus connection or bus - `object_path` : str - The object path at which to register this object. - :Keywords: - `bus_name` : dbus.service.BusName - A bus name to be held on behalf of this object, or None. - `gobject_properties` : dict - GObject properties to be set on the constructed object. + Because GObject and `dbus.service.Object` both have custom metaclasses, + the naive approach using simple multiple inheritance won't work. This + class has `ExportedGObjectType` as its metaclass, which is sufficient + to make it work correctly. + """ + __metaclass__ = ExportedGObjectType - Any unrecognised keyword arguments will also be interpreted - as GObject properties. - """ - bus_name = kwargs.pop('bus_name', None) - gobject_properties = kwargs.pop('gobject_properties', None) + def __init__(self, conn=None, object_path=None, **kwargs): + """Initialize an exported GObject. - if gobject_properties is not None: - kwargs.update(gobject_properties) - gobject.GObject.__init__(self, **kwargs) - dbus.service.Object.__init__(self, conn=conn, - object_path=object_path, - bus_name=bus_name) + :Parameters: + `conn` : dbus.connection.Connection + The D-Bus connection or bus + `object_path` : str + The object path at which to register this object. + :Keywords: + `bus_name` : dbus.service.BusName + A bus name to be held on behalf of this object, or None. + `gobject_properties` : dict + GObject properties to be set on the constructed object. -ExportedGObject__doc__ = 'A GObject which is exported on the D-Bus.' + Any unrecognised keyword arguments will also be interpreted + as GObject properties. + """ + bus_name = kwargs.pop('bus_name', None) + gobject_properties = kwargs.pop('gobject_properties', None) -ExportedGObject = ExportedGObjectType( - 'ExportedGObject', - (gobject.GObject, dbus.service.Object), - {'__init__': ExportedGObject__init__, - '__doc__': ExportedGObject__doc__, - }) + if gobject_properties is not None: + kwargs.update(gobject_properties) + gobject.GObject.__init__(self, **kwargs) + dbus.service.Object.__init__(self, conn=conn, + object_path=object_path, + bus_name=bus_name) diff --git a/examples/Makefile.in b/examples/Makefile.in index 6f40625..41adf36 100644 --- a/examples/Makefile.in +++ b/examples/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.11.2 from Makefile.am. +# Makefile.in generated by automake 1.11.5 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, @@ -15,6 +15,23 @@ @SET_MAKE@ VPATH = @srcdir@ +am__make_dryrun = \ + { \ + am__dry=no; \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ + | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ + *) \ + for am__flg in $$MAKEFLAGS; do \ + case $$am__flg in \ + *=*|--*) ;; \ + *n*) am__dry=yes; break;; \ + esac; \ + done;; \ + esac; \ + test $$am__dry = yes; \ + } pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ @@ -51,14 +68,19 @@ mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = -AM_V_GEN = $(am__v_GEN_$(V)) -am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; -AM_V_at = $(am__v_at_$(V)) -am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ SOURCES = DIST_SOURCES = +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ diff --git a/m4/Makefile.in b/m4/Makefile.in index a4080ab..b98683e 100644 --- a/m4/Makefile.in +++ b/m4/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.11.2 from Makefile.am. +# Makefile.in generated by automake 1.11.5 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, @@ -15,6 +15,23 @@ @SET_MAKE@ VPATH = @srcdir@ +am__make_dryrun = \ + { \ + am__dry=no; \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ + | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ + *) \ + for am__flg in $$MAKEFLAGS; do \ + case $$am__flg in \ + *=*|--*) ;; \ + *n*) am__dry=yes; break;; \ + esac; \ + done;; \ + esac; \ + test $$am__dry = yes; \ + } pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ @@ -51,14 +68,19 @@ mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = -AM_V_GEN = $(am__v_GEN_$(V)) -am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; -AM_V_at = $(am__v_at_$(V)) -am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ SOURCES = DIST_SOURCES = +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ diff --git a/m4/am-check-python-headers.m4 b/m4/am-check-python-headers.m4 index 513abae..b1aaf5a 100644 --- a/m4/am-check-python-headers.m4 +++ b/m4/am-check-python-headers.m4 @@ -16,8 +16,8 @@ else AC_MSG_RESULT($PYTHON_INCLUDES) else AC_MSG_RESULT([failed, will try another way]) - py_prefix=`$PYTHON -c "import sys; print sys.prefix"` - py_exec_prefix=`$PYTHON -c "import sys; print sys.exec_prefix"` + py_prefix=`$PYTHON -c "import sys; print(sys.prefix)"` + py_exec_prefix=`$PYTHON -c "import sys; print(sys.exec_prefix)"` AC_MSG_CHECKING(for Python headers in $py_prefix and $py_exec_prefix) PYTHON_INCLUDES="-I${py_prefix}/include/python${PYTHON_VERSION}" if test "$py_prefix" != "$py_exec_prefix"; then diff --git a/test/Makefile.in b/test/Makefile.in index 6078eef..aa05ea7 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.11.2 from Makefile.am. +# Makefile.in generated by automake 1.11.5 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, @@ -16,6 +16,23 @@ @SET_MAKE@ VPATH = @srcdir@ +am__make_dryrun = \ + { \ + am__dry=no; \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ + | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ + *) \ + for am__flg in $$MAKEFLAGS; do \ + case $$am__flg in \ + *=*|--*) ;; \ + *n*) am__dry=yes; break;; \ + esac; \ + done;; \ + esac; \ + test $$am__dry = yes; \ + } pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ @@ -89,8 +106,8 @@ LTLIBRARIES = $(pyexec_LTLIBRARIES) dbus_py_test_la_LIBADD = am_dbus_py_test_la_OBJECTS = dbus_py_test_la-dbus_py_test.lo dbus_py_test_la_OBJECTS = $(am_dbus_py_test_la_OBJECTS) -AM_V_lt = $(am__v_lt_$(V)) -am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) +AM_V_lt = $(am__v_lt_@AM_V@) +am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent dbus_py_test_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ @@ -114,25 +131,30 @@ LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) -AM_V_CC = $(am__v_CC_$(V)) -am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) +AM_V_CC = $(am__v_CC_@AM_V@) +am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; -AM_V_at = $(am__v_at_$(V)) -am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CCLD = $(am__v_CCLD_$(V)) -am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) +AM_V_CCLD = $(am__v_CCLD_@AM_V@) +am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; -AM_V_GEN = $(am__v_GEN_$(V)) -am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; SOURCES = $(dbus_py_test_la_SOURCES) $(test_import_repeatedly_SOURCES) DIST_SOURCES = $(dbus_py_test_la_SOURCES) \ $(test_import_repeatedly_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac ETAGS = etags CTAGS = ctags am__tty_colors = \ @@ -355,7 +377,6 @@ TestSuitePythonService.service: $(top_builddir)/config.status $(srcdir)/TestSuit cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ install-pyexecLTLIBRARIES: $(pyexec_LTLIBRARIES) @$(NORMAL_INSTALL) - test -z "$(pyexecdir)" || $(MKDIR_P) "$(DESTDIR)$(pyexecdir)" @list='$(pyexec_LTLIBRARIES)'; test -n "$(pyexecdir)" || list=; \ list2=; for p in $$list; do \ if test -f $$p; then \ @@ -363,6 +384,8 @@ install-pyexecLTLIBRARIES: $(pyexec_LTLIBRARIES) else :; fi; \ done; \ test -z "$$list2" || { \ + echo " $(MKDIR_P) '$(DESTDIR)$(pyexecdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(pyexecdir)" || exit 1; \ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(pyexecdir)'"; \ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(pyexecdir)"; \ } @@ -384,7 +407,7 @@ clean-pyexecLTLIBRARIES: echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done -dbus_py_test.la: $(dbus_py_test_la_OBJECTS) $(dbus_py_test_la_DEPENDENCIES) +dbus_py_test.la: $(dbus_py_test_la_OBJECTS) $(dbus_py_test_la_DEPENDENCIES) $(EXTRA_dbus_py_test_la_DEPENDENCIES) $(AM_V_CCLD)$(dbus_py_test_la_LINK) -rpath $(pyexecdir) $(dbus_py_test_la_OBJECTS) $(dbus_py_test_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @@ -395,7 +418,7 @@ clean-checkPROGRAMS: list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ echo " rm -f" $$list; \ rm -f $$list -test-import-repeatedly$(EXEEXT): $(test_import_repeatedly_OBJECTS) $(test_import_repeatedly_DEPENDENCIES) +test-import-repeatedly$(EXEEXT): $(test_import_repeatedly_OBJECTS) $(test_import_repeatedly_DEPENDENCIES) $(EXTRA_test_import_repeatedly_DEPENDENCIES) @rm -f test-import-repeatedly$(EXEEXT) $(AM_V_CCLD)$(test_import_repeatedly_LINK) $(test_import_repeatedly_OBJECTS) $(test_import_repeatedly_LDADD) $(LIBS) diff --git a/test/test-service.py b/test/test-service.py index a4448f6..a7bf469 100755 --- a/test/test-service.py +++ b/test/test-service.py @@ -39,8 +39,8 @@ import dbus.service import dbus.glib import random -from dbus.gobject_service import ExportedGObject -from gi.repository import GObject as gobject +from dbus.gi_service import ExportedGObject +from gi.repository import GObject from dbus._compat import is_py2, is_py3 @@ -263,7 +263,7 @@ class TestObject(dbus.service.Object, TestInterface): def AsynchronousMethod(self, async, fail, variant, return_cb, error_cb): try: if async: - gobject.timeout_add(500, self.AsynchronousMethod, False, fail, + GObject.timeout_add(500, self.AsynchronousMethod, False, fail, variant, return_cb, error_cb) return else: @@ -310,7 +310,7 @@ class TestObject(dbus.service.Object, TestInterface): def return_from_async_wait(): return_cb() return False - gobject.timeout_add(500, return_from_async_wait) + GObject.timeout_add(500, return_from_async_wait) @dbus.service.method(IFACE, in_signature='', out_signature='') def RaiseValueError(self): @@ -356,7 +356,7 @@ def main(): logger.info('making Fallback') fallback_object = Fallback(session_bus) logger.info('creating mainloop') - loop = gobject.MainLoop() + loop = GObject.MainLoop() logger.info('running') loop.run() logger.info('done') diff --git a/test/test-standalone.py b/test/test-standalone.py index 95b636a..584ba4f 100755 --- a/test/test-standalone.py +++ b/test/test-standalone.py @@ -322,6 +322,8 @@ class TestMessageMarshalling(unittest.TestCase): aeq(Message.guess_signature(('a',)), '(s)') aeq(Message.guess_signature(['a']), 'as') aeq(Message.guess_signature({'a':'b'}), 'a{ss}') + aeq(Message.guess_signature(types.ObjectPath('/')), 'o') + aeq(Message.guess_signature(types.Signature('x')), 'g') def test_guess_signature_python_ints(self): aeq = self.assertEqual @@ -421,6 +423,64 @@ class TestMessageMarshalling(unittest.TestCase): raise AssertionError('Appending too many things in a struct ' 'should fail') + def test_utf8(self): + from _dbus_bindings import SignalMessage + if is_py3: + def utf8(*xs): + return bytes(xs) + def uni(x): + return chr(x) + else: + def utf8(*xs): + return str('').join(map(chr, xs)) + def uni(x): + return unichr(x) + for bad in [ + uni(0xD800), + utf8(0xed, 0xa0, 0x80), + uni(0xFDD0), + utf8(0xef, 0xb7, 0x90), + uni(0xFDD7), + utf8(0xef, 0xb7, 0x97), + uni(0xFDEF), + utf8(0xef, 0xb7, 0xaf), + uni(0xFFFE), + utf8(0xef, 0xbf, 0xbe), + uni(0xFFFF), + utf8(0xef, 0xbf, 0xbf), + uni(0x0001FFFE), + utf8(0xf0, 0x9f, 0xbf, 0xbe), + uni(0x0001FFFF), + utf8(0xf0, 0x9f, 0xbf, 0xbf), + uni(0x0007FFFE), + utf8(0xf1, 0xbf, 0xbf, 0xbe), + uni(0x0007FFFF), + utf8(0xf1, 0xbf, 0xbf, 0xbf), + uni(0x0010FFFE), + utf8(0xf4, 0x8f, 0xbf, 0xbe), + uni(0x0010FFFF), + utf8(0xf4, 0x8f, 0xbf, 0xbf), + ]: + s = SignalMessage('/', 'foo.bar', 'baz') + try: + s.append(bad, signature='s') + except UnicodeError: + pass + else: + raise AssertionError('Appending %r should fail' % bad) + for good in [ + uni(0xfdcf), + uni(0xfdf0), + uni(0xfeff), + uni(0x0001feff), + uni(0x00020000), + uni(0x0007feff), + uni(0x00080000), + uni(0x0010feff), + ]: + s = SignalMessage('/', 'foo.bar', 'baz') + s.append(good, signature='s') + s.append(good.encode('utf-8'), signature='s') class TestMatching(unittest.TestCase): def setUp(self): @@ -440,7 +500,6 @@ class TestMatching(unittest.TestCase): self._message.append('/', signature='o') self.assertFalse(self._match.maybe_handle_message(self._message)) - if __name__ == '__main__': # Python 2.6 doesn't accept a `verbosity` keyword. kwargs = {} diff --git a/test/tmp-session-bus.conf.in b/test/tmp-session-bus.conf.in index 9d172ff..3a2c756 100644 --- a/test/tmp-session-bus.conf.in +++ b/test/tmp-session-bus.conf.in @@ -4,7 +4,7 @@ <busconfig> <!-- Our well-known bus type, don't change this --> <type>session</type> - <listen>unix:tmpdir=@abs_top_builddir@/test</listen> + <listen>unix:tmpdir=/tmp</listen> <servicedir>@abs_top_builddir@/test</servicedir> diff --git a/tools/Makefile.in b/tools/Makefile.in index f395fee..f0e2325 100644 --- a/tools/Makefile.in +++ b/tools/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.11.2 from Makefile.am. +# Makefile.in generated by automake 1.11.5 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, @@ -15,6 +15,23 @@ @SET_MAKE@ VPATH = @srcdir@ +am__make_dryrun = \ + { \ + am__dry=no; \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ + | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ + *) \ + for am__flg in $$MAKEFLAGS; do \ + case $$am__flg in \ + *=*|--*) ;; \ + *n*) am__dry=yes; break;; \ + esac; \ + done;; \ + esac; \ + test $$am__dry = yes; \ + } pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ @@ -51,14 +68,19 @@ mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = -AM_V_GEN = $(am__v_GEN_$(V)) -am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; -AM_V_at = $(am__v_at_$(V)) -am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ SOURCES = DIST_SOURCES = +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ |