Skip to content

Commit

Permalink
Merge pull request #58 from k-okada/remove_hydro_code
Browse files Browse the repository at this point in the history
remove dynamic_reconfigure.parameter_generator, which only used for rosbuild
  • Loading branch information
k-okada committed Mar 20, 2016
2 parents 2945fa3 + 6f74b72 commit d10ed17
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 26 deletions.
2 changes: 1 addition & 1 deletion .travis
11 changes: 8 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,14 @@ compiler:
- gcc
sudo: required
env:
- ROS_DISTRO=hydro ROSWS=wstool BUILDER=catkin USE_DEB=true ROS_PARALLEL_JOBS="-j2 -l2"
- ROS_DISTRO=indigo ROSWS=wstool BUILDER=catkin USE_DEB=true ROS_PARALLEL_JOBS="-j8"
# - ROS_DISTRO=jade ROSWS=wstool BUILDER=catkin USE_DEB=true ROS_PARALLEL_JOBS="-j8"
global:
- ROS_PARALLEL_TEST_JOBS="-j1"
- CATKIN_PARALLEL_TEST_JOBS="-p1"
- GIT_SSL_NO_VERIFY=1 # http://stackoverflow.com/questions/21181231/server-certificate-verification-failed-cafile-etc-ssl-certs-ca-certificates-c
matrix:
- ROS_DISTRO=hydro ROSWS=wstool BUILDER=catkin USE_DEB=true ROS_PARALLEL_JOBS="-j2 -l2"
- ROS_DISTRO=indigo ROSWS=wstool BUILDER=catkin USE_DEB=true ROS_PARALLEL_JOBS="-j8"
# - ROS_DISTRO=jade ROSWS=wstool BUILDER=catkin USE_DEB=true ROS_PARALLEL_JOBS="-j8"
script: source .travis/travis.sh
notifications:
email:
Expand Down
3 changes: 2 additions & 1 deletion 3rdparty/downward/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ catkin_package()

include(ExternalProject)
externalproject_add(downward
URL https://cdn.rawgit.com/jsk-ros-pkg/archives/master/Fast-Downward-f33d3b65601f.tar.gz
URL http://cdn.rawgit.com/jsk-ros-pkg/archives/master/Fast-Downward-f33d3b65601f.tar.gz
TIMEOUT 120
CONFIGURE_COMMAND ""
BUILD_COMMAND cd src && ./build_all DOWNWARD_BITWIDTH=native
INSTALL_COMMAND bash -c "cp -rf --parents src/{validate,plan,preprocess/preprocess,search/downward*,search/unitcost,search/portfolio.py,translate} ${CATKIN_DEVEL_PREFIX}/${CATKIN_PACKAGE_SHARE_DESTINATION}"
Expand Down
1 change: 1 addition & 0 deletions 3rdparty/downward/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@

<buildtool_depend>catkin</buildtool_depend>

<build_depend>ca-certificates</build_depend>
<build_depend>python</build_depend>
<build_depend>flex</build_depend>
<build_depend>bison</build_depend>
Expand Down
8 changes: 1 addition & 7 deletions 3rdparty/mini_maxwell/cfg/DRCEnvironment.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,7 @@
# set up parameters that we care about
PACKAGE = 'mini_maxwell'

try:
import imp
imp.find_module(PACKAGE)
from dynamic_reconfigure.parameter_generator_catkin import *;
except:
import roslib; roslib.load_manifest(PACKAGE)
from dynamic_reconfigure.parameter_generator import *;
from dynamic_reconfigure.parameter_generator_catkin import *;

gen = ParameterGenerator ()

Expand Down
8 changes: 1 addition & 7 deletions 3rdparty/mini_maxwell/cfg/RosClient.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,7 @@
# set up parameters that we care about
PACKAGE = 'mini_maxwell'

try:
import imp
imp.find_module(PACKAGE)
from dynamic_reconfigure.parameter_generator_catkin import *;
except:
import roslib; roslib.load_manifest(PACKAGE)
from dynamic_reconfigure.parameter_generator import *;
from dynamic_reconfigure.parameter_generator_catkin import *;

gen = ParameterGenerator ()

Expand Down
8 changes: 1 addition & 7 deletions opt_camera/cfg/OptNM33Camera.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,7 @@
# Declare parameters that control opt nm3x camera

PACKAGE="opt_camera"
try:
import imp
imp.find_module(PACKAGE)
from dynamic_reconfigure.parameter_generator_catkin import *
except:
import roslib; roslib.load_manifest(PACKAGE)
from dynamic_reconfigure.parameter_generator import *
from dynamic_reconfigure.parameter_generator_catkin import *

from driver_base.msg import SensorLevels

Expand Down
2 changes: 2 additions & 0 deletions pgm_learner/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,11 @@

<buildtool_depend>catkin</buildtool_depend>
<build_depend>rospy</build_depend>
<build_depend>python-scipy</build_depend>
<build_depend>message_generation</build_depend>
<run_depend>python-libpgm-pip</run_depend>
<run_depend>rospy</run_depend>
<run_depend>python-scipy</run_depend>
<run_depend>message_runtime</run_depend>
<test_depend>rostest</test_depend>
<export>
Expand Down

0 comments on commit d10ed17

Please sign in to comment.