mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
A noteworthy change is the replacement of the `dp.startswith(os.path.join(".", "subdir"))` pattern. pathlib doesn't offer something with similar semantics besides `match` and `full_match`, so there's now a helper function that replicates the behavior.
Other notable changes include the addition of type annotations to ensure code correctness, using == to check file names instead of `endswith` for clarity (`endswith` is still used to check extensions), manual walking and copying being refactored in googletest, json, memory, nanopb, protobuf, and sleipnir to use `walk_cwd_and_copy_if`, and matching functions being shortened to the point where they can just be inlined into the lambda.
Co-authored-by: Tyler Veness <calcmogul@gmail.com>
Co-authored-by: David Vo <auscompgeek@users.noreply.github.com>
67 lines
1.3 KiB
Python
Executable File
67 lines
1.3 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import shutil
|
|
from pathlib import Path
|
|
|
|
from upstream_utils import Lib, has_prefix, walk_cwd_and_copy_if
|
|
|
|
|
|
def copy_upstream_src(wpilib_root: Path):
|
|
glfw = wpilib_root / "thirdparty/imgui_suite/glfw"
|
|
|
|
# Delete old install
|
|
for d in ["include", "src", "CMake"]:
|
|
shutil.rmtree(glfw / d, ignore_errors=True)
|
|
|
|
hdr_allow_list = [
|
|
Path("include/GLFW/glfw3.h"),
|
|
Path("include/GLFW/glfw3native.h"),
|
|
]
|
|
|
|
walk_cwd_and_copy_if(
|
|
lambda dp, f: dp / f in hdr_allow_list,
|
|
glfw,
|
|
)
|
|
|
|
def src_filter(dp: Path, f: str):
|
|
if f == "CMakeLists.txt":
|
|
return False
|
|
|
|
if has_prefix(dp, Path("src")):
|
|
return True
|
|
|
|
return False
|
|
|
|
src_files = walk_cwd_and_copy_if(
|
|
src_filter,
|
|
glfw,
|
|
)
|
|
|
|
def cmake_filter(dp: Path, f: str):
|
|
if has_prefix(dp, Path("CMake")):
|
|
return True
|
|
|
|
if dp / f in [Path("src/CMakeLists.txt"), Path("CMakeLists.txt")]:
|
|
return True
|
|
|
|
return False
|
|
|
|
# Copy CMAKE files
|
|
walk_cwd_and_copy_if(
|
|
cmake_filter,
|
|
glfw,
|
|
)
|
|
|
|
|
|
def main():
|
|
name = "glfw"
|
|
url = "https://github.com/glfw/glfw.git"
|
|
tag = "6b57e08bb0078c9834889eab871bac2368198c15"
|
|
|
|
glfw = Lib(name, url, tag, copy_upstream_src)
|
|
glfw.main()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|