syncevolution/src/gdbus
Patrick Ohly cb30dca6cc GDBus + libdbus: improved D-Bus method calls
- moved common code into base class (prepare/send) reps. .cpp file (CheckError())
- retrieve D-Bus error description from error message and use it as part of
  the C++ exception description, in addition to the error name (only error
  name was used before)
- add call operators with up to 10 parameters
2012-01-17 13:19:51 +00:00
..
test GDBus: API and usage cleanup 2011-12-19 17:59:42 +01:00
debug.c Update copyright information 2009-10-07 16:07:47 +02:00
debug.h glib: avoid including glib/*.h headers directly 2011-11-25 14:19:06 +00:00
gdbus-cxx-bridge.cpp GDBus + libdbus: improved D-Bus method calls 2012-01-17 13:19:51 +00:00
gdbus-cxx-bridge.h GDBus + libdbus: improved D-Bus method calls 2012-01-17 13:19:51 +00:00
gdbus-cxx.h compiler: fix warnings/errors reported by clang 2.8 2011-02-18 09:22:36 +01:00
gdbus.am Port build system to non-recursive Automake. 2011-08-30 16:38:34 +02:00
gdbus.h GDBus + libdbus: added direct client/server support 2012-01-17 11:04:37 +01:00
mainloop.c GDBus + libdbus: added direct client/server support 2012-01-17 11:04:37 +01:00
object.c GDBus dbus-1: fixed invalid memory access 2011-11-30 15:10:35 +00:00
README exporting of local changes in gdbus 2009-12-09 11:53:02 +01:00
watch.c GDBus: removed dead code 2011-07-11 11:25:33 +02:00

This is a copy of the libgdbus source code:
http://git.kernel.org/?p=bluetooth/libgdbus.git;a=summary

It is licensed under LGPL v2.1, see upstream COPYING.

The source is included here because there is no stable
upstream release. Patches added here need to be submitted
upstream. Likewise, patches applied upstream must be imported.
The build/import-gdbus.sh and build/export-gdbus.sh scripts
automate that process.

To import fixes from upstream:
- checkout out libgdbus and syncevolution
- enter syncevolution directory
- if not done before, create local "gdbus" branch:
  git branch gdbus origin/gdbus
- run build/import-gdbus.sh
- "gdbus" branch is now checked out and updated
- verify changes, merge into master, etc.
- push into remote syncevolution repo

To export fixes to upstream:
- check out relevant branch in syncevolution
  which has our local changes (typically "master")
- run build/export-gdbus.sh
- send 0*.patch files to upstream

Caveats:
- only files explicitly mentioned in the two scripts
  are imported/exports
- Makefile changes are only imported, but not exported
  (local changes not relevant upstream)