-
-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Full Rebuild January 2024 with updated conda-forge pinnings (#418)
* Full Rebuild October 2023 * Remove foxglove_bridge for now * Update ros-noetic-microstrain-inertial-driver.patch * Update conda_forge_pinnings.yaml * Update conda_build_config.yaml * Delete patch/ros-noetic-geometric-shapes.win.patch * Delete patch/ros-noetic-moveit-core.patch * Update recipe.yaml * Update conda_forge_pinnings.yaml * remove pybind11-catkin patch * fix pybind11 build error * fix control-box-rst * Update ros-noetic-moveit-ros-planning.win.patch Remove changes upstreamed in moveit/moveit#2772 * Update ros-noetic-rosmon-core.patch * Create ros-noetic-sophus.path * Fix name of sophus patch and bump eigenpy * fix ros-noetic-moveit-ros-planning patch * Update additional_recipes * Temporarily build ros-noetic-eigenpy * Fix run_exports in eigenpy, hpp-fcl and pinocchio * Manually build hpp-fcl and pinocchio * Fixup pinoccio version * Really skip pinocchio (remove from select_by_deps) * See if boa segfault goes away with boa release instead of boa main on osx/win * Sync with humble * Fixes * Fixups * Fixing patches * Fixes for linux-aarch64 * Local linux-64 build * A few more packages, including rtabmap * Be more verbose about commented-out packages in vinca files. * Reviewer comments @traversaro --------- Co-authored-by: Hongzhuo Liang <[email protected]> Co-authored-by: Tobias Fischer <[email protected]> Co-authored-by: Martin Pecka <[email protected]>
- Loading branch information
1 parent
bc5373a
commit c93c9cc
Showing
47 changed files
with
2,110 additions
and
1,255 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,5 +2,6 @@ vinca.yaml | |
recipes/ | ||
*.bat | ||
*.sh | ||
*.ps1 | ||
*.json | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,17 @@ | ||
package: | ||
name: ros-noetic-eigenpy | ||
version: "2.8.1" | ||
name: ros-noetic-eigenpy-recipe | ||
version: "3.1.0" | ||
|
||
build: | ||
number: 20 | ||
number: 21 | ||
|
||
requirements: | ||
run: | ||
- eigenpy 2.8.1 | ||
|
||
|
||
about: | ||
home: https://github.com/conda-forge/eigenpy-feedstock | ||
license: BSD-2-Clause | ||
summary: | | ||
Bindings between Numpy and Eigen using Boost.Python | ||
extra: | ||
recipe-maintainers: | ||
- ros-forge | ||
outputs: | ||
- package: | ||
name: ros-noetic-eigenpy | ||
version: "3.1.0" | ||
build: | ||
run_exports: | ||
- "{{ pin_subpackage('ros-noetic-eigenpy', max_pin='x.x.x') }}" | ||
requirements: | ||
run: | ||
- eigenpy 3.1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package: | ||
name: ros-noetic-hpp-fcl-recipe | ||
version: "2.3.6" | ||
|
||
build: | ||
number: 21 | ||
|
||
outputs: | ||
- package: | ||
name: ros-noetic-hpp-fcl | ||
version: "2.3.6" | ||
build: | ||
run_exports: | ||
- "{{ pin_subpackage('ros-noetic-hpp-fcl', max_pin='x.x.x') }}" | ||
requirements: | ||
run: | ||
- hpp-fcl 2.3.6 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package: | ||
name: ros-noetic-pinocchio-recipe | ||
version: "2.6.20" | ||
|
||
build: | ||
number: 21 | ||
|
||
outputs: | ||
- package: | ||
name: ros-noetic-pinocchio | ||
version: "2.6.20" | ||
build: | ||
run_exports: | ||
- "{{ pin_subpackage('ros-noetic-pinocchio', max_pin='x.x.x') }}" | ||
requirements: | ||
run: | ||
- pinocchio 2.6.20 |
Oops, something went wrong.