Skip to content
Snippets Groups Projects
  1. Dec 01, 2016
  2. Oct 26, 2016
  3. Oct 12, 2016
  4. Sep 02, 2016
  5. Jun 14, 2016
  6. Jun 10, 2015
  7. Aug 18, 2014
    • Lukas Bulwahn's avatar
      improving formatting after automated style check · 8249cc8d
      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.
      8249cc8d
  8. Jun 23, 2014
  9. Apr 09, 2014
  10. Mar 08, 2014
  11. Sep 23, 2013
  12. Aug 26, 2013
  13. Aug 01, 2013
    • Lukas Bulwahn's avatar
      dynamic-reconfigure: adding patch to resolve path (resolving #126) · ed776252
      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
      ed776252
  14. Jul 22, 2013
    • Lukas Bulwahn's avatar
      adjusting dependencies of native recipes · 0e0fc08e
      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.
      0e0fc08e
  15. Jul 05, 2013
Loading