~wooksong/nnstreamer-ros/+git/tizenport-ros-comm:tizen6

Last commit made on 2020-02-17
Get this branch:
git clone -b tizen6 https://git.launchpad.net/~wooksong/nnstreamer-ros/+git/tizenport-ros-comm

Branch merges

Branch information

Recent commits

c416978... by Dmitry Rozhkov <email address hidden>

[roscpp] add missing header for writev().

After an update of gcc and glibc roscpp started to fail builds with the error:

    /home/rojkov/work/ros/build/tmp-glibc/work/i586-oe-linux/roscpp/1.11.21-r0/ros_comm-1.11.21/clients/roscpp/src/libros/transport/transport_udp.cpp:579:25: error: 'writev' was not declared in this scope
         ssize_t num_bytes = writev(sock_, iov, 2);
                             ^~~~~~

According to POSIX.1-2001 the function writev() is declared in sys/uio.h.

The patch includes the missing header for POSIX compliant systems.

Signed-off-by: MyungJoo Ham <email address hidden>

6333a94... by Sangjung Woo

packaging: Move rospy python module files from test-rospy to rospy package

This patch moves the rospy python module files from test-rospy to rospy
package.

Signed-off-by: Sangjung woo <email address hidden>

fb57f3c... by MyungJoo Ham

DIST: RPM Dependency Typo Fix

kientic --> kinetic

Signed-off-by: MyungJoo Ham <email address hidden>

d81255b... by Sangjung Woo

packaging: rename rosgraph-msgs instead of rosgraph0msgs

This patch fixed the typo in Requires section.
* rosgraph-msgs instead of rosgraph0msgs

Signed-off-by: Sangjung woo <email address hidden>

1d2d8ee... by MyungJoo Ham

DIST: Add rpm spec for Tizen

Along with Requries: from package.xml

Signed-off-by: MyungJoo Ham <email address hidden>

2474592... by Dirk Thomas

1.12.7

146f88d... by Dirk Thomas

update changelogs

084b51b... by IsaacS

[roslaunch] Indicating <node> tag when it is actually a <test> tag is confusing.

For example, [this warning msg](https://travis-ci.org/wg-perception/people/jobs/202019288#L3737) (in this [PR](https://github.com/wg-perception/people/pull/49)):

 ```
 * WARN: unrecognized 'group' tag in <node> tag. Node xml is <test name="$(arg testnode_name)" pkg="rostest" test-name="hztest_test" type="hztest">
    <group unless="$(arg expected_success)">
      <node args="-r 0.5 $(find face_detector)/test/face_detector_noface_test_diamondback.bag" name="play" pkg="rosbag" type="play"/>
      <param name="hz" value="0.0"/>
    </group>
```

This is confusing because the tag in question is actually `<test>`, not `<node>`. Although the warning message refers to the exact <test> tag, I didn't try to read it because I was told the issue is with <node>, not <test>.

With this PR the message becomes a bit verbose but hope the readers get better idea.

7d2dd6b... by "Isaac I.Y. Saito" <email address hidden>

[rostest] Fix type in hztest assertion (#992)

468ed43... by Dirk Thomas

add test code for multibyte string (#985)

* add test code for multibyte string

* merge Python 2 and 3 code paths