[DRE-commits] [ruby-dbus] branch master updated (734d7f7 -> 074ad82)
Paul van Tilburg
paulvt at moszumanska.debian.org
Fri Feb 21 21:21:09 UTC 2014
This is an automated email from the git hooks/post-receive script.
paulvt pushed a change to branch master
in repository ruby-dbus.
from 734d7f7 debian/copyright: use DEP5 copyright-format/1.0 official URL for Format field
new 05aaed0 Imported Upstream version 0.11.0
new 7828056 Merge tag 'upstream/0.11.0'
new ebe75c4 New upstream release
new 0e69d6b Drop transition packages and breaks/replaces/provides (closes: #735731)
new 194a13e Update tutorial/reference generation
new 265a177 Add suggest on ruby-nokogiri as it it faster than REXML for introspection
new 6f0a0bf Replace XB-Ruby-Version field by a depend on ruby | ruby-interpreter
new fd20f4b Bump standards-version to 3.9.5; no changes required
new 5f20047 Not building the docs using rake closes #713142
new 074ad82 Prepare for upload to unstable
The 10 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
NEWS | 75 +++++
README | 42 ---
README.md | 81 +++++
Rakefile | 74 +++--
VERSION | 2 +-
checksums.yaml.gz | Bin 0 -> 267 bytes
debian/changelog | 23 ++
debian/control | 29 +-
debian/docs | 5 +-
debian/rules | 9 +-
doc/Reference.md | 207 +++++++++++++
doc/{tutorial/index.markdown => Tutorial.md} | 0
doc/ex-calling-methods.body.rb | 8 +
doc/ex-calling-methods.rb | 3 +
doc/ex-properties.body.rb | 9 +
doc/ex-properties.rb | 3 +
doc/ex-setup.rb | 7 +
doc/ex-signal.body.rb | 20 ++
doc/ex-signal.rb | 3 +
doc/example-helper.rb | 6 +
lib/dbus.rb | 36 +--
lib/dbus/auth.rb | 33 +-
lib/dbus/bus.rb | 238 ++++-----------
lib/dbus/core_ext/array/extract_options.rb | 31 ++
lib/dbus/core_ext/class/attribute.rb | 129 ++++++++
lib/dbus/core_ext/kernel/singleton_class.rb | 8 +
lib/dbus/core_ext/module/remove_method.rb | 14 +
lib/dbus/error.rb | 6 +-
lib/dbus/export.rb | 31 +-
lib/dbus/introspect.rb | 333 ---------------------
lib/dbus/logger.rb | 31 ++
lib/dbus/marshall.rb | 28 +-
lib/dbus/message.rb | 86 ++----
lib/dbus/message_queue.rb | 166 ++++++++++
lib/dbus/proxy_object.rb | 149 +++++++++
lib/dbus/proxy_object_factory.rb | 41 +++
lib/dbus/proxy_object_interface.rb | 128 ++++++++
lib/dbus/type.rb | 93 ++----
lib/dbus/xml.rb | 161 ++++++++++
metadata.yml | 169 ++++++-----
ruby-dbus.gemspec | 10 +-
test/{async_test.rb => async_spec.rb} | 20 +-
test/binding_spec.rb | 74 +++++
test/binding_test.rb | 56 ----
test/bus_and_xml_backend_spec.rb | 39 +++
test/bus_driver_spec.rb | 20 ++
test/bus_driver_test.rb | 22 --
test/{bus_test.rb => bus_spec.rb} | 14 +-
test/byte_array_spec.rb | 38 +++
test/err_msg_spec.rb | 42 +++
test/introspect_xml_parser_spec.rb | 26 ++
test/introspection_spec.rb | 32 ++
test/{t6-loop.rb => main_loop_spec.rb} | 30 +-
test/property_spec.rb | 53 ++++
test/property_test.rb | 64 ----
test/server_robustness_spec.rb | 66 ++++
test/server_robustness_test.rb | 72 -----
test/{server_test.rb => server_spec.rb} | 22 +-
test/service_newapi.rb | 33 +-
test/session_bus_spec_manual.rb | 15 +
test/session_bus_test_manual.rb | 20 --
test/signal_spec.rb | 90 ++++++
test/signal_test.rb | 64 ----
test/spec_helper.rb | 33 ++
test/t1 | 4 -
test/t2.rb | 72 -----
test/t3-ticket27.rb | 18 --
test/t5-report-dbus-interface.rb | 58 ----
...thread_safety_test.rb => thread_safety_spec.rb} | 14 +-
test/{ => tools}/dbus-launch-simple | 0
test/{ => tools}/dbus-limited-session.conf | 2 +-
test/{ => tools}/test_env | 2 +-
test/{ => tools}/test_server | 0
test/type_spec.rb | 19 ++
test/value_spec.rb | 81 +++++
test/variant_spec.rb | 66 ++++
test/variant_test.rb | 66 ----
77 files changed, 2396 insertions(+), 1478 deletions(-)
delete mode 100644 README
create mode 100644 README.md
create mode 100644 checksums.yaml.gz
create mode 100644 doc/Reference.md
rename doc/{tutorial/index.markdown => Tutorial.md} (100%)
create mode 100644 doc/ex-calling-methods.body.rb
create mode 100755 doc/ex-calling-methods.rb
create mode 100644 doc/ex-properties.body.rb
create mode 100755 doc/ex-properties.rb
create mode 100644 doc/ex-setup.rb
create mode 100644 doc/ex-signal.body.rb
create mode 100755 doc/ex-signal.rb
create mode 100644 doc/example-helper.rb
create mode 100644 lib/dbus/core_ext/array/extract_options.rb
create mode 100644 lib/dbus/core_ext/class/attribute.rb
create mode 100644 lib/dbus/core_ext/kernel/singleton_class.rb
create mode 100644 lib/dbus/core_ext/module/remove_method.rb
create mode 100644 lib/dbus/logger.rb
create mode 100644 lib/dbus/message_queue.rb
create mode 100644 lib/dbus/proxy_object.rb
create mode 100644 lib/dbus/proxy_object_factory.rb
create mode 100644 lib/dbus/proxy_object_interface.rb
create mode 100644 lib/dbus/xml.rb
rename test/{async_test.rb => async_spec.rb} (68%)
create mode 100755 test/binding_spec.rb
delete mode 100755 test/binding_test.rb
create mode 100755 test/bus_and_xml_backend_spec.rb
create mode 100755 test/bus_driver_spec.rb
delete mode 100755 test/bus_driver_test.rb
rename test/{bus_test.rb => bus_spec.rb} (57%)
create mode 100755 test/byte_array_spec.rb
create mode 100755 test/err_msg_spec.rb
create mode 100755 test/introspect_xml_parser_spec.rb
create mode 100755 test/introspection_spec.rb
rename test/{t6-loop.rb => main_loop_spec.rb} (81%)
create mode 100755 test/property_spec.rb
delete mode 100755 test/property_test.rb
create mode 100755 test/server_robustness_spec.rb
delete mode 100755 test/server_robustness_test.rb
rename test/{server_test.rb => server_spec.rb} (72%)
create mode 100755 test/session_bus_spec_manual.rb
delete mode 100755 test/session_bus_test_manual.rb
create mode 100755 test/signal_spec.rb
delete mode 100755 test/signal_test.rb
create mode 100644 test/spec_helper.rb
delete mode 100755 test/t1
delete mode 100755 test/t2.rb
delete mode 100755 test/t3-ticket27.rb
delete mode 100755 test/t5-report-dbus-interface.rb
rename test/{thread_safety_test.rb => thread_safety_spec.rb} (74%)
rename test/{ => tools}/dbus-launch-simple (100%)
rename test/{ => tools}/dbus-limited-session.conf (93%)
rename test/{ => tools}/test_env (91%)
rename test/{ => tools}/test_server (100%)
create mode 100755 test/type_spec.rb
create mode 100755 test/value_spec.rb
create mode 100755 test/variant_spec.rb
delete mode 100755 test/variant_test.rb
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ruby-extras/ruby-dbus.git
More information about the Pkg-ruby-extras-commits
mailing list