- Dec 01, 2016
-
-
Lukas Bulwahn authored
-
- Oct 26, 2016
-
-
Lukas Bulwahn authored
This commit removes the patch that has been accepted upstream and has been included in the version 1.5.45. Signed-off-by:
Lukas Bulwahn <lukas.bulwahn@oss.bmw-carit.de>
-
- Oct 12, 2016
-
-
Lukas Bulwahn authored
-
- Sep 02, 2016
-
-
Lukas Bulwahn authored
-
- Jun 14, 2016
-
-
Lukas Bulwahn authored
-
- Jun 10, 2015
-
-
Lukas Bulwahn authored
-
- Aug 18, 2014
-
-
Lukas Bulwahn authored
After running oe-stylize.py on all recipes in recipes-ros, this commit improves the formatting of some recipes. To achieve this, I executed these commands in recipes-ros: find . -name *.bb | sed 's#\(.*\)#./oe-stylize.py \1 > \1_sanitized#' | sh find . -name *.bb | sed 's#\(.*\)#diff -Naur \1 \1_sanitized#' | sh > diffs Then, I manually inspected the diffs file, and improved the recipes. For the DESCRIPTION line in the addressed recipes, the line width of 100 characters was chosen, as the LIC_FILES_CHKSUM line and SRC_URI line usually are also around about 100 characters long. Hence, choosing a shorter line width, e.g. 80 characters, would have only created more line breaks, but not reduced the need to use a file viewer with which 100 characters line width can be displayed. For the github file and diff viewer and most editors on reasonably-sized screens, 100 character line width is no problem.
-
- Jun 23, 2014
-
-
Lukas Bulwahn authored
-
- Apr 09, 2014
-
-
Lukas Bulwahn authored
-
- Mar 08, 2014
-
-
Kristof Robot authored
Resolves: File "/usr/lib/python2.7/site-packages/dynamic_reconfigure/server.py", line 45, in <module> import rosservice ImportError: No module named rosservice
-
- Sep 23, 2013
-
-
Lukas Bulwahn authored
The update to version 1.5.34 includes a patch [1] that removes whitespaces from the license line in the package.xml. Hence, the hash is now the common hash similar to all other BSD-licensed ROS packages. [1] https://github.com/ros/dynamic_reconfigure/commit/ab496af75cd0f3ba9897e9def2b2718c72b871f1
-
- Aug 26, 2013
-
-
Lukas Bulwahn authored
The dynamic-reconfigure recipe is updated to 1.5.33 to be in line with https://github.com/ros/rosdistro/blob/4551e7c32d1b34984410b79bc0ec36afe3d3d245/hydro/release.yaml. The previously applied patch has been included in 1.5.33 and is removed from the recipe and this repository.
-
Stefan Herbrechtsmeier authored
Signed-off-by:
Stefan Herbrechtsmeier <stefan@herbrechtsmeier.net>
-
Stefan Herbrechtsmeier authored
Signed-off-by:
Stefan Herbrechtsmeier <stefan@herbrechtsmeier.net>
-
- Aug 01, 2013
-
-
Lukas Bulwahn authored
Before this commit, the following sequence of bitbake commands failed because the path was set during compile time, and not at runtime. After the patch from Dirk Thomas, the following sequence now works. bitbake nodelet-topic-tools -c cleansstate && \ bitbake dynamic-reconfigure && bitbake nodelet-topic-tools
-
- Jul 22, 2013
-
-
Lukas Bulwahn authored
To compile nodelet-topic-tools, we must provide a working dynamic-reconfigure in the native sysroot. This requires some adjustments to the native versions of the required python modules. In particular, the following tasks ran successfully for this commit: This command tests compiling rospack-native: rm bitbake.lock cache/ sstate-cache/ tmp-eglibc/ -rf && bitbake rospack-native This command tests compiling roslib-native: rm bitbake.lock cache/ sstate-cache/ tmp-eglibc/ -rf && bitbake roslib-native As nodelet-topic-tools uses rospack-native and roslib-native to some extent (dependency: rospack-native -> roslib-native -> dynamic-reconfigure-native -> nodelet-topic-tools), this command tests running rospack-native and roslib-native: rm bitbake.lock cache/ sstate-cache/ tmp-eglibc/ -rf && bitbake nodelet-topic-tools This command tests compiling rospack and roslib: rm bitbake.lock cache/ sstate-cache/ tmp-eglibc/ -rf && bitbake rospack rm bitbake.lock cache/ sstate-cache/ tmp-eglibc/ -rf && bitbake roslib All these command run with this commit without errors, and future commits to these files should keep them run without errors or justify modifications with better tests. A minor open issue related to rospack is issue #116 (cf. https://github.com/bmwcarit/meta-ros/issues/116). This commit incorporates feedback from Stefan Herbrechtsmeier.
-
- Jul 05, 2013
-
-
Lukas Bulwahn authored
-