Skip to content

Commit f945700

Browse files
author
Michael Rose
committed
Adds urdfdom v2.3.4.bcr.1
* Removes 'check_urdf.cpp' from main library srcs
1 parent b8a91a3 commit f945700

File tree

6 files changed

+100
-1
lines changed

6 files changed

+100
-1
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
module(
2+
name = "urdfdom",
3+
version = "2.3.4.bcr.1",
4+
compatibility_level = 0,
5+
bazel_compatibility = [">=7.2.1"],
6+
)
7+
8+
bazel_dep(name = "rules_cc", version = "0.1.1")
9+
bazel_dep(name = "console_bridge", version = "1.0.1")
10+
bazel_dep(name = "urdfdom_headers", version = "1.0.5")
11+
bazel_dep(name = "tinyxml", version = "2.6.2.bcr.1")
Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
load("@rules_cc//cc:defs.bzl", "cc_binary", "cc_library")
2+
3+
cc_library(
4+
name = "urdfdom",
5+
hdrs = [
6+
"urdf_parser/include/urdf_parser/exportdecl.h",
7+
"urdf_parser/include/urdf_parser/urdf_parser.h",
8+
],
9+
srcs = [
10+
"urdf_parser/src/joint.cpp",
11+
"urdf_parser/src/link.cpp",
12+
"urdf_parser/src/model.cpp",
13+
"urdf_parser/src/pose.cpp",
14+
"urdf_parser/src/twist.cpp",
15+
"urdf_parser/src/urdf_model_state.cpp",
16+
"urdf_parser/src/urdf_sensor.cpp",
17+
"urdf_parser/src/world.cpp",
18+
],
19+
deps = [
20+
"@urdfdom_headers",
21+
"@tinyxml",
22+
"@console_bridge",
23+
],
24+
includes = ["urdf_parser/include"],
25+
visibility = ["//visibility:public"],
26+
)
27+
28+
cc_binary(
29+
name = "check_urdf",
30+
srcs = [
31+
"urdf_parser/src/check_urdf.cpp",
32+
],
33+
deps = [
34+
":urdfdom",
35+
],
36+
visibility = ["//visibility:public"],
37+
)
38+
39+
cc_binary(
40+
name = "urdf_to_graphiz",
41+
srcs = [
42+
"urdf_parser/src/urdf_to_graphiz.cpp",
43+
],
44+
deps = [
45+
":urdfdom",
46+
],
47+
visibility = ["//visibility:public"],
48+
)
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
module(
2+
name = "urdfdom",
3+
version = "2.3.4.bcr.1",
4+
compatibility_level = 0,
5+
bazel_compatibility = [">=7.2.1"],
6+
)
7+
8+
bazel_dep(name = "rules_cc", version = "0.1.1")
9+
bazel_dep(name = "console_bridge", version = "1.0.1")
10+
bazel_dep(name = "urdfdom_headers", version = "1.0.5")
11+
bazel_dep(name = "tinyxml", version = "2.6.2.bcr.1")
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
matrix:
2+
platform:
3+
- debian10
4+
- debian11
5+
- ubuntu2204
6+
- ubuntu2404
7+
bazel:
8+
- 8.x
9+
- 7.x
10+
tasks:
11+
verify_targets:
12+
name: Verify build targets
13+
platform: ${{ platform }}
14+
bazel: ${{ bazel }}
15+
build_targets:
16+
- '@urdfdom'
17+
- '@urdfdom//:urdf_to_graphiz'
18+
- '@urdfdom//:check_urdf'
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"url": "https://github.com/ros/urdfdom/archive/refs/tags/2.3.4.tar.gz",
3+
"integrity": "sha256-UGAcFxsiQy2DSfXiKRZS5UI0R4lSXfZ9NKG6Ufx57tM=",
4+
"strip_prefix": "urdfdom-2.3.4",
5+
"patch_strip": 0,
6+
"overlay": {
7+
"BUILD.bazel": "sha256-cHltDT5USv+3o8A3pMdHXH2ID9H9A9gVlqIywNVAGVo=",
8+
"MODULE.bazel": "sha256-9JCLU7hNzxMq9Q/Euuhm7qFnd5y6Oinw0arbMjVjmwg="
9+
}
10+
}

modules/urdfdom/metadata.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
"github:ros/urdfdom"
1212
],
1313
"versions": [
14-
"2.3.4"
14+
"2.3.4",
15+
"2.3.4.bcr.1"
1516
],
1617
"yanked_versions": {}
1718
}

0 commit comments

Comments
 (0)