-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'toolchain-2.9' into cmake-disable-orogen
- Loading branch information
Showing
8 changed files
with
28 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: gitsubmodule | ||
directory: "/" | ||
schedule: | ||
interval: daily | ||
time: "10:00" | ||
open-pull-requests-limit: 10 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule ocl
updated
17 files
+3 −3 | bin/cdeployer.cpp | |
+1 −3 | bin/deployer-corba.cpp | |
+2 −2 | bin/deployer.cpp | |
+1 −1 | logging/Appender.cpp | |
+1 −1 | logging/FileAppender.cpp | |
+3 −3 | logging/LoggingService.cpp | |
+1 −1 | logging/OstreamAppender.cpp | |
+1 −1 | logging/RollingFileAppender.cpp | |
+22 −22 | lua/rtt.cpp | |
+15 −17 | manifest.xml | |
+1 −1 | orocos-ocl-config.cmake | |
+16 −23 | package.xml | |
+4 −0 | reporting/ReportingComponent.cpp | |
+1 −1 | reporting/TcpReporting.cpp | |
+3 −3 | reporting/socket.cpp | |
+3 −3 | reporting/socket.hpp | |
+4 −4 | taskbrowser/TaskBrowser.cpp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,15 +6,15 @@ | |
<description> | ||
This metapackage provides Orocos RTT and OCL and dependencies. | ||
</description> | ||
<license>GPL v2 + linking exception<license> | ||
<licence>LGPL-2.1</license> | ||
<license>GPL v2 + linking exception</license> | ||
<license>LGPL-2.1</license> | ||
<maintainer email="[email protected]">Orocos Developers</maintainer> | ||
|
||
<buildtool_depend>catkin</buildtool_depend> <!-- optional --> | ||
<buildtool_depend condition="$ROS_VERSION == 1">catkin</buildtool_depend> <!-- optional --> | ||
|
||
<depend>log4cpp</depend> | ||
<depend>ocl</depend> | ||
<depend>rtt</depend> | ||
<exec_depend>log4cpp</exec_depend> | ||
<exec_depend>ocl</exec_depend> | ||
<exec_depend>rtt</exec_depend> | ||
|
||
<export> | ||
<metapackage/> | ||
|
Submodule rtt
updated
49 files
Submodule typelib
updated
58 files
Submodule utilrb
updated
9 files
+6 −6 | .travis.yml | |
+37 −25 | lib/utilrb/module/dsl_attribute.rb | |
+15 −3 | lib/utilrb/object/address.rb | |
+101 −19 | lib/utilrb/pkgconfig.rb | |
+5 −0 | test/data/test_pc_sysrootdir.pc | |
+4 −0 | test/data/test_pcfiledir.pc | |
+27 −0 | test/test_module.rb | |
+8 −6 | test/test_object.rb | |
+29 −5 | test/test_pkgconfig.rb |