From e20e7a1198b2ff276a2f4f8514201b8ac1456830 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 12 Jun 2023 20:59:15 -0700 Subject: [PATCH] Automated fix for refs/heads/master (#33415) PanCakes to the rescue! We noticed that our 'sanity' test was going to fail, but we think we can fix that automatically, so we put together this PR to do just that! If you'd like to opt-out of these PR's, add yourself to NO_AUTOFIX_USERS in .github/workflows/pr-auto-fix.yaml Co-authored-by: ctiller --- src/c-ares/gen_build_yaml.py | 209 +++++++++++++++++------------------ 1 file changed, 103 insertions(+), 106 deletions(-) diff --git a/src/c-ares/gen_build_yaml.py b/src/c-ares/gen_build_yaml.py index 8a0539ec7a4..8b8cf0dd3c0 100755 --- a/src/c-ares/gen_build_yaml.py +++ b/src/c-ares/gen_build_yaml.py @@ -49,112 +49,109 @@ try: gen_ares_build(x) return "third_party/cares/cares/include/ares_build.h" - out['libs'] = [{ - 'name': - 'ares', - 'defaults': - 'ares', - 'build': - 'private', - 'language': - 'c', - 'secure': - False, - 'src': [ - "third_party/cares/cares/src/lib/ares__read_line.c", - "third_party/cares/cares/src/lib/ares__get_hostent.c", - "third_party/cares/cares/src/lib/ares__close_sockets.c", - "third_party/cares/cares/src/lib/ares__timeval.c", - "third_party/cares/cares/src/lib/ares_gethostbyaddr.c", - "third_party/cares/cares/src/lib/ares_getenv.c", - "third_party/cares/cares/src/lib/ares_free_string.c", - "third_party/cares/cares/src/lib/ares_free_hostent.c", - "third_party/cares/cares/src/lib/ares_fds.c", - "third_party/cares/cares/src/lib/ares_expand_string.c", - "third_party/cares/cares/src/lib/ares_create_query.c", - "third_party/cares/cares/src/lib/ares_cancel.c", - "third_party/cares/cares/src/lib/ares_android.c", - "third_party/cares/cares/src/lib/ares_parse_txt_reply.c", - "third_party/cares/cares/src/lib/ares_parse_srv_reply.c", - "third_party/cares/cares/src/lib/ares_parse_soa_reply.c", - "third_party/cares/cares/src/lib/ares_parse_ptr_reply.c", - "third_party/cares/cares/src/lib/ares_parse_ns_reply.c", - "third_party/cares/cares/src/lib/ares_parse_naptr_reply.c", - "third_party/cares/cares/src/lib/ares_parse_mx_reply.c", - "third_party/cares/cares/src/lib/ares_parse_caa_reply.c", - "third_party/cares/cares/src/lib/ares_options.c", - "third_party/cares/cares/src/lib/ares_nowarn.c", - "third_party/cares/cares/src/lib/ares_mkquery.c", - "third_party/cares/cares/src/lib/ares_llist.c", - "third_party/cares/cares/src/lib/ares_getsock.c", - "third_party/cares/cares/src/lib/ares_getnameinfo.c", - "third_party/cares/cares/src/lib/bitncmp.c", - "third_party/cares/cares/src/lib/ares_writev.c", - "third_party/cares/cares/src/lib/ares_version.c", - "third_party/cares/cares/src/lib/ares_timeout.c", - "third_party/cares/cares/src/lib/ares_strerror.c", - "third_party/cares/cares/src/lib/ares_strcasecmp.c", - "third_party/cares/cares/src/lib/ares_search.c", - "third_party/cares/cares/src/lib/ares_platform.c", - "third_party/cares/cares/src/lib/windows_port.c", - "third_party/cares/cares/src/lib/inet_ntop.c", - "third_party/cares/cares/src/lib/ares__sortaddrinfo.c", - "third_party/cares/cares/src/lib/ares__readaddrinfo.c", - "third_party/cares/cares/src/lib/ares_parse_uri_reply.c", - "third_party/cares/cares/src/lib/ares__parse_into_addrinfo.c", - "third_party/cares/cares/src/lib/ares_parse_a_reply.c", - "third_party/cares/cares/src/lib/ares_parse_aaaa_reply.c", - "third_party/cares/cares/src/lib/ares_library_init.c", - "third_party/cares/cares/src/lib/ares_init.c", - "third_party/cares/cares/src/lib/ares_gethostbyname.c", - "third_party/cares/cares/src/lib/ares_getaddrinfo.c", - "third_party/cares/cares/src/lib/ares_freeaddrinfo.c", - "third_party/cares/cares/src/lib/ares_expand_name.c", - "third_party/cares/cares/src/lib/ares_destroy.c", - "third_party/cares/cares/src/lib/ares_data.c", - "third_party/cares/cares/src/lib/ares__addrinfo_localhost.c", - "third_party/cares/cares/src/lib/ares__addrinfo2hostent.c", - "third_party/cares/cares/src/lib/inet_net_pton.c", - "third_party/cares/cares/src/lib/ares_strsplit.c", - "third_party/cares/cares/src/lib/ares_strdup.c", - "third_party/cares/cares/src/lib/ares_send.c", - "third_party/cares/cares/src/lib/ares_rand.c", - "third_party/cares/cares/src/lib/ares_query.c", - "third_party/cares/cares/src/lib/ares_process.c", - ], - 'headers': [ - "third_party/cares/ares_build.h", - "third_party/cares/cares/include/ares_version.h", - "third_party/cares/cares/include/ares.h", - "third_party/cares/cares/include/ares_rules.h", - "third_party/cares/cares/include/ares_dns.h", - "third_party/cares/cares/include/ares_nameser.h", - "third_party/cares/cares/src/tools/ares_getopt.h", - "third_party/cares/cares/src/lib/ares_strsplit.h", - "third_party/cares/cares/src/lib/ares_android.h", - "third_party/cares/cares/src/lib/ares_private.h", - "third_party/cares/cares/src/lib/ares_llist.h", - "third_party/cares/cares/src/lib/ares_platform.h", - "third_party/cares/cares/src/lib/ares_ipv6.h", - "third_party/cares/cares/src/lib/config-dos.h", - "third_party/cares/cares/src/lib/bitncmp.h", - "third_party/cares/cares/src/lib/ares_strcasecmp.h", - "third_party/cares/cares/src/lib/setup_once.h", - "third_party/cares/cares/src/lib/ares_inet_net_pton.h", - "third_party/cares/cares/src/lib/ares_data.h", - "third_party/cares/cares/src/lib/ares_getenv.h", - "third_party/cares/cares/src/lib/config-win32.h", - "third_party/cares/cares/src/lib/ares_strdup.h", - "third_party/cares/cares/src/lib/ares_iphlpapi.h", - "third_party/cares/cares/src/lib/ares_setup.h", - "third_party/cares/cares/src/lib/ares_writev.h", - "third_party/cares/cares/src/lib/ares_nowarn.h", - "third_party/cares/config_darwin/ares_config.h", - "third_party/cares/config_freebsd/ares_config.h", - "third_party/cares/config_linux/ares_config.h", - "third_party/cares/config_openbsd/ares_config.h", - ], - }] + out["libs"] = [ + { + "name": "ares", + "defaults": "ares", + "build": "private", + "language": "c", + "secure": False, + "src": [ + "third_party/cares/cares/src/lib/ares__read_line.c", + "third_party/cares/cares/src/lib/ares__get_hostent.c", + "third_party/cares/cares/src/lib/ares__close_sockets.c", + "third_party/cares/cares/src/lib/ares__timeval.c", + "third_party/cares/cares/src/lib/ares_gethostbyaddr.c", + "third_party/cares/cares/src/lib/ares_getenv.c", + "third_party/cares/cares/src/lib/ares_free_string.c", + "third_party/cares/cares/src/lib/ares_free_hostent.c", + "third_party/cares/cares/src/lib/ares_fds.c", + "third_party/cares/cares/src/lib/ares_expand_string.c", + "third_party/cares/cares/src/lib/ares_create_query.c", + "third_party/cares/cares/src/lib/ares_cancel.c", + "third_party/cares/cares/src/lib/ares_android.c", + "third_party/cares/cares/src/lib/ares_parse_txt_reply.c", + "third_party/cares/cares/src/lib/ares_parse_srv_reply.c", + "third_party/cares/cares/src/lib/ares_parse_soa_reply.c", + "third_party/cares/cares/src/lib/ares_parse_ptr_reply.c", + "third_party/cares/cares/src/lib/ares_parse_ns_reply.c", + "third_party/cares/cares/src/lib/ares_parse_naptr_reply.c", + "third_party/cares/cares/src/lib/ares_parse_mx_reply.c", + "third_party/cares/cares/src/lib/ares_parse_caa_reply.c", + "third_party/cares/cares/src/lib/ares_options.c", + "third_party/cares/cares/src/lib/ares_nowarn.c", + "third_party/cares/cares/src/lib/ares_mkquery.c", + "third_party/cares/cares/src/lib/ares_llist.c", + "third_party/cares/cares/src/lib/ares_getsock.c", + "third_party/cares/cares/src/lib/ares_getnameinfo.c", + "third_party/cares/cares/src/lib/bitncmp.c", + "third_party/cares/cares/src/lib/ares_writev.c", + "third_party/cares/cares/src/lib/ares_version.c", + "third_party/cares/cares/src/lib/ares_timeout.c", + "third_party/cares/cares/src/lib/ares_strerror.c", + "third_party/cares/cares/src/lib/ares_strcasecmp.c", + "third_party/cares/cares/src/lib/ares_search.c", + "third_party/cares/cares/src/lib/ares_platform.c", + "third_party/cares/cares/src/lib/windows_port.c", + "third_party/cares/cares/src/lib/inet_ntop.c", + "third_party/cares/cares/src/lib/ares__sortaddrinfo.c", + "third_party/cares/cares/src/lib/ares__readaddrinfo.c", + "third_party/cares/cares/src/lib/ares_parse_uri_reply.c", + "third_party/cares/cares/src/lib/ares__parse_into_addrinfo.c", + "third_party/cares/cares/src/lib/ares_parse_a_reply.c", + "third_party/cares/cares/src/lib/ares_parse_aaaa_reply.c", + "third_party/cares/cares/src/lib/ares_library_init.c", + "third_party/cares/cares/src/lib/ares_init.c", + "third_party/cares/cares/src/lib/ares_gethostbyname.c", + "third_party/cares/cares/src/lib/ares_getaddrinfo.c", + "third_party/cares/cares/src/lib/ares_freeaddrinfo.c", + "third_party/cares/cares/src/lib/ares_expand_name.c", + "third_party/cares/cares/src/lib/ares_destroy.c", + "third_party/cares/cares/src/lib/ares_data.c", + "third_party/cares/cares/src/lib/ares__addrinfo_localhost.c", + "third_party/cares/cares/src/lib/ares__addrinfo2hostent.c", + "third_party/cares/cares/src/lib/inet_net_pton.c", + "third_party/cares/cares/src/lib/ares_strsplit.c", + "third_party/cares/cares/src/lib/ares_strdup.c", + "third_party/cares/cares/src/lib/ares_send.c", + "third_party/cares/cares/src/lib/ares_rand.c", + "third_party/cares/cares/src/lib/ares_query.c", + "third_party/cares/cares/src/lib/ares_process.c", + ], + "headers": [ + "third_party/cares/ares_build.h", + "third_party/cares/cares/include/ares_version.h", + "third_party/cares/cares/include/ares.h", + "third_party/cares/cares/include/ares_rules.h", + "third_party/cares/cares/include/ares_dns.h", + "third_party/cares/cares/include/ares_nameser.h", + "third_party/cares/cares/src/tools/ares_getopt.h", + "third_party/cares/cares/src/lib/ares_strsplit.h", + "third_party/cares/cares/src/lib/ares_android.h", + "third_party/cares/cares/src/lib/ares_private.h", + "third_party/cares/cares/src/lib/ares_llist.h", + "third_party/cares/cares/src/lib/ares_platform.h", + "third_party/cares/cares/src/lib/ares_ipv6.h", + "third_party/cares/cares/src/lib/config-dos.h", + "third_party/cares/cares/src/lib/bitncmp.h", + "third_party/cares/cares/src/lib/ares_strcasecmp.h", + "third_party/cares/cares/src/lib/setup_once.h", + "third_party/cares/cares/src/lib/ares_inet_net_pton.h", + "third_party/cares/cares/src/lib/ares_data.h", + "third_party/cares/cares/src/lib/ares_getenv.h", + "third_party/cares/cares/src/lib/config-win32.h", + "third_party/cares/cares/src/lib/ares_strdup.h", + "third_party/cares/cares/src/lib/ares_iphlpapi.h", + "third_party/cares/cares/src/lib/ares_setup.h", + "third_party/cares/cares/src/lib/ares_writev.h", + "third_party/cares/cares/src/lib/ares_nowarn.h", + "third_party/cares/config_darwin/ares_config.h", + "third_party/cares/config_freebsd/ares_config.h", + "third_party/cares/config_linux/ares_config.h", + "third_party/cares/config_openbsd/ares_config.h", + ], + } + ] except: pass