Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created February 6, 2019 12:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryantm/419736b776dcf51140405a03cf68af33 to your computer and use it in GitHub Desktop.
Save ryantm/419736b776dcf51140405a03cf68af33 to your computer and use it in GitHub Desktop.
/nix/store/2cirqhb3h0izliksgxcs4lkg9c1gbhsh-conan-1.12.0
├── bin
│   ├── conan
│   ├── conan_build_info
│   └── conan_server
├── lib
│   └── python3.7
│   └── site-packages
│   ├── conan-1.12.0.dist-info
│   │   ├── entry_points.txt
│   │   ├── INSTALLER
│   │   ├── LICENSE.md
│   │   ├── METADATA
│   │   ├── RECORD
│   │   ├── top_level.txt
│   │   └── WHEEL
│   └── conans
│   ├── build_info
│   │   ├── command.py
│   │   ├── conan_build_info.py
│   │   ├── __init__.py
│   │   ├── model.py
│   │   └── __pycache__
│   │   ├── command.cpython-37.pyc
│   │   ├── conan_build_info.cpython-37.pyc
│   │   ├── __init__.cpython-37.pyc
│   │   └── model.cpython-37.pyc
│   ├── client
│   │   ├── build
│   │   │   ├── autotools_environment.py
│   │   │   ├── cmake_flags.py
│   │   │   ├── cmake.py
│   │   │   ├── compiler_flags.py
│   │   │   ├── cppstd_flags.py
│   │   │   ├── __init__.py
│   │   │   ├── meson.py
│   │   │   ├── msbuild.py
│   │   │   ├── __pycache__
│   │   │   │   ├── autotools_environment.cpython-37.pyc
│   │   │   │   ├── cmake.cpython-37.pyc
│   │   │   │   ├── cmake_flags.cpython-37.pyc
│   │   │   │   ├── compiler_flags.cpython-37.pyc
│   │   │   │   ├── cppstd_flags.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── meson.cpython-37.pyc
│   │   │   │   ├── msbuild.cpython-37.pyc
│   │   │   │   └── visual_environment.cpython-37.pyc
│   │   │   └── visual_environment.py
│   │   ├── cache
│   │   │   ├── cache.py
│   │   │   ├── editable.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── cache.cpython-37.pyc
│   │   │   │   ├── editable.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   └── remote_registry.cpython-37.pyc
│   │   │   └── remote_registry.py
│   │   ├── cmd
│   │   │   ├── build.py
│   │   │   ├── copy.py
│   │   │   ├── create.py
│   │   │   ├── download.py
│   │   │   ├── export_linter.py
│   │   │   ├── export_pkg.py
│   │   │   ├── export.py
│   │   │   ├── __init__.py
│   │   │   ├── new_ci.py
│   │   │   ├── new.py
│   │   │   ├── profile.py
│   │   │   ├── __pycache__
│   │   │   │   ├── build.cpython-37.pyc
│   │   │   │   ├── copy.cpython-37.pyc
│   │   │   │   ├── create.cpython-37.pyc
│   │   │   │   ├── download.cpython-37.pyc
│   │   │   │   ├── export.cpython-37.pyc
│   │   │   │   ├── export_linter.cpython-37.pyc
│   │   │   │   ├── export_pkg.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── new_ci.cpython-37.pyc
│   │   │   │   ├── new.cpython-37.pyc
│   │   │   │   ├── profile.cpython-37.pyc
│   │   │   │   ├── search.cpython-37.pyc
│   │   │   │   ├── test.cpython-37.pyc
│   │   │   │   ├── uploader.cpython-37.pyc
│   │   │   │   └── user.cpython-37.pyc
│   │   │   ├── search.py
│   │   │   ├── test.py
│   │   │   ├── uploader.py
│   │   │   └── user.py
│   │   ├── command.py
│   │   ├── conan_api.py
│   │   ├── conan_command_output.py
│   │   ├── conf
│   │   │   ├── config_installer.py
│   │   │   ├── detect.py
│   │   │   ├── __init__.py
│   │   │   └── __pycache__
│   │   │   ├── config_installer.cpython-37.pyc
│   │   │   ├── detect.cpython-37.pyc
│   │   │   └── __init__.cpython-37.pyc
│   │   ├── file_copier.py
│   │   ├── generators
│   │   │   ├── b2.py
│   │   │   ├── boostbuild.py
│   │   │   ├── cmake_common.py
│   │   │   ├── cmake_find_package.py
│   │   │   ├── cmake_multi.py
│   │   │   ├── cmake_paths.py
│   │   │   ├── cmake.py
│   │   │   ├── compiler_args.py
│   │   │   ├── gcc.py
│   │   │   ├── __init__.py
│   │   │   ├── json_generator.py
│   │   │   ├── make.py
│   │   │   ├── pkg_config.py
│   │   │   ├── premake.py
│   │   │   ├── __pycache__
│   │   │   │   ├── b2.cpython-37.pyc
│   │   │   │   ├── boostbuild.cpython-37.pyc
│   │   │   │   ├── cmake_common.cpython-37.pyc
│   │   │   │   ├── cmake.cpython-37.pyc
│   │   │   │   ├── cmake_find_package.cpython-37.pyc
│   │   │   │   ├── cmake_multi.cpython-37.pyc
│   │   │   │   ├── cmake_paths.cpython-37.pyc
│   │   │   │   ├── compiler_args.cpython-37.pyc
│   │   │   │   ├── gcc.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── json_generator.cpython-37.pyc
│   │   │   │   ├── make.cpython-37.pyc
│   │   │   │   ├── pkg_config.cpython-37.pyc
│   │   │   │   ├── premake.cpython-37.pyc
│   │   │   │   ├── qbs.cpython-37.pyc
│   │   │   │   ├── qmake.cpython-37.pyc
│   │   │   │   ├── scons.cpython-37.pyc
│   │   │   │   ├── text.cpython-37.pyc
│   │   │   │   ├── virtualbuildenv.cpython-37.pyc
│   │   │   │   ├── virtualenv.cpython-37.pyc
│   │   │   │   ├── virtualrunenv.cpython-37.pyc
│   │   │   │   ├── visualstudio.cpython-37.pyc
│   │   │   │   ├── visualstudiolegacy.cpython-37.pyc
│   │   │   │   ├── visualstudio_multi.cpython-37.pyc
│   │   │   │   ├── xcode.cpython-37.pyc
│   │   │   │   └── ycm.cpython-37.pyc
│   │   │   ├── qbs.py
│   │   │   ├── qmake.py
│   │   │   ├── scons.py
│   │   │   ├── text.py
│   │   │   ├── virtualbuildenv.py
│   │   │   ├── virtualenv.py
│   │   │   ├── virtualrunenv.py
│   │   │   ├── visualstudiolegacy.py
│   │   │   ├── visualstudio_multi.py
│   │   │   ├── visualstudio.py
│   │   │   ├── xcode.py
│   │   │   └── ycm.py
│   │   ├── graph
│   │   │   ├── build_mode.py
│   │   │   ├── graph_binaries.py
│   │   │   ├── graph_builder.py
│   │   │   ├── grapher.py
│   │   │   ├── graph_manager.py
│   │   │   ├── graph.py
│   │   │   ├── __init__.py
│   │   │   ├── printer.py
│   │   │   ├── proxy.py
│   │   │   ├── __pycache__
│   │   │   │   ├── build_mode.cpython-37.pyc
│   │   │   │   ├── graph_binaries.cpython-37.pyc
│   │   │   │   ├── graph_builder.cpython-37.pyc
│   │   │   │   ├── graph.cpython-37.pyc
│   │   │   │   ├── grapher.cpython-37.pyc
│   │   │   │   ├── graph_manager.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── printer.cpython-37.pyc
│   │   │   │   ├── proxy.cpython-37.pyc
│   │   │   │   ├── python_requires.cpython-37.pyc
│   │   │   │   └── range_resolver.cpython-37.pyc
│   │   │   ├── python_requires.py
│   │   │   └── range_resolver.py
│   │   ├── hook_manager.py
│   │   ├── importer.py
│   │   ├── __init__.py
│   │   ├── installer.py
│   │   ├── loader.py
│   │   ├── loader_txt.py
│   │   ├── local_file_getter.py
│   │   ├── manager.py
│   │   ├── manifest_manager.py
│   │   ├── migrations.py
│   │   ├── output.py
│   │   ├── packager.py
│   │   ├── printer.py
│   │   ├── profile_loader.py
│   │   ├── __pycache__
│   │   │   ├── command.cpython-37.pyc
│   │   │   ├── conan_api.cpython-37.pyc
│   │   │   ├── conan_command_output.cpython-37.pyc
│   │   │   ├── file_copier.cpython-37.pyc
│   │   │   ├── hook_manager.cpython-37.pyc
│   │   │   ├── importer.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── installer.cpython-37.pyc
│   │   │   ├── loader.cpython-37.pyc
│   │   │   ├── loader_txt.cpython-37.pyc
│   │   │   ├── local_file_getter.cpython-37.pyc
│   │   │   ├── manager.cpython-37.pyc
│   │   │   ├── manifest_manager.cpython-37.pyc
│   │   │   ├── migrations.cpython-37.pyc
│   │   │   ├── output.cpython-37.pyc
│   │   │   ├── packager.cpython-37.pyc
│   │   │   ├── printer.cpython-37.pyc
│   │   │   ├── profile_loader.cpython-37.pyc
│   │   │   ├── remote_manager.cpython-37.pyc
│   │   │   ├── remover.cpython-37.pyc
│   │   │   ├── run_environment.cpython-37.pyc
│   │   │   ├── runner.cpython-37.pyc
│   │   │   ├── settings_preprocessor.cpython-37.pyc
│   │   │   ├── source.cpython-37.pyc
│   │   │   └── userio.cpython-37.pyc
│   │   ├── recorder
│   │   │   ├── action_recorder.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── action_recorder.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── search_recorder.cpython-37.pyc
│   │   │   │   └── upload_recoder.cpython-37.pyc
│   │   │   ├── search_recorder.py
│   │   │   └── upload_recoder.py
│   │   ├── remote_manager.py
│   │   ├── remover.py
│   │   ├── rest
│   │   │   ├── auth_manager.py
│   │   │   ├── cacert.py
│   │   │   ├── client_routes.py
│   │   │   ├── conan_requester.py
│   │   │   ├── __init__.py
│   │   │   ├── multipart_decode.py
│   │   │   ├── __pycache__
│   │   │   │   ├── auth_manager.cpython-37.pyc
│   │   │   │   ├── cacert.cpython-37.pyc
│   │   │   │   ├── client_routes.cpython-37.pyc
│   │   │   │   ├── conan_requester.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── multipart_decode.cpython-37.pyc
│   │   │   │   ├── rest_client_common.cpython-37.pyc
│   │   │   │   ├── rest_client.cpython-37.pyc
│   │   │   │   ├── rest_client_v1.cpython-37.pyc
│   │   │   │   ├── rest_client_v2.cpython-37.pyc
│   │   │   │   └── uploader_downloader.cpython-37.pyc
│   │   │   ├── rest_client_common.py
│   │   │   ├── rest_client.py
│   │   │   ├── rest_client_v1.py
│   │   │   ├── rest_client_v2.py
│   │   │   └── uploader_downloader.py
│   │   ├── run_environment.py
│   │   ├── runner.py
│   │   ├── settings_preprocessor.py
│   │   ├── source.py
│   │   ├── store
│   │   │   ├── __init__.py
│   │   │   ├── localdb.py
│   │   │   └── __pycache__
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   └── localdb.cpython-37.pyc
│   │   ├── tools
│   │   │   ├── apple.py
│   │   │   ├── env.py
│   │   │   ├── files.py
│   │   │   ├── __init__.py
│   │   │   ├── net.py
│   │   │   ├── oss.py
│   │   │   ├── pkg_config.py
│   │   │   ├── __pycache__
│   │   │   │   ├── apple.cpython-37.pyc
│   │   │   │   ├── env.cpython-37.pyc
│   │   │   │   ├── files.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── net.cpython-37.pyc
│   │   │   │   ├── oss.cpython-37.pyc
│   │   │   │   ├── pkg_config.cpython-37.pyc
│   │   │   │   ├── scm.cpython-37.pyc
│   │   │   │   ├── system_pm.cpython-37.pyc
│   │   │   │   └── win.cpython-37.pyc
│   │   │   ├── scm.py
│   │   │   ├── system_pm.py
│   │   │   └── win.py
│   │   └── userio.py
│   ├── conan.py
│   ├── conan_server.py
│   ├── errors.py
│   ├── __init__.py
│   ├── migrations.py
│   ├── model
│   │   ├── build_info.py
│   │   ├── conan_file.py
│   │   ├── conan_generator.py
│   │   ├── editable_cpp_info.py
│   │   ├── env_info.py
│   │   ├── graph_info.py
│   │   ├── info.py
│   │   ├── __init__.py
│   │   ├── manifest.py
│   │   ├── options.py
│   │   ├── package_metadata.py
│   │   ├── profile.py
│   │   ├── __pycache__
│   │   │   ├── build_info.cpython-37.pyc
│   │   │   ├── conan_file.cpython-37.pyc
│   │   │   ├── conan_generator.cpython-37.pyc
│   │   │   ├── editable_cpp_info.cpython-37.pyc
│   │   │   ├── env_info.cpython-37.pyc
│   │   │   ├── graph_info.cpython-37.pyc
│   │   │   ├── info.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── manifest.cpython-37.pyc
│   │   │   ├── options.cpython-37.pyc
│   │   │   ├── package_metadata.cpython-37.pyc
│   │   │   ├── profile.cpython-37.pyc
│   │   │   ├── ref.cpython-37.pyc
│   │   │   ├── requires.cpython-37.pyc
│   │   │   ├── rest_routes.cpython-37.pyc
│   │   │   ├── scm.cpython-37.pyc
│   │   │   ├── settings.cpython-37.pyc
│   │   │   ├── user_info.cpython-37.pyc
│   │   │   ├── values.cpython-37.pyc
│   │   │   ├── version.cpython-37.pyc
│   │   │   └── workspace.cpython-37.pyc
│   │   ├── ref.py
│   │   ├── requires.py
│   │   ├── rest_routes.py
│   │   ├── scm.py
│   │   ├── settings.py
│   │   ├── user_info.py
│   │   ├── values.py
│   │   ├── version.py
│   │   └── workspace.py
│   ├── paths
│   │   ├── __init__.py
│   │   ├── package_layouts
│   │   │   ├── __init__.py
│   │   │   ├── package_cache_layout.py
│   │   │   ├── package_editable_layout.py
│   │   │   └── __pycache__
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── package_cache_layout.cpython-37.pyc
│   │   │   └── package_editable_layout.cpython-37.pyc
│   │   ├── __pycache__
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   └── simple_paths.cpython-37.pyc
│   │   └── simple_paths.py
│   ├── __pycache__
│   │   ├── conan.cpython-37.pyc
│   │   ├── conan_server.cpython-37.pyc
│   │   ├── errors.cpython-37.pyc
│   │   ├── __init__.cpython-37.pyc
│   │   ├── migrations.cpython-37.pyc
│   │   ├── pylint_plugin.cpython-37.pyc
│   │   ├── tools.cpython-37.pyc
│   │   └── unicode.cpython-37.pyc
│   ├── pylint_plugin.py
│   ├── requirements_dev.txt
│   ├── requirements_osx.txt
│   ├── requirements_server.txt
│   ├── requirements.txt
│   ├── search
│   │   ├── binary_html_table.py
│   │   ├── __init__.py
│   │   ├── __pycache__
│   │   │   ├── binary_html_table.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── query_parse.cpython-37.pyc
│   │   │   └── search.cpython-37.pyc
│   │   ├── query_parse.py
│   │   └── search.py
│   ├── server
│   │   ├── conf
│   │   │   ├── default_server_conf.py
│   │   │   ├── __init__.py
│   │   │   └── __pycache__
│   │   │   ├── default_server_conf.cpython-37.pyc
│   │   │   └── __init__.cpython-37.pyc
│   │   ├── crypto
│   │   │   ├── __init__.py
│   │   │   ├── jwt
│   │   │   │   ├── __init__.py
│   │   │   │   ├── jwt_credentials_manager.py
│   │   │   │   ├── jwt_manager.py
│   │   │   │   ├── jwt_updown_manager.py
│   │   │   │   └── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── jwt_credentials_manager.cpython-37.pyc
│   │   │   │   ├── jwt_manager.cpython-37.pyc
│   │   │   │   └── jwt_updown_manager.cpython-37.pyc
│   │   │   └── __pycache__
│   │   │   └── __init__.cpython-37.pyc
│   │   ├── __init__.py
│   │   ├── launcher.py
│   │   ├── migrate.py
│   │   ├── migrations.py
│   │   ├── plugin_loader.py
│   │   ├── __pycache__
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── launcher.cpython-37.pyc
│   │   │   ├── migrate.cpython-37.pyc
│   │   │   ├── migrations.cpython-37.pyc
│   │   │   ├── plugin_loader.cpython-37.pyc
│   │   │   ├── revision_list.cpython-37.pyc
│   │   │   └── server_launcher.cpython-37.pyc
│   │   ├── rest
│   │   │   ├── api_v1.py
│   │   │   ├── api_v2.py
│   │   │   ├── bottle_plugins
│   │   │   │   ├── authorization_header.py
│   │   │   │   ├── http_basic_authentication.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── jwt_authentication.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── authorization_header.cpython-37.pyc
│   │   │   │   │   ├── http_basic_authentication.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── jwt_authentication.cpython-37.pyc
│   │   │   │   │   └── return_handler.cpython-37.pyc
│   │   │   │   └── return_handler.py
│   │   │   ├── bottle_routes.py
│   │   │   ├── controllers
│   │   │   │   ├── controller.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── ping_controller.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── controller.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── ping_controller.cpython-37.pyc
│   │   │   │   │   ├── search_controller.cpython-37.pyc
│   │   │   │   │   └── users_controller.cpython-37.pyc
│   │   │   │   ├── search_controller.py
│   │   │   │   ├── users_controller.py
│   │   │   │   ├── v1
│   │   │   │   │   ├── conan_controller.py
│   │   │   │   │   ├── delete_controller.py
│   │   │   │   │   ├── file_upload_download_controller.py
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── conan_controller.cpython-37.pyc
│   │   │   │   │   │   ├── delete_controller.cpython-37.pyc
│   │   │   │   │   │   ├── file_upload_download_controller.cpython-37.pyc
│   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   └── search_controller.cpython-37.pyc
│   │   │   │   │   └── search_controller.py
│   │   │   │   └── v2
│   │   │   │   ├── conan_controller.py
│   │   │   │   ├── delete_controller.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── conan_controller.cpython-37.pyc
│   │   │   │   │   ├── delete_controller.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   └── search_controller.cpython-37.pyc
│   │   │   │   └── search_controller.py
│   │   │   ├── __init__.py
│   │   │   ├── multipart_encoder.py
│   │   │   ├── __pycache__
│   │   │   │   ├── api_v1.cpython-37.pyc
│   │   │   │   ├── api_v2.cpython-37.pyc
│   │   │   │   ├── bottle_routes.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── multipart_encoder.cpython-37.pyc
│   │   │   │   └── server.cpython-37.pyc
│   │   │   └── server.py
│   │   ├── revision_list.py
│   │   ├── server_launcher.py
│   │   ├── service
│   │   │   ├── authorize.py
│   │   │   ├── __init__.py
│   │   │   ├── mime.py
│   │   │   ├── __pycache__
│   │   │   │   ├── authorize.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── mime.cpython-37.pyc
│   │   │   │   ├── service.cpython-37.pyc
│   │   │   │   ├── service_v2.cpython-37.pyc
│   │   │   │   └── user_service.cpython-37.pyc
│   │   │   ├── service.py
│   │   │   ├── service_v2.py
│   │   │   └── user_service.py
│   │   └── store
│   │   ├── disk_adapter.py
│   │   ├── __init__.py
│   │   ├── __pycache__
│   │   │   ├── disk_adapter.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── server_store.cpython-37.pyc
│   │   │   └── url_manager.cpython-37.pyc
│   │   ├── server_store.py
│   │   └── url_manager.py
│   ├── test
│   │   ├── functional
│   │   │   ├── build_helpers
│   │   │   │   ├── autotools_environment_test.py
│   │   │   │   ├── cmake_configs_test.py
│   │   │   │   ├── cmake_flags_test.py
│   │   │   │   ├── cmake_folders_test.py
│   │   │   │   ├── cmake_install_package_test.py
│   │   │   │   ├── cmake_targets_test.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── msbuild_test.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── autotools_environment_test.cpython-37.pyc
│   │   │   │   │   ├── cmake_configs_test.cpython-37.pyc
│   │   │   │   │   ├── cmake_flags_test.cpython-37.pyc
│   │   │   │   │   ├── cmake_folders_test.cpython-37.pyc
│   │   │   │   │   ├── cmake_install_package_test.cpython-37.pyc
│   │   │   │   │   ├── cmake_targets_test.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── msbuild_test.cpython-37.pyc
│   │   │   │   │   └── visual_environment_test.cpython-37.pyc
│   │   │   │   └── visual_environment_test.py
│   │   │   ├── build_requires
│   │   │   │   ├── build_requires_test.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── profile_build_requires_testing_test.py
│   │   │   │   ├── profile_build_requires_test.py
│   │   │   │   ├── profile_requires_test.py
│   │   │   │   └── __pycache__
│   │   │   │   ├── build_requires_test.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── profile_build_requires_test.cpython-37.pyc
│   │   │   │   ├── profile_build_requires_testing_test.cpython-37.pyc
│   │   │   │   └── profile_requires_test.cpython-37.pyc
│   │   │   ├── command
│   │   │   │   ├── alias_test.py
│   │   │   │   ├── build_test.py
│   │   │   │   ├── conan_get_test.py
│   │   │   │   ├── config_install_test.py
│   │   │   │   ├── config_test.py
│   │   │   │   ├── copy_packages_test.py
│   │   │   │   ├── create_test.py
│   │   │   │   ├── download_test.py
│   │   │   │   ├── export_dirty_test.py
│   │   │   │   ├── export_linter_test.py
│   │   │   │   ├── export_path_test.py
│   │   │   │   ├── export_pkg_test.py
│   │   │   │   ├── export_test.py
│   │   │   │   ├── help_test.py
│   │   │   │   ├── imports_test.py
│   │   │   │   ├── info_command_test.py
│   │   │   │   ├── info_folders_test.py
│   │   │   │   ├── info_options_test.py
│   │   │   │   ├── info_test.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── inspect_test.py
│   │   │   │   ├── install_cwd_test.py
│   │   │   │   ├── install_subfolder_test.py
│   │   │   │   ├── install_test.py
│   │   │   │   ├── invalid_configuration_test.py
│   │   │   │   ├── json_output_test.py
│   │   │   │   ├── new_test.py
│   │   │   │   ├── package_test.py
│   │   │   │   ├── profile_test.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── alias_test.cpython-37.pyc
│   │   │   │   │   ├── build_test.cpython-37.pyc
│   │   │   │   │   ├── conan_get_test.cpython-37.pyc
│   │   │   │   │   ├── config_install_test.cpython-37.pyc
│   │   │   │   │   ├── config_test.cpython-37.pyc
│   │   │   │   │   ├── copy_packages_test.cpython-37.pyc
│   │   │   │   │   ├── create_test.cpython-37.pyc
│   │   │   │   │   ├── download_test.cpython-37.pyc
│   │   │   │   │   ├── export_dirty_test.cpython-37.pyc
│   │   │   │   │   ├── export_linter_test.cpython-37.pyc
│   │   │   │   │   ├── export_path_test.cpython-37.pyc
│   │   │   │   │   ├── export_pkg_test.cpython-37.pyc
│   │   │   │   │   ├── export_test.cpython-37.pyc
│   │   │   │   │   ├── help_test.cpython-37.pyc
│   │   │   │   │   ├── imports_test.cpython-37.pyc
│   │   │   │   │   ├── info_command_test.cpython-37.pyc
│   │   │   │   │   ├── info_folders_test.cpython-37.pyc
│   │   │   │   │   ├── info_options_test.cpython-37.pyc
│   │   │   │   │   ├── info_test.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── inspect_test.cpython-37.pyc
│   │   │   │   │   ├── install_cwd_test.cpython-37.pyc
│   │   │   │   │   ├── install_subfolder_test.cpython-37.pyc
│   │   │   │   │   ├── install_test.cpython-37.pyc
│   │   │   │   │   ├── invalid_configuration_test.cpython-37.pyc
│   │   │   │   │   ├── json_output_test.cpython-37.pyc
│   │   │   │   │   ├── new_test.cpython-37.pyc
│   │   │   │   │   ├── package_test.cpython-37.pyc
│   │   │   │   │   ├── profile_test.cpython-37.pyc
│   │   │   │   │   ├── remote_test.cpython-37.pyc
│   │   │   │   │   ├── remote_verify_ssl_test.cpython-37.pyc
│   │   │   │   │   ├── remove_empty_dirs_test.cpython-37.pyc
│   │   │   │   │   ├── remove_test.cpython-37.pyc
│   │   │   │   │   ├── search_test.cpython-37.pyc
│   │   │   │   │   ├── source_test.cpython-37.pyc
│   │   │   │   │   ├── test_package_test.cpython-37.pyc
│   │   │   │   │   ├── upload_complete_test.cpython-37.pyc
│   │   │   │   │   ├── upload_compression_test.cpython-37.pyc
│   │   │   │   │   ├── upload_test.cpython-37.pyc
│   │   │   │   │   └── user_test.cpython-37.pyc
│   │   │   │   ├── remote_test.py
│   │   │   │   ├── remote_verify_ssl_test.py
│   │   │   │   ├── remove_empty_dirs_test.py
│   │   │   │   ├── remove_test.py
│   │   │   │   ├── search_test.py
│   │   │   │   ├── source_test.py
│   │   │   │   ├── test_package_test.py
│   │   │   │   ├── upload_complete_test.py
│   │   │   │   ├── upload_compression_test.py
│   │   │   │   ├── upload_test.py
│   │   │   │   └── user_test.py
│   │   │   ├── conan_api
│   │   │   │   ├── config.py
│   │   │   │   ├── curdir_kept_test.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── manifests_arguments_test.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── config.cpython-37.pyc
│   │   │   │   │   ├── curdir_kept_test.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── manifests_arguments_test.cpython-37.pyc
│   │   │   │   │   └── two_conan_creates_test.cpython-37.pyc
│   │   │   │   └── two_conan_creates_test.py
│   │   │   ├── conanfile
│   │   │   │   ├── deploy_import_file_permission_test.py
│   │   │   │   ├── deploy_test.py
│   │   │   │   ├── imports_tests.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── in_local_cache_test.py
│   │   │   │   ├── no_copy_source_test.py
│   │   │   │   └── __pycache__
│   │   │   │   ├── deploy_import_file_permission_test.cpython-37.pyc
│   │   │   │   ├── deploy_test.cpython-37.pyc
│   │   │   │   ├── imports_tests.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── in_local_cache_test.cpython-37.pyc
│   │   │   │   └── no_copy_source_test.cpython-37.pyc
│   │   │   ├── configuration
│   │   │   │   ├── client_certs_test.py
│   │   │   │   ├── default_profile_test.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── profile_test.py
│   │   │   │   ├── proxies_conf_test.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── client_certs_test.cpython-37.pyc
│   │   │   │   │   ├── default_profile_test.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── profile_test.cpython-37.pyc
│   │   │   │   │   ├── proxies_conf_test.cpython-37.pyc
│   │   │   │   │   └── registry_test.cpython-37.pyc
│   │   │   │   └── registry_test.py
│   │   │   ├── editable
│   │   │   │   ├── commands
│   │   │   │   │   ├── info_on_child_test.py
│   │   │   │   │   ├── info_test.py
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── inspect_test.py
│   │   │   │   │   └── __pycache__
│   │   │   │   │   ├── info_on_child_test.cpython-37.pyc
│   │   │   │   │   ├── info_test.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   └── inspect_test.cpython-37.pyc
│   │   │   │   ├── consume_header_only_test.py
│   │   │   │   ├── consume_settings_and_options_test.py
│   │   │   │   ├── forbidden_commands_test.py
│   │   │   │   ├── graph_related_test.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── layouts_test.py
│   │   │   │   ├── link_create_test.py
│   │   │   │   ├── link_remove_test.py
│   │   │   │   └── __pycache__
│   │   │   │   ├── consume_header_only_test.cpython-37.pyc
│   │   │   │   ├── consume_settings_and_options_test.cpython-37.pyc
│   │   │   │   ├── forbidden_commands_test.cpython-37.pyc
│   │   │   │   ├── graph_related_test.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── layouts_test.cpython-37.pyc
│   │   │   │   ├── link_create_test.cpython-37.pyc
│   │   │   │   └── link_remove_test.cpython-37.pyc
│   │   │   ├── environment
│   │   │   │   ├── apply_environment_test.py
│   │   │   │   ├── __init__.py
│   │   │   │   └── __pycache__
│   │   │   │   ├── apply_environment_test.cpython-37.pyc
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   ├── generators
│   │   │   │   ├── cmake_find_package_test.py
│   │   │   │   ├── cmake_generator_test.py
│   │   │   │   ├── cmake_multi_test.py
│   │   │   │   ├── cmake_paths_test.py
│   │   │   │   ├── cmake_skip_rpath_test.py
│   │   │   │   ├── cmake_test.py
│   │   │   │   ├── custom_generator_test.py
│   │   │   │   ├── generators_test.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── json_test.py
│   │   │   │   ├── make_test.py
│   │   │   │   ├── pkg_config_test.py
│   │   │   │   ├── premake_test.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── cmake_find_package_test.cpython-37.pyc
│   │   │   │   │   ├── cmake_generator_test.cpython-37.pyc
│   │   │   │   │   ├── cmake_multi_test.cpython-37.pyc
│   │   │   │   │   ├── cmake_paths_test.cpython-37.pyc
│   │   │   │   │   ├── cmake_skip_rpath_test.cpython-37.pyc
│   │   │   │   │   ├── cmake_test.cpython-37.pyc
│   │   │   │   │   ├── custom_generator_test.cpython-37.pyc
│   │   │   │   │   ├── generators_test.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── json_test.cpython-37.pyc
│   │   │   │   │   ├── make_test.cpython-37.pyc
│   │   │   │   │   ├── pkg_config_test.cpython-37.pyc
│   │   │   │   │   ├── premake_test.cpython-37.pyc
│   │   │   │   │   ├── virtualbuildenv_test.cpython-37.pyc
│   │   │   │   │   ├── virtualenv_test.cpython-37.pyc
│   │   │   │   │   └── xcode_gcc_vs_test.cpython-37.pyc
│   │   │   │   ├── virtualbuildenv_test.py
│   │   │   │   ├── virtualenv_test.py
│   │   │   │   └── xcode_gcc_vs_test.py
│   │   │   ├── graph
│   │   │   │   ├── conflict_diamond_test.py
│   │   │   │   ├── diamond_test.py
│   │   │   │   ├── half_diamond_test.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── loop_detection_test.py
│   │   │   │   ├── private_deps_test.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── conflict_diamond_test.cpython-37.pyc
│   │   │   │   │   ├── diamond_test.cpython-37.pyc
│   │   │   │   │   ├── half_diamond_test.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── loop_detection_test.cpython-37.pyc
│   │   │   │   │   ├── private_deps_test.cpython-37.pyc
│   │   │   │   │   ├── python_diamond_test.cpython-37.pyc
│   │   │   │   │   ├── require_override_test.cpython-37.pyc
│   │   │   │   │   ├── version_range_error_test.cpython-37.pyc
│   │   │   │   │   └── version_ranges_diamond_test.cpython-37.pyc
│   │   │   │   ├── python_diamond_test.py
│   │   │   │   ├── require_override_test.py
│   │   │   │   ├── version_range_error_test.py
│   │   │   │   └── version_ranges_diamond_test.py
│   │   │   ├── __init__.py
│   │   │   ├── old
│   │   │   │   ├── built_type_setting_test.py
│   │   │   │   ├── compile_helpers_test.py
│   │   │   │   ├── conanfile_extend_test.py
│   │   │   │   ├── conanfile_helpers_test.py
│   │   │   │   ├── conan_settings_preprocessor_test.py
│   │   │   │   ├── conan_trace_file_test.py
│   │   │   │   ├── conditional_requirements_id_test.py
│   │   │   │   ├── conditional_test_req.py
│   │   │   │   ├── create_package_test.py
│   │   │   │   ├── develop_test.py
│   │   │   │   ├── download_retries_test.py
│   │   │   │   ├── download_test.py
│   │   │   │   ├── exit_with_code_test.py
│   │   │   │   ├── file_copier_test.py
│   │   │   │   ├── folders_access_test.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── libcxx_setting_test.py
│   │   │   │   ├── options_in_requirements_test.py
│   │   │   │   ├── package_copier_test.py
│   │   │   │   ├── package_id_test.py
│   │   │   │   ├── package_integrity_test.py
│   │   │   │   ├── path_exists_test.py
│   │   │   │   ├── path_limit_test.py
│   │   │   │   ├── paths_test.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── built_type_setting_test.cpython-37.pyc
│   │   │   │   │   ├── compile_helpers_test.cpython-37.pyc
│   │   │   │   │   ├── conanfile_extend_test.cpython-37.pyc
│   │   │   │   │   ├── conanfile_helpers_test.cpython-37.pyc
│   │   │   │   │   ├── conan_settings_preprocessor_test.cpython-37.pyc
│   │   │   │   │   ├── conan_trace_file_test.cpython-37.pyc
│   │   │   │   │   ├── conditional_requirements_id_test.cpython-37.pyc
│   │   │   │   │   ├── conditional_test_req.cpython-37.pyc
│   │   │   │   │   ├── create_package_test.cpython-37.pyc
│   │   │   │   │   ├── develop_test.cpython-37.pyc
│   │   │   │   │   ├── download_retries_test.cpython-37.pyc
│   │   │   │   │   ├── download_test.cpython-37.pyc
│   │   │   │   │   ├── exit_with_code_test.cpython-37.pyc
│   │   │   │   │   ├── file_copier_test.cpython-37.pyc
│   │   │   │   │   ├── folders_access_test.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── libcxx_setting_test.cpython-37.pyc
│   │   │   │   │   ├── options_in_requirements_test.cpython-37.pyc
│   │   │   │   │   ├── package_copier_test.cpython-37.pyc
│   │   │   │   │   ├── package_id_test.cpython-37.pyc
│   │   │   │   │   ├── package_integrity_test.cpython-37.pyc
│   │   │   │   │   ├── path_exists_test.cpython-37.pyc
│   │   │   │   │   ├── path_limit_test.cpython-37.pyc
│   │   │   │   │   ├── paths_test.cpython-37.pyc
│   │   │   │   │   ├── read_only_test.cpython-37.pyc
│   │   │   │   │   ├── remote_checks_test.cpython-37.pyc
│   │   │   │   │   ├── remove_old_export_sources_layout_test.cpython-37.pyc
│   │   │   │   │   ├── remove_subsetting_test.cpython-37.pyc
│   │   │   │   │   ├── requester_test.cpython-37.pyc
│   │   │   │   │   ├── rmdir_fail_test.cpython-37.pyc
│   │   │   │   │   ├── run_environment_test.cpython-37.pyc
│   │   │   │   │   ├── runner_test.cpython-37.pyc
│   │   │   │   │   ├── short_paths_test.cpython-37.pyc
│   │   │   │   │   ├── symlink_package_test.cpython-37.pyc
│   │   │   │   │   ├── sysroot_test.cpython-37.pyc
│   │   │   │   │   ├── test_migrations.cpython-37.pyc
│   │   │   │   │   ├── transitive_options_affect_id_test.cpython-37.pyc
│   │   │   │   │   └── user_info_test.cpython-37.pyc
│   │   │   │   ├── read_only_test.py
│   │   │   │   ├── remote_checks_test.py
│   │   │   │   ├── remove_old_export_sources_layout_test.py
│   │   │   │   ├── remove_subsetting_test.py
│   │   │   │   ├── requester_test.py
│   │   │   │   ├── rmdir_fail_test.py
│   │   │   │   ├── run_environment_test.py
│   │   │   │   ├── runner_test.py
│   │   │   │   ├── short_paths_test.py
│   │   │   │   ├── symlink_package_test.py
│   │   │   │   ├── sysroot_test.py
│   │   │   │   ├── test_migrations.py
│   │   │   │   ├── transitive_options_affect_id_test.py
│   │   │   │   └── user_info_test.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   └── tgz_macos_dot_files.cpython-37.pyc
│   │   │   ├── python_requires
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── python_package_reuse_test.cpython-37.pyc
│   │   │   │   │   └── python_requires_test.cpython-37.pyc
│   │   │   │   ├── python_package_reuse_test.py
│   │   │   │   └── python_requires_test.py
│   │   │   ├── remote
│   │   │   │   ├── auth_bearer_test.py
│   │   │   │   ├── auth_test.py
│   │   │   │   ├── broken_download_test.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── put_properties_test.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── auth_bearer_test.cpython-37.pyc
│   │   │   │   │   ├── auth_test.cpython-37.pyc
│   │   │   │   │   ├── broken_download_test.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── put_properties_test.cpython-37.pyc
│   │   │   │   │   ├── rest_api_test.cpython-37.pyc
│   │   │   │   │   └── server_error_test.cpython-37.pyc
│   │   │   │   ├── rest_api_test.py
│   │   │   │   └── server_error_test.py
│   │   │   ├── scm
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── scm_test.cpython-37.pyc
│   │   │   │   │   ├── test_command_export.cpython-37.pyc
│   │   │   │   │   ├── test_local_modified.cpython-37.pyc
│   │   │   │   │   └── test_url_auto.cpython-37.pyc
│   │   │   │   ├── scm_test.py
│   │   │   │   ├── test_command_export.py
│   │   │   │   ├── test_local_modified.py
│   │   │   │   ├── test_url_auto.py
│   │   │   │   └── workflows
│   │   │   │   ├── common.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── common.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── test_conanfile_in_repo_root.cpython-37.pyc
│   │   │   │   │   ├── test_conanfile_in_subfolder.cpython-37.pyc
│   │   │   │   │   └── test_scm_subfolder.cpython-37.pyc
│   │   │   │   ├── test_conanfile_in_repo_root.py
│   │   │   │   ├── test_conanfile_in_subfolder.py
│   │   │   │   └── test_scm_subfolder.py
│   │   │   ├── tgz_macos_dot_files.py
│   │   │   └── tools
│   │   │   ├── cpu_count_test.py
│   │   │   ├── __init__.py
│   │   │   └── __pycache__
│   │   │   ├── cpu_count_test.cpython-37.pyc
│   │   │   └── __init__.cpython-37.pyc
│   │   ├── __init__.py
│   │   ├── integration
│   │   │   ├── basic_build_test.py
│   │   │   ├── build_environment_test.py
│   │   │   ├── build_id_test.py
│   │   │   ├── case_sensitive_test.py
│   │   │   ├── complete_test.py
│   │   │   ├── conanfile_errors_test.py
│   │   │   ├── conan_test_test.py
│   │   │   ├── conf_default_settings_test.py
│   │   │   ├── cpp_info_scope_test.py
│   │   │   ├── cppstd_test.py
│   │   │   ├── devflow_test.py
│   │   │   ├── exception_printing_test.py
│   │   │   ├── export_sources_test.py
│   │   │   ├── go_complete_test.py
│   │   │   ├── go_diamond_test.py
│   │   │   ├── hook_test.py
│   │   │   ├── __init__.py
│   │   │   ├── install_missing_dep_test.py
│   │   │   ├── install_outdated_test.py
│   │   │   ├── install_selected_packages_test.py
│   │   │   ├── install_update_test.py
│   │   │   ├── load_requires_file_test.py
│   │   │   ├── manifest_validation_test.py
│   │   │   ├── multi_build_test.py
│   │   │   ├── multi_remotes_test.py
│   │   │   ├── multi_remote_test.py
│   │   │   ├── only_source_test.py
│   │   │   ├── options_test.py
│   │   │   ├── order_libs_test.py
│   │   │   ├── package_id_test.py
│   │   │   ├── package_info_test.py
│   │   │   ├── pkg_config_test.py
│   │   │   ├── __pycache__
│   │   │   │   ├── basic_build_test.cpython-37.pyc
│   │   │   │   ├── build_environment_test.cpython-37.pyc
│   │   │   │   ├── build_id_test.cpython-37.pyc
│   │   │   │   ├── case_sensitive_test.cpython-37.pyc
│   │   │   │   ├── complete_test.cpython-37.pyc
│   │   │   │   ├── conanfile_errors_test.cpython-37.pyc
│   │   │   │   ├── conan_test_test.cpython-37.pyc
│   │   │   │   ├── conf_default_settings_test.cpython-37.pyc
│   │   │   │   ├── cpp_info_scope_test.cpython-37.pyc
│   │   │   │   ├── cppstd_test.cpython-37.pyc
│   │   │   │   ├── devflow_test.cpython-37.pyc
│   │   │   │   ├── exception_printing_test.cpython-37.pyc
│   │   │   │   ├── export_sources_test.cpython-37.pyc
│   │   │   │   ├── go_complete_test.cpython-37.pyc
│   │   │   │   ├── go_diamond_test.cpython-37.pyc
│   │   │   │   ├── hook_test.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── install_missing_dep_test.cpython-37.pyc
│   │   │   │   ├── install_outdated_test.cpython-37.pyc
│   │   │   │   ├── install_selected_packages_test.cpython-37.pyc
│   │   │   │   ├── install_update_test.cpython-37.pyc
│   │   │   │   ├── load_requires_file_test.cpython-37.pyc
│   │   │   │   ├── manifest_validation_test.cpython-37.pyc
│   │   │   │   ├── multi_build_test.cpython-37.pyc
│   │   │   │   ├── multi_remotes_test.cpython-37.pyc
│   │   │   │   ├── multi_remote_test.cpython-37.pyc
│   │   │   │   ├── only_source_test.cpython-37.pyc
│   │   │   │   ├── options_test.cpython-37.pyc
│   │   │   │   ├── order_libs_test.cpython-37.pyc
│   │   │   │   ├── package_id_test.cpython-37.pyc
│   │   │   │   ├── package_info_test.cpython-37.pyc
│   │   │   │   ├── pkg_config_test.cpython-37.pyc
│   │   │   │   ├── revisions_test.cpython-37.pyc
│   │   │   │   ├── run_envronment_test.cpython-37.pyc
│   │   │   │   ├── same_userchannel_test.cpython-37.pyc
│   │   │   │   ├── settings_override_test.cpython-37.pyc
│   │   │   │   ├── shared_chain_test.cpython-37.pyc
│   │   │   │   ├── symlinks_test.cpython-37.pyc
│   │   │   │   ├── syncronize_test.cpython-37.pyc
│   │   │   │   ├── system_reqs_test.cpython-37.pyc
│   │   │   │   ├── test_build_info_extraction.cpython-37.pyc
│   │   │   │   ├── test_package_config_test.cpython-37.pyc
│   │   │   │   └── workspace_test.cpython-37.pyc
│   │   │   ├── revisions_test.py
│   │   │   ├── run_envronment_test.py
│   │   │   ├── same_userchannel_test.py
│   │   │   ├── settings_override_test.py
│   │   │   ├── shared_chain_test.py
│   │   │   ├── symlinks_test.py
│   │   │   ├── syncronize_test.py
│   │   │   ├── system_reqs_test.py
│   │   │   ├── test_build_info_extraction.py
│   │   │   ├── test_package_config_test.py
│   │   │   └── workspace_test.py
│   │   ├── optimize_conanfile_load_test.py
│   │   ├── __pycache__
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   └── optimize_conanfile_load_test.cpython-37.pyc
│   │   ├── unittests
│   │   │   ├── client
│   │   │   │   ├── build
│   │   │   │   │   ├── autotools_environment_test.py
│   │   │   │   │   ├── cmake_flags.py
│   │   │   │   │   ├── cmake_test.py
│   │   │   │   │   ├── compiler_flags_test.py
│   │   │   │   │   ├── cpp_std_flags_test.py
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── meson_test.py
│   │   │   │   │   ├── msbuild_test.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── autotools_environment_test.cpython-37.pyc
│   │   │   │   │   │   ├── cmake_flags.cpython-37.pyc
│   │   │   │   │   │   ├── cmake_test.cpython-37.pyc
│   │   │   │   │   │   ├── compiler_flags_test.cpython-37.pyc
│   │   │   │   │   │   ├── cpp_std_flags_test.cpython-37.pyc
│   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   ├── meson_test.cpython-37.pyc
│   │   │   │   │   │   ├── msbuild_test.cpython-37.pyc
│   │   │   │   │   │   └── visual_environment.cpython-37.pyc
│   │   │   │   │   └── visual_environment.py
│   │   │   │   ├── cmd
│   │   │   │   │   ├── ast_replacement_scm_test.py
│   │   │   │   │   ├── export
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   │   └── test_capture_export_scm_data.cpython-37.pyc
│   │   │   │   │   │   └── test_capture_export_scm_data.py
│   │   │   │   │   ├── export_test.py
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   └── __pycache__
│   │   │   │   │   ├── ast_replacement_scm_test.cpython-37.pyc
│   │   │   │   │   ├── export_test.cpython-37.pyc
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   ├── conanfile_loader_test.py
│   │   │   │   ├── conan_output_test.py
│   │   │   │   ├── conf
│   │   │   │   │   ├── config_installer_test.py
│   │   │   │   │   ├── detect
│   │   │   │   │   │   ├── detected_os_test.py
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   └── __pycache__
│   │   │   │   │   │   ├── detected_os_test.cpython-37.pyc
│   │   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   └── __pycache__
│   │   │   │   │   ├── config_installer_test.cpython-37.pyc
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   ├── generators
│   │   │   │   │   ├── b2_test.py
│   │   │   │   │   ├── boost_build_test.py
│   │   │   │   │   ├── cmake_paths_test.py
│   │   │   │   │   ├── cmake_test.py
│   │   │   │   │   ├── compiler_args_test.py
│   │   │   │   │   ├── generator_filter_error_test.py
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── json_test.py
│   │   │   │   │   ├── make_test.py
│   │   │   │   │   ├── pkg_config_test.py
│   │   │   │   │   ├── premake_test.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── b2_test.cpython-37.pyc
│   │   │   │   │   │   ├── boost_build_test.cpython-37.pyc
│   │   │   │   │   │   ├── cmake_paths_test.cpython-37.pyc
│   │   │   │   │   │   ├── cmake_test.cpython-37.pyc
│   │   │   │   │   │   ├── compiler_args_test.cpython-37.pyc
│   │   │   │   │   │   ├── generator_filter_error_test.cpython-37.pyc
│   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   ├── json_test.cpython-37.pyc
│   │   │   │   │   │   ├── make_test.cpython-37.pyc
│   │   │   │   │   │   ├── pkg_config_test.cpython-37.pyc
│   │   │   │   │   │   ├── premake_test.cpython-37.pyc
│   │   │   │   │   │   ├── scons_test.cpython-37.pyc
│   │   │   │   │   │   ├── virtualenv_test.cpython-37.pyc
│   │   │   │   │   │   ├── visual_studio_legacy_test.cpython-37.pyc
│   │   │   │   │   │   ├── visual_studio_multi_test.cpython-37.pyc
│   │   │   │   │   │   └── visual_studio_test.cpython-37.pyc
│   │   │   │   │   ├── scons_test.py
│   │   │   │   │   ├── virtualenv_test.py
│   │   │   │   │   ├── visual_studio_legacy_test.py
│   │   │   │   │   ├── visual_studio_multi_test.py
│   │   │   │   │   └── visual_studio_test.py
│   │   │   │   ├── graph
│   │   │   │   │   ├── build_mode_test.py
│   │   │   │   │   ├── deps_graph_test.py
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── build_mode_test.cpython-37.pyc
│   │   │   │   │   │   ├── deps_graph_test.cpython-37.pyc
│   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   └── test_range_resolver.cpython-37.pyc
│   │   │   │   │   └── test_range_resolver.py
│   │   │   │   ├── hook_manager_test.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── loader_test.py
│   │   │   │   ├── profile_loader_test.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── conanfile_loader_test.cpython-37.pyc
│   │   │   │   │   ├── conan_output_test.cpython-37.pyc
│   │   │   │   │   ├── hook_manager_test.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── loader_test.cpython-37.pyc
│   │   │   │   │   ├── profile_loader_test.cpython-37.pyc
│   │   │   │   │   ├── remote_manager_test.cpython-37.pyc
│   │   │   │   │   └── userio_test.cpython-37.pyc
│   │   │   │   ├── recorder
│   │   │   │   │   ├── action_recorder_test.py
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── action_recorder_test.cpython-37.pyc
│   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   ├── search_recorder_test.cpython-37.pyc
│   │   │   │   │   │   └── upload_recorder_test.cpython-37.pyc
│   │   │   │   │   ├── search_recorder_test.py
│   │   │   │   │   └── upload_recorder_test.py
│   │   │   │   ├── remote_manager_test.py
│   │   │   │   ├── source
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   └── test_run_scm.cpython-37.pyc
│   │   │   │   │   └── test_run_scm.py
│   │   │   │   ├── tools
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── net_test.py
│   │   │   │   │   ├── os_info
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   ├── osinfo_test.py
│   │   │   │   │   │   └── __pycache__
│   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   └── osinfo_test.cpython-37.pyc
│   │   │   │   │   ├── oss
│   │   │   │   │   │   ├── get_cross_building_settings_test.py
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   └── __pycache__
│   │   │   │   │   │   ├── get_cross_building_settings_test.cpython-37.pyc
│   │   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   ├── net_test.cpython-37.pyc
│   │   │   │   │   │   ├── test_env.cpython-37.pyc
│   │   │   │   │   │   └── test_files.cpython-37.pyc
│   │   │   │   │   ├── scm
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   │   ├── test_git.cpython-37.pyc
│   │   │   │   │   │   │   ├── test_scm_base.cpython-37.pyc
│   │   │   │   │   │   │   └── test_svn.cpython-37.pyc
│   │   │   │   │   │   ├── test_git.py
│   │   │   │   │   │   ├── test_scm_base.py
│   │   │   │   │   │   └── test_svn.py
│   │   │   │   │   ├── test_env.py
│   │   │   │   │   └── test_files.py
│   │   │   │   ├── userio_test.py
│   │   │   │   └── util
│   │   │   │   ├── files_test.py
│   │   │   │   ├── __init__.py
│   │   │   │   └── __pycache__
│   │   │   │   ├── files_test.cpython-37.pyc
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   ├── __init__.py
│   │   │   ├── model
│   │   │   │   ├── build_info_test.py
│   │   │   │   ├── conanfile_test.py
│   │   │   │   ├── editable_cpp_info
│   │   │   │   │   ├── apply_test.py
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── parse_test.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── apply_test.cpython-37.pyc
│   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   ├── parse_test.cpython-37.pyc
│   │   │   │   │   │   └── work_on_items_test.cpython-37.pyc
│   │   │   │   │   └── work_on_items_test.py
│   │   │   │   ├── env_test.py
│   │   │   │   ├── fake_retriever.py
│   │   │   │   ├── info
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   └── vs_toolset_compatible_test.cpython-37.pyc
│   │   │   │   │   └── vs_toolset_compatible_test.py
│   │   │   │   ├── info_test.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── manifest_test.py
│   │   │   │   ├── options_test.py
│   │   │   │   ├── other_settings_test.py
│   │   │   │   ├── package_metadata_test.py
│   │   │   │   ├── profile_test.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── build_info_test.cpython-37.pyc
│   │   │   │   │   ├── conanfile_test.cpython-37.pyc
│   │   │   │   │   ├── env_test.cpython-37.pyc
│   │   │   │   │   ├── fake_retriever.cpython-37.pyc
│   │   │   │   │   ├── info_test.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── manifest_test.cpython-37.pyc
│   │   │   │   │   ├── options_test.cpython-37.pyc
│   │   │   │   │   ├── other_settings_test.cpython-37.pyc
│   │   │   │   │   ├── package_metadata_test.cpython-37.pyc
│   │   │   │   │   ├── profile_test.cpython-37.pyc
│   │   │   │   │   ├── ref_test.cpython-37.pyc
│   │   │   │   │   ├── settings_test.cpython-37.pyc
│   │   │   │   │   ├── transitive_reqs_test.cpython-37.pyc
│   │   │   │   │   ├── values_test.cpython-37.pyc
│   │   │   │   │   ├── version_ranges_test.cpython-37.pyc
│   │   │   │   │   └── version_test.cpython-37.pyc
│   │   │   │   ├── ref_test.py
│   │   │   │   ├── settings_test.py
│   │   │   │   ├── transitive_reqs_test.py
│   │   │   │   ├── values_test.py
│   │   │   │   ├── version_ranges_test.py
│   │   │   │   └── version_test.py
│   │   │   ├── __pycache__
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   ├── search
│   │   │   │   ├── disk_search_test.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── disk_search_test.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   └── search_query_parse_test.cpython-37.pyc
│   │   │   │   └── search_query_parse_test.py
│   │   │   ├── server
│   │   │   │   ├── authenticator_plugin_test.py
│   │   │   │   ├── conan_server_config_parser_test.py
│   │   │   │   ├── conf_test.py
│   │   │   │   ├── crypto
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── jwt_test.py
│   │   │   │   │   └── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   └── jwt_test.cpython-37.pyc
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── authenticator_plugin_test.cpython-37.pyc
│   │   │   │   │   ├── conan_server_config_parser_test.cpython-37.pyc
│   │   │   │   │   ├── conf_test.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   └── revision_list_test.cpython-37.pyc
│   │   │   │   ├── revision_list_test.py
│   │   │   │   └── service
│   │   │   │   ├── authorizer_test.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── authorizer_test.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   └── service_test.cpython-37.pyc
│   │   │   │   └── service_test.py
│   │   │   ├── source
│   │   │   │   ├── __init__.py
│   │   │   │   ├── merge_directories_test.py
│   │   │   │   └── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   └── merge_directories_test.cpython-37.pyc
│   │   │   └── util
│   │   │   ├── apple_test.py
│   │   │   ├── build_sln_command_test.py
│   │   │   ├── client_conf_test.py
│   │   │   ├── conanfile_tools_test.py
│   │   │   ├── detected_architecture_test.py
│   │   │   ├── detect_test.py
│   │   │   ├── file_hashes_test.py
│   │   │   ├── files
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   └── test_remove.cpython-37.pyc
│   │   │   │   └── test_remove.py
│   │   │   ├── files_extract_wildcard_test.py
│   │   │   ├── files_test.py
│   │   │   ├── hashed_path_test.py
│   │   │   ├── __init__.py
│   │   │   ├── local_db_test.py
│   │   │   ├── msvs_toolset_test.py
│   │   │   ├── output_test.py
│   │   │   ├── pkg_config_test.py
│   │   │   ├── __pycache__
│   │   │   │   ├── apple_test.cpython-37.pyc
│   │   │   │   ├── build_sln_command_test.cpython-37.pyc
│   │   │   │   ├── client_conf_test.cpython-37.pyc
│   │   │   │   ├── conanfile_tools_test.cpython-37.pyc
│   │   │   │   ├── detected_architecture_test.cpython-37.pyc
│   │   │   │   ├── detect_test.cpython-37.pyc
│   │   │   │   ├── file_hashes_test.cpython-37.pyc
│   │   │   │   ├── files_extract_wildcard_test.cpython-37.pyc
│   │   │   │   ├── files_test.cpython-37.pyc
│   │   │   │   ├── hashed_path_test.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── local_db_test.cpython-37.pyc
│   │   │   │   ├── msvs_toolset_test.cpython-37.pyc
│   │   │   │   ├── output_test.cpython-37.pyc
│   │   │   │   ├── pkg_config_test.cpython-37.pyc
│   │   │   │   ├── read_only_test.cpython-37.pyc
│   │   │   │   ├── tools_test.cpython-37.pyc
│   │   │   │   ├── unix_path_test.cpython-37.pyc
│   │   │   │   ├── vcvars_arch_test.cpython-37.pyc
│   │   │   │   ├── vcvars_clangcl_test.cpython-37.pyc
│   │   │   │   ├── vcvars_env_test.cpython-37.pyc
│   │   │   │   ├── vcvars_store_test.cpython-37.pyc
│   │   │   │   ├── which_test.cpython-37.pyc
│   │   │   │   ├── xz_test.cpython-37.pyc
│   │   │   │   └── zip_permissions_test.cpython-37.pyc
│   │   │   ├── read_only_test.py
│   │   │   ├── tools_test.py
│   │   │   ├── unix_path_test.py
│   │   │   ├── vcvars_arch_test.py
│   │   │   ├── vcvars_clangcl_test.py
│   │   │   ├── vcvars_env_test.py
│   │   │   ├── vcvars_store_test.py
│   │   │   ├── which_test.py
│   │   │   ├── xz_test.py
│   │   │   └── zip_permissions_test.py
│   │   └── utils
│   │   ├── conanfile.py
│   │   ├── cpp_test_files.py
│   │   ├── go_test_files.py
│   │   ├── __init__.py
│   │   ├── multi_config.py
│   │   ├── profiles.py
│   │   ├── __pycache__
│   │   │   ├── conanfile.cpython-37.pyc
│   │   │   ├── cpp_test_files.cpython-37.pyc
│   │   │   ├── go_test_files.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── multi_config.cpython-37.pyc
│   │   │   ├── profiles.cpython-37.pyc
│   │   │   ├── python_test_files.cpython-37.pyc
│   │   │   ├── runner.cpython-37.pyc
│   │   │   ├── server_launcher.cpython-37.pyc
│   │   │   ├── test_files.cpython-37.pyc
│   │   │   ├── tools.cpython-37.pyc
│   │   │   └── visual_project_files.cpython-37.pyc
│   │   ├── python_test_files.py
│   │   ├── runner.py
│   │   ├── server_launcher.py
│   │   ├── test_files.py
│   │   ├── tools.py
│   │   └── visual_project_files.py
│   ├── tools.py
│   ├── unicode.py
│   └── util
│   ├── config_parser.py
│   ├── env_reader.py
│   ├── fallbacks.py
│   ├── files.py
│   ├── __init__.py
│   ├── locks.py
│   ├── log.py
│   ├── progress_bar.py
│   ├── __pycache__
│   │   ├── config_parser.cpython-37.pyc
│   │   ├── env_reader.cpython-37.pyc
│   │   ├── fallbacks.cpython-37.pyc
│   │   ├── files.cpython-37.pyc
│   │   ├── __init__.cpython-37.pyc
│   │   ├── locks.cpython-37.pyc
│   │   ├── log.cpython-37.pyc
│   │   ├── progress_bar.cpython-37.pyc
│   │   ├── sha.cpython-37.pyc
│   │   ├── tracer.cpython-37.pyc
│   │   └── windows.cpython-37.pyc
│   ├── sha.py
│   ├── tracer.py
│   └── windows.py
└── nix-support
└── propagated-build-inputs
158 directories, 1183 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment