Codebase list ros-ros / 55e9608
New upstream version 1.13.4 Jochen Sprickerhof 7 years ago
22 changed file(s) with 46 addition(s) and 14 deletion(s). Raw diff Collapse all Expand all
00 ^^^^^^^^^^^^^^^^^^^^^^^^
11 Changelog for package mk
22 ^^^^^^^^^^^^^^^^^^^^^^^^
3
4 1.13.4 (2016-09-19)
5 -------------------
36
47 1.13.3 (2016-09-16)
58 -------------------
00 <package>
11 <name>mk</name>
2 <version>1.13.3</version>
2 <version>1.13.4</version>
33 <description>
44 A collection of .mk include files for building ROS architectural elements.
55 Most package authors should use cmake .mk, which calls CMake for the build of the package.
00 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
11 Changelog for package rosbuild
22 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
3
4 1.13.4 (2016-09-19)
5 -------------------
36
47 1.13.3 (2016-09-16)
58 -------------------
00 <package>
11 <name>rosbuild</name>
2 <version>1.13.3</version>
2 <version>1.13.4</version>
33 <description>
44 rosbuild contains scripts for managing the CMake-based build system for ROS.
55 </description>
00 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
11 Changelog for package roslang
22 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
3
4 1.13.4 (2016-09-19)
5 -------------------
36
47 1.13.3 (2016-09-16)
58 -------------------
00 <package>
11 <name>roslang</name>
2 <version>1.13.3</version>
2 <version>1.13.4</version>
33 <description>
44 roslang is a common package that all <a href="http://www.ros.org/wiki/Client%20Libraries">ROS client libraries</a> depend on.
55 This is mainly used to find client libraries (via 'rospack depends-on1 roslang').
00 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
11 Changelog for package roslib
22 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
3
4 1.13.4 (2016-09-19)
5 -------------------
36
47 1.13.3 (2016-09-16)
58 -------------------
00 <package>
11 <name>roslib</name>
2 <version>1.13.3</version>
2 <version>1.13.4</version>
33 <description>
44 Base dependencies and support libraries for ROS.
55 roslib contains many of the common data structures and tools that are shared across ROS client library implementations.
00 <package>
11 <name>ros</name>
2 <version>1.13.3</version>
2 <version>1.13.4</version>
33 <description>ROS packaging system</description>
44 <maintainer email="dthomas@osrfoundation.org">Dirk Thomas</maintainer>
55 <license>BSD</license>
00 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
11 Changelog for package rosbash
22 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
3
4 1.13.4 (2016-09-19)
5 -------------------
36
47 1.13.3 (2016-09-16)
58 -------------------
00 <package>
11 <name>rosbash</name>
2 <version>1.13.3</version>
2 <version>1.13.4</version>
33 <description>
44 Assorted shell commands for using ros with bash.
55 </description>
00 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
11 Changelog for package rosboost_cfg
22 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
3
4 1.13.4 (2016-09-19)
5 -------------------
36
47 1.13.3 (2016-09-16)
58 -------------------
00 <package>
11 <name>rosboost_cfg</name>
2 <version>1.13.3</version>
2 <version>1.13.4</version>
33 <description>
44 Contains scripts used by the rosboost-cfg tool for determining cflags/lflags/etc. of boost on your system
55 </description>
00 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
11 Changelog for package rosclean
22 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
3
4 1.13.4 (2016-09-19)
5 -------------------
36
47 1.13.3 (2016-09-16)
58 -------------------
00 <package>
11 <name>rosclean</name>
2 <version>1.13.3</version>
2 <version>1.13.4</version>
33 <description>
44 rosclean: cleanup filesystem resources (e.g. log files).
55 </description>
00 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
11 Changelog for package roscreate
22 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
3
4 1.13.4 (2016-09-19)
5 -------------------
36
47 1.13.3 (2016-09-16)
58 -------------------
00 <package>
11 <name>roscreate</name>
2 <version>1.13.3</version>
2 <version>1.13.4</version>
33 <description>
44 roscreate contains a tool that assists in the creation of ROS filesystem resources.
55 It provides: <tt>roscreate-pkg</tt>, which creates a new package directory,
00 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
11 Changelog for package rosmake
22 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
3
4 1.13.4 (2016-09-19)
5 -------------------
36
47 1.13.3 (2016-09-16)
58 -------------------
00 <package>
11 <name>rosmake</name>
2 <version>1.13.3</version>
2 <version>1.13.4</version>
33 <description>
44 rosmake is a ros dependency aware build tool which can be used to
55 build all dependencies in the correct order.
00 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
11 Changelog for package rosunit
22 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
3
4 1.13.4 (2016-09-19)
5 -------------------
6 * fix test type handling (`#123 <https://github.com/ros/ros/issues/123>`_)
37
48 1.13.3 (2016-09-16)
59 -------------------
00 <package>
11 <name>rosunit</name>
2 <version>1.13.3</version>
2 <version>1.13.4</version>
33 <description>
44 Unit-testing package for ROS. This is a lower-level library for rostest and handles unit tests, whereas rostest handles integration tests.
55 </description>
8686
8787 # create and run unittest suite with our xmllrunner wrapper
8888 suite = None
89 if isinstance(test, unittest.TestCase):
89 if isinstance(test, str):
90 suite = unittest.TestLoader().loadTestsFromName(test)
91 else:
92 # some callers pass a TestCase type (instead of an instance)
9093 suite = unittest.TestLoader().loadTestsFromTestCase(test)
91 else:
92 suite = unittest.TestLoader().loadTestsFromName(test)
9394
9495 if text_mode:
9596 result = unittest.TextTestRunner(verbosity=2).run(suite)