2021-07-23 09:01:44 -07:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
|
|
import os
|
|
|
|
|
import shutil
|
|
|
|
|
|
2022-05-18 12:23:15 -07:00
|
|
|
from upstream_utils import setup_upstream_repo, comment_out_invalid_includes, walk_cwd_and_copy_if, am_patches
|
2021-07-23 09:01:44 -07:00
|
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
2022-01-08 11:10:42 -08:00
|
|
|
root, repo = setup_upstream_repo("https://github.com/fmtlib/fmt", "8.1.1")
|
2021-07-23 09:01:44 -07:00
|
|
|
wpiutil = os.path.join(root, "wpiutil")
|
|
|
|
|
|
2022-05-18 12:23:15 -07:00
|
|
|
# Apply patches to original git repo
|
|
|
|
|
prefix = os.path.join(root, "upstream_utils/fmt_patches")
|
|
|
|
|
am_patches(
|
|
|
|
|
repo, [os.path.join(prefix, "0001-Don-t-throw-on-write-failure.patch")])
|
|
|
|
|
|
2021-07-23 09:01:44 -07:00
|
|
|
# Delete old install
|
|
|
|
|
for d in ["src/main/native/fmtlib/src", "src/main/native/fmtlib/include"]:
|
|
|
|
|
shutil.rmtree(os.path.join(wpiutil, d), ignore_errors=True)
|
|
|
|
|
|
|
|
|
|
# Copy fmt source files into allwpilib
|
|
|
|
|
src_files = walk_cwd_and_copy_if(
|
|
|
|
|
lambda dp, f: dp.endswith("src") and f.endswith(".cc") and f !=
|
|
|
|
|
"fmt.cc", os.path.join(wpiutil, "src/main/native/fmtlib"))
|
|
|
|
|
|
|
|
|
|
# Copy fmt header files into allwpilib
|
|
|
|
|
include_files = walk_cwd_and_copy_if(
|
|
|
|
|
lambda dp, f: dp.endswith("include/fmt"),
|
|
|
|
|
os.path.join(wpiutil, "src/main/native/fmtlib"))
|
|
|
|
|
|
|
|
|
|
for f in src_files:
|
|
|
|
|
comment_out_invalid_includes(
|
|
|
|
|
f, [os.path.join(wpiutil, "src/main/native/fmtlib/include")])
|
|
|
|
|
for f in include_files:
|
|
|
|
|
comment_out_invalid_includes(
|
|
|
|
|
f, [os.path.join(wpiutil, "src/main/native/fmtlib/include")])
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
|
main()
|