Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • imaroger/jrl-walkgen
  • lscherrer/jrl-walkgen
2 results
Show changes
Commits on Source (397)
......@@ -79,4 +79,9 @@ _build-RELEASE-QT/*
commit_bien_herdt
tests/TestHirukawa2007.cpp_dummy
tests/filtre_dynamic_results.txt
_build-INFORELDEB/*
\ No newline at end of file
_build-INFORELDEB/*
_build-Matan/
_build-RELEASE_tmp/
src/ZMPRefTrajectoryGeneration/nmpc_generatorMaster.cpp
src/ZMPRefTrajectoryGeneration/nmpc_generatorMaster.hh
tmp/
include: http://rainboard.laas.fr/project/jrl-walkgen/.gitlab-ci.yml
[submodule "cmake"]
path = cmake
url = git://github.com/jrl-umi3218/jrl-cmakemodules.git
[submodule ".travis"]
path = .travis
url = git@github.com:jrl-umi3218/jrl-travis.git
url = https://github.com/jrl-umi3218/jrl-cmakemodules.git
ci:
autoupdate_branch: devel
repos:
- repo: https://github.com/PyCQA/isort
rev: 5.12.0
hooks:
- id: isort
args:
- --profile
- black
- --filter-files
- repo: https://github.com/cheshirekow/cmake-format-precommit
rev: v0.6.13
hooks:
- id: cmake-format
exclude: '^tests/Test*'
- repo: https://github.com/pappasam/toml-sort
rev: v0.23.1
hooks:
- id: toml-sort-fix
- repo: https://github.com/pre-commit/mirrors-clang-format
rev: v16.0.4
hooks:
- id: clang-format
args:
- --style=Google
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
hooks:
- id: check-added-large-files
- id: check-ast
- id: check-executables-have-shebangs
- id: check-json
- id: check-merge-conflict
- id: check-symlinks
- id: check-toml
- id: check-yaml
- id: debug-statements
- id: destroyed-symlinks
- id: detect-private-key
- id: end-of-file-fixer
- id: fix-byte-order-marker
- id: mixed-line-ending
- id: trailing-whitespace
- repo: https://github.com/psf/black
rev: 23.3.0
hooks:
- id: black
- repo: https://github.com/pycqa/flake8
rev: 6.0.0
hooks:
- id: flake8
args:
- --max-line-length
- '88'
language: cpp
sudo: required
compiler:
- gcc
- clang
env:
global:
- secure: ViEXlUgT66UGxlMPd2ZmZdB9rhFS3rsl6ktJFdyRukdXwZl3/5boy95RJJawFSQ4PmcKX35oZ5Afl7CSuT5r7uiEoFCeZu38b80E3BsuUr4zPgdZS4hI818L/MPhahmN5ravefVbDl+Yf95bWQ79EYj45yvh1dJH+YRBD+ucPDk=
- "APT_DEPENDENCIES=doxygen doxygen-latex libboost-all-dev libeigen3-dev liblapack-dev libblas-dev gfortran"
notifications:
email:
- hpp-source@laas.fr
branches:
only:
- master
matrix:
allow_failures:
- compiler: clang
before_install: ./travis_custom/custom_before_install
install:
- pip install --user coveralls
script:
- export CMAKE_ADDITIONAL_OPTIONS="-DCMAKE_BUILD_TYPE=${BUILDTYPE}"
- sudo free -m -t
- travis_wait ./.travis/run ../travis_custom/custom_build
script: ./.travis/run ../travis_custom/custom_build
after_failure: ./.travis/run after_failure
after_success:
- ./.travis/run after_success
#- export PYTHONPATH=$install_dir/lib/python2.7/site-packages
#- coveralls-lcov -v -n $build_dir/coverage.info > coverage.json
- export PYTHONPATH=/tmp/_ci/install/lib/python2.7/site-packages
- coveralls-lcov -v -n /tmp/_ci/build/coverage.info > coverage.json
- coverage run ./python/tests.py
- coveralls --merge=coverage.json
# Copyright 2010, Olivier Stasse, JRL, CNRS/AIST
#
# This file is part of jrl-walkgen.
# jrl-walkgen is free software: you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public License
# as published by the Free Software Foundation, either version 3 of
# the License, or (at your option) any later version.
#
# jrl-walkgen is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Lesser Public License for more details. You should have
# received a copy of the GNU Lesser General Public License along with
# jrl-walkgen. If not, see <http://www.gnu.org/licenses/>.
# Requires at least CMake 2.6 to configure the package.
CMAKE_MINIMUM_REQUIRED(VERSION 2.6)
# Includes from jrl-cmaketools
INCLUDE(cmake/base.cmake)
INCLUDE(cmake/lapack.cmake)
INCLUDE(cmake/cpack.cmake)
INCLUDE(cmake/boost.cmake)
INCLUDE(private_cmake/cmake_metapod_configure.cmake)
INCLUDE(CMakeDependentOption)
# Define properties of the project
SET(PROJECT_NAME jrl-walkgen)
SET(PROJECT_DESCRIPTION "Walking pattern generator for Humanoids")
SET(PROJECT_URL "")
SET(CXX_DISABLE_WERROR True)
# Initialize generic properties of the project
SETUP_PROJECT()
# Copyright 2010, 2020, Olivier Stasse, Guilhem Saurel, JRL, CNRS/AIST,
# LAAS-CNRS See LICENSE file.
cmake_minimum_required(VERSION 3.1)
# Project properties
set(PROJECT_ORG stack-of-tasks)
set(PROJECT_NAME jrl-walkgen)
set(PROJECT_DESCRIPTION "Walking pattern generator for Humanoids")
set(PROJECT_URL "https://github.com/${PROJECT_ORG}/${PROJECT_NAME}")
# Project options
option(USE_LSSOL "Do you want to use the solver lssol?" OFF)
option(USE_QUADPROG "Do you want to use the solver eigen-quadprog?" ON)
option(SUFFIX_SO_VERSION "Suffix library name with its version" ON)
option(FULL_BUILD_TESTING "Complete and long testing" OFF)
# Project configuration
set(PROJECT_USE_CMAKE_EXPORT TRUE)
set(CXX_DISABLE_WERROR TRUE)
set(DOXYGEN_USE_MATHJAX YES)
# JRL-cmakemodule setup
include(cmake/base.cmake)
# Project definition
compute_project_args(PROJECT_ARGS LANGUAGES CXX C)
project(${PROJECT_NAME} ${PROJECT_ARGS})
# Project dependencies
add_project_dependency(LAPACK REQUIRED)
add_project_dependency(pinocchio REQUIRED)
# Handle OS specificities
INCLUDE(CheckIncludeFiles)
CHECK_INCLUDE_FILES("sys/time.h" SYS_TIME_H)
IF(SYS_TIME_H)
ADD_DEFINITIONS("-DHAVE_SYS_TIME_H")
ENDIF(SYS_TIME_H)
# Required dependencies
ADD_REQUIRED_DEPENDENCY("jrl-mal >= 1.9.0")
ADD_REQUIRED_DEPENDENCY("abstract-robot-dynamics >= 1.15")
ADD_REQUIRED_DEPENDENCY("jrl-dynamics >= 1.19.1")
################################################################
ADD_OPTIONAL_DEPENDENCY("hrp2-14 >= 1.8-6")
ADD_OPTIONAL_DEPENDENCY("hrp2-dynamics >= 1.0.1")
#ADD_OPTIONAL_DEPENDENCY("pinocchio >= 1.0.1")
ADD_OPTIONAL_DEPENDENCY("metapod >= 1.0.7")
#################################################################
# Search for qpOases
LIST(APPEND CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_SOURCE_DIR}/private_cmake)
MESSAGE(STATUS "CMAKE_MODULE_PATH: ${CMAKE_MODULE_PATH}")
FIND_PACKAGE(qpOASES)
IF(${qpOASES_FOUND} STREQUAL "TRUE")
MESSAGE(STATUS "--qpOASES : " ${qpOASES_LIBRARIES})
INCLUDE_DIRECTORIES(SYSTEM ${qpOASES_INCLUDE_DIRS})
ENDIF(${qpOASES_FOUND} STREQUAL "TRUE")
# Search for Boost.
# Boost.Test is used by the test suite.
# Boost program_options is used by the embedfile utility, which is used
# by metapod_robotbuilder
# Boost filesystem and regex are used by metapod_robotbuilder.
# Boost filesystem depends on Boost system.
SET(BOOST_COMPONENTS
filesystem system unit_test_framework program_options regex)
SEARCH_FOR_BOOST()
# If Boost is recent enough, we look for Boost timer which can be used by
# by metapod_timer, which is in turn used by the benchmark.
# Boost timer depends on Boost chrono and system.
IF((BUILD_MULTI_MODEL_BENCHMARK OR BUILD_SINGLE_MODEL_BENCHMARKS)
AND NOT Boost_VERSION LESS 104800)
SET(BOOST_COMPONENTS ${BOOST_COMPONENTS} timer chrono system)
SEARCH_FOR_BOOST()
ENDIF()
# Search for Eigen.
ADD_REQUIRED_DEPENDENCY("eigen3 >= 3.0.0")
# Eigen (at least version 3.0.5) makes gcc report conversion warnings
# when one assigns to a block. This floods the compilation results.
# So we include Eigen headers as if they were system headers: the compiler
# won't report warning coming from them.
INCLUDE_DIRECTORIES(SYSTEM ${EIGEN3_INCLUDE_DIRS})
# TODO kinda dirty patch to find lssol for now
# using ADD_OPTIONAL_DEPENDENCY prevents the creation
# of classic variables such as ${PKG}_FOUND
# hence we use ADD_REQUIRED_DEPENDENCY to get the data
OPTION(USE_LSSOL "Do you want to use the solver lssol?" OFF)
IF(USE_LSSOL)
ADD_REQUIRED_DEPENDENCY("lssol >= 0.1.0")
ENDIF(USE_LSSOL)
include(CheckIncludeFile)
check_include_file("sys/time.h" SYS_TIME_H)
if(SYS_TIME_H)
add_definitions("-DHAVE_SYS_TIME_H")
endif(SYS_TIME_H)
# TODO kinda dirty patch to find lssol for now using ADD_OPTIONAL_DEPENDENCY
# prevents the creation of classic variables such as ${PKG}_FOUND hence we use
# ADD_REQUIRED_DEPENDENCY to get the data
if(USE_LSSOL)
add_required_dependency("lssol >= 0.1.0")
endif(USE_LSSOL)
if(USE_QUADPROG)
add_project_dependency(eigen-quadprog REQUIRED)
endif(USE_QUADPROG)
# Add aggressive optimization flags in release mode.
IF(CMAKE_COMPILER_IS_GNUCXX)
SET (CMAKE_CXX_FLAGS_RELEASE
"-O3 -DNDEBUG ")
SET (CMAKE_CXX_FLAGS
"-std=c++0x")
ENDIF(CMAKE_COMPILER_IS_GNUCXX)
#IF(CMAKE_COMPILER_IS_GNUCXX)
# SET (CMAKE_CXX_FLAGS_RELEASE
# "-O3 -funroll-loops -frerun-loop-opt -fschedule-insns2")
# SET (CMAKE_CXX_FLAGS_RELEASE
# "${CMAKE_CXX_FLAGS_RELEASE} -frerun-cse-after-loop -falign-functions")
# SET (CMAKE_CXX_FLAGS_RELEASE
# "${CMAKE_CXX_FLAGS_RELEASE} -falign-labels -falign-loops -falign-jumps")
# SET (CMAKE_CXX_FLAGS_RELEASE
# "${CMAKE_CXX_FLAGS_RELEASE} -fexpensive-optimizations")
#ENDIF(CMAKE_COMPILER_IS_GNUCXX)
# Define the set of headers to be exported
SET(${PROJECT_NAME}_HEADERS
include/jrl/walkgen/patterngeneratorinterface.hh
include/jrl/walkgen/pgtypes.hh
)
# Define subdirectories to explore for cmake
ADD_SUBDIRECTORY(src)
ADD_SUBDIRECTORY(tests)
#ADD_SUBDIRECTORY(debian)
# Generate dependency to jrl-walkgen in pc file
PKG_CONFIG_APPEND_LIBS("jrl-walkgen")
# Ask to generate the final steps.
SETUP_PROJECT_FINALIZE()
SETUP_PROJECT_CPACK()
if(CMAKE_COMPILER_IS_GNUCXX)
set(CMAKE_CXX_FLAGS_RELEASE "-O3 -DNDEBUG ")
endif(CMAKE_COMPILER_IS_GNUCXX)
# Main Library
set(${PROJECT_NAME}_HEADERS
include/jrl/walkgen/patterngeneratorinterface.hh
include/jrl/walkgen/pgtypes.hh include/jrl/walkgen/pinocchiorobot.hh)
set(${PROJECT_NAME}_SOURCES
src/RobotDynamics/pinocchiorobot.cpp
src/FootTrajectoryGeneration/FootTrajectoryGenerationAbstract.cpp
src/FootTrajectoryGeneration/FootTrajectoryGenerationStandard.cpp
src/FootTrajectoryGeneration/FootTrajectoryGenerationMultiple.cpp
src/FootTrajectoryGeneration/LeftAndRightFootTrajectoryGenerationMultiple.cpp
src/FootTrajectoryGeneration/OnLineFootTrajectoryGeneration.cpp
src/GlobalStrategyManagers/CoMAndFootOnlyStrategy.cpp
src/GlobalStrategyManagers/GlobalStrategyManager.cpp
src/GlobalStrategyManagers/DoubleStagePreviewControlStrategy.cpp
src/Mathematics/AnalyticalZMPCOGTrajectory.cpp
src/Mathematics/ConvexHull.cpp
src/Mathematics/FootConstraintsAsLinearSystem.cpp
# src/Mathematics/FootConstraintsAsLinearSystemForVelRef.cpp
src/Mathematics/FootHalfSize.cpp
src/Mathematics/OptCholesky.cpp
src/Mathematics/Bsplines.cpp
src/Mathematics/Polynome.cpp
src/Mathematics/PolynomeFoot.cpp
src/Mathematics/PLDPSolver.cpp
src/Mathematics/qld.cpp
src/Mathematics/StepOverPolynome.cpp
src/Mathematics/relative-feet-inequalities.cpp
src/Mathematics/intermediate-qp-matrices.cpp
src/PreviewControl/PreviewControl.cpp
src/PreviewControl/OptimalControllerSolver.cpp
src/PreviewControl/ZMPPreviewControlWithMultiBodyZMP.cpp
src/PreviewControl/LinearizedInvertedPendulum2D.cpp
src/PreviewControl/rigid-body.cpp
src/PreviewControl/rigid-body-system.cpp
src/PreviewControl/SupportFSM.cpp
src/ZMPRefTrajectoryGeneration/ZMPRefTrajectoryGeneration.cpp
src/ZMPRefTrajectoryGeneration/ZMPDiscretization.cpp
src/ZMPRefTrajectoryGeneration/ZMPQPWithConstraint.cpp
src/ZMPRefTrajectoryGeneration/ZMPConstrainedQPFastFormulation.cpp
src/ZMPRefTrajectoryGeneration/ZMPVelocityReferencedQP.cpp
src/ZMPRefTrajectoryGeneration/OrientationsPreview.cpp
src/ZMPRefTrajectoryGeneration/AnalyticalMorisawaAbstract.cpp
src/ZMPRefTrajectoryGeneration/AnalyticalMorisawaCompact.cpp
src/ZMPRefTrajectoryGeneration/FilteringAnalyticalTrajectoryByPreviewControl.cpp
src/ZMPRefTrajectoryGeneration/problem-vel-ref.cpp
src/ZMPRefTrajectoryGeneration/qp-problem.cpp
src/ZMPRefTrajectoryGeneration/generator-vel-ref.cpp
src/ZMPRefTrajectoryGeneration/mpc-trajectory-generation.cpp
src/ZMPRefTrajectoryGeneration/DynamicFilter.cpp
# src/MultiContactRefTrajectoryGeneration/MultiContactHirukawa.cc
src/MotionGeneration/StepOverPlanner.cpp
src/MotionGeneration/CollisionDetector.cpp
src/MotionGeneration/WaistHeightVariation.cpp
src/MotionGeneration/UpperBodyMotion.cpp
src/MotionGeneration/GenerateMotionFromKineoWorks.cpp
src/MotionGeneration/ComAndFootRealizationByGeometry.cpp
src/StepStackHandler.cpp
src/PatternGeneratorInterfacePrivate.cpp
src/SimplePlugin.cpp
src/SimplePluginManager.cpp
src/pgtypes.cpp
src/Clock.cpp
src/portability/gettimeofday.cc
src/privatepgtypes.cpp)
if(USE_QUADPROG)
set(${PROJECT_NAME}_SOURCES
${${PROJECT_NAME}_SOURCES}
src/ZMPRefTrajectoryGeneration/ZMPVelocityReferencedSQP.cpp
src/ZMPRefTrajectoryGeneration/nmpc_generator.cpp)
endif(USE_QUADPROG)
add_library(${PROJECT_NAME} SHARED ${${PROJECT_NAME}_SOURCES}
${${PROJECT_NAME}_HEADERS})
target_include_directories(
${PROJECT_NAME}
PRIVATE $<BUILD_INTERFACE:${CMAKE_SOURCE_DIR}/src>
$<BUILD_INTERFACE:${CMAKE_SOURCE_DIR}/src/FootTrajectoryGeneration>
PUBLIC $<INSTALL_INTERFACE:include>)
target_link_libraries(${PROJECT_NAME} ${LAPACK_LIBRARIES} pinocchio::pinocchio)
if(USE_QUADPROG)
target_compile_definitions(${PROJECT_NAME} PUBLIC USE_QUADPROG=1)
endif(USE_QUADPROG)
if(SUFFIX_SO_VERSION)
set_target_properties(${PROJECT_NAME} PROPERTIES SOVERSION ${PROJECT_VERSION})
endif(SUFFIX_SO_VERSION)
if(UNIX AND NOT APPLE)
set_target_properties(
${PROJECT_NAME}
PROPERTIES
COMPILE_FLAGS
"-msse -msse2 -msse3 -march=core2 -mfpmath=sse -fivopts -ftree-loop-im -fipa-pta "
)
endif(UNIX AND NOT APPLE)
if(USE_QUADPROG)
target_link_libraries(${PROJECT_NAME} eigen-quadprog::eigen-quadprog)
endif(USE_QUADPROG)
install(
TARGETS ${PROJECT_NAME}
EXPORT ${TARGETS_EXPORT_NAME}
DESTINATION lib)
add_subdirectory(tests)
install(FILES package.xml DESTINATION share/${PROJECT_NAME})
install(DIRECTORY urdf DESTINATION share/${PROJECT_NAME})
install(DIRECTORY srdf DESTINATION share/${PROJECT_NAME})
jrl-walkgen
===========
jrl-umi travis results :
[![Build Status](https://travis-ci.org/jrl-umi3218/jrl-walkgen.png)](https://travis-ci.org/jrl-umi3218/jrl-walkgen)
[![Coverage Status](https://coveralls.io/repos/jrl-umi3218/jrl-walkgen/badge.png?branch=master)](https://coveralls.io/r/jrl-umi3218/jrl-walkgen?branch=master)
# jrl-walkgen
MaximilienNaveau travis results :
[![Build Status](https://travis-ci.org/MaximilienNaveau/jrl-walkgen.png)](https://travis-ci.org/MaximilienNaveau/jrl-walkgen)
[![Coverage Status](https://coveralls.io/repos/MaximilienNaveau/jrl-walkgen/badge.png?branch=master)](https://coveralls.io/r/MaximilienNaveau/jrl-walkgen?branch=master)
[![Building Status](https://travis-ci.org/stack-of-tasks/jrl-walkgen.svg?branch=master)](https://travis-ci.org/stack-of-tasks/jrl-walkgen)
[![Pipeline status](https://gitlab.laas.fr/stack-of-tasks/jrl-walkgen/badges/master/pipeline.svg)](https://gitlab.laas.fr/stack-of-tasks/jrl-walkgen/commits/master)
[![Coverage report](https://gitlab.laas.fr/stack-of-tasks/jrl-walkgen/badges/master/coverage.svg?job=doc-coverage)](http://projects.laas.fr/gepetto/doc/stack-of-tasks/jrl-walkgen/master/coverage/)
This software provides a pattern generator for biped robots.
It relies on the [abstract-robot-dynamics][abstract-robot-dynamics]
It relies on the [StackOfTasks/Pinocchio][StackOfTasks/Pinocchio]
specification to realize dynamics computation.
Setup
-----
## Setup
To compile this package, it is recommended to create a separate build
directory:
......@@ -35,23 +30,21 @@ The matrix abstract layer depends on several packages which
have to be available on your machine.
- Libraries:
- [abstract-robot-dynamics][abstract-robot-dynamics] (>= 1.16)
The pattern generator uses dynamics provided by the abstract interface.
- [pinocchio][https://github.com/stack-of-tasks/pinocchio] (>= 1.1.0)
The pattern generator uses dynamics provided by the pinocchio template
programming interface.
- [eigen-quadprog][https://github.com/jrl-umi3218/eigen-quadprog]
- System tools:
- CMake (>=2.6)
- pkg-config
- CMake (>=3.1)
- usual compilation tools (GCC/G++, make, etc.)
Additional notes regarding compilation on Microsoft Windows
-----------------------------------------------------------
## Additional notes regarding compilation on Microsoft Windows
This package has been tested using Microsoft Visual Studio 8.
- Install MinGW
- Make sure all environment variables are set up properly.
- Generate the Makefile using the NMake Makefile generator.
[abstract-robot-dynamics]: http://github.com/laas/abstract-robot-dynamics
Subproject commit 5663a002a905b5c8d84a69d8e74044a8e34a48ed
Subproject commit f4997a81cebfa2dfb69733bc088c55688965dfe8
# Copyright 2011, Olivier Stasse, JRL, CNRS/AIST
#
# This file is part of jrl-walkgen.
# jrl-walkgen is free software: you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public License
# as published by the Free Software Foundation, either version 3 of
# the License, or (at your option) any later version.
#
# jrl-walkgen is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Lesser Public License for more details. You should have
# received a copy of the GNU Lesser General Public License along with
# jrl-walkgen. If not, see <http://www.gnu.org/licenses/>.
IF(HRP2_14_FOUND)
SET(PACKAGE_HRP2_14_DATA "hrp2-14-data (>= 1.7.7),")
ELSE(HRP2_14_FOUND)
SET(PACKAGE_HRP2_14_DATA "")
ENDIF(HRP2_14_FOUND)
MESSAGE(STATUS "PACKAGE_HRP2_14_DATA:" ${PACKAGE_HRP2_14_DATA})
# Yes I know people will scream at the modification of the source
# but there is little choice...
CONFIGURE_FILE(
${CMAKE_CURRENT_SOURCE_DIR}/control.cmake
${CMAKE_CURRENT_SOURCE_DIR}/control
@ONLY)
jrl-walkgen (3.1.4-6) lucid; urgency=low
* Correct shlibs.
-- olivier-stasse <olivier.stasse@aist.go.jp> Thu, 21 Apr 2011 04:52:34 +0900
jrl-walkgen (3.1.4-5) lucid; urgency=low
* Put back the correct line for dh_shlibdeps
-- olivier-stasse <olivier.stasse@aist.go.jp> Sun, 17 Apr 2011 18:46:54 +0900
jrl-walkgen (3.1.4-4) lucid; urgency=low
* Ask for generation of dh_shlibdeps.
-- olivier-stasse <olivier.stasse@aist.go.jp> Sun, 17 Apr 2011 18:13:21 +0900
jrl-walkgen (3.1.4-3) lucid; urgency=low
* Fix pb on dpkg-shlibdeps
-- olivier-stasse <olivier.stasse@aist.go.jp> Sun, 17 Apr 2011 16:56:04 +0900
jrl-walkgen (3.1.4-2) lucid; urgency=low
* Fix pb of dependency nb with libboost-dev
-- olivier-stasse <olivier.stasse@aist.go.jp> Sun, 17 Apr 2011 06:27:13 +0900
jrl-walkgen (3.1.4-1) lucid; urgency=low
* Fixing debian files for testing launchpad binary generation.
-- olivier-stasse <olivier.stasse@aist.go.jp> Sat, 16 Apr 2011 15:00:46 +0900
jrl-walkgen (1.0.0.99-4) lucid; urgency=low
* Fixing test compilation when closed-source hrp2-dynamics package is
not available.
-- Thomas Moulard <thomas.moulard@gmail.com> Tue, 12 Oct 2010 23:30:18 +0200
jrl-walkgen (1.0.0.99-3) lucid; urgency=low
* Add missing lapack dependency.
-- Thomas Moulard <thomas.moulard@gmail.com> Mon, 04 Oct 2010 17:01:43 +0200
jrl-walkgen (1.0.0.99-2) lucid; urgency=low
* Add missing dependencies (jrl-dynamics and abstract-robot-dynamics).
-- Thomas Moulard <thomas.moulard@gmail.com> Mon, 04 Oct 2010 16:44:52 +0200
jrl-walkgen (1.0.0.99-1) lucid; urgency=low
* Initial work.
-- Thomas Moulard <thomas.moulard@gmail.com> Wed, 29 Sep 2010 19:52:00 +0200
7
Source: jrl-walkgen
Priority: extra
Maintainer: Thomas Moulard <thomas.moulard@gmail.com>
Build-Depends: debhelper (>= 7.0.50~), cmake (>= 2.6),
doxygen (>= 1.6.3),
pkg-config (>= 0.22),
perl (>= 5.10.1),
libboost-dev (>= 1.33.1),
libboost-thread-dev (>= 1.40.0),
liblapack-dev (>= 1.2),
libjrl-dynamics-dev (>= 1.9.3), @PACKAGE_HRP2_14_DATA@
libabstract-robot-dynamics-dev (>= 1.16.2)
Standards-Version: 3.8.4
Vcs-Git:git://github.com/jrl-umi3218/jrl-walkgen.git
Vcs-browser:http://github.com/jrl-umi3218/jrl-walkgen
Section: libs
Homepage:http://github.com/jrl-umi3218/jrl-walkgen
Package: libjrl-walkgen-dev
Section: libdevel
Architecture: any
Depends: libboost-dev (>= 1.33.1), libboost-thread-dev (>= 1.33.1), libjrl-dynamics-dev (>= 1.9.3), @PACKAGE_HRP2_14_DATA@ libabstract-robot-dynamics-dev (>= 1.16.2), liblapack-dev (>= 1.2), libjrl-walkgen3.1.4 (= ${binary:Version}), ${misc:Depends}
Suggests: libjrl-walkgen-doc
Description: the JRL walking pattern generator development package
The JRL walking pattern generator generates a whole-body movement
allowing biped robot to walk safely.
It relies on abstract-robot-dynamics to realize dynamics computation.
.
This package contains development files (headers and pkg-config file).
Package: libjrl-walkgen3.1.4
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: the JRL walking pattern generator C++ library
The JRL walking pattern generator generates a whole-body movement
allowing biped robot to walk safely.
It relies on abstract-robot-dynamics to realize dynamics computation.
.
This package contains the unversioned shared libraries.
Package: libjrl-walkgen-doc
Section: doc
Architecture: all
Depends: ${misc:Depends}
Suggests: libabstract-robot-dynamics-doc
Description: documentation for the JRL walking pattern generator
The JRL walking pattern generator generates a whole-body movement
allowing biped robot to walk safely.
It relies on abstract-robot-dynamics to realize dynamics computation.
.
This package contains the Doxygen documentation.
This work was packaged for Debian by:
Thomas Moulard <thomas.moulard@gmail.com> on Wed, 29 Sep 2010 19:57:00 +0200
Olivier Stasse <olivier.stasse@gmail.com> on Sat, 16 Apr 2010 14:51:00 +0900
It was downloaded from git@github.com:jrl-umi3218.com/jrl-walkgen
Upstream Author(s):
Thomas Moulard <thomas.moulard@gmail.com>
Olivier Stasse <olivier.stasse@gmail.com>
Copyright:
Copyright (C) 2010 Olivier Stasse, JRL, CNRS/AIST.
License:
See `/usr/share/common-licenses/LGPL-3'.
The Debian packaging is:
Copyright (C) 2010 Thomas Moulard <thomas.moulard@gmail.com>
Copyright (C) 2010 Olivier Stasse <olivier.stasse@gmail.com>
and is licensed under the GPL version 3,
see `/usr/share/common-licenses/GPL-3'.
AUTHORS
NEWS
README.md
opt/openrobots/include/*
opt/openrobots/lib/lib*.so
opt/openrobots/lib/pkgconfig/*
Document: jrl-walkgen
Title: Debian jrl-walkgen Manual
Author: Thomas Moulard <thomas.moulard@gmail.com>
Abstract: Doxygen documentation of jrl-walkgen.
Section: Programming
Format: HTML
Index: /opt/openrobots/share/doc/jrl-walkgen/html/index.html
Files: /opt/openrobots/doc/jrl-walkgen/html/*.html
opt/openrobots/share/doc/jrl-walkgen/*
opt/openrobots/lib/*.so.*
#!/usr/bin/make -f
# -*- makefile -*-
# Sample debian/rules that uses debhelper.
# This file was originally written by Joey Hess and Craig Small.
# As a special exception, when this file is copied by dh-make into a
# dh-make output file, you may use that output file without restriction.
# This special exception was added by Craig Small in version 0.37 of dh-make.
# Uncomment this to turn on verbose mode.
export DH_VERBOSE=1
export PKG_CONFIG_PATH=/opt/openrobots/lib/pkgconfig:$PKG_CONFIG_PATH
CFLAGS = -O3 -DNDEBUG
CXXFLAGS = -O3 -DNDEBUG
LD_LIBRARY_PATH += /opt/openrobots/lib
export LD_LIBRARY_PATH
# FIXME: do not run test suite for now as robot model is missing.
export DEB_BUILD_OPTIONS=nocheck
override_dh_auto_configure:
dh_auto_configure -- -DCMAKE_BUILD_TYPE=RELEASE -DGENERATE_DOC=ON -DCMAKE_INSTALL_PREFIX=/opt/openrobots
override_dh_shlibdeps:
LD_LIBRARY_PATH=/opt/openrobots/lib:/usr/lib/libfakeroot/:/usr/lib64/libfakeroot:/usr/lib32/libfakeroot && dh_shlibdeps --
%:
dh $@
libjrl-walkgen 3.1.2 libjrl-walkgen3.1.2 (>=3.1.2-1)
\ No newline at end of file