Skip to content

Commit

Permalink
Revert "[workspace] Deprecate the expat external (RobotLocomotion#20351
Browse files Browse the repository at this point in the history
…)"

This reverts commit 3cfe0b0.

This is a temporary crutch for rnv-based schema development. Eventually replace
this with a source build of expat.
  • Loading branch information
rpoyner-tri committed Jan 5, 2024
1 parent b5e45dd commit e51f740
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 4 deletions.
1 change: 1 addition & 0 deletions setup/ubuntu/binary_distribution/packages-focal.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ jupyter-notebook
libblas3
libdouble-conversion3
libeigen3-dev
libexpat1
libfreetype6
libgfortran5
libglew2.1
Expand Down
1 change: 1 addition & 0 deletions setup/ubuntu/binary_distribution/packages-jammy.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ default-jre
jupyter-notebook
libblas-dev
libeigen3-dev
libexpat1
libgfortran5
libglib2.0-0
libglx0
Expand Down
1 change: 1 addition & 0 deletions setup/ubuntu/source_distribution/packages-focal.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ file
gfortran
libblas-dev
libclang-12-dev
libexpat1-dev
libgl-dev
libglib2.0-dev
libglx-dev
Expand Down
1 change: 1 addition & 0 deletions setup/ubuntu/source_distribution/packages-jammy.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ default-jdk
file
gfortran
libclang-14-dev
libexpat1-dev
libgl-dev
libglib2.0-dev
libglx-dev
Expand Down
2 changes: 0 additions & 2 deletions tools/workspace/default.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -170,8 +170,6 @@ def add_default_repositories(excludes = [], mirrors = DEFAULT_MIRRORS):
if "eigen" not in excludes:
eigen_repository(name = "eigen")
if "expat" not in excludes:
# The @expat external is deprecated in Drake's WORKSPACE and will be
# removed on or after 2024-02-01.
expat_repository(name = "expat")
if "fcl_internal" not in excludes:
fcl_internal_repository(name = "fcl_internal", mirrors = mirrors)
Expand Down
2 changes: 0 additions & 2 deletions tools/workspace/expat/repository.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ cc_library(
includes = ["include"],
linkopts = ["-lexpat"],
visibility = ["//visibility:public"],
deprecation = "The @expat external is deprecated in Drake's WORKSPACE and will be removed on or after 2024-02-01.", # noqa
)
"""

Expand All @@ -77,7 +76,6 @@ expat_repository = repository_rule(
# TODO(jamiesnape): Pass down licenses to setup_pkg_config_repository.
attrs = {
"modname": attr.string(default = "expat"),
"extra_deprecation": attr.string(default = "The @expat external is deprecated in Drake's WORKSPACE and will be removed on or after 2024-02-01."), # noqa
},
local = True,
configure = True,
Expand Down

0 comments on commit e51f740

Please sign in to comment.