Merge lp:~thomas-voss/dbus-cpp/fix-1452322 into lp:dbus-cpp
- fix-1452322
- Merge into trunk
| Status: | Merged | ||||
|---|---|---|---|---|---|
| Approved by: | Ken VanDine on 2015-10-21 | ||||
| Approved revision: | 105 | ||||
| Merged at revision: | 98 | ||||
| Proposed branch: | lp:~thomas-voss/dbus-cpp/fix-1452322 | ||||
| Merge into: | lp:dbus-cpp | ||||
| Diff against target: |
591 lines (+141/-156) 12 files modified
CMakeLists.txt (+2/-2) debian/changelog (+12/-0) debian/control (+3/-7) debian/libdbus-cpp5.symbols.32bit (+56/-65) debian/libdbus-cpp5.symbols.64bit (+56/-65) debian/libdbus-cpp5.symbols.amd64 (+2/-2) debian/libdbus-cpp5.symbols.arm64 (+2/-2) debian/libdbus-cpp5.symbols.armhf (+2/-2) debian/libdbus-cpp5.symbols.i386 (+2/-2) debian/libdbus-cpp5.symbols.powerpc (+2/-2) debian/libdbus-cpp5.symbols.ppc64el (+2/-2) debian/rules (+0/-5) |
||||
| To merge this branch: | bzr merge lp:~thomas-voss/dbus-cpp/fix-1452322 | ||||
| Related bugs: |
|
| Reviewer | Review Type | Date Requested | Status |
|---|---|---|---|
| Ken VanDine | 2015-07-23 | Approve on 2015-10-21 | |
| PS Jenkins bot | continuous-integration | Needs Fixing on 2015-10-21 | |
|
Review via email:
|
|||
Commit Message
Bump major revision to account for toolchain update. Fixes LP:#1452322
Description of the Change
Bump major revision to account for toolchain update. Fixes LP:#1452322
| PS Jenkins bot (ps-jenkins) wrote : | # |
FAILED: Continuous integration, rev:100
http://
Executed test runs:
FAILURE: http://
FAILURE: http://
FAILURE: http://
Click here to trigger a rebuild:
http://
| PS Jenkins bot (ps-jenkins) wrote : | # |
FAILED: Continuous integration, rev:102
http://
Executed test runs:
SUCCESS: http://
SUCCESS: http://
deb: http://
FAILURE: http://
Click here to trigger a rebuild:
http://
| PS Jenkins bot (ps-jenkins) wrote : | # |
FAILED: Continuous integration, rev:103
http://
Executed test runs:
FAILURE: http://
FAILURE: http://
FAILURE: http://
Click here to trigger a rebuild:
http://
| PS Jenkins bot (ps-jenkins) wrote : | # |
FAILED: Continuous integration, rev:104
http://
Executed test runs:
FAILURE: http://
FAILURE: http://
FAILURE: http://
Click here to trigger a rebuild:
http://
| PS Jenkins bot (ps-jenkins) wrote : | # |
FAILED: Continuous integration, rev:105
http://
Executed test runs:
FAILURE: http://
FAILURE: http://
FAILURE: http://
Click here to trigger a rebuild:
http://
| Ken VanDine (ken-vandine) wrote : | # |
Note: CI builds failing because they are building on vivid
Preview Diff
| 1 | === modified file 'CMakeLists.txt' |
| 2 | --- CMakeLists.txt 2014-11-10 08:35:29 +0000 |
| 3 | +++ CMakeLists.txt 2015-10-21 07:54:47 +0000 |
| 4 | @@ -61,8 +61,8 @@ |
| 5 | SET(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -ftest-coverage -fprofile-arcs" ) |
| 6 | ENDIF(CMAKE_BUILD_TYPE MATCHES [cC][oO][vV][eE][rR][aA][gG][eE]) |
| 7 | |
| 8 | -set(DBUS_CPP_VERSION_MAJOR 4) |
| 9 | -set(DBUS_CPP_VERSION_MINOR 3) |
| 10 | +set(DBUS_CPP_VERSION_MAJOR 5) |
| 11 | +set(DBUS_CPP_VERSION_MINOR 0) |
| 12 | set(DBUS_CPP_VERSION_PATCH 0) |
| 13 | |
| 14 | include(CTest) |
| 15 | |
| 16 | === modified file 'debian/changelog' |
| 17 | --- debian/changelog 2015-05-05 08:24:50 +0000 |
| 18 | +++ debian/changelog 2015-10-21 07:54:47 +0000 |
| 19 | @@ -1,3 +1,15 @@ |
| 20 | +dbus-cpp (5.0.0-0ubuntu3) wily; urgency=medium |
| 21 | + |
| 22 | + * Bump revision as the archive has 5.0.0-0ubuntu2 |
| 23 | + |
| 24 | + -- Thomas Voß <thomas.voss@canonical.com> Tue, 20 Oct 2015 17:03:52 +0200 |
| 25 | + |
| 26 | +dbus-cpp (5.0.0) wily; urgency=medium |
| 27 | + |
| 28 | + * Bump major revision to account for toolchain update. Fixes LP:#1452322 |
| 29 | + |
| 30 | + -- Thomas Voß <thomas.voss@canonical.com> Tue, 21 Jul 2015 12:36:46 +0200 |
| 31 | + |
| 32 | dbus-cpp (4.3.0+15.04.20150505-0ubuntu1) vivid; urgency=medium |
| 33 | |
| 34 | [ CI Train Bot ] |
| 35 | |
| 36 | === modified file 'debian/control' |
| 37 | --- debian/control 2014-06-17 09:36:53 +0000 |
| 38 | +++ debian/control 2015-10-21 07:54:47 +0000 |
| 39 | @@ -1,14 +1,10 @@ |
| 40 | Source: dbus-cpp |
| 41 | Priority: optional |
| 42 | Maintainer: Thomas Voß <thomas.voss@ubuntu.com> |
| 43 | -# We rely on C++11 features, and to prevent from ABI breaks |
| 44 | -# in libstdc++ causing us issues, we explicitly select a G++ |
| 45 | -# version. |
| 46 | Build-Depends: cmake, |
| 47 | dbus, |
| 48 | debhelper (>= 9), |
| 49 | doxygen, |
| 50 | - g++-4.9, |
| 51 | google-mock, |
| 52 | libboost-filesystem-dev, |
| 53 | libboost-system-dev, |
| 54 | @@ -26,7 +22,7 @@ |
| 55 | Vcs-Bzr: https://code.launchpad.net/~phablet-team/dbus-cpp/trunk |
| 56 | Vcs-Browser: http://bazaar.launchpad.net/~phablet-team/dbus-cpp/trunk/files |
| 57 | |
| 58 | -Package: libdbus-cpp4 |
| 59 | +Package: libdbus-cpp5 |
| 60 | Section: libdevel |
| 61 | Architecture: any |
| 62 | Multi-Arch: same |
| 63 | @@ -43,7 +39,7 @@ |
| 64 | Multi-Arch: foreign |
| 65 | Depends: ${misc:Depends}, |
| 66 | ${shlibs:Depends}, |
| 67 | - libdbus-cpp4 (= ${binary:Version}) |
| 68 | + libdbus-cpp5 (= ${binary:Version}) |
| 69 | Description: header-only dbus-binding leveraging C++-11 |
| 70 | Protocol compiler and generator to automatically generate protocol headers from |
| 71 | introspection XML. |
| 72 | @@ -55,7 +51,7 @@ |
| 73 | Depends: ${misc:Depends}, |
| 74 | ${shlibs:Depends}, |
| 75 | dbus, |
| 76 | - libdbus-cpp4 (= ${binary:Version}) |
| 77 | + libdbus-cpp5 (= ${binary:Version}) |
| 78 | Replaces: dbus-cpp-dev |
| 79 | Conflicts: dbus-cpp-dev |
| 80 | Provides: dbus-cpp-dev |
| 81 | |
| 82 | === renamed file 'debian/libdbus-cpp4.install' => 'debian/libdbus-cpp5.install' |
| 83 | === renamed file 'debian/libdbus-cpp4.symbols.32bit' => 'debian/libdbus-cpp5.symbols.32bit' |
| 84 | --- debian/libdbus-cpp4.symbols.32bit 2015-05-05 08:24:50 +0000 |
| 85 | +++ debian/libdbus-cpp5.symbols.32bit 2015-10-21 07:54:47 +0000 |
| 86 | @@ -1,5 +1,5 @@ |
| 87 | - (c++)"core::dbus::Fixture::system_bus_address()@Base" 4.3.0+15.04.20150505 |
| 88 | - (c++)"core::dbus::Fixture::session_bus_address()@Base" 4.3.0+15.04.20150505 |
| 89 | + (c++)"core::dbus::Fixture::system_bus_address[abi:cxx11]()@Base" 4.3.0+15.04.20150505 |
| 90 | + (c++)"core::dbus::Fixture::session_bus_address[abi:cxx11]()@Base" 4.3.0+15.04.20150505 |
| 91 | (c++)"core::dbus::Fixture::default_daemon_timeout()@Base" 4.0.0+14.10.20140730 |
| 92 | (c++)"core::dbus::asio::make_executor(std::shared_ptr<core::dbus::Bus> const&)@Base" 2.0.0+14.04.20140310 |
| 93 | (c++)"core::dbus::asio::make_executor(std::shared_ptr<core::dbus::Bus> const&, boost::asio::io_service&)@Base" 3.1.0+14.10.20140711 |
| 94 | @@ -7,23 +7,20 @@ |
| 95 | (c++)"core::dbus::Bus::add_match(core::dbus::MatchRule const&)@Base" 2.0.0+14.04.20140310 |
| 96 | (c++)"core::dbus::Bus::~Bus()@Base" 2.0.0+14.04.20140310 |
| 97 | (c++)"core::dbus::Bus::Bus(core::dbus::WellKnownBus)@Base" 2.0.0+14.04.20140310 |
| 98 | - (c++)"core::dbus::Bus::Bus(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)@Base" 2.0.0+14.04.20140310 |
| 99 | - (c++)"core::dbus::Bus::Errors::AlreadyOwned::~AlreadyOwned()@Base" 2.0.0+14.04.20140310 |
| 100 | - (c++)"core::dbus::Bus::Errors::AlreadyOwner::~AlreadyOwner()@Base" 2.0.0+14.04.20140310 |
| 101 | - (c++)"core::dbus::Bus::Errors::NoMemory::~NoMemory()@Base" 2.0.0+14.04.20140310 |
| 102 | + (c++)"core::dbus::Bus::Bus(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)@Base" 2.0.0+14.04.20140310 |
| 103 | (c++)"core::dbus::Bus::handle_message(std::shared_ptr<core::dbus::Message> const&)@Base" 2.0.0+14.04.20140310 |
| 104 | - (c++)"core::dbus::Bus::has_owner_for_name(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)@Base" 2.0.0+14.04.20140310 |
| 105 | + (c++)"core::dbus::Bus::has_owner_for_name(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)@Base" 2.0.0+14.04.20140310 |
| 106 | (c++)"core::dbus::Bus::install_executor(std::shared_ptr<core::dbus::Executor> const&)@Base" 2.0.0+14.04.20140310 |
| 107 | (c++)"core::dbus::Bus::message_factory()@Base" 2.0.0+14.04.20140310 |
| 108 | - (c++)"core::dbus::Bus::Name::as_string() const@Base" 2.0.0+14.04.20140310 |
| 109 | + (c++)"core::dbus::Bus::Name::as_string[abi:cxx11]() const@Base" 2.0.0+14.04.20140310 |
| 110 | (c++)"core::dbus::Bus::Name::Name(core::dbus::Bus::Name&&)@Base" 2.0.0+14.04.20140310 |
| 111 | - (c++)"core::dbus::Bus::Name::Name(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)@Base" 2.0.0+14.04.20140310 |
| 112 | + (c++)"core::dbus::Bus::Name::Name(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)@Base" 2.0.0+14.04.20140310 |
| 113 | (c++)"core::dbus::Bus::Name::operator=(core::dbus::Bus::Name&&)@Base" 2.0.0+14.04.20140310 |
| 114 | (c++)"core::dbus::Bus::raw() const@Base" 2.0.0+14.04.20140310 |
| 115 | (c++)"core::dbus::Bus::register_object_for_path(core::dbus::types::ObjectPath const&, std::shared_ptr<core::dbus::Object> const&)@Base" 2.0.0+14.04.20140310 |
| 116 | (c++)"core::dbus::Bus::release_name_on_bus(core::dbus::Bus::Name&&)@Base" 2.0.0+14.04.20140310 |
| 117 | (c++)"core::dbus::Bus::remove_match(core::dbus::MatchRule const&)@Base" 2.0.0+14.04.20140310 |
| 118 | - (c++)"core::dbus::Bus::request_name_on_bus(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, core::dbus::Bus::RequestNameFlag)@Base" 2.0.0+14.04.20140310 |
| 119 | + (c++)"core::dbus::Bus::request_name_on_bus(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, core::dbus::Bus::RequestNameFlag)@Base" 2.0.0+14.04.20140310 |
| 120 | (c++)"core::dbus::Bus::run()@Base" 2.0.0+14.04.20140310 |
| 121 | (c++)"core::dbus::Bus::send(std::shared_ptr<core::dbus::Message> const&)@Base" 2.0.0+14.04.20140310 |
| 122 | (c++)"core::dbus::Bus::send_with_reply_and_block_for_at_most(std::shared_ptr<core::dbus::Message> const&, std::chrono::duration<long long, std::ratio<1ll, 1000ll> > const&)@Base" 2.0.0+14.04.20140310 |
| 123 | @@ -31,62 +28,62 @@ |
| 124 | (c++)"core::dbus::Bus::stop()@Base" 2.0.0+14.04.20140310 |
| 125 | (c++)"core::dbus::Bus::unregister_object_path(core::dbus::types::ObjectPath const&)@Base" 2.0.0+14.04.20140310 |
| 126 | (c++)"core::dbus::DBus::DBus(std::shared_ptr<core::dbus::Bus> const&)@Base" 2.0.0+14.04.20140310 |
| 127 | - (c++)"core::dbus::DBus::GetConnectionUnixProcessID::name()::s@Base" 2.0.0+14.04.20140310 |
| 128 | - (c++)"core::dbus::DBus::get_connection_unix_process_id(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) const@Base" 2.0.0+14.04.20140310 |
| 129 | - (c++)"core::dbus::DBus::GetConnectionUnixUser::name()::s@Base" 2.0.0+14.04.20140310 |
| 130 | - (c++)"core::dbus::DBus::get_connection_unix_user(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) const@Base" 2.0.0+14.04.20140310 |
| 131 | - (c++)"core::dbus::DBus::hello() const@Base" 2.0.0+14.04.20140310 |
| 132 | - (c++)"core::dbus::DBus::Hello::name()::s@Base" 2.0.0+14.04.20140310 |
| 133 | - (c++)"core::dbus::DBus::interface()@Base" 2.0.0+14.04.20140310 |
| 134 | - (c++)"core::dbus::DBus::list_names() const@Base" 2.0.0+14.04.20140310 |
| 135 | - (c++)"core::dbus::DBus::ListNames::name()::s@Base" 2.0.0+14.04.20140310 |
| 136 | - (c++)"core::dbus::DBus::make_service_watcher(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, core::dbus::DBus::WatchMode)@Base" 2.0.0+14.04.20140310 |
| 137 | - (c++)"core::dbus::DBus::name()@Base" 2.0.0+14.04.20140310 |
| 138 | + (c++)"core::dbus::DBus::GetConnectionUnixProcessID::name[abi:cxx11]()::s@Base" 2.0.0+14.04.20140310 |
| 139 | + (c++)"core::dbus::DBus::get_connection_unix_process_id(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) const@Base" 2.0.0+14.04.20140310 |
| 140 | + (c++)"core::dbus::DBus::GetConnectionUnixUser::name[abi:cxx11]()::s@Base" 2.0.0+14.04.20140310 |
| 141 | + (c++)"core::dbus::DBus::get_connection_unix_user(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) const@Base" 2.0.0+14.04.20140310 |
| 142 | + (c++)"core::dbus::DBus::hello[abi:cxx11]() const@Base" 2.0.0+14.04.20140310 |
| 143 | + (c++)"core::dbus::DBus::Hello::name[abi:cxx11]()::s@Base" 2.0.0+14.04.20140310 |
| 144 | + (c++)"core::dbus::DBus::interface[abi:cxx11]()@Base" 2.0.0+14.04.20140310 |
| 145 | + (c++)"core::dbus::DBus::list_names[abi:cxx11]() const@Base" 2.0.0+14.04.20140310 |
| 146 | + (c++)"core::dbus::DBus::ListNames::name[abi:cxx11]()::s@Base" 2.0.0+14.04.20140310 |
| 147 | + (c++)"core::dbus::DBus::make_service_watcher(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, core::dbus::DBus::WatchMode)@Base" 2.0.0+14.04.20140310 |
| 148 | + (c++)"core::dbus::DBus::name[abi:cxx11]()@Base" 2.0.0+14.04.20140310 |
| 149 | (c++)"core::dbus::DBus::path()@Base" 2.0.0+14.04.20140310 |
| 150 | (c++)"core::dbus::Error::~Error()@Base" 2.0.0+14.04.20140310 |
| 151 | (c++)"core::dbus::Error::Error()@Base" 2.0.0+14.04.20140310 |
| 152 | (c++)"core::dbus::Error::Error(core::dbus::Error&&)@Base" 2.0.0+14.04.20140310 |
| 153 | - (c++)"core::dbus::Error::message() const@Base" 2.0.0+14.04.20140310 |
| 154 | - (c++)"core::dbus::Error::name() const@Base" 2.0.0+14.04.20140310 |
| 155 | + (c++)"core::dbus::Error::message[abi:cxx11]() const@Base" 2.0.0+14.04.20140310 |
| 156 | + (c++)"core::dbus::Error::name[abi:cxx11]() const@Base" 2.0.0+14.04.20140310 |
| 157 | (c++)"core::dbus::Error::operator bool() const@Base" 2.0.0+14.04.20140310 |
| 158 | (c++)"core::dbus::Error::operator=(core::dbus::Error&&)@Base" 2.0.0+14.04.20140310 |
| 159 | - (c++)"core::dbus::Error::print() const@Base" 2.0.0+14.04.20140310 |
| 160 | + (c++)"core::dbus::Error::print[abi:cxx11]() const@Base" 2.0.0+14.04.20140310 |
| 161 | (c++)"core::dbus::Error::raw()@Base" 2.0.0+14.04.20140310 |
| 162 | (c++)"core::dbus::Fixture::create_connection_to_session_bus()@Base" 2.0.0+14.04.20140310 |
| 163 | (c++)"core::dbus::Fixture::create_connection_to_system_bus()@Base" 2.0.0+14.04.20140310 |
| 164 | - (c++)"core::dbus::Fixture::default_session_bus_config_file()@Base" 2.0.0+14.04.20140310 |
| 165 | - (c++)"core::dbus::Fixture::default_system_bus_config_file()@Base" 2.0.0+14.04.20140310 |
| 166 | + (c++)"core::dbus::Fixture::default_session_bus_config_file[abi:cxx11]()@Base" 2.0.0+14.04.20140310 |
| 167 | + (c++)"core::dbus::Fixture::default_system_bus_config_file[abi:cxx11]()@Base" 2.0.0+14.04.20140310 |
| 168 | (c++)"core::dbus::Fixture::~Fixture()@Base" 2.0.0+14.04.20140310 |
| 169 | - (c++)"core::dbus::Fixture::Fixture(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)@Base" 2.0.0+14.04.20140310 |
| 170 | - (c++)"core::dbus::MatchRule::args(std::vector<std::pair<unsigned int, std::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<unsigned int, std::basic_string<char, std::char_traits<char>, std::allocator<char> > > > > const&)@Base" 2.0.0+14.04.20140310 |
| 171 | - (c++)"core::dbus::MatchRule::args(std::vector<std::pair<unsigned int, std::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<unsigned int, std::basic_string<char, std::char_traits<char>, std::allocator<char> > > > > const&) const@Base" 2.0.0+14.04.20140310 |
| 172 | - (c++)"core::dbus::MatchRule::as_string() const@Base" 2.0.0+14.04.20140310 |
| 173 | - (c++)"core::dbus::MatchRule::interface(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)@Base" 2.0.0+14.04.20140310 |
| 174 | - (c++)"core::dbus::MatchRule::interface(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) const@Base" 2.0.0+14.04.20140310 |
| 175 | + (c++)"core::dbus::Fixture::Fixture(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)@Base" 2.0.0+14.04.20140310 |
| 176 | + (c++)"core::dbus::MatchRule::args(std::vector<std::pair<unsigned int, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<unsigned int, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > > const&)@Base" 2.0.0+14.04.20140310 |
| 177 | + (c++)"core::dbus::MatchRule::args(std::vector<std::pair<unsigned int, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<unsigned int, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > > const&) const@Base" 2.0.0+14.04.20140310 |
| 178 | + (c++)"core::dbus::MatchRule::as_string[abi:cxx11]() const@Base" 2.0.0+14.04.20140310 |
| 179 | + (c++)"core::dbus::MatchRule::interface(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)@Base" 2.0.0+14.04.20140310 |
| 180 | + (c++)"core::dbus::MatchRule::interface(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) const@Base" 2.0.0+14.04.20140310 |
| 181 | (c++)"core::dbus::MatchRule::~MatchRule()@Base" 2.0.0+14.04.20140310 |
| 182 | (c++)"core::dbus::MatchRule::MatchRule()@Base" 2.0.0+14.04.20140310 |
| 183 | (c++)"core::dbus::MatchRule::MatchRule(core::dbus::MatchRule const&)@Base" 2.0.0+14.04.20140310 |
| 184 | - (c++)"core::dbus::MatchRule::member(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)@Base" 2.0.0+14.04.20140310 |
| 185 | - (c++)"core::dbus::MatchRule::member(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) const@Base" 2.0.0+14.04.20140310 |
| 186 | + (c++)"core::dbus::MatchRule::member(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)@Base" 2.0.0+14.04.20140310 |
| 187 | + (c++)"core::dbus::MatchRule::member(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) const@Base" 2.0.0+14.04.20140310 |
| 188 | (c++)"core::dbus::MatchRule::operator=(core::dbus::MatchRule const&)@Base" 2.0.0+14.04.20140310 |
| 189 | (c++)"core::dbus::MatchRule::path(core::dbus::types::ObjectPath const&)@Base" 2.0.0+14.04.20140310 |
| 190 | (c++)"core::dbus::MatchRule::path(core::dbus::types::ObjectPath const&) const@Base" 2.0.0+14.04.20140310 |
| 191 | - (c++)"core::dbus::MatchRule::sender(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)@Base" 2.0.0+14.04.20140310 |
| 192 | - (c++)"core::dbus::MatchRule::sender(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) const@Base" 2.0.0+14.04.20140310 |
| 193 | + (c++)"core::dbus::MatchRule::sender(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)@Base" 2.0.0+14.04.20140310 |
| 194 | + (c++)"core::dbus::MatchRule::sender(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) const@Base" 2.0.0+14.04.20140310 |
| 195 | (c++)"core::dbus::MatchRule::type(core::dbus::Message::Type)@Base" 2.0.0+14.04.20140310 |
| 196 | (c++)"core::dbus::MatchRule::type(core::dbus::Message::Type) const@Base" 2.0.0+14.04.20140310 |
| 197 | (c++)"core::dbus::Message::clone()@Base" 2.0.0+14.04.20140310 |
| 198 | - (c++)"core::dbus::Message::destination() const@Base" 2.0.0+14.04.20140310 |
| 199 | + (c++)"core::dbus::Message::destination[abi:cxx11]() const@Base" 2.0.0+14.04.20140310 |
| 200 | (c++)"core::dbus::Message::ensure_serial_larger_than_zero_for_testing()@Base" 2.0.0+14.04.20140310 |
| 201 | (c++)"core::dbus::Message::error() const@Base" 2.0.0+14.04.20140310 |
| 202 | (c++)"core::dbus::Message::expects_reply() const@Base" 2.0.0+14.04.20140310 |
| 203 | (c++)"core::dbus::Message::from_raw_message(DBusMessage*)@Base" 2.0.0+14.04.20140310 |
| 204 | - (c++)"core::dbus::Message::interface() const@Base" 2.0.0+14.04.20140310 |
| 205 | - (c++)"core::dbus::Message::make_error(std::shared_ptr<core::dbus::Message> const&, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)@Base" 2.0.0+14.04.20140310 |
| 206 | - (c++)"core::dbus::Message::make_method_call(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, core::dbus::types::ObjectPath const&, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)@Base" 2.0.0+14.04.20140310 |
| 207 | + (c++)"core::dbus::Message::interface[abi:cxx11]() const@Base" 2.0.0+14.04.20140310 |
| 208 | + (c++)"core::dbus::Message::make_error(std::shared_ptr<core::dbus::Message> const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)@Base" 2.0.0+14.04.20140310 |
| 209 | + (c++)"core::dbus::Message::make_method_call(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, core::dbus::types::ObjectPath const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)@Base" 2.0.0+14.04.20140310 |
| 210 | (c++)"core::dbus::Message::make_method_return(std::shared_ptr<core::dbus::Message> const&)@Base" 2.0.0+14.04.20140310 |
| 211 | - (c++)"core::dbus::Message::make_signal(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)@Base" 2.0.0+14.04.20140310 |
| 212 | - (c++)"core::dbus::Message::member() const@Base" 2.0.0+14.04.20140310 |
| 213 | + (c++)"core::dbus::Message::make_signal(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)@Base" 2.0.0+14.04.20140310 |
| 214 | + (c++)"core::dbus::Message::member[abi:cxx11]() const@Base" 2.0.0+14.04.20140310 |
| 215 | (c++)"core::dbus::Message::~Message()@Base" 2.0.0+14.04.20140310 |
| 216 | (c++)"core::dbus::Message::Message(std::unique_ptr<core::dbus::Message::Private, std::default_delete<core::dbus::Message::Private> >)@Base" 2.0.0+14.04.20140310 |
| 217 | (c++)"core::dbus::Message::path() const@Base" 2.0.0+14.04.20140310 |
| 218 | @@ -116,8 +113,8 @@ |
| 219 | (c++)"core::dbus::Message::Reader::Reader(core::dbus::Message::Reader&&)@Base" 2.0.0+14.04.20140310 |
| 220 | (c++)"core::dbus::Message::Reader::Reader(std::shared_ptr<core::dbus::Message> const&)@Base" 2.0.0+14.04.20140310 |
| 221 | (c++)"core::dbus::Message::Reader::type() const@Base" 2.0.0+14.04.20140310 |
| 222 | - (c++)"core::dbus::Message::sender() const@Base" 2.0.0+14.04.20140310 |
| 223 | - (c++)"core::dbus::Message::signature() const@Base" 2.0.0+14.04.20140310 |
| 224 | + (c++)"core::dbus::Message::sender[abi:cxx11]() const@Base" 2.0.0+14.04.20140310 |
| 225 | + (c++)"core::dbus::Message::signature[abi:cxx11]() const@Base" 2.0.0+14.04.20140310 |
| 226 | (c++)"core::dbus::Message::type() const@Base" 2.0.0+14.04.20140310 |
| 227 | (c++)"core::dbus::Message::writer()@Base" 2.0.0+14.04.20140310 |
| 228 | (c++)"core::dbus::Message::Writer::close_array(core::dbus::Message::Writer)@Base" 2.0.0+14.04.20140310 |
| 229 | @@ -148,30 +145,26 @@ |
| 230 | (c++)"core::dbus::Service::add_match(core::dbus::MatchRule const&)@Base" 2.0.0+14.04.20140310 |
| 231 | (c++)"core::dbus::Service::add_object_for_path(core::dbus::types::ObjectPath const&)@Base" 2.0.0+14.04.20140310 |
| 232 | (c++)"core::dbus::Service::get_connection() const@Base" 2.0.0+14.04.20140310 |
| 233 | - (c++)"core::dbus::Service::get_name() const@Base" 2.0.0+14.04.20140310 |
| 234 | + (c++)"core::dbus::Service::get_name[abi:cxx11]() const@Base" 2.0.0+14.04.20140310 |
| 235 | (c++)"core::dbus::Service::is_stub() const@Base" 2.0.0+14.04.20140310 |
| 236 | (c++)"core::dbus::Service::object_for_path(core::dbus::types::ObjectPath const&)@Base" 2.0.0+14.04.20140310 |
| 237 | (c++)"core::dbus::Service::remove_match(core::dbus::MatchRule const&)@Base" 2.0.0+14.04.20140310 |
| 238 | (c++)"core::dbus::Service::root_object()@Base" 2.0.0+14.04.20140310 |
| 239 | - (c++)"core::dbus::Service::~Service()@Base" 2.0.0+14.04.20140310 |
| 240 | - (c++)"core::dbus::Service::Service(std::shared_ptr<core::dbus::Bus> const&, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)@Base" 2.0.0+14.04.20140310 |
| 241 | - (c++)"core::dbus::Service::Service(std::shared_ptr<core::dbus::Bus> const&, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, core::dbus::Bus::RequestNameFlag const&)@Base" 2.0.0+14.04.20140310 |
| 242 | - (c++)"core::dbus::Service::use_service_or_throw_if_not_available(std::shared_ptr<core::dbus::Bus> const&, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)@Base" 2.0.0+14.04.20140310 |
| 243 | - (c++)"core::dbus::Service::use_service(std::shared_ptr<core::dbus::Bus> const&, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)@Base" 2.0.0+14.04.20140310 |
| 244 | - (c++)"core::dbus::ServiceWatcher::owner_changed() const@Base" 2.0.0+14.04.20140310 |
| 245 | - (c++)"core::dbus::ServiceWatcher::Private::~Private()@Base" 2.0.0+14.04.20140310 |
| 246 | + (c++)"core::dbus::Service::Service(std::shared_ptr<core::dbus::Bus> const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)@Base" 2.0.0+14.04.20140310 |
| 247 | + (c++)"core::dbus::Service::Service(std::shared_ptr<core::dbus::Bus> const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, core::dbus::Bus::RequestNameFlag const&)@Base" 2.0.0+14.04.20140310 |
| 248 | + (c++)"core::dbus::Service::use_service_or_throw_if_not_available(std::shared_ptr<core::dbus::Bus> const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)@Base" 2.0.0+14.04.20140310 |
| 249 | + (c++)"core::dbus::Service::use_service(std::shared_ptr<core::dbus::Bus> const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)@Base" 2.0.0+14.04.20140310 |
| 250 | + (c++)"core::dbus::ServiceWatcher::owner_changed[abi:cxx11]() const@Base" 2.0.0+14.04.20140310 |
| 251 | (c++)"core::dbus::ServiceWatcher::service_registered() const@Base" 2.0.0+14.04.20140310 |
| 252 | (c++)"core::dbus::ServiceWatcher::service_unregistered() const@Base" 2.0.0+14.04.20140310 |
| 253 | - (c++)"core::dbus::ServiceWatcher::ServiceWatcher(std::shared_ptr<core::dbus::Object>, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, core::dbus::DBus::WatchMode)@Base" 2.0.0+14.04.20140310 |
| 254 | - (c++)"core::dbus::types::ObjectPath::as_string() const@Base" 2.0.0+14.04.20140310 |
| 255 | + (c++)"core::dbus::ServiceWatcher::ServiceWatcher(std::shared_ptr<core::dbus::Object>, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, core::dbus::DBus::WatchMode)@Base" 2.0.0+14.04.20140310 |
| 256 | + (c++)"core::dbus::types::ObjectPath::as_string[abi:cxx11]() const@Base" 2.0.0+14.04.20140310 |
| 257 | (c++)"core::dbus::types::ObjectPath::empty() const@Base" 2.0.0+14.04.20140310 |
| 258 | - (c++)"core::dbus::types::ObjectPath::Errors::InvalidObjectPathStringRepresentation::~InvalidObjectPathStringRepresentation()@Base" 2.0.0+14.04.20140310 |
| 259 | - (c++)"core::dbus::types::ObjectPath::~ObjectPath()@Base" 2.0.0+14.04.20140310 |
| 260 | - (c++)"core::dbus::types::ObjectPath::ObjectPath(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)@Base" 2.0.0+14.04.20140310 |
| 261 | + (c++)"core::dbus::types::ObjectPath::ObjectPath(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)@Base" 2.0.0+14.04.20140310 |
| 262 | (c++)"core::dbus::types::ObjectPath::operator<(core::dbus::types::ObjectPath const&) const@Base" 2.0.0+14.04.20140310 |
| 263 | (c++)"core::dbus::types::ObjectPath::operator==(core::dbus::types::ObjectPath const&) const@Base" 2.0.0+14.04.20140310 |
| 264 | (c++)"core::dbus::types::ObjectPath::operator!=(core::dbus::types::ObjectPath const&) const@Base" 2.0.0+14.04.20140310 |
| 265 | - (c++)"core::dbus::types::ObjectPath::root()@Base" 2.0.0+14.04.20140310 |
| 266 | + (c++)"core::dbus::types::ObjectPath::root[abi:cxx11]()@Base" 2.0.0+14.04.20140310 |
| 267 | (c++)"core::dbus::types::operator<<(std::basic_ostream<char, std::char_traits<char> >&, core::dbus::types::ObjectPath const&)@Base" 2.0.0+14.04.20140310 |
| 268 | (c++)"std::hash<core::dbus::types::ObjectPath>::operator()(core::dbus::types::ObjectPath const&) const@Base" 2.0.0+14.04.20140310 |
| 269 | (c++)"typeinfo for core::dbus::Bus::Errors::AlreadyOwned@Base" 2.0.0+14.04.20140310 |
| 270 | @@ -181,8 +174,8 @@ |
| 271 | (c++)"typeinfo for core::dbus::Bus::Private::Private()::{lambda(std::shared_ptr<core::dbus::Message> const&)#2}@Base" 2.0.0+14.04.20140310 |
| 272 | (c++)"typeinfo for core::dbus::Executor@Base" 2.0.0+14.04.20140310 |
| 273 | (c++)"typeinfo for core::dbus::Fixture@Base" 2.0.0+14.04.20140310 |
| 274 | - (c++)"typeinfo for core::dbus::Fixture::Private::Session::Session(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)::{lambda(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)#1}@Base" 2.0.0+14.04.20140310 |
| 275 | - (c++)"typeinfo for core::dbus::Fixture::Private::System::System(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)::{lambda(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)#1}@Base" 2.0.0+14.04.20140310 |
| 276 | + (c++)"typeinfo for core::dbus::Fixture::Private::Session::Session(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)::{lambda(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)#1}@Base" 2.0.0+14.04.20140310 |
| 277 | + (c++)"typeinfo for core::dbus::Fixture::Private::System::System(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)::{lambda(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)#1}@Base" 2.0.0+14.04.20140310 |
| 278 | (c++)"typeinfo for core::dbus::PendingCall@Base" 2.0.0+14.04.20140310 |
| 279 | (c++)"typeinfo for core::dbus::types::ObjectPath::Errors::InvalidObjectPathStringRepresentation@Base" 2.0.0+14.04.20140310 |
| 280 | (c++)"typeinfo name for core::dbus::Bus::Errors::AlreadyOwned@Base" 2.0.0+14.04.20140310 |
| 281 | @@ -192,16 +185,14 @@ |
| 282 | (c++)"typeinfo name for core::dbus::Bus::Private::Private()::{lambda(std::shared_ptr<core::dbus::Message> const&)#2}@Base" 2.0.0+14.04.20140310 |
| 283 | (c++)"typeinfo name for core::dbus::Executor@Base" 2.0.0+14.04.20140310 |
| 284 | (c++)"typeinfo name for core::dbus::Fixture@Base" 2.0.0+14.04.20140310 |
| 285 | - (c++)"typeinfo name for core::dbus::Fixture::Private::Session::Session(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)::{lambda(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)#1}@Base" 2.0.0+14.04.20140310 |
| 286 | - (c++)"typeinfo name for core::dbus::Fixture::Private::System::System(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)::{lambda(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)#1}@Base" 2.0.0+14.04.20140310 |
| 287 | + (c++)"typeinfo name for core::dbus::Fixture::Private::Session::Session(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)::{lambda(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)#1}@Base" 2.0.0+14.04.20140310 |
| 288 | + (c++)"typeinfo name for core::dbus::Fixture::Private::System::System(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)::{lambda(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)#1}@Base" 2.0.0+14.04.20140310 |
| 289 | (c++)"typeinfo name for core::dbus::Message::Private::Private(DBusMessage*, bool)::{lambda(DBusMessage*)#1}@Base" 2.0.0+14.04.20140310 |
| 290 | (c++)"typeinfo name for core::dbus::PendingCall@Base" 2.0.0+14.04.20140310 |
| 291 | (c++)"typeinfo name for core::dbus::types::ObjectPath::Errors::InvalidObjectPathStringRepresentation@Base" 2.0.0+14.04.20140310 |
| 292 | (c++)"vtable for core::dbus::Bus::Errors::AlreadyOwned@Base" 2.0.0+14.04.20140310 |
| 293 | (c++)"vtable for core::dbus::Bus::Errors::AlreadyOwner@Base" 2.0.0+14.04.20140310 |
| 294 | (c++)"vtable for core::dbus::Bus::Errors::NoMemory@Base" 2.0.0+14.04.20140310 |
| 295 | - (c++)"vtable for core::dbus::Executor@Base" 2.0.0+14.04.20140310 |
| 296 | (c++)"vtable for core::dbus::Fixture@Base" 2.0.0+14.04.20140310 |
| 297 | - (c++)"vtable for core::dbus::PendingCall@Base" 2.0.0+14.04.20140310 |
| 298 | (c++)"vtable for core::dbus::types::ObjectPath::Errors::InvalidObjectPathStringRepresentation@Base" 2.0.0+14.04.20140310 |
| 299 | -#include "libdbus-cpp4.symbols.coverage" |
| 300 | +#include "libdbus-cpp5.symbols.coverage" |
| 301 | |
| 302 | === renamed file 'debian/libdbus-cpp4.symbols.64bit' => 'debian/libdbus-cpp5.symbols.64bit' |
| 303 | --- debian/libdbus-cpp4.symbols.64bit 2015-05-05 08:24:50 +0000 |
| 304 | +++ debian/libdbus-cpp5.symbols.64bit 2015-10-21 07:54:47 +0000 |
| 305 | @@ -1,5 +1,5 @@ |
| 306 | - (c++)"core::dbus::Fixture::system_bus_address()@Base" 4.3.0+15.04.20150505 |
| 307 | - (c++)"core::dbus::Fixture::session_bus_address()@Base" 4.3.0+15.04.20150505 |
| 308 | + (c++)"core::dbus::Fixture::system_bus_address[abi:cxx11]()@Base" 4.3.0+15.04.20150505 |
| 309 | + (c++)"core::dbus::Fixture::session_bus_address[abi:cxx11]()@Base" 4.3.0+15.04.20150505 |
| 310 | (c++)"core::dbus::Fixture::default_daemon_timeout()@Base" 4.0.0+14.10.20140730 |
| 311 | (c++)"core::dbus::asio::make_executor(std::shared_ptr<core::dbus::Bus> const&)@Base" 2.0.0+14.04.20140310 |
| 312 | (c++)"core::dbus::asio::make_executor(std::shared_ptr<core::dbus::Bus> const&, boost::asio::io_service&)@Base" 3.1.0+14.10.20140711 |
| 313 | @@ -7,23 +7,20 @@ |
| 314 | (c++)"core::dbus::Bus::add_match(core::dbus::MatchRule const&)@Base" 2.0.0+14.04.20140310 |
| 315 | (c++)"core::dbus::Bus::~Bus()@Base" 2.0.0+14.04.20140310 |
| 316 | (c++)"core::dbus::Bus::Bus(core::dbus::WellKnownBus)@Base" 2.0.0+14.04.20140310 |
| 317 | - (c++)"core::dbus::Bus::Bus(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)@Base" 2.0.0+14.04.20140310 |
| 318 | - (c++)"core::dbus::Bus::Errors::AlreadyOwned::~AlreadyOwned()@Base" 2.0.0+14.04.20140310 |
| 319 | - (c++)"core::dbus::Bus::Errors::AlreadyOwner::~AlreadyOwner()@Base" 2.0.0+14.04.20140310 |
| 320 | - (c++)"core::dbus::Bus::Errors::NoMemory::~NoMemory()@Base" 2.0.0+14.04.20140310 |
| 321 | + (c++)"core::dbus::Bus::Bus(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)@Base" 2.0.0+14.04.20140310 |
| 322 | (c++)"core::dbus::Bus::handle_message(std::shared_ptr<core::dbus::Message> const&)@Base" 2.0.0+14.04.20140310 |
| 323 | - (c++)"core::dbus::Bus::has_owner_for_name(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)@Base" 2.0.0+14.04.20140310 |
| 324 | + (c++)"core::dbus::Bus::has_owner_for_name(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)@Base" 2.0.0+14.04.20140310 |
| 325 | (c++)"core::dbus::Bus::install_executor(std::shared_ptr<core::dbus::Executor> const&)@Base" 2.0.0+14.04.20140310 |
| 326 | (c++)"core::dbus::Bus::message_factory()@Base" 2.0.0+14.04.20140310 |
| 327 | - (c++)"core::dbus::Bus::Name::as_string() const@Base" 2.0.0+14.04.20140310 |
| 328 | + (c++)"core::dbus::Bus::Name::as_string[abi:cxx11]() const@Base" 2.0.0+14.04.20140310 |
| 329 | (c++)"core::dbus::Bus::Name::Name(core::dbus::Bus::Name&&)@Base" 2.0.0+14.04.20140310 |
| 330 | - (c++)"core::dbus::Bus::Name::Name(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)@Base" 2.0.0+14.04.20140310 |
| 331 | + (c++)"core::dbus::Bus::Name::Name(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)@Base" 2.0.0+14.04.20140310 |
| 332 | (c++)"core::dbus::Bus::Name::operator=(core::dbus::Bus::Name&&)@Base" 2.0.0+14.04.20140310 |
| 333 | (c++)"core::dbus::Bus::raw() const@Base" 2.0.0+14.04.20140310 |
| 334 | (c++)"core::dbus::Bus::register_object_for_path(core::dbus::types::ObjectPath const&, std::shared_ptr<core::dbus::Object> const&)@Base" 2.0.0+14.04.20140310 |
| 335 | (c++)"core::dbus::Bus::release_name_on_bus(core::dbus::Bus::Name&&)@Base" 2.0.0+14.04.20140310 |
| 336 | (c++)"core::dbus::Bus::remove_match(core::dbus::MatchRule const&)@Base" 2.0.0+14.04.20140310 |
| 337 | - (c++)"core::dbus::Bus::request_name_on_bus(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, core::dbus::Bus::RequestNameFlag)@Base" 2.0.0+14.04.20140310 |
| 338 | + (c++)"core::dbus::Bus::request_name_on_bus(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, core::dbus::Bus::RequestNameFlag)@Base" 2.0.0+14.04.20140310 |
| 339 | (c++)"core::dbus::Bus::run()@Base" 2.0.0+14.04.20140310 |
| 340 | (c++)"core::dbus::Bus::send(std::shared_ptr<core::dbus::Message> const&)@Base" 2.0.0+14.04.20140310 |
| 341 | (c++)"core::dbus::Bus::send_with_reply_and_block_for_at_most(std::shared_ptr<core::dbus::Message> const&, std::chrono::duration<long, std::ratio<1l, 1000l> > const&)@Base" 2.0.0+14.04.20140310 |
| 342 | @@ -31,62 +28,62 @@ |
| 343 | (c++)"core::dbus::Bus::stop()@Base" 2.0.0+14.04.20140310 |
| 344 | (c++)"core::dbus::Bus::unregister_object_path(core::dbus::types::ObjectPath const&)@Base" 2.0.0+14.04.20140310 |
| 345 | (c++)"core::dbus::DBus::DBus(std::shared_ptr<core::dbus::Bus> const&)@Base" 2.0.0+14.04.20140310 |
| 346 | - (c++)"core::dbus::DBus::GetConnectionUnixProcessID::name()::s@Base" 2.0.0+14.04.20140310 |
| 347 | - (c++)"core::dbus::DBus::get_connection_unix_process_id(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) const@Base" 2.0.0+14.04.20140310 |
| 348 | - (c++)"core::dbus::DBus::GetConnectionUnixUser::name()::s@Base" 2.0.0+14.04.20140310 |
| 349 | - (c++)"core::dbus::DBus::get_connection_unix_user(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) const@Base" 2.0.0+14.04.20140310 |
| 350 | - (c++)"core::dbus::DBus::hello() const@Base" 2.0.0+14.04.20140310 |
| 351 | - (c++)"core::dbus::DBus::Hello::name()::s@Base" 2.0.0+14.04.20140310 |
| 352 | - (c++)"core::dbus::DBus::interface()@Base" 2.0.0+14.04.20140310 |
| 353 | - (c++)"core::dbus::DBus::list_names() const@Base" 2.0.0+14.04.20140310 |
| 354 | - (c++)"core::dbus::DBus::ListNames::name()::s@Base" 2.0.0+14.04.20140310 |
| 355 | - (c++)"core::dbus::DBus::make_service_watcher(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, core::dbus::DBus::WatchMode)@Base" 2.0.0+14.04.20140310 |
| 356 | - (c++)"core::dbus::DBus::name()@Base" 2.0.0+14.04.20140310 |
| 357 | + (c++)"core::dbus::DBus::GetConnectionUnixProcessID::name[abi:cxx11]()::s@Base" 2.0.0+14.04.20140310 |
| 358 | + (c++)"core::dbus::DBus::get_connection_unix_process_id(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) const@Base" 2.0.0+14.04.20140310 |
| 359 | + (c++)"core::dbus::DBus::GetConnectionUnixUser::name[abi:cxx11]()::s@Base" 2.0.0+14.04.20140310 |
| 360 | + (c++)"core::dbus::DBus::get_connection_unix_user(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) const@Base" 2.0.0+14.04.20140310 |
| 361 | + (c++)"core::dbus::DBus::hello[abi:cxx11]() const@Base" 2.0.0+14.04.20140310 |
| 362 | + (c++)"core::dbus::DBus::Hello::name[abi:cxx11]()::s@Base" 2.0.0+14.04.20140310 |
| 363 | + (c++)"core::dbus::DBus::interface[abi:cxx11]()@Base" 2.0.0+14.04.20140310 |
| 364 | + (c++)"core::dbus::DBus::list_names[abi:cxx11]() const@Base" 2.0.0+14.04.20140310 |
| 365 | + (c++)"core::dbus::DBus::ListNames::name[abi:cxx11]()::s@Base" 2.0.0+14.04.20140310 |
| 366 | + (c++)"core::dbus::DBus::make_service_watcher(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, core::dbus::DBus::WatchMode)@Base" 2.0.0+14.04.20140310 |
| 367 | + (c++)"core::dbus::DBus::name[abi:cxx11]()@Base" 2.0.0+14.04.20140310 |
| 368 | (c++)"core::dbus::DBus::path()@Base" 2.0.0+14.04.20140310 |
| 369 | (c++)"core::dbus::Error::~Error()@Base" 2.0.0+14.04.20140310 |
| 370 | (c++)"core::dbus::Error::Error()@Base" 2.0.0+14.04.20140310 |
| 371 | (c++)"core::dbus::Error::Error(core::dbus::Error&&)@Base" 2.0.0+14.04.20140310 |
| 372 | - (c++)"core::dbus::Error::message() const@Base" 2.0.0+14.04.20140310 |
| 373 | - (c++)"core::dbus::Error::name() const@Base" 2.0.0+14.04.20140310 |
| 374 | + (c++)"core::dbus::Error::message[abi:cxx11]() const@Base" 2.0.0+14.04.20140310 |
| 375 | + (c++)"core::dbus::Error::name[abi:cxx11]() const@Base" 2.0.0+14.04.20140310 |
| 376 | (c++)"core::dbus::Error::operator bool() const@Base" 2.0.0+14.04.20140310 |
| 377 | (c++)"core::dbus::Error::operator=(core::dbus::Error&&)@Base" 2.0.0+14.04.20140310 |
| 378 | - (c++)"core::dbus::Error::print() const@Base" 2.0.0+14.04.20140310 |
| 379 | + (c++)"core::dbus::Error::print[abi:cxx11]() const@Base" 2.0.0+14.04.20140310 |
| 380 | (c++)"core::dbus::Error::raw()@Base" 2.0.0+14.04.20140310 |
| 381 | (c++)"core::dbus::Fixture::create_connection_to_session_bus()@Base" 2.0.0+14.04.20140310 |
| 382 | (c++)"core::dbus::Fixture::create_connection_to_system_bus()@Base" 2.0.0+14.04.20140310 |
| 383 | - (c++)"core::dbus::Fixture::default_session_bus_config_file()@Base" 2.0.0+14.04.20140310 |
| 384 | - (c++)"core::dbus::Fixture::default_system_bus_config_file()@Base" 2.0.0+14.04.20140310 |
| 385 | + (c++)"core::dbus::Fixture::default_session_bus_config_file[abi:cxx11]()@Base" 2.0.0+14.04.20140310 |
| 386 | + (c++)"core::dbus::Fixture::default_system_bus_config_file[abi:cxx11]()@Base" 2.0.0+14.04.20140310 |
| 387 | (c++)"core::dbus::Fixture::~Fixture()@Base" 2.0.0+14.04.20140310 |
| 388 | - (c++)"core::dbus::Fixture::Fixture(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)@Base" 2.0.0+14.04.20140310 |
| 389 | - (c++)"core::dbus::MatchRule::args(std::vector<std::pair<unsigned long, std::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<unsigned long, std::basic_string<char, std::char_traits<char>, std::allocator<char> > > > > const&)@Base" 2.0.0+14.04.20140310 |
| 390 | - (c++)"core::dbus::MatchRule::args(std::vector<std::pair<unsigned long, std::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<unsigned long, std::basic_string<char, std::char_traits<char>, std::allocator<char> > > > > const&) const@Base" 2.0.0+14.04.20140310 |
| 391 | - (c++)"core::dbus::MatchRule::as_string() const@Base" 2.0.0+14.04.20140310 |
| 392 | - (c++)"core::dbus::MatchRule::interface(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)@Base" 2.0.0+14.04.20140310 |
| 393 | - (c++)"core::dbus::MatchRule::interface(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) const@Base" 2.0.0+14.04.20140310 |
| 394 | + (c++)"core::dbus::Fixture::Fixture(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)@Base" 2.0.0+14.04.20140310 |
| 395 | + (c++)"core::dbus::MatchRule::args(std::vector<std::pair<unsigned long, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<unsigned long, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > > const&)@Base" 2.0.0+14.04.20140310 |
| 396 | + (c++)"core::dbus::MatchRule::args(std::vector<std::pair<unsigned long, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<unsigned long, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > > const&) const@Base" 2.0.0+14.04.20140310 |
| 397 | + (c++)"core::dbus::MatchRule::as_string[abi:cxx11]() const@Base" 2.0.0+14.04.20140310 |
| 398 | + (c++)"core::dbus::MatchRule::interface(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)@Base" 2.0.0+14.04.20140310 |
| 399 | + (c++)"core::dbus::MatchRule::interface(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) const@Base" 2.0.0+14.04.20140310 |
| 400 | (c++)"core::dbus::MatchRule::~MatchRule()@Base" 2.0.0+14.04.20140310 |
| 401 | (c++)"core::dbus::MatchRule::MatchRule()@Base" 2.0.0+14.04.20140310 |
| 402 | (c++)"core::dbus::MatchRule::MatchRule(core::dbus::MatchRule const&)@Base" 2.0.0+14.04.20140310 |
| 403 | - (c++)"core::dbus::MatchRule::member(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)@Base" 2.0.0+14.04.20140310 |
| 404 | - (c++)"core::dbus::MatchRule::member(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) const@Base" 2.0.0+14.04.20140310 |
| 405 | + (c++)"core::dbus::MatchRule::member(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)@Base" 2.0.0+14.04.20140310 |
| 406 | + (c++)"core::dbus::MatchRule::member(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) const@Base" 2.0.0+14.04.20140310 |
| 407 | (c++)"core::dbus::MatchRule::operator=(core::dbus::MatchRule const&)@Base" 2.0.0+14.04.20140310 |
| 408 | (c++)"core::dbus::MatchRule::path(core::dbus::types::ObjectPath const&)@Base" 2.0.0+14.04.20140310 |
| 409 | (c++)"core::dbus::MatchRule::path(core::dbus::types::ObjectPath const&) const@Base" 2.0.0+14.04.20140310 |
| 410 | - (c++)"core::dbus::MatchRule::sender(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)@Base" 2.0.0+14.04.20140310 |
| 411 | - (c++)"core::dbus::MatchRule::sender(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) const@Base" 2.0.0+14.04.20140310 |
| 412 | + (c++)"core::dbus::MatchRule::sender(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)@Base" 2.0.0+14.04.20140310 |
| 413 | + (c++)"core::dbus::MatchRule::sender(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) const@Base" 2.0.0+14.04.20140310 |
| 414 | (c++)"core::dbus::MatchRule::type(core::dbus::Message::Type)@Base" 2.0.0+14.04.20140310 |
| 415 | (c++)"core::dbus::MatchRule::type(core::dbus::Message::Type) const@Base" 2.0.0+14.04.20140310 |
| 416 | (c++)"core::dbus::Message::clone()@Base" 2.0.0+14.04.20140310 |
| 417 | - (c++)"core::dbus::Message::destination() const@Base" 2.0.0+14.04.20140310 |
| 418 | + (c++)"core::dbus::Message::destination[abi:cxx11]() const@Base" 2.0.0+14.04.20140310 |
| 419 | (c++)"core::dbus::Message::ensure_serial_larger_than_zero_for_testing()@Base" 2.0.0+14.04.20140310 |
| 420 | (c++)"core::dbus::Message::error() const@Base" 2.0.0+14.04.20140310 |
| 421 | (c++)"core::dbus::Message::expects_reply() const@Base" 2.0.0+14.04.20140310 |
| 422 | (c++)"core::dbus::Message::from_raw_message(DBusMessage*)@Base" 2.0.0+14.04.20140310 |
| 423 | - (c++)"core::dbus::Message::interface() const@Base" 2.0.0+14.04.20140310 |
| 424 | - (c++)"core::dbus::Message::make_error(std::shared_ptr<core::dbus::Message> const&, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)@Base" 2.0.0+14.04.20140310 |
| 425 | - (c++)"core::dbus::Message::make_method_call(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, core::dbus::types::ObjectPath const&, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)@Base" 2.0.0+14.04.20140310 |
| 426 | + (c++)"core::dbus::Message::interface[abi:cxx11]() const@Base" 2.0.0+14.04.20140310 |
| 427 | + (c++)"core::dbus::Message::make_error(std::shared_ptr<core::dbus::Message> const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)@Base" 2.0.0+14.04.20140310 |
| 428 | + (c++)"core::dbus::Message::make_method_call(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, core::dbus::types::ObjectPath const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)@Base" 2.0.0+14.04.20140310 |
| 429 | (c++)"core::dbus::Message::make_method_return(std::shared_ptr<core::dbus::Message> const&)@Base" 2.0.0+14.04.20140310 |
| 430 | - (c++)"core::dbus::Message::make_signal(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)@Base" 2.0.0+14.04.20140310 |
| 431 | - (c++)"core::dbus::Message::member() const@Base" 2.0.0+14.04.20140310 |
| 432 | + (c++)"core::dbus::Message::make_signal(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)@Base" 2.0.0+14.04.20140310 |
| 433 | + (c++)"core::dbus::Message::member[abi:cxx11]() const@Base" 2.0.0+14.04.20140310 |
| 434 | (c++)"core::dbus::Message::~Message()@Base" 2.0.0+14.04.20140310 |
| 435 | (c++)"core::dbus::Message::Message(std::unique_ptr<core::dbus::Message::Private, std::default_delete<core::dbus::Message::Private> >)@Base" 2.0.0+14.04.20140310 |
| 436 | (c++)"core::dbus::Message::path() const@Base" 2.0.0+14.04.20140310 |
| 437 | @@ -116,8 +113,8 @@ |
| 438 | (c++)"core::dbus::Message::Reader::Reader(core::dbus::Message::Reader&&)@Base" 2.0.0+14.04.20140310 |
| 439 | (c++)"core::dbus::Message::Reader::Reader(std::shared_ptr<core::dbus::Message> const&)@Base" 2.0.0+14.04.20140310 |
| 440 | (c++)"core::dbus::Message::Reader::type() const@Base" 2.0.0+14.04.20140310 |
| 441 | - (c++)"core::dbus::Message::sender() const@Base" 2.0.0+14.04.20140310 |
| 442 | - (c++)"core::dbus::Message::signature() const@Base" 2.0.0+14.04.20140310 |
| 443 | + (c++)"core::dbus::Message::sender[abi:cxx11]() const@Base" 2.0.0+14.04.20140310 |
| 444 | + (c++)"core::dbus::Message::signature[abi:cxx11]() const@Base" 2.0.0+14.04.20140310 |
| 445 | (c++)"core::dbus::Message::type() const@Base" 2.0.0+14.04.20140310 |
| 446 | (c++)"core::dbus::Message::writer()@Base" 2.0.0+14.04.20140310 |
| 447 | (c++)"core::dbus::Message::Writer::close_array(core::dbus::Message::Writer)@Base" 2.0.0+14.04.20140310 |
| 448 | @@ -148,30 +145,26 @@ |
| 449 | (c++)"core::dbus::Service::add_match(core::dbus::MatchRule const&)@Base" 2.0.0+14.04.20140310 |
| 450 | (c++)"core::dbus::Service::add_object_for_path(core::dbus::types::ObjectPath const&)@Base" 2.0.0+14.04.20140310 |
| 451 | (c++)"core::dbus::Service::get_connection() const@Base" 2.0.0+14.04.20140310 |
| 452 | - (c++)"core::dbus::Service::get_name() const@Base" 2.0.0+14.04.20140310 |
| 453 | + (c++)"core::dbus::Service::get_name[abi:cxx11]() const@Base" 2.0.0+14.04.20140310 |
| 454 | (c++)"core::dbus::Service::is_stub() const@Base" 2.0.0+14.04.20140310 |
| 455 | (c++)"core::dbus::Service::object_for_path(core::dbus::types::ObjectPath const&)@Base" 2.0.0+14.04.20140310 |
| 456 | (c++)"core::dbus::Service::remove_match(core::dbus::MatchRule const&)@Base" 2.0.0+14.04.20140310 |
| 457 | (c++)"core::dbus::Service::root_object()@Base" 2.0.0+14.04.20140310 |
| 458 | - (c++)"core::dbus::Service::~Service()@Base" 2.0.0+14.04.20140310 |
| 459 | - (c++)"core::dbus::Service::Service(std::shared_ptr<core::dbus::Bus> const&, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)@Base" 2.0.0+14.04.20140310 |
| 460 | - (c++)"core::dbus::Service::Service(std::shared_ptr<core::dbus::Bus> const&, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, core::dbus::Bus::RequestNameFlag const&)@Base" 2.0.0+14.04.20140310 |
| 461 | - (c++)"core::dbus::Service::use_service_or_throw_if_not_available(std::shared_ptr<core::dbus::Bus> const&, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)@Base" 2.0.0+14.04.20140310 |
| 462 | - (c++)"core::dbus::Service::use_service(std::shared_ptr<core::dbus::Bus> const&, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)@Base" 2.0.0+14.04.20140310 |
| 463 | - (c++)"core::dbus::ServiceWatcher::owner_changed() const@Base" 2.0.0+14.04.20140310 |
| 464 | - (c++)"core::dbus::ServiceWatcher::Private::~Private()@Base" 2.0.0+14.04.20140310 |
| 465 | + (c++)"core::dbus::Service::Service(std::shared_ptr<core::dbus::Bus> const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)@Base" 2.0.0+14.04.20140310 |
| 466 | + (c++)"core::dbus::Service::Service(std::shared_ptr<core::dbus::Bus> const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, core::dbus::Bus::RequestNameFlag const&)@Base" 2.0.0+14.04.20140310 |
| 467 | + (c++)"core::dbus::Service::use_service_or_throw_if_not_available(std::shared_ptr<core::dbus::Bus> const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)@Base" 2.0.0+14.04.20140310 |
| 468 | + (c++)"core::dbus::Service::use_service(std::shared_ptr<core::dbus::Bus> const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)@Base" 2.0.0+14.04.20140310 |
| 469 | + (c++)"core::dbus::ServiceWatcher::owner_changed[abi:cxx11]() const@Base" 2.0.0+14.04.20140310 |
| 470 | (c++)"core::dbus::ServiceWatcher::service_registered() const@Base" 2.0.0+14.04.20140310 |
| 471 | (c++)"core::dbus::ServiceWatcher::service_unregistered() const@Base" 2.0.0+14.04.20140310 |
| 472 | - (c++)"core::dbus::ServiceWatcher::ServiceWatcher(std::shared_ptr<core::dbus::Object>, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, core::dbus::DBus::WatchMode)@Base" 2.0.0+14.04.20140310 |
| 473 | - (c++)"core::dbus::types::ObjectPath::as_string() const@Base" 2.0.0+14.04.20140310 |
| 474 | + (c++)"core::dbus::ServiceWatcher::ServiceWatcher(std::shared_ptr<core::dbus::Object>, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, core::dbus::DBus::WatchMode)@Base" 2.0.0+14.04.20140310 |
| 475 | + (c++)"core::dbus::types::ObjectPath::as_string[abi:cxx11]() const@Base" 2.0.0+14.04.20140310 |
| 476 | (c++)"core::dbus::types::ObjectPath::empty() const@Base" 2.0.0+14.04.20140310 |
| 477 | - (c++)"core::dbus::types::ObjectPath::Errors::InvalidObjectPathStringRepresentation::~InvalidObjectPathStringRepresentation()@Base" 2.0.0+14.04.20140310 |
| 478 | - (c++)"core::dbus::types::ObjectPath::~ObjectPath()@Base" 2.0.0+14.04.20140310 |
| 479 | - (c++)"core::dbus::types::ObjectPath::ObjectPath(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)@Base" 2.0.0+14.04.20140310 |
| 480 | + (c++)"core::dbus::types::ObjectPath::ObjectPath(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)@Base" 2.0.0+14.04.20140310 |
| 481 | (c++)"core::dbus::types::ObjectPath::operator<(core::dbus::types::ObjectPath const&) const@Base" 2.0.0+14.04.20140310 |
| 482 | (c++)"core::dbus::types::ObjectPath::operator==(core::dbus::types::ObjectPath const&) const@Base" 2.0.0+14.04.20140310 |
| 483 | (c++)"core::dbus::types::ObjectPath::operator!=(core::dbus::types::ObjectPath const&) const@Base" 2.0.0+14.04.20140310 |
| 484 | - (c++)"core::dbus::types::ObjectPath::root()@Base" 2.0.0+14.04.20140310 |
| 485 | + (c++)"core::dbus::types::ObjectPath::root[abi:cxx11]()@Base" 2.0.0+14.04.20140310 |
| 486 | (c++)"core::dbus::types::operator<<(std::basic_ostream<char, std::char_traits<char> >&, core::dbus::types::ObjectPath const&)@Base" 2.0.0+14.04.20140310 |
| 487 | (c++)"std::hash<core::dbus::types::ObjectPath>::operator()(core::dbus::types::ObjectPath const&) const@Base" 2.0.0+14.04.20140310 |
| 488 | (c++)"typeinfo for core::dbus::Bus::Errors::AlreadyOwned@Base" 2.0.0+14.04.20140310 |
| 489 | @@ -181,8 +174,8 @@ |
| 490 | (c++)"typeinfo for core::dbus::Bus::Private::Private()::{lambda(std::shared_ptr<core::dbus::Message> const&)#2}@Base" 2.0.0+14.04.20140310 |
| 491 | (c++)"typeinfo for core::dbus::Executor@Base" 2.0.0+14.04.20140310 |
| 492 | (c++)"typeinfo for core::dbus::Fixture@Base" 2.0.0+14.04.20140310 |
| 493 | - (c++)"typeinfo for core::dbus::Fixture::Private::Session::Session(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)::{lambda(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)#1}@Base" 2.0.0+14.04.20140310 |
| 494 | - (c++)"typeinfo for core::dbus::Fixture::Private::System::System(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)::{lambda(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)#1}@Base" 2.0.0+14.04.20140310 |
| 495 | + (c++)"typeinfo for core::dbus::Fixture::Private::Session::Session(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)::{lambda(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)#1}@Base" 2.0.0+14.04.20140310 |
| 496 | + (c++)"typeinfo for core::dbus::Fixture::Private::System::System(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)::{lambda(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)#1}@Base" 2.0.0+14.04.20140310 |
| 497 | (c++)"typeinfo for core::dbus::PendingCall@Base" 2.0.0+14.04.20140310 |
| 498 | (c++)"typeinfo for core::dbus::types::ObjectPath::Errors::InvalidObjectPathStringRepresentation@Base" 2.0.0+14.04.20140310 |
| 499 | (c++)"typeinfo name for core::dbus::Bus::Errors::AlreadyOwned@Base" 2.0.0+14.04.20140310 |
| 500 | @@ -192,17 +185,15 @@ |
| 501 | (c++)"typeinfo name for core::dbus::Bus::Private::Private()::{lambda(std::shared_ptr<core::dbus::Message> const&)#2}@Base" 2.0.0+14.04.20140310 |
| 502 | (c++)"typeinfo name for core::dbus::Executor@Base" 2.0.0+14.04.20140310 |
| 503 | (c++)"typeinfo name for core::dbus::Fixture@Base" 2.0.0+14.04.20140310 |
| 504 | - (c++)"typeinfo name for core::dbus::Fixture::Private::Session::Session(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)::{lambda(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)#1}@Base" 2.0.0+14.04.20140310 |
| 505 | - (c++)"typeinfo name for core::dbus::Fixture::Private::System::System(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)::{lambda(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)#1}@Base" 2.0.0+14.04.20140310 |
| 506 | + (c++)"typeinfo name for core::dbus::Fixture::Private::Session::Session(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)::{lambda(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)#1}@Base" 2.0.0+14.04.20140310 |
| 507 | + (c++)"typeinfo name for core::dbus::Fixture::Private::System::System(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)::{lambda(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)#1}@Base" 2.0.0+14.04.20140310 |
| 508 | (c++)"typeinfo name for core::dbus::Message::Private::Private(DBusMessage*, bool)::{lambda(DBusMessage*)#1}@Base" 2.0.0+14.04.20140310 |
| 509 | (c++)"typeinfo name for core::dbus::PendingCall@Base" 2.0.0+14.04.20140310 |
| 510 | (c++)"typeinfo name for core::dbus::types::ObjectPath::Errors::InvalidObjectPathStringRepresentation@Base" 2.0.0+14.04.20140310 |
| 511 | (c++)"vtable for core::dbus::Bus::Errors::AlreadyOwned@Base" 2.0.0+14.04.20140310 |
| 512 | (c++)"vtable for core::dbus::Bus::Errors::AlreadyOwner@Base" 2.0.0+14.04.20140310 |
| 513 | (c++)"vtable for core::dbus::Bus::Errors::NoMemory@Base" 2.0.0+14.04.20140310 |
| 514 | - (c++)"vtable for core::dbus::Executor@Base" 2.0.0+14.04.20140310 |
| 515 | (c++)"vtable for core::dbus::Fixture@Base" 2.0.0+14.04.20140310 |
| 516 | - (c++)"vtable for core::dbus::PendingCall@Base" 2.0.0+14.04.20140310 |
| 517 | (c++)"vtable for core::dbus::types::ObjectPath::Errors::InvalidObjectPathStringRepresentation@Base" 2.0.0+14.04.20140310 |
| 518 | -#include "libdbus-cpp4.symbols.coverage" |
| 519 | +#include "libdbus-cpp5.symbols.coverage" |
| 520 | |
| 521 | |
| 522 | === renamed file 'debian/libdbus-cpp4.symbols.amd64' => 'debian/libdbus-cpp5.symbols.amd64' |
| 523 | --- debian/libdbus-cpp4.symbols.amd64 2014-06-16 12:19:18 +0000 |
| 524 | +++ debian/libdbus-cpp5.symbols.amd64 2015-10-21 07:54:47 +0000 |
| 525 | @@ -1,2 +1,2 @@ |
| 526 | -libdbus-cpp.so.4 libdbus-cpp4 #MINVER# |
| 527 | -#include "libdbus-cpp4.symbols.64bit" |
| 528 | +libdbus-cpp.so.5 libdbus-cpp5 #MINVER# |
| 529 | +#include "libdbus-cpp5.symbols.64bit" |
| 530 | |
| 531 | === renamed file 'debian/libdbus-cpp4.symbols.arm64' => 'debian/libdbus-cpp5.symbols.arm64' |
| 532 | --- debian/libdbus-cpp4.symbols.arm64 2014-06-16 12:19:18 +0000 |
| 533 | +++ debian/libdbus-cpp5.symbols.arm64 2015-10-21 07:54:47 +0000 |
| 534 | @@ -1,2 +1,2 @@ |
| 535 | -libdbus-cpp.so.4 libdbus-cpp4 #MINVER# |
| 536 | -#include "libdbus-cpp4.symbols.64bit" |
| 537 | +libdbus-cpp.so.5 libdbus-cpp5 #MINVER# |
| 538 | +#include "libdbus-cpp5.symbols.64bit" |
| 539 | |
| 540 | === renamed file 'debian/libdbus-cpp4.symbols.armhf' => 'debian/libdbus-cpp5.symbols.armhf' |
| 541 | --- debian/libdbus-cpp4.symbols.armhf 2014-06-16 12:19:18 +0000 |
| 542 | +++ debian/libdbus-cpp5.symbols.armhf 2015-10-21 07:54:47 +0000 |
| 543 | @@ -1,2 +1,2 @@ |
| 544 | -libdbus-cpp.so.4 libdbus-cpp4 #MINVER# |
| 545 | -#include "libdbus-cpp4.symbols.32bit" |
| 546 | +libdbus-cpp.so.5 libdbus-cpp5 #MINVER# |
| 547 | +#include "libdbus-cpp5.symbols.32bit" |
| 548 | |
| 549 | === renamed file 'debian/libdbus-cpp4.symbols.coverage' => 'debian/libdbus-cpp5.symbols.coverage' |
| 550 | === renamed file 'debian/libdbus-cpp4.symbols.i386' => 'debian/libdbus-cpp5.symbols.i386' |
| 551 | --- debian/libdbus-cpp4.symbols.i386 2014-06-16 12:19:18 +0000 |
| 552 | +++ debian/libdbus-cpp5.symbols.i386 2015-10-21 07:54:47 +0000 |
| 553 | @@ -1,2 +1,2 @@ |
| 554 | -libdbus-cpp.so.4 libdbus-cpp4 #MINVER# |
| 555 | -#include "libdbus-cpp4.symbols.32bit" |
| 556 | +libdbus-cpp.so.5 libdbus-cpp5 #MINVER# |
| 557 | +#include "libdbus-cpp5.symbols.32bit" |
| 558 | |
| 559 | === renamed file 'debian/libdbus-cpp4.symbols.powerpc' => 'debian/libdbus-cpp5.symbols.powerpc' |
| 560 | --- debian/libdbus-cpp4.symbols.powerpc 2014-06-16 12:19:18 +0000 |
| 561 | +++ debian/libdbus-cpp5.symbols.powerpc 2015-10-21 07:54:47 +0000 |
| 562 | @@ -1,2 +1,2 @@ |
| 563 | -libdbus-cpp.so.4 libdbus-cpp4 #MINVER# |
| 564 | -#include "libdbus-cpp4.symbols.32bit" |
| 565 | +libdbus-cpp.so.5 libdbus-cpp5 #MINVER# |
| 566 | +#include "libdbus-cpp5.symbols.32bit" |
| 567 | |
| 568 | === renamed file 'debian/libdbus-cpp4.symbols.ppc64el' => 'debian/libdbus-cpp5.symbols.ppc64el' |
| 569 | --- debian/libdbus-cpp4.symbols.ppc64el 2014-06-16 12:19:18 +0000 |
| 570 | +++ debian/libdbus-cpp5.symbols.ppc64el 2015-10-21 07:54:47 +0000 |
| 571 | @@ -1,2 +1,2 @@ |
| 572 | -libdbus-cpp.so.4 libdbus-cpp4 #MINVER# |
| 573 | -#include "libdbus-cpp4.symbols.64bit" |
| 574 | +libdbus-cpp.so.5 libdbus-cpp5 #MINVER# |
| 575 | +#include "libdbus-cpp5.symbols.64bit" |
| 576 | |
| 577 | === modified file 'debian/rules' |
| 578 | --- debian/rules 2014-06-17 09:23:10 +0000 |
| 579 | +++ debian/rules 2015-10-21 07:54:47 +0000 |
| 580 | @@ -6,11 +6,6 @@ |
| 581 | |
| 582 | include /usr/share/dpkg/default.mk |
| 583 | |
| 584 | -# Explicitly selecting a G{CC,++}-version here to avoid accidental |
| 585 | -# ABI breaks introduced by toolchain updates. |
| 586 | -export CC=$(DEB_HOST_GNU_TYPE)-gcc-4.9 |
| 587 | -export CXX=$(DEB_HOST_GNU_TYPE)-g++-4.9 |
| 588 | - |
| 589 | export DPKG_GENSYMBOLS_CHECK_LEVEL=4 |
| 590 | |
| 591 | %: |

PASSED: Continuous integration, rev:99 jenkins. qa.ubuntu. com/job/ dbus-cpp- ci/220/ jenkins. qa.ubuntu. com/job/ dbus-cpp- vivid-amd64- ci/8 jenkins. qa.ubuntu. com/job/ dbus-cpp- vivid-armhf- ci/8 jenkins. qa.ubuntu. com/job/ dbus-cpp- vivid-armhf- ci/8/artifact/ work/output/ *zip*/output. zip jenkins. qa.ubuntu. com/job/ dbus-cpp- vivid-i386- ci/8
http://
Executed test runs:
SUCCESS: http://
SUCCESS: http://
deb: http://
SUCCESS: http://
Click here to trigger a rebuild: s-jenkins. ubuntu- ci:8080/ job/dbus- cpp-ci/ 220/rebuild
http://