├── .dprint.jsonc ├── .gitattributes ├── .github ├── actionlint.yaml ├── dependabot.yml └── workflows │ ├── docs.yml │ ├── end-to-end.yml │ ├── enforce-sha.yaml │ ├── lint.yml │ ├── python-bindings.yml │ ├── python-release.yml │ └── rust.yml ├── .gitignore ├── .gitmodules ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── SECURITY.md ├── benches ├── line_breaks.rs └── parse_file.rs ├── cliff.toml ├── clippy.toml ├── crates ├── rattler_build_allocator │ ├── Cargo.toml │ └── src │ │ └── lib.rs └── rattler_build_recipe_generator │ ├── Cargo.toml │ └── src │ ├── cpan.rs │ ├── cran.rs │ ├── lib.rs │ ├── luarocks │ ├── json.lua │ └── mod.rs │ ├── pypi.rs │ ├── serialize.rs │ └── snapshots │ ├── rattler_build_recipe_generator__pypi__tests__flask_noarch_recipe_generation.snap │ └── rattler_build_recipe_generator__pypi__tests__recipe_generation.snap ├── deny.toml ├── docs ├── assets │ ├── favicon.png │ ├── logo_dark.svg │ ├── logo_light.svg │ ├── paxton-builder-mascot.svg │ ├── paxton-mascot-socialcard.png │ ├── prefix-logo-white.png │ ├── rattler-build-logo-no-padding.svg │ └── trusted_publisher.png ├── authentication_and_upload.md ├── automatic_linting.md ├── build_options.md ├── build_script.md ├── bump_recipe.md ├── compilers.md ├── conda_forge.md ├── config.md ├── converting_from_conda_build.md ├── create_patch.md ├── debugging_builds.md ├── experimental_features.md ├── generator │ └── generate-cli-docs.rs ├── getting_started.md ├── highlevel.md ├── index.md ├── internals.md ├── layouts │ ├── custom.yml │ └── download-font-to-cache.sh ├── multiple_output_cache.md ├── overrides │ └── partials │ │ └── footer.html ├── package_spec.md ├── publish.md ├── rebuild.md ├── recipe_generation.md ├── reference │ ├── cli.md │ ├── jinja.md │ ├── python_bindings.md │ └── recipe_file.md ├── sandbox.md ├── selectors.md ├── special_files.md ├── stylesheets │ ├── extra.css │ └── fonts.css ├── system_integration.md ├── testing.md ├── tips_and_tricks.md ├── tui.md ├── tutorials │ ├── cpp.md │ ├── go.md │ ├── index.md │ ├── javascript.md │ ├── perl.md │ ├── python.md │ ├── r.md │ ├── repackaging.md │ └── rust.md ├── understanding_terminal_output.md ├── variants.md └── windows_quirks.md ├── examples ├── bitfurnace │ ├── README.md │ ├── recipe.yaml │ └── xtensor.yaml ├── cargo-edit │ ├── recipe.yaml │ └── variant_config.yaml ├── curl │ ├── build.bat │ ├── build.sh │ └── recipe.yaml ├── linking │ ├── recipe.yaml │ └── zlink │ │ ├── CMakeLists.txt │ │ └── src │ │ └── main.c ├── mamba │ ├── build_mamba.bat │ ├── build_mamba.sh │ ├── recipe.yaml │ └── variant_config.yaml ├── match_and_cdt │ ├── recipe.yaml │ └── variant_config.yaml ├── rattler-build │ └── variant_config.yaml ├── recipe-folder │ ├── package-a │ │ └── recipe.yaml │ ├── package-b │ │ └── recipe.yaml │ └── package-c │ │ └── recipe.yaml ├── rich │ └── recipe.yaml ├── ros-humble-turtlebot4-msgs │ ├── bld_ament_cmake.bat │ ├── build_ament_cmake.sh │ ├── recipe.yaml │ └── variant_config.yaml └── xtensor │ ├── build.nu │ └── recipe.yaml ├── lefthook.yaml ├── mkdocs.yml ├── pixi.lock ├── pixi.toml ├── py-rattler-build ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── examples │ └── basic.py ├── pixi.lock ├── pixi.toml ├── pyproject.toml ├── rattler_build │ ├── __init__.py │ ├── recipe.py │ └── recipe_generation.py ├── src │ ├── error.rs │ └── lib.rs └── tests │ ├── data │ └── recipes │ │ ├── dummy │ │ └── recipe.yaml │ │ └── test-package │ │ └── recipe.yaml │ └── unit │ ├── conftest.py │ ├── test_basic.py │ ├── test_generators.py │ └── test_recipe_oop.py ├── pytest.ini ├── rust-tests ├── Cargo.toml └── src │ └── lib.rs ├── rust-toolchain ├── scripts ├── activate.bat ├── activate.sh └── patch-apply-gen-test-data.rs ├── src ├── build.rs ├── bump_recipe.rs ├── cache.rs ├── conda_build_config.rs ├── console_utils.rs ├── consts.rs ├── env_vars.rs ├── hash.rs ├── lib.rs ├── linux │ ├── env.rs │ ├── link.rs │ └── mod.rs ├── macos │ ├── env.rs │ ├── link.rs │ └── mod.rs ├── main.rs ├── metadata.rs ├── normalized_key.rs ├── opt.rs ├── package_cache_reporter.rs ├── package_info.rs ├── package_test │ ├── content_test.rs │ ├── mod.rs │ ├── run_test.rs │ └── serialize_test.rs ├── packaging.rs ├── packaging │ ├── file_finder.rs │ ├── file_mapper.rs │ └── metadata.rs ├── post_process │ ├── checks.rs │ ├── menuinst.rs │ ├── mod.rs │ ├── package_nature.rs │ ├── path_checks.rs │ ├── python.rs │ ├── regex_replacements.rs │ ├── relink.rs │ └── snapshots │ │ ├── rattler_build__post_process__python__tests__replace_shebang_in_file-2.snap │ │ └── rattler_build__post_process__python__tests__replace_shebang_in_file.snap ├── publish.rs ├── rebuild.rs ├── recipe.rs ├── recipe │ ├── custom_yaml.rs │ ├── custom_yaml │ │ └── rendered.rs │ ├── error.rs │ ├── jinja.rs │ ├── parser.rs │ ├── parser │ │ ├── about.rs │ │ ├── build.rs │ │ ├── cache.rs │ │ ├── glob_vec.rs │ │ ├── helper.rs │ │ ├── output.rs │ │ ├── package.rs │ │ ├── regex.rs │ │ ├── requirements.rs │ │ ├── script.rs │ │ ├── skip.rs │ │ ├── snapshots │ │ │ ├── rattler_build__recipe__parser__about__test__invalid_license.snap │ │ │ ├── rattler_build__recipe__parser__about__test__invalid_url.snap │ │ │ ├── rattler_build__recipe__parser__glob_vec__tests__parsing_all_or_globvec-2.snap │ │ │ ├── rattler_build__recipe__parser__glob_vec__tests__parsing_all_or_globvec-3.snap │ │ │ ├── rattler_build__recipe__parser__glob_vec__tests__parsing_all_or_globvec.snap │ │ │ ├── rattler_build__recipe__parser__glob_vec__tests__parsing_glob_checker_vec.snap │ │ │ ├── rattler_build__recipe__parser__glob_vec__tests__parsing_globvec-2.snap │ │ │ ├── rattler_build__recipe__parser__glob_vec__tests__parsing_globvec.snap │ │ │ ├── rattler_build__recipe__parser__glob_vec__tests__parsing_globvec_fail.snap │ │ │ ├── rattler_build__recipe__parser__output__tests__recipe_outputs_merging.snap │ │ │ ├── rattler_build__recipe__parser__output__tests__recipe_schema_error-2.snap │ │ │ ├── rattler_build__recipe__parser__output__tests__recipe_schema_error-3.snap │ │ │ ├── rattler_build__recipe__parser__output__tests__recipe_schema_error-4.snap │ │ │ ├── rattler_build__recipe__parser__output__tests__recipe_schema_error.snap │ │ │ ├── rattler_build__recipe__parser__package__tests__invalid_fields.snap │ │ │ ├── rattler_build__recipe__parser__package__tests__missing_fields.snap │ │ │ ├── rattler_build__recipe__parser__requirements__test__compiler_serde-2.snap │ │ │ ├── rattler_build__recipe__parser__requirements__test__compiler_serde.snap │ │ │ ├── rattler_build__recipe__parser__requirements__test__pin_package.snap │ │ │ ├── rattler_build__recipe__parser__source__tests__git_serialization.snap │ │ │ ├── rattler_build__recipe__parser__source__tests__git_source_with_expected_commit.snap │ │ │ ├── rattler_build__recipe__parser__source__tests__ssh_serialization.snap │ │ │ ├── rattler_build__recipe__parser__test__test__package_contents_parsing.snap │ │ │ ├── rattler_build__recipe__parser__test__test__parsing.snap │ │ │ ├── rattler_build__recipe__parser__test__test__python_parsing.snap │ │ │ └── rattler_build__recipe__parser__test__test__script_parsing.snap │ │ ├── source.rs │ │ └── test.rs │ ├── snapshots │ │ ├── rattler_build__recipe__error__tests__miette_output.snap │ │ ├── rattler_build__recipe__parser__tests__bad_skip_multi_output.snap │ │ ├── rattler_build__recipe__parser__tests__bad_skip_single_output.snap │ │ ├── rattler_build__recipe__parser__tests__binary_relocation.snap │ │ ├── rattler_build__recipe__parser__tests__binary_relocation_paths.snap │ │ ├── rattler_build__recipe__parser__tests__complete_recipe.snap │ │ ├── rattler_build__recipe__parser__tests__context_not_mapping.snap │ │ ├── rattler_build__recipe__parser__tests__context_value_not_scalar.snap │ │ ├── rattler_build__recipe__parser__tests__context_value_not_uniform_list.snap │ │ ├── rattler_build__recipe__parser__tests__context_variable_with_hyphen.snap │ │ ├── rattler_build__recipe__parser__tests__duplicate_keys_error.snap │ │ ├── rattler_build__recipe__parser__tests__invalid_root_field.snap │ │ ├── rattler_build__recipe__parser__tests__jinja_error.snap │ │ ├── rattler_build__recipe__parser__tests__jinja_sequence.snap │ │ ├── rattler_build__recipe__parser__tests__map_null_values.snap │ │ ├── rattler_build__recipe__parser__tests__recipe_windows.snap │ │ └── rattler_build__recipe__parser__tests__unix_recipe.snap │ └── variable.rs ├── recipe_generator │ ├── mod.rs │ └── snapshots │ │ ├── rattler_build__recipe_generator__pypi__tests__flask_noarch_recipe_generation.snap │ │ └── rattler_build__recipe_generator__pypi__tests__recipe_generation.snap ├── render │ ├── mod.rs │ ├── pin.rs │ ├── reporters.rs │ ├── resolved_dependencies.rs │ ├── run_exports.rs │ ├── snapshots │ │ └── rattler_build__render__resolved_dependencies__tests__dependency_info_render.snap │ ├── solver.rs │ └── test-data │ │ └── list.yaml ├── script │ ├── interpreter │ │ ├── bash.rs │ │ ├── cmd_exe.rs │ │ ├── mod.rs │ │ ├── nodejs.rs │ │ ├── nushell.rs │ │ ├── perl.rs │ │ ├── python.rs │ │ ├── r.rs │ │ └── ruby.rs │ ├── mod.rs │ └── sandbox.rs ├── selectors.rs ├── snapshots │ ├── rattler_build__conda_build_config__tests__conda_build_config__all_filtered.yaml_none.snap │ ├── rattler_build__conda_build_config__tests__conda_build_config__conda_forge_subset.yaml_false.snap │ ├── rattler_build__conda_build_config__tests__conda_build_config__conda_forge_subset.yaml_none.snap │ ├── rattler_build__conda_build_config__tests__conda_build_config__conda_forge_subset.yaml_true.snap │ ├── rattler_build__conda_build_config__tests__conda_build_config__test_1.yaml_none.snap │ ├── rattler_build__metadata__test__curl_recipe.yaml.snap │ ├── rattler_build__metadata__test__read_recipe_with_sources.snap │ ├── rattler_build__metadata__test__resolved_dependencies_rendering.snap │ ├── rattler_build__metadata__test__rich_recipe.yaml.snap │ ├── rattler_build__system_tools__tests__serialize.snap │ ├── rattler_build__variant_config__tests__flatten_selectors-2.snap │ ├── rattler_build__variant_config__tests__flatten_selectors.snap │ ├── rattler_build__variant_config__tests__load_config.snap │ ├── rattler_build__variant_config__tests__load_config_and_find_variants.snap │ └── rattler_build__variant_config__tests__python_is_not_used_as_variant_when_noarch.snap ├── source │ ├── checksum.rs │ ├── copy_dir.rs │ ├── create_patch.rs │ ├── extract.rs │ ├── git_source.rs │ ├── mod.rs │ ├── patch.rs │ ├── snapshots │ │ └── rattler_build__source__patch__tests__love2d.snap │ └── url_source.rs ├── source_code.rs ├── system_tools.rs ├── tool_configuration.rs ├── tui │ ├── event.rs │ ├── logger.rs │ ├── mod.rs │ ├── render.rs │ ├── state.rs │ └── utils.rs ├── types │ ├── build_configuration.rs │ ├── build_output.rs │ ├── directories.rs │ └── mod.rs ├── unix │ ├── env.rs │ ├── mod.rs │ └── permission_guard.rs ├── used_variables.rs ├── utils.rs ├── variant_config.rs ├── variant_render.rs └── windows │ ├── env.rs │ ├── link.rs │ └── mod.rs ├── tbump.toml ├── test-data ├── binary_files │ ├── binary_file_fallback │ ├── simple-elf.o │ ├── simple-macho.o │ ├── simple.c │ ├── simple.dylib │ ├── simple.so │ ├── windows │ │ └── zstd │ │ │ └── Library │ │ │ └── bin │ │ │ └── zstd.dll │ ├── zlink │ ├── zlink-macos │ ├── zlink-no-rpath │ └── zlink-runpath ├── conda_build_config │ ├── all_filtered.yaml │ ├── conda_forge_subset.yaml │ └── test_1.yaml ├── package_content │ ├── test_bin_unix.yaml │ ├── test_bin_win.yaml │ ├── test_files.yaml │ ├── test_include_unix.yaml │ ├── test_include_win.yaml │ ├── test_lib_linux.yaml │ ├── test_lib_macos.yaml │ ├── test_lib_win.yaml │ ├── test_site_packages_unix.yaml │ └── test_site_packages_win.yaml ├── patch_application │ ├── patches │ │ ├── 0001-increase-minimum-cmake-version.patch │ │ ├── test.patch │ │ ├── test_create_delete.patch │ │ ├── test_mixed_existing.patch │ │ ├── test_pure_rename.patch │ │ ├── test_simple_mixed.patch │ │ ├── test_strip_level_edge_case.patch │ │ ├── test_with_bak.patch │ │ └── test_with_orig.patch │ └── workdir │ │ ├── CMakeLists.txt │ │ ├── deep │ │ └── nested │ │ │ └── directory │ │ │ └── deep_file.txt │ │ ├── existing_file.txt │ │ ├── text.md │ │ ├── tinygrad │ │ └── frontend │ │ │ ├── __init__.py │ │ │ ├── onnx.py │ │ │ └── torch.py │ │ └── to_be_deleted.txt ├── patches │ ├── 0001-cross.patch.fail │ ├── CVE-2019-12211-13.patch │ ├── define_byteswap.patch │ ├── nested.patch │ ├── simple.patch │ └── usecmake.patch ├── pins.yaml ├── recipes │ ├── 7z-source │ │ └── recipe.yaml │ ├── abi3 │ │ ├── recipe.yaml │ │ └── variants.yaml │ ├── allow_missing_dso │ │ └── recipe.yaml │ ├── always-copy-files │ │ └── recipe.yaml │ ├── always-include-files │ │ └── recipe.yaml │ ├── binary_prefix_test │ │ └── recipe.yaml │ ├── build_files │ │ └── recipe.yaml │ ├── cache │ │ ├── recipe-cmake.yaml │ │ ├── recipe-compiler.yaml │ │ └── recipe-symlinks.yaml │ ├── cache_run_exports │ │ ├── helper.yaml │ │ ├── recipe_test_1.yaml │ │ ├── recipe_test_2.yaml │ │ └── recipe_test_3.yaml │ ├── case-insensitive │ │ └── recipe.yaml │ ├── channel_sources │ │ ├── conda_build_config.yaml │ │ └── recipe.yaml │ ├── channel_specific │ │ └── recipe.yaml │ ├── console_logging │ │ └── recipe.yaml │ ├── correct-sha │ │ └── recipe.yaml │ ├── crazy_characters │ │ ├── recipe.yaml │ │ └── test.py │ ├── debug-multiple-outputs │ │ └── recipe.yaml │ ├── debug_test │ │ └── recipe.yaml │ ├── double_license │ │ ├── license.txt │ │ └── recipe.yaml │ ├── down_prioritize │ │ └── recipe.yaml │ ├── downstream_test │ │ ├── fail.yaml │ │ ├── fail_prelim.yaml │ │ └── succeed.yaml │ ├── empty_folder │ │ └── recipe.yaml │ ├── entry_points │ │ └── additional_entrypoints.yaml │ ├── env_vars │ │ ├── recipe.yaml │ │ └── variants.yaml │ ├── filter_files │ │ └── recipe.yaml │ ├── flask │ │ └── recipe.yaml │ ├── git_source │ │ └── recipe.yaml │ ├── git_source_expected_commit │ │ └── recipe.yaml │ ├── git_source_patch │ │ ├── patch │ │ │ └── ros-humble-ament-package.patch │ │ └── recipe.yaml │ ├── git_source_submodule │ │ └── recipe.yaml │ ├── globtest │ │ └── recipe.yaml │ ├── hatch_vcs │ │ └── recipe.yaml │ ├── interpreter-detection │ │ ├── bash │ │ │ ├── build.sh │ │ │ ├── recipe.yaml │ │ │ └── test.sh │ │ ├── bat │ │ │ ├── build.bat │ │ │ └── recipe.yaml │ │ ├── nu │ │ │ ├── build.nu │ │ │ └── recipe.yaml │ │ ├── pl │ │ │ ├── build.pl │ │ │ └── recipe.yaml │ │ ├── py │ │ │ ├── build.py │ │ │ └── recipe.yaml │ │ ├── r │ │ │ ├── build.r │ │ │ └── recipe.yaml │ │ └── recipe.yaml │ ├── jinja-types │ │ ├── recipe.yaml │ │ └── variants.yaml │ ├── line-breaks │ │ └── recipe.yaml │ ├── llamacpp │ │ └── recipe.yaml │ ├── merge_build_and_host │ │ └── recipe.yaml │ ├── missing_license_file │ │ └── recipe.yaml │ ├── missing_license_glob │ │ └── recipe.yaml │ ├── noarch_variant │ │ └── recipe.yaml │ ├── nodejs-extension-test │ │ ├── build.js │ │ └── recipe.yaml │ ├── nodejs-test │ │ └── recipe.yaml │ ├── nushell-script-detection │ │ ├── build.nu │ │ └── recipe.yaml │ ├── output_order │ │ └── order_1.yaml │ ├── overdepending │ │ └── recipe.yaml │ ├── overlinking │ │ └── recipe.yaml │ ├── package-content-tests │ │ ├── llama-recipe.yaml │ │ ├── recipe-test-fail.yaml │ │ ├── recipe-test-succeed.yaml │ │ ├── rich-recipe.yaml │ │ └── variant-config.yaml │ ├── patch_with_strip │ │ ├── 0001-Patch-with-levels-to-strip.patch │ │ ├── 0002-Patch-without-additional-levels.patch │ │ ├── recipe.yaml │ │ └── somefile.tar │ ├── pe-malformed-windows │ │ └── recipe.yaml │ ├── perl-test │ │ └── recipe.yaml │ ├── pin_compatible │ │ └── recipe.yaml │ ├── pin_subpackage │ │ └── recipe.yaml │ ├── pkg_hash │ │ └── recipe.yaml │ ├── polarify │ │ ├── linux_64_.yaml │ │ └── recipe.yaml │ ├── post-link │ │ └── recipe.yaml │ ├── prefix_detection │ │ ├── create_files_with_prefix.py │ │ └── recipe.yaml │ ├── private-repository │ │ └── recipe.yaml │ ├── python-version-spec │ │ └── recipe.yaml │ ├── python_compilation │ │ ├── recipe.py │ │ └── recipe.yaml │ ├── r-test │ │ └── recipe.yaml │ ├── race-condition │ │ ├── recipe-cycle.yaml │ │ ├── recipe-pin-invalid.yaml │ │ ├── recipe-pin-subpackage.yaml │ │ ├── recipe-python-min.yaml │ │ ├── recipe-undefined-variant.yaml │ │ ├── recipe.yaml │ │ └── variants.yaml │ ├── rattlerbuildignore │ │ └── recipe.yaml │ ├── read_only_build_files │ │ └── recipe.yaml │ ├── recipe_variant │ │ ├── recipe.yaml │ │ └── variants.yaml │ ├── regex_post_process │ │ ├── recipe.yaml │ │ ├── test.cmake │ │ └── test.pc │ ├── relative_file_loading │ │ ├── data │ │ │ └── package_data.yaml │ │ └── recipe.yaml │ ├── rich │ │ └── recipe.yaml │ ├── rpath │ │ └── recipe.yaml │ ├── ruby-extension-test │ │ ├── build.rb │ │ └── recipe.yaml │ ├── ruby-imports-test │ │ └── recipe.yaml │ ├── ruby-test │ │ └── recipe.yaml │ ├── run_exports │ │ ├── multi_run_exports_dict.yaml │ │ ├── multi_run_exports_list.yaml │ │ └── recipe.yaml │ ├── run_exports_from │ │ └── recipe.yaml │ ├── script │ │ ├── recipe.yaml │ │ ├── recipe_with_extensions.yaml │ │ ├── script.bat │ │ └── script.sh │ ├── script_env │ │ └── recipe.yaml │ ├── simple-nodejs-test │ │ └── recipe.yaml │ ├── simple-ruby-test │ │ └── recipe.yaml │ ├── source_filter │ │ ├── recipe.yaml │ │ └── test-folder │ │ │ ├── excluded.txt │ │ │ ├── included.txt │ │ │ └── not-included │ ├── sourceforge-redirects │ │ └── recipe.yaml │ ├── spaces-in-paths │ │ ├── recipe-with-quotes.yaml │ │ └── recipe.yaml │ ├── ssl_test │ │ └── recipe.yaml │ ├── strict-mode │ │ ├── recipe-fail.yaml │ │ ├── recipe-many-files.yaml │ │ └── recipe-pass.yaml │ ├── symlink │ │ └── recipe.yaml │ ├── symlink_test │ │ └── recipe.yaml │ ├── tar-source │ │ └── recipe.yaml │ ├── test-execution │ │ ├── recipe-test-fail.yaml │ │ ├── recipe-test-succeed.yaml │ │ ├── testfile.txt │ │ └── testfolder │ │ │ └── data.txt │ ├── test-parsing │ │ ├── map_jinja_null_values.yaml │ │ ├── recipe_bad_skip.yaml │ │ ├── recipe_bad_skip_multi.yaml │ │ ├── recipe_build_binary_relocation.yaml │ │ ├── recipe_build_binary_relocation_paths.yaml │ │ ├── recipe_duplicate_keys.yaml │ │ ├── recipe_ignore_run_exports.yaml │ │ ├── recipe_inline_jinja.yaml │ │ ├── recipe_jinja_error.yaml │ │ ├── recipe_missing_version.yaml │ │ ├── recipe_outputs_and_package.yaml │ │ ├── recipe_outputs_and_requirements.yaml │ │ ├── recipe_outputs_extra_keys.yaml │ │ ├── recipe_outputs_merging.yaml │ │ ├── single_output.yaml │ │ └── xtensor.yaml │ ├── test-relink │ │ ├── absolute.c │ │ ├── build.sh │ │ ├── recipe.yaml │ │ ├── relative.c │ │ └── test_link.c │ ├── test-section │ │ └── script-test.yaml │ ├── test-sources │ │ ├── recipe.yaml │ │ ├── test-file.txt │ │ └── test-folder │ │ │ ├── test-file-2.txt │ │ │ └── test-file-3.txt │ ├── test_strategy │ │ ├── recipe-noarch.yaml │ │ └── recipe.yaml │ ├── timestamps │ │ ├── create_archive.sh │ │ ├── oldarchive.tar.gz │ │ └── recipe.yaml │ ├── toml │ │ ├── expected │ │ │ ├── about.json │ │ │ ├── index.json │ │ │ ├── link.json │ │ │ └── paths.json │ │ └── recipe.yaml │ ├── topological-sort-variants │ │ ├── pkg-a │ │ │ ├── recipe.yaml │ │ │ └── variants.yaml │ │ ├── pkg-b │ │ │ ├── recipe.yaml │ │ │ └── variants.yaml │ │ └── pkg-c │ │ │ ├── recipe.yaml │ │ │ └── variants.yaml │ ├── url-source-with-ignore │ │ └── recipe.yaml │ ├── used-vars │ │ ├── recipe_1.yaml │ │ └── variants.yaml │ ├── variant_config │ │ ├── recipe.yaml │ │ └── variant_config.yaml │ ├── variants │ │ ├── boltons_recipe.yaml │ │ ├── issue_variant_ignore.yaml │ │ ├── python_variant.yaml │ │ ├── recipe.yaml │ │ └── variant_config.yaml │ ├── win-symlink-test │ │ └── recipe.yaml │ └── zip-source │ │ └── recipe.yaml ├── rendered_recipes │ ├── curl_recipe.yaml │ ├── dependencies.yaml │ ├── git_source.yaml │ └── rich_recipe.yaml ├── selectors │ └── config_1.yaml ├── shebang │ ├── replace_shebang_1.py │ └── replace_shebang_2.py └── variant_files │ └── variant_config_1.yaml ├── test └── end-to-end │ ├── __snapshots__ │ ├── test_simple.ambr │ ├── test_simple │ │ ├── test_build_files.json │ │ ├── test_extra_meta_is_recorded_into_about_json.json │ │ ├── test_filter_files.json │ │ ├── test_git_submodule.json │ │ ├── test_jinja_types.1.json │ │ ├── test_jinja_types.json │ │ ├── test_pin_compatible.json │ │ ├── test_post_link.json │ │ ├── test_python_min_render.json │ │ ├── test_recipe_variant_render.1.json │ │ ├── test_recipe_variant_render.json │ │ ├── test_run_exports.json │ │ └── test_symlink_recipe.json │ ├── test_symlinks │ │ └── test_symlink_cache.json │ └── test_tests.ambr │ ├── conftest.py │ ├── helpers.py │ ├── test_create_patch.py │ ├── test_debug.py │ ├── test_ignore_keys_context.py │ ├── test_simple.py │ ├── test_ssl_handling.py │ ├── test_symlinks.py │ ├── test_tests.py │ └── test_variant_override.py └── typos.toml /.dprint.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/.dprint.jsonc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/actionlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/.github/actionlint.yaml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/end-to-end.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/.github/workflows/end-to-end.yml -------------------------------------------------------------------------------- /.github/workflows/enforce-sha.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/.github/workflows/enforce-sha.yaml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/python-bindings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/.github/workflows/python-bindings.yml -------------------------------------------------------------------------------- /.github/workflows/python-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/.github/workflows/python-release.yml -------------------------------------------------------------------------------- /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/.gitmodules -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/SECURITY.md -------------------------------------------------------------------------------- /benches/line_breaks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/benches/line_breaks.rs -------------------------------------------------------------------------------- /benches/parse_file.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/benches/parse_file.rs -------------------------------------------------------------------------------- /cliff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/cliff.toml -------------------------------------------------------------------------------- /clippy.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/clippy.toml -------------------------------------------------------------------------------- /crates/rattler_build_allocator/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/crates/rattler_build_allocator/Cargo.toml -------------------------------------------------------------------------------- /crates/rattler_build_allocator/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/crates/rattler_build_allocator/src/lib.rs -------------------------------------------------------------------------------- /crates/rattler_build_recipe_generator/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/crates/rattler_build_recipe_generator/Cargo.toml -------------------------------------------------------------------------------- /crates/rattler_build_recipe_generator/src/cpan.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/crates/rattler_build_recipe_generator/src/cpan.rs -------------------------------------------------------------------------------- /crates/rattler_build_recipe_generator/src/cran.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/crates/rattler_build_recipe_generator/src/cran.rs -------------------------------------------------------------------------------- /crates/rattler_build_recipe_generator/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/crates/rattler_build_recipe_generator/src/lib.rs -------------------------------------------------------------------------------- /crates/rattler_build_recipe_generator/src/luarocks/json.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/crates/rattler_build_recipe_generator/src/luarocks/json.lua -------------------------------------------------------------------------------- /crates/rattler_build_recipe_generator/src/luarocks/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/crates/rattler_build_recipe_generator/src/luarocks/mod.rs -------------------------------------------------------------------------------- /crates/rattler_build_recipe_generator/src/pypi.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/crates/rattler_build_recipe_generator/src/pypi.rs -------------------------------------------------------------------------------- /crates/rattler_build_recipe_generator/src/serialize.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/crates/rattler_build_recipe_generator/src/serialize.rs -------------------------------------------------------------------------------- /crates/rattler_build_recipe_generator/src/snapshots/rattler_build_recipe_generator__pypi__tests__flask_noarch_recipe_generation.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/crates/rattler_build_recipe_generator/src/snapshots/rattler_build_recipe_generator__pypi__tests__flask_noarch_recipe_generation.snap -------------------------------------------------------------------------------- /crates/rattler_build_recipe_generator/src/snapshots/rattler_build_recipe_generator__pypi__tests__recipe_generation.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/crates/rattler_build_recipe_generator/src/snapshots/rattler_build_recipe_generator__pypi__tests__recipe_generation.snap -------------------------------------------------------------------------------- /deny.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/deny.toml -------------------------------------------------------------------------------- /docs/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/docs/assets/favicon.png -------------------------------------------------------------------------------- /docs/assets/logo_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/docs/assets/logo_dark.svg -------------------------------------------------------------------------------- /docs/assets/logo_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/docs/assets/logo_light.svg -------------------------------------------------------------------------------- /docs/assets/paxton-builder-mascot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/docs/assets/paxton-builder-mascot.svg -------------------------------------------------------------------------------- /docs/assets/paxton-mascot-socialcard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/docs/assets/paxton-mascot-socialcard.png -------------------------------------------------------------------------------- /docs/assets/prefix-logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/docs/assets/prefix-logo-white.png -------------------------------------------------------------------------------- /docs/assets/rattler-build-logo-no-padding.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/docs/assets/rattler-build-logo-no-padding.svg -------------------------------------------------------------------------------- /docs/assets/trusted_publisher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/docs/assets/trusted_publisher.png -------------------------------------------------------------------------------- /docs/authentication_and_upload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/docs/authentication_and_upload.md -------------------------------------------------------------------------------- /docs/automatic_linting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/docs/automatic_linting.md -------------------------------------------------------------------------------- /docs/build_options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/docs/build_options.md -------------------------------------------------------------------------------- /docs/build_script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/docs/build_script.md -------------------------------------------------------------------------------- /docs/bump_recipe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/docs/bump_recipe.md -------------------------------------------------------------------------------- /docs/compilers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/docs/compilers.md -------------------------------------------------------------------------------- /docs/conda_forge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/docs/conda_forge.md -------------------------------------------------------------------------------- /docs/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/docs/config.md -------------------------------------------------------------------------------- /docs/converting_from_conda_build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/docs/converting_from_conda_build.md -------------------------------------------------------------------------------- /docs/create_patch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/docs/create_patch.md -------------------------------------------------------------------------------- /docs/debugging_builds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/docs/debugging_builds.md -------------------------------------------------------------------------------- /docs/experimental_features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/docs/experimental_features.md -------------------------------------------------------------------------------- /docs/generator/generate-cli-docs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/docs/generator/generate-cli-docs.rs -------------------------------------------------------------------------------- /docs/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/docs/getting_started.md -------------------------------------------------------------------------------- /docs/highlevel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/docs/highlevel.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/internals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/docs/internals.md -------------------------------------------------------------------------------- /docs/layouts/custom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/docs/layouts/custom.yml -------------------------------------------------------------------------------- /docs/layouts/download-font-to-cache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/docs/layouts/download-font-to-cache.sh -------------------------------------------------------------------------------- /docs/multiple_output_cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/docs/multiple_output_cache.md -------------------------------------------------------------------------------- /docs/overrides/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/docs/overrides/partials/footer.html -------------------------------------------------------------------------------- /docs/package_spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/docs/package_spec.md -------------------------------------------------------------------------------- /docs/publish.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/docs/publish.md -------------------------------------------------------------------------------- /docs/rebuild.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/docs/rebuild.md -------------------------------------------------------------------------------- /docs/recipe_generation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/docs/recipe_generation.md -------------------------------------------------------------------------------- /docs/reference/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/docs/reference/cli.md -------------------------------------------------------------------------------- /docs/reference/jinja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/docs/reference/jinja.md -------------------------------------------------------------------------------- /docs/reference/python_bindings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/docs/reference/python_bindings.md -------------------------------------------------------------------------------- /docs/reference/recipe_file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/docs/reference/recipe_file.md -------------------------------------------------------------------------------- /docs/sandbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/docs/sandbox.md -------------------------------------------------------------------------------- /docs/selectors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/docs/selectors.md -------------------------------------------------------------------------------- /docs/special_files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/docs/special_files.md -------------------------------------------------------------------------------- /docs/stylesheets/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/docs/stylesheets/extra.css -------------------------------------------------------------------------------- /docs/stylesheets/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/docs/stylesheets/fonts.css -------------------------------------------------------------------------------- /docs/system_integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/docs/system_integration.md -------------------------------------------------------------------------------- /docs/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/docs/testing.md -------------------------------------------------------------------------------- /docs/tips_and_tricks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/docs/tips_and_tricks.md -------------------------------------------------------------------------------- /docs/tui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/docs/tui.md -------------------------------------------------------------------------------- /docs/tutorials/cpp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/docs/tutorials/cpp.md -------------------------------------------------------------------------------- /docs/tutorials/go.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/docs/tutorials/go.md -------------------------------------------------------------------------------- /docs/tutorials/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/docs/tutorials/index.md -------------------------------------------------------------------------------- /docs/tutorials/javascript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/docs/tutorials/javascript.md -------------------------------------------------------------------------------- /docs/tutorials/perl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/docs/tutorials/perl.md -------------------------------------------------------------------------------- /docs/tutorials/python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/docs/tutorials/python.md -------------------------------------------------------------------------------- /docs/tutorials/r.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/docs/tutorials/r.md -------------------------------------------------------------------------------- /docs/tutorials/repackaging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/docs/tutorials/repackaging.md -------------------------------------------------------------------------------- /docs/tutorials/rust.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/docs/tutorials/rust.md -------------------------------------------------------------------------------- /docs/understanding_terminal_output.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/docs/understanding_terminal_output.md -------------------------------------------------------------------------------- /docs/variants.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/docs/variants.md -------------------------------------------------------------------------------- /docs/windows_quirks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/docs/windows_quirks.md -------------------------------------------------------------------------------- /examples/bitfurnace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/examples/bitfurnace/README.md -------------------------------------------------------------------------------- /examples/bitfurnace/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/examples/bitfurnace/recipe.yaml -------------------------------------------------------------------------------- /examples/bitfurnace/xtensor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/examples/bitfurnace/xtensor.yaml -------------------------------------------------------------------------------- /examples/cargo-edit/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/examples/cargo-edit/recipe.yaml -------------------------------------------------------------------------------- /examples/cargo-edit/variant_config.yaml: -------------------------------------------------------------------------------- 1 | rust_compiler: rust 2 | -------------------------------------------------------------------------------- /examples/curl/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/examples/curl/build.bat -------------------------------------------------------------------------------- /examples/curl/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/examples/curl/build.sh -------------------------------------------------------------------------------- /examples/curl/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/examples/curl/recipe.yaml -------------------------------------------------------------------------------- /examples/linking/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/examples/linking/recipe.yaml -------------------------------------------------------------------------------- /examples/linking/zlink/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/examples/linking/zlink/CMakeLists.txt -------------------------------------------------------------------------------- /examples/linking/zlink/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/examples/linking/zlink/src/main.c -------------------------------------------------------------------------------- /examples/mamba/build_mamba.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/examples/mamba/build_mamba.bat -------------------------------------------------------------------------------- /examples/mamba/build_mamba.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/examples/mamba/build_mamba.sh -------------------------------------------------------------------------------- /examples/mamba/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/examples/mamba/recipe.yaml -------------------------------------------------------------------------------- /examples/mamba/variant_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/examples/mamba/variant_config.yaml -------------------------------------------------------------------------------- /examples/match_and_cdt/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/examples/match_and_cdt/recipe.yaml -------------------------------------------------------------------------------- /examples/match_and_cdt/variant_config.yaml: -------------------------------------------------------------------------------- 1 | python: ["3.3", "3.5"] 2 | -------------------------------------------------------------------------------- /examples/rattler-build/variant_config.yaml: -------------------------------------------------------------------------------- 1 | rust_compiler: rust 2 | -------------------------------------------------------------------------------- /examples/recipe-folder/package-a/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/examples/recipe-folder/package-a/recipe.yaml -------------------------------------------------------------------------------- /examples/recipe-folder/package-b/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/examples/recipe-folder/package-b/recipe.yaml -------------------------------------------------------------------------------- /examples/recipe-folder/package-c/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/examples/recipe-folder/package-c/recipe.yaml -------------------------------------------------------------------------------- /examples/rich/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/examples/rich/recipe.yaml -------------------------------------------------------------------------------- /examples/ros-humble-turtlebot4-msgs/bld_ament_cmake.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/examples/ros-humble-turtlebot4-msgs/bld_ament_cmake.bat -------------------------------------------------------------------------------- /examples/ros-humble-turtlebot4-msgs/build_ament_cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/examples/ros-humble-turtlebot4-msgs/build_ament_cmake.sh -------------------------------------------------------------------------------- /examples/ros-humble-turtlebot4-msgs/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/examples/ros-humble-turtlebot4-msgs/recipe.yaml -------------------------------------------------------------------------------- /examples/ros-humble-turtlebot4-msgs/variant_config.yaml: -------------------------------------------------------------------------------- 1 | python: 2 | - "3.10" 3 | -------------------------------------------------------------------------------- /examples/xtensor/build.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/examples/xtensor/build.nu -------------------------------------------------------------------------------- /examples/xtensor/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/examples/xtensor/recipe.yaml -------------------------------------------------------------------------------- /lefthook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/lefthook.yaml -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /pixi.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/pixi.lock -------------------------------------------------------------------------------- /pixi.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/pixi.toml -------------------------------------------------------------------------------- /py-rattler-build/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/py-rattler-build/.gitignore -------------------------------------------------------------------------------- /py-rattler-build/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/py-rattler-build/Cargo.lock -------------------------------------------------------------------------------- /py-rattler-build/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/py-rattler-build/Cargo.toml -------------------------------------------------------------------------------- /py-rattler-build/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/py-rattler-build/LICENSE -------------------------------------------------------------------------------- /py-rattler-build/README.md: -------------------------------------------------------------------------------- 1 | # Python bindings to rattler-build 2 | -------------------------------------------------------------------------------- /py-rattler-build/examples/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/py-rattler-build/examples/basic.py -------------------------------------------------------------------------------- /py-rattler-build/pixi.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/py-rattler-build/pixi.lock -------------------------------------------------------------------------------- /py-rattler-build/pixi.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/py-rattler-build/pixi.toml -------------------------------------------------------------------------------- /py-rattler-build/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/py-rattler-build/pyproject.toml -------------------------------------------------------------------------------- /py-rattler-build/rattler_build/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/py-rattler-build/rattler_build/__init__.py -------------------------------------------------------------------------------- /py-rattler-build/rattler_build/recipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/py-rattler-build/rattler_build/recipe.py -------------------------------------------------------------------------------- /py-rattler-build/rattler_build/recipe_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/py-rattler-build/rattler_build/recipe_generation.py -------------------------------------------------------------------------------- /py-rattler-build/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/py-rattler-build/src/error.rs -------------------------------------------------------------------------------- /py-rattler-build/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/py-rattler-build/src/lib.rs -------------------------------------------------------------------------------- /py-rattler-build/tests/data/recipes/dummy/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/py-rattler-build/tests/data/recipes/dummy/recipe.yaml -------------------------------------------------------------------------------- /py-rattler-build/tests/data/recipes/test-package/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/py-rattler-build/tests/data/recipes/test-package/recipe.yaml -------------------------------------------------------------------------------- /py-rattler-build/tests/unit/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/py-rattler-build/tests/unit/conftest.py -------------------------------------------------------------------------------- /py-rattler-build/tests/unit/test_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/py-rattler-build/tests/unit/test_basic.py -------------------------------------------------------------------------------- /py-rattler-build/tests/unit/test_generators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/py-rattler-build/tests/unit/test_generators.py -------------------------------------------------------------------------------- /py-rattler-build/tests/unit/test_recipe_oop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/py-rattler-build/tests/unit/test_recipe_oop.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/pytest.ini -------------------------------------------------------------------------------- /rust-tests/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/rust-tests/Cargo.toml -------------------------------------------------------------------------------- /rust-tests/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/rust-tests/src/lib.rs -------------------------------------------------------------------------------- /rust-toolchain: -------------------------------------------------------------------------------- 1 | 1.89.0 2 | -------------------------------------------------------------------------------- /scripts/activate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/scripts/activate.bat -------------------------------------------------------------------------------- /scripts/activate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/scripts/activate.sh -------------------------------------------------------------------------------- /scripts/patch-apply-gen-test-data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/scripts/patch-apply-gen-test-data.rs -------------------------------------------------------------------------------- /src/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/build.rs -------------------------------------------------------------------------------- /src/bump_recipe.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/bump_recipe.rs -------------------------------------------------------------------------------- /src/cache.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/cache.rs -------------------------------------------------------------------------------- /src/conda_build_config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/conda_build_config.rs -------------------------------------------------------------------------------- /src/console_utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/console_utils.rs -------------------------------------------------------------------------------- /src/consts.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/consts.rs -------------------------------------------------------------------------------- /src/env_vars.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/env_vars.rs -------------------------------------------------------------------------------- /src/hash.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/hash.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/linux/env.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/linux/env.rs -------------------------------------------------------------------------------- /src/linux/link.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/linux/link.rs -------------------------------------------------------------------------------- /src/linux/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/linux/mod.rs -------------------------------------------------------------------------------- /src/macos/env.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/macos/env.rs -------------------------------------------------------------------------------- /src/macos/link.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/macos/link.rs -------------------------------------------------------------------------------- /src/macos/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/macos/mod.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/metadata.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/metadata.rs -------------------------------------------------------------------------------- /src/normalized_key.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/normalized_key.rs -------------------------------------------------------------------------------- /src/opt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/opt.rs -------------------------------------------------------------------------------- /src/package_cache_reporter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/package_cache_reporter.rs -------------------------------------------------------------------------------- /src/package_info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/package_info.rs -------------------------------------------------------------------------------- /src/package_test/content_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/package_test/content_test.rs -------------------------------------------------------------------------------- /src/package_test/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/package_test/mod.rs -------------------------------------------------------------------------------- /src/package_test/run_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/package_test/run_test.rs -------------------------------------------------------------------------------- /src/package_test/serialize_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/package_test/serialize_test.rs -------------------------------------------------------------------------------- /src/packaging.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/packaging.rs -------------------------------------------------------------------------------- /src/packaging/file_finder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/packaging/file_finder.rs -------------------------------------------------------------------------------- /src/packaging/file_mapper.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/packaging/file_mapper.rs -------------------------------------------------------------------------------- /src/packaging/metadata.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/packaging/metadata.rs -------------------------------------------------------------------------------- /src/post_process/checks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/post_process/checks.rs -------------------------------------------------------------------------------- /src/post_process/menuinst.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/post_process/menuinst.rs -------------------------------------------------------------------------------- /src/post_process/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/post_process/mod.rs -------------------------------------------------------------------------------- /src/post_process/package_nature.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/post_process/package_nature.rs -------------------------------------------------------------------------------- /src/post_process/path_checks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/post_process/path_checks.rs -------------------------------------------------------------------------------- /src/post_process/python.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/post_process/python.rs -------------------------------------------------------------------------------- /src/post_process/regex_replacements.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/post_process/regex_replacements.rs -------------------------------------------------------------------------------- /src/post_process/relink.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/post_process/relink.rs -------------------------------------------------------------------------------- /src/post_process/snapshots/rattler_build__post_process__python__tests__replace_shebang_in_file-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/post_process/snapshots/rattler_build__post_process__python__tests__replace_shebang_in_file-2.snap -------------------------------------------------------------------------------- /src/post_process/snapshots/rattler_build__post_process__python__tests__replace_shebang_in_file.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/post_process/snapshots/rattler_build__post_process__python__tests__replace_shebang_in_file.snap -------------------------------------------------------------------------------- /src/publish.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/publish.rs -------------------------------------------------------------------------------- /src/rebuild.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/rebuild.rs -------------------------------------------------------------------------------- /src/recipe.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe.rs -------------------------------------------------------------------------------- /src/recipe/custom_yaml.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe/custom_yaml.rs -------------------------------------------------------------------------------- /src/recipe/custom_yaml/rendered.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe/custom_yaml/rendered.rs -------------------------------------------------------------------------------- /src/recipe/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe/error.rs -------------------------------------------------------------------------------- /src/recipe/jinja.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe/jinja.rs -------------------------------------------------------------------------------- /src/recipe/parser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe/parser.rs -------------------------------------------------------------------------------- /src/recipe/parser/about.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe/parser/about.rs -------------------------------------------------------------------------------- /src/recipe/parser/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe/parser/build.rs -------------------------------------------------------------------------------- /src/recipe/parser/cache.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe/parser/cache.rs -------------------------------------------------------------------------------- /src/recipe/parser/glob_vec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe/parser/glob_vec.rs -------------------------------------------------------------------------------- /src/recipe/parser/helper.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe/parser/helper.rs -------------------------------------------------------------------------------- /src/recipe/parser/output.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe/parser/output.rs -------------------------------------------------------------------------------- /src/recipe/parser/package.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe/parser/package.rs -------------------------------------------------------------------------------- /src/recipe/parser/regex.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe/parser/regex.rs -------------------------------------------------------------------------------- /src/recipe/parser/requirements.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe/parser/requirements.rs -------------------------------------------------------------------------------- /src/recipe/parser/script.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe/parser/script.rs -------------------------------------------------------------------------------- /src/recipe/parser/skip.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe/parser/skip.rs -------------------------------------------------------------------------------- /src/recipe/parser/snapshots/rattler_build__recipe__parser__about__test__invalid_license.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe/parser/snapshots/rattler_build__recipe__parser__about__test__invalid_license.snap -------------------------------------------------------------------------------- /src/recipe/parser/snapshots/rattler_build__recipe__parser__about__test__invalid_url.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe/parser/snapshots/rattler_build__recipe__parser__about__test__invalid_url.snap -------------------------------------------------------------------------------- /src/recipe/parser/snapshots/rattler_build__recipe__parser__glob_vec__tests__parsing_all_or_globvec-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe/parser/snapshots/rattler_build__recipe__parser__glob_vec__tests__parsing_all_or_globvec-2.snap -------------------------------------------------------------------------------- /src/recipe/parser/snapshots/rattler_build__recipe__parser__glob_vec__tests__parsing_all_or_globvec-3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe/parser/snapshots/rattler_build__recipe__parser__glob_vec__tests__parsing_all_or_globvec-3.snap -------------------------------------------------------------------------------- /src/recipe/parser/snapshots/rattler_build__recipe__parser__glob_vec__tests__parsing_all_or_globvec.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe/parser/snapshots/rattler_build__recipe__parser__glob_vec__tests__parsing_all_or_globvec.snap -------------------------------------------------------------------------------- /src/recipe/parser/snapshots/rattler_build__recipe__parser__glob_vec__tests__parsing_glob_checker_vec.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe/parser/snapshots/rattler_build__recipe__parser__glob_vec__tests__parsing_glob_checker_vec.snap -------------------------------------------------------------------------------- /src/recipe/parser/snapshots/rattler_build__recipe__parser__glob_vec__tests__parsing_globvec-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe/parser/snapshots/rattler_build__recipe__parser__glob_vec__tests__parsing_globvec-2.snap -------------------------------------------------------------------------------- /src/recipe/parser/snapshots/rattler_build__recipe__parser__glob_vec__tests__parsing_globvec.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe/parser/snapshots/rattler_build__recipe__parser__glob_vec__tests__parsing_globvec.snap -------------------------------------------------------------------------------- /src/recipe/parser/snapshots/rattler_build__recipe__parser__glob_vec__tests__parsing_globvec_fail.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe/parser/snapshots/rattler_build__recipe__parser__glob_vec__tests__parsing_globvec_fail.snap -------------------------------------------------------------------------------- /src/recipe/parser/snapshots/rattler_build__recipe__parser__output__tests__recipe_outputs_merging.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe/parser/snapshots/rattler_build__recipe__parser__output__tests__recipe_outputs_merging.snap -------------------------------------------------------------------------------- /src/recipe/parser/snapshots/rattler_build__recipe__parser__output__tests__recipe_schema_error-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe/parser/snapshots/rattler_build__recipe__parser__output__tests__recipe_schema_error-2.snap -------------------------------------------------------------------------------- /src/recipe/parser/snapshots/rattler_build__recipe__parser__output__tests__recipe_schema_error-3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe/parser/snapshots/rattler_build__recipe__parser__output__tests__recipe_schema_error-3.snap -------------------------------------------------------------------------------- /src/recipe/parser/snapshots/rattler_build__recipe__parser__output__tests__recipe_schema_error-4.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe/parser/snapshots/rattler_build__recipe__parser__output__tests__recipe_schema_error-4.snap -------------------------------------------------------------------------------- /src/recipe/parser/snapshots/rattler_build__recipe__parser__output__tests__recipe_schema_error.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe/parser/snapshots/rattler_build__recipe__parser__output__tests__recipe_schema_error.snap -------------------------------------------------------------------------------- /src/recipe/parser/snapshots/rattler_build__recipe__parser__package__tests__invalid_fields.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe/parser/snapshots/rattler_build__recipe__parser__package__tests__invalid_fields.snap -------------------------------------------------------------------------------- /src/recipe/parser/snapshots/rattler_build__recipe__parser__package__tests__missing_fields.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe/parser/snapshots/rattler_build__recipe__parser__package__tests__missing_fields.snap -------------------------------------------------------------------------------- /src/recipe/parser/snapshots/rattler_build__recipe__parser__requirements__test__compiler_serde-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe/parser/snapshots/rattler_build__recipe__parser__requirements__test__compiler_serde-2.snap -------------------------------------------------------------------------------- /src/recipe/parser/snapshots/rattler_build__recipe__parser__requirements__test__compiler_serde.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe/parser/snapshots/rattler_build__recipe__parser__requirements__test__compiler_serde.snap -------------------------------------------------------------------------------- /src/recipe/parser/snapshots/rattler_build__recipe__parser__requirements__test__pin_package.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe/parser/snapshots/rattler_build__recipe__parser__requirements__test__pin_package.snap -------------------------------------------------------------------------------- /src/recipe/parser/snapshots/rattler_build__recipe__parser__source__tests__git_serialization.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe/parser/snapshots/rattler_build__recipe__parser__source__tests__git_serialization.snap -------------------------------------------------------------------------------- /src/recipe/parser/snapshots/rattler_build__recipe__parser__source__tests__git_source_with_expected_commit.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe/parser/snapshots/rattler_build__recipe__parser__source__tests__git_source_with_expected_commit.snap -------------------------------------------------------------------------------- /src/recipe/parser/snapshots/rattler_build__recipe__parser__source__tests__ssh_serialization.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe/parser/snapshots/rattler_build__recipe__parser__source__tests__ssh_serialization.snap -------------------------------------------------------------------------------- /src/recipe/parser/snapshots/rattler_build__recipe__parser__test__test__package_contents_parsing.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe/parser/snapshots/rattler_build__recipe__parser__test__test__package_contents_parsing.snap -------------------------------------------------------------------------------- /src/recipe/parser/snapshots/rattler_build__recipe__parser__test__test__parsing.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe/parser/snapshots/rattler_build__recipe__parser__test__test__parsing.snap -------------------------------------------------------------------------------- /src/recipe/parser/snapshots/rattler_build__recipe__parser__test__test__python_parsing.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe/parser/snapshots/rattler_build__recipe__parser__test__test__python_parsing.snap -------------------------------------------------------------------------------- /src/recipe/parser/snapshots/rattler_build__recipe__parser__test__test__script_parsing.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe/parser/snapshots/rattler_build__recipe__parser__test__test__script_parsing.snap -------------------------------------------------------------------------------- /src/recipe/parser/source.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe/parser/source.rs -------------------------------------------------------------------------------- /src/recipe/parser/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe/parser/test.rs -------------------------------------------------------------------------------- /src/recipe/snapshots/rattler_build__recipe__error__tests__miette_output.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe/snapshots/rattler_build__recipe__error__tests__miette_output.snap -------------------------------------------------------------------------------- /src/recipe/snapshots/rattler_build__recipe__parser__tests__bad_skip_multi_output.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe/snapshots/rattler_build__recipe__parser__tests__bad_skip_multi_output.snap -------------------------------------------------------------------------------- /src/recipe/snapshots/rattler_build__recipe__parser__tests__bad_skip_single_output.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe/snapshots/rattler_build__recipe__parser__tests__bad_skip_single_output.snap -------------------------------------------------------------------------------- /src/recipe/snapshots/rattler_build__recipe__parser__tests__binary_relocation.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe/snapshots/rattler_build__recipe__parser__tests__binary_relocation.snap -------------------------------------------------------------------------------- /src/recipe/snapshots/rattler_build__recipe__parser__tests__binary_relocation_paths.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe/snapshots/rattler_build__recipe__parser__tests__binary_relocation_paths.snap -------------------------------------------------------------------------------- /src/recipe/snapshots/rattler_build__recipe__parser__tests__complete_recipe.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe/snapshots/rattler_build__recipe__parser__tests__complete_recipe.snap -------------------------------------------------------------------------------- /src/recipe/snapshots/rattler_build__recipe__parser__tests__context_not_mapping.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe/snapshots/rattler_build__recipe__parser__tests__context_not_mapping.snap -------------------------------------------------------------------------------- /src/recipe/snapshots/rattler_build__recipe__parser__tests__context_value_not_scalar.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe/snapshots/rattler_build__recipe__parser__tests__context_value_not_scalar.snap -------------------------------------------------------------------------------- /src/recipe/snapshots/rattler_build__recipe__parser__tests__context_value_not_uniform_list.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe/snapshots/rattler_build__recipe__parser__tests__context_value_not_uniform_list.snap -------------------------------------------------------------------------------- /src/recipe/snapshots/rattler_build__recipe__parser__tests__context_variable_with_hyphen.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe/snapshots/rattler_build__recipe__parser__tests__context_variable_with_hyphen.snap -------------------------------------------------------------------------------- /src/recipe/snapshots/rattler_build__recipe__parser__tests__duplicate_keys_error.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe/snapshots/rattler_build__recipe__parser__tests__duplicate_keys_error.snap -------------------------------------------------------------------------------- /src/recipe/snapshots/rattler_build__recipe__parser__tests__invalid_root_field.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe/snapshots/rattler_build__recipe__parser__tests__invalid_root_field.snap -------------------------------------------------------------------------------- /src/recipe/snapshots/rattler_build__recipe__parser__tests__jinja_error.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe/snapshots/rattler_build__recipe__parser__tests__jinja_error.snap -------------------------------------------------------------------------------- /src/recipe/snapshots/rattler_build__recipe__parser__tests__jinja_sequence.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe/snapshots/rattler_build__recipe__parser__tests__jinja_sequence.snap -------------------------------------------------------------------------------- /src/recipe/snapshots/rattler_build__recipe__parser__tests__map_null_values.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe/snapshots/rattler_build__recipe__parser__tests__map_null_values.snap -------------------------------------------------------------------------------- /src/recipe/snapshots/rattler_build__recipe__parser__tests__recipe_windows.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe/snapshots/rattler_build__recipe__parser__tests__recipe_windows.snap -------------------------------------------------------------------------------- /src/recipe/snapshots/rattler_build__recipe__parser__tests__unix_recipe.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe/snapshots/rattler_build__recipe__parser__tests__unix_recipe.snap -------------------------------------------------------------------------------- /src/recipe/variable.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe/variable.rs -------------------------------------------------------------------------------- /src/recipe_generator/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe_generator/mod.rs -------------------------------------------------------------------------------- /src/recipe_generator/snapshots/rattler_build__recipe_generator__pypi__tests__flask_noarch_recipe_generation.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe_generator/snapshots/rattler_build__recipe_generator__pypi__tests__flask_noarch_recipe_generation.snap -------------------------------------------------------------------------------- /src/recipe_generator/snapshots/rattler_build__recipe_generator__pypi__tests__recipe_generation.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/recipe_generator/snapshots/rattler_build__recipe_generator__pypi__tests__recipe_generation.snap -------------------------------------------------------------------------------- /src/render/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/render/mod.rs -------------------------------------------------------------------------------- /src/render/pin.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/render/pin.rs -------------------------------------------------------------------------------- /src/render/reporters.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/render/reporters.rs -------------------------------------------------------------------------------- /src/render/resolved_dependencies.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/render/resolved_dependencies.rs -------------------------------------------------------------------------------- /src/render/run_exports.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/render/run_exports.rs -------------------------------------------------------------------------------- /src/render/snapshots/rattler_build__render__resolved_dependencies__tests__dependency_info_render.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/render/snapshots/rattler_build__render__resolved_dependencies__tests__dependency_info_render.snap -------------------------------------------------------------------------------- /src/render/solver.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/render/solver.rs -------------------------------------------------------------------------------- /src/render/test-data/list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/render/test-data/list.yaml -------------------------------------------------------------------------------- /src/script/interpreter/bash.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/script/interpreter/bash.rs -------------------------------------------------------------------------------- /src/script/interpreter/cmd_exe.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/script/interpreter/cmd_exe.rs -------------------------------------------------------------------------------- /src/script/interpreter/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/script/interpreter/mod.rs -------------------------------------------------------------------------------- /src/script/interpreter/nodejs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/script/interpreter/nodejs.rs -------------------------------------------------------------------------------- /src/script/interpreter/nushell.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/script/interpreter/nushell.rs -------------------------------------------------------------------------------- /src/script/interpreter/perl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/script/interpreter/perl.rs -------------------------------------------------------------------------------- /src/script/interpreter/python.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/script/interpreter/python.rs -------------------------------------------------------------------------------- /src/script/interpreter/r.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/script/interpreter/r.rs -------------------------------------------------------------------------------- /src/script/interpreter/ruby.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/script/interpreter/ruby.rs -------------------------------------------------------------------------------- /src/script/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/script/mod.rs -------------------------------------------------------------------------------- /src/script/sandbox.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/script/sandbox.rs -------------------------------------------------------------------------------- /src/selectors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/selectors.rs -------------------------------------------------------------------------------- /src/snapshots/rattler_build__conda_build_config__tests__conda_build_config__all_filtered.yaml_none.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/snapshots/rattler_build__conda_build_config__tests__conda_build_config__all_filtered.yaml_none.snap -------------------------------------------------------------------------------- /src/snapshots/rattler_build__conda_build_config__tests__conda_build_config__conda_forge_subset.yaml_false.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/snapshots/rattler_build__conda_build_config__tests__conda_build_config__conda_forge_subset.yaml_false.snap -------------------------------------------------------------------------------- /src/snapshots/rattler_build__conda_build_config__tests__conda_build_config__conda_forge_subset.yaml_none.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/snapshots/rattler_build__conda_build_config__tests__conda_build_config__conda_forge_subset.yaml_none.snap -------------------------------------------------------------------------------- /src/snapshots/rattler_build__conda_build_config__tests__conda_build_config__conda_forge_subset.yaml_true.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/snapshots/rattler_build__conda_build_config__tests__conda_build_config__conda_forge_subset.yaml_true.snap -------------------------------------------------------------------------------- /src/snapshots/rattler_build__conda_build_config__tests__conda_build_config__test_1.yaml_none.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/snapshots/rattler_build__conda_build_config__tests__conda_build_config__test_1.yaml_none.snap -------------------------------------------------------------------------------- /src/snapshots/rattler_build__metadata__test__curl_recipe.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/snapshots/rattler_build__metadata__test__curl_recipe.yaml.snap -------------------------------------------------------------------------------- /src/snapshots/rattler_build__metadata__test__read_recipe_with_sources.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/snapshots/rattler_build__metadata__test__read_recipe_with_sources.snap -------------------------------------------------------------------------------- /src/snapshots/rattler_build__metadata__test__resolved_dependencies_rendering.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/snapshots/rattler_build__metadata__test__resolved_dependencies_rendering.snap -------------------------------------------------------------------------------- /src/snapshots/rattler_build__metadata__test__rich_recipe.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/snapshots/rattler_build__metadata__test__rich_recipe.yaml.snap -------------------------------------------------------------------------------- /src/snapshots/rattler_build__system_tools__tests__serialize.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/snapshots/rattler_build__system_tools__tests__serialize.snap -------------------------------------------------------------------------------- /src/snapshots/rattler_build__variant_config__tests__flatten_selectors-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/snapshots/rattler_build__variant_config__tests__flatten_selectors-2.snap -------------------------------------------------------------------------------- /src/snapshots/rattler_build__variant_config__tests__flatten_selectors.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/snapshots/rattler_build__variant_config__tests__flatten_selectors.snap -------------------------------------------------------------------------------- /src/snapshots/rattler_build__variant_config__tests__load_config.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/snapshots/rattler_build__variant_config__tests__load_config.snap -------------------------------------------------------------------------------- /src/snapshots/rattler_build__variant_config__tests__load_config_and_find_variants.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/snapshots/rattler_build__variant_config__tests__load_config_and_find_variants.snap -------------------------------------------------------------------------------- /src/snapshots/rattler_build__variant_config__tests__python_is_not_used_as_variant_when_noarch.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/snapshots/rattler_build__variant_config__tests__python_is_not_used_as_variant_when_noarch.snap -------------------------------------------------------------------------------- /src/source/checksum.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/source/checksum.rs -------------------------------------------------------------------------------- /src/source/copy_dir.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/source/copy_dir.rs -------------------------------------------------------------------------------- /src/source/create_patch.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/source/create_patch.rs -------------------------------------------------------------------------------- /src/source/extract.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/source/extract.rs -------------------------------------------------------------------------------- /src/source/git_source.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/source/git_source.rs -------------------------------------------------------------------------------- /src/source/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/source/mod.rs -------------------------------------------------------------------------------- /src/source/patch.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/source/patch.rs -------------------------------------------------------------------------------- /src/source/snapshots/rattler_build__source__patch__tests__love2d.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/source/snapshots/rattler_build__source__patch__tests__love2d.snap -------------------------------------------------------------------------------- /src/source/url_source.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/source/url_source.rs -------------------------------------------------------------------------------- /src/source_code.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/source_code.rs -------------------------------------------------------------------------------- /src/system_tools.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/system_tools.rs -------------------------------------------------------------------------------- /src/tool_configuration.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/tool_configuration.rs -------------------------------------------------------------------------------- /src/tui/event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/tui/event.rs -------------------------------------------------------------------------------- /src/tui/logger.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/tui/logger.rs -------------------------------------------------------------------------------- /src/tui/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/tui/mod.rs -------------------------------------------------------------------------------- /src/tui/render.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/tui/render.rs -------------------------------------------------------------------------------- /src/tui/state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/tui/state.rs -------------------------------------------------------------------------------- /src/tui/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/tui/utils.rs -------------------------------------------------------------------------------- /src/types/build_configuration.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/types/build_configuration.rs -------------------------------------------------------------------------------- /src/types/build_output.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/types/build_output.rs -------------------------------------------------------------------------------- /src/types/directories.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/types/directories.rs -------------------------------------------------------------------------------- /src/types/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/types/mod.rs -------------------------------------------------------------------------------- /src/unix/env.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/unix/env.rs -------------------------------------------------------------------------------- /src/unix/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/unix/mod.rs -------------------------------------------------------------------------------- /src/unix/permission_guard.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/unix/permission_guard.rs -------------------------------------------------------------------------------- /src/used_variables.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/used_variables.rs -------------------------------------------------------------------------------- /src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/utils.rs -------------------------------------------------------------------------------- /src/variant_config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/variant_config.rs -------------------------------------------------------------------------------- /src/variant_render.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/variant_render.rs -------------------------------------------------------------------------------- /src/windows/env.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/windows/env.rs -------------------------------------------------------------------------------- /src/windows/link.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/windows/link.rs -------------------------------------------------------------------------------- /src/windows/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/src/windows/mod.rs -------------------------------------------------------------------------------- /tbump.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/tbump.toml -------------------------------------------------------------------------------- /test-data/binary_files/binary_file_fallback: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/binary_files/binary_file_fallback -------------------------------------------------------------------------------- /test-data/binary_files/simple-elf.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/binary_files/simple-elf.o -------------------------------------------------------------------------------- /test-data/binary_files/simple-macho.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/binary_files/simple-macho.o -------------------------------------------------------------------------------- /test-data/binary_files/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/binary_files/simple.c -------------------------------------------------------------------------------- /test-data/binary_files/simple.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/binary_files/simple.dylib -------------------------------------------------------------------------------- /test-data/binary_files/simple.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/binary_files/simple.so -------------------------------------------------------------------------------- /test-data/binary_files/windows/zstd/Library/bin/zstd.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/binary_files/windows/zstd/Library/bin/zstd.dll -------------------------------------------------------------------------------- /test-data/binary_files/zlink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/binary_files/zlink -------------------------------------------------------------------------------- /test-data/binary_files/zlink-macos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/binary_files/zlink-macos -------------------------------------------------------------------------------- /test-data/binary_files/zlink-no-rpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/binary_files/zlink-no-rpath -------------------------------------------------------------------------------- /test-data/binary_files/zlink-runpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/binary_files/zlink-runpath -------------------------------------------------------------------------------- /test-data/conda_build_config/all_filtered.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/conda_build_config/all_filtered.yaml -------------------------------------------------------------------------------- /test-data/conda_build_config/conda_forge_subset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/conda_build_config/conda_forge_subset.yaml -------------------------------------------------------------------------------- /test-data/conda_build_config/test_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/conda_build_config/test_1.yaml -------------------------------------------------------------------------------- /test-data/package_content/test_bin_unix.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/package_content/test_bin_unix.yaml -------------------------------------------------------------------------------- /test-data/package_content/test_bin_win.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/package_content/test_bin_win.yaml -------------------------------------------------------------------------------- /test-data/package_content/test_files.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/package_content/test_files.yaml -------------------------------------------------------------------------------- /test-data/package_content/test_include_unix.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/package_content/test_include_unix.yaml -------------------------------------------------------------------------------- /test-data/package_content/test_include_win.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/package_content/test_include_win.yaml -------------------------------------------------------------------------------- /test-data/package_content/test_lib_linux.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/package_content/test_lib_linux.yaml -------------------------------------------------------------------------------- /test-data/package_content/test_lib_macos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/package_content/test_lib_macos.yaml -------------------------------------------------------------------------------- /test-data/package_content/test_lib_win.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/package_content/test_lib_win.yaml -------------------------------------------------------------------------------- /test-data/package_content/test_site_packages_unix.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/package_content/test_site_packages_unix.yaml -------------------------------------------------------------------------------- /test-data/package_content/test_site_packages_win.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/package_content/test_site_packages_win.yaml -------------------------------------------------------------------------------- /test-data/patch_application/patches/0001-increase-minimum-cmake-version.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/patch_application/patches/0001-increase-minimum-cmake-version.patch -------------------------------------------------------------------------------- /test-data/patch_application/patches/test.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/patch_application/patches/test.patch -------------------------------------------------------------------------------- /test-data/patch_application/patches/test_create_delete.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/patch_application/patches/test_create_delete.patch -------------------------------------------------------------------------------- /test-data/patch_application/patches/test_mixed_existing.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/patch_application/patches/test_mixed_existing.patch -------------------------------------------------------------------------------- /test-data/patch_application/patches/test_pure_rename.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/patch_application/patches/test_pure_rename.patch -------------------------------------------------------------------------------- /test-data/patch_application/patches/test_simple_mixed.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/patch_application/patches/test_simple_mixed.patch -------------------------------------------------------------------------------- /test-data/patch_application/patches/test_strip_level_edge_case.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/patch_application/patches/test_strip_level_edge_case.patch -------------------------------------------------------------------------------- /test-data/patch_application/patches/test_with_bak.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/patch_application/patches/test_with_bak.patch -------------------------------------------------------------------------------- /test-data/patch_application/patches/test_with_orig.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/patch_application/patches/test_with_orig.patch -------------------------------------------------------------------------------- /test-data/patch_application/workdir/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/patch_application/workdir/CMakeLists.txt -------------------------------------------------------------------------------- /test-data/patch_application/workdir/deep/nested/directory/deep_file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/patch_application/workdir/deep/nested/directory/deep_file.txt -------------------------------------------------------------------------------- /test-data/patch_application/workdir/existing_file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/patch_application/workdir/existing_file.txt -------------------------------------------------------------------------------- /test-data/patch_application/workdir/text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/patch_application/workdir/text.md -------------------------------------------------------------------------------- /test-data/patch_application/workdir/tinygrad/frontend/__init__.py: -------------------------------------------------------------------------------- 1 | # frontend init 2 | -------------------------------------------------------------------------------- /test-data/patch_application/workdir/tinygrad/frontend/onnx.py: -------------------------------------------------------------------------------- 1 | # onnx code 2 | -------------------------------------------------------------------------------- /test-data/patch_application/workdir/tinygrad/frontend/torch.py: -------------------------------------------------------------------------------- 1 | # torch code 2 | -------------------------------------------------------------------------------- /test-data/patch_application/workdir/to_be_deleted.txt: -------------------------------------------------------------------------------- 1 | This file will be deleted 2 | by the patch 3 | -------------------------------------------------------------------------------- /test-data/patches/0001-cross.patch.fail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/patches/0001-cross.patch.fail -------------------------------------------------------------------------------- /test-data/patches/CVE-2019-12211-13.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/patches/CVE-2019-12211-13.patch -------------------------------------------------------------------------------- /test-data/patches/define_byteswap.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/patches/define_byteswap.patch -------------------------------------------------------------------------------- /test-data/patches/nested.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/patches/nested.patch -------------------------------------------------------------------------------- /test-data/patches/simple.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/patches/simple.patch -------------------------------------------------------------------------------- /test-data/patches/usecmake.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/patches/usecmake.patch -------------------------------------------------------------------------------- /test-data/pins.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/pins.yaml -------------------------------------------------------------------------------- /test-data/recipes/7z-source/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/7z-source/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/abi3/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/abi3/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/abi3/variants.yaml: -------------------------------------------------------------------------------- 1 | python_min: 2 | - "3.8" 3 | -------------------------------------------------------------------------------- /test-data/recipes/allow_missing_dso/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/allow_missing_dso/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/always-copy-files/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/always-copy-files/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/always-include-files/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/always-include-files/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/binary_prefix_test/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/binary_prefix_test/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/build_files/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/build_files/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/cache/recipe-cmake.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/cache/recipe-cmake.yaml -------------------------------------------------------------------------------- /test-data/recipes/cache/recipe-compiler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/cache/recipe-compiler.yaml -------------------------------------------------------------------------------- /test-data/recipes/cache/recipe-symlinks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/cache/recipe-symlinks.yaml -------------------------------------------------------------------------------- /test-data/recipes/cache_run_exports/helper.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/cache_run_exports/helper.yaml -------------------------------------------------------------------------------- /test-data/recipes/cache_run_exports/recipe_test_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/cache_run_exports/recipe_test_1.yaml -------------------------------------------------------------------------------- /test-data/recipes/cache_run_exports/recipe_test_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/cache_run_exports/recipe_test_2.yaml -------------------------------------------------------------------------------- /test-data/recipes/cache_run_exports/recipe_test_3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/cache_run_exports/recipe_test_3.yaml -------------------------------------------------------------------------------- /test-data/recipes/case-insensitive/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/case-insensitive/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/channel_sources/conda_build_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/channel_sources/conda_build_config.yaml -------------------------------------------------------------------------------- /test-data/recipes/channel_sources/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/channel_sources/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/channel_specific/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/channel_specific/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/console_logging/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/console_logging/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/correct-sha/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/correct-sha/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/crazy_characters/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/crazy_characters/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/crazy_characters/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/crazy_characters/test.py -------------------------------------------------------------------------------- /test-data/recipes/debug-multiple-outputs/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/debug-multiple-outputs/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/debug_test/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/debug_test/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/double_license/license.txt: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /test-data/recipes/double_license/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/double_license/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/down_prioritize/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/down_prioritize/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/downstream_test/fail.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/downstream_test/fail.yaml -------------------------------------------------------------------------------- /test-data/recipes/downstream_test/fail_prelim.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/downstream_test/fail_prelim.yaml -------------------------------------------------------------------------------- /test-data/recipes/downstream_test/succeed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/downstream_test/succeed.yaml -------------------------------------------------------------------------------- /test-data/recipes/empty_folder/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/empty_folder/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/entry_points/additional_entrypoints.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/entry_points/additional_entrypoints.yaml -------------------------------------------------------------------------------- /test-data/recipes/env_vars/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/env_vars/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/env_vars/variants.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/env_vars/variants.yaml -------------------------------------------------------------------------------- /test-data/recipes/filter_files/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/filter_files/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/flask/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/flask/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/git_source/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/git_source/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/git_source_expected_commit/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/git_source_expected_commit/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/git_source_patch/patch/ros-humble-ament-package.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/git_source_patch/patch/ros-humble-ament-package.patch -------------------------------------------------------------------------------- /test-data/recipes/git_source_patch/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/git_source_patch/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/git_source_submodule/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/git_source_submodule/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/globtest/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/globtest/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/hatch_vcs/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/hatch_vcs/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/interpreter-detection/bash/build.sh: -------------------------------------------------------------------------------- 1 | echo "Hello from Bash!" 2 | -------------------------------------------------------------------------------- /test-data/recipes/interpreter-detection/bash/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/interpreter-detection/bash/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/interpreter-detection/bash/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo "Hello from BASH!" 3 | -------------------------------------------------------------------------------- /test-data/recipes/interpreter-detection/bat/build.bat: -------------------------------------------------------------------------------- 1 | @echo Hello from Cmd! 2 | -------------------------------------------------------------------------------- /test-data/recipes/interpreter-detection/bat/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/interpreter-detection/bat/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/interpreter-detection/nu/build.nu: -------------------------------------------------------------------------------- 1 | echo "Hello from Nushell!" 2 | -------------------------------------------------------------------------------- /test-data/recipes/interpreter-detection/nu/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/interpreter-detection/nu/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/interpreter-detection/pl/build.pl: -------------------------------------------------------------------------------- 1 | print "Hello from Perl!\n"; 2 | -------------------------------------------------------------------------------- /test-data/recipes/interpreter-detection/pl/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/interpreter-detection/pl/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/interpreter-detection/py/build.py: -------------------------------------------------------------------------------- 1 | print("Hello from Python!") 2 | -------------------------------------------------------------------------------- /test-data/recipes/interpreter-detection/py/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/interpreter-detection/py/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/interpreter-detection/r/build.r: -------------------------------------------------------------------------------- 1 | print("Hello from R!") 2 | -------------------------------------------------------------------------------- /test-data/recipes/interpreter-detection/r/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/interpreter-detection/r/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/interpreter-detection/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/interpreter-detection/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/jinja-types/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/jinja-types/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/jinja-types/variants.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/jinja-types/variants.yaml -------------------------------------------------------------------------------- /test-data/recipes/line-breaks/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/line-breaks/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/llamacpp/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/llamacpp/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/merge_build_and_host/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/merge_build_and_host/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/missing_license_file/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/missing_license_file/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/missing_license_glob/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/missing_license_glob/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/noarch_variant/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/noarch_variant/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/nodejs-extension-test/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/nodejs-extension-test/build.js -------------------------------------------------------------------------------- /test-data/recipes/nodejs-extension-test/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/nodejs-extension-test/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/nodejs-test/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/nodejs-test/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/nushell-script-detection/build.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/nushell-script-detection/build.nu -------------------------------------------------------------------------------- /test-data/recipes/nushell-script-detection/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/nushell-script-detection/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/output_order/order_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/output_order/order_1.yaml -------------------------------------------------------------------------------- /test-data/recipes/overdepending/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/overdepending/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/overlinking/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/overlinking/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/package-content-tests/llama-recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/package-content-tests/llama-recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/package-content-tests/recipe-test-fail.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/package-content-tests/recipe-test-fail.yaml -------------------------------------------------------------------------------- /test-data/recipes/package-content-tests/recipe-test-succeed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/package-content-tests/recipe-test-succeed.yaml -------------------------------------------------------------------------------- /test-data/recipes/package-content-tests/rich-recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/package-content-tests/rich-recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/package-content-tests/variant-config.yaml: -------------------------------------------------------------------------------- 1 | c_compiler: vs2022 2 | -------------------------------------------------------------------------------- /test-data/recipes/patch_with_strip/0001-Patch-with-levels-to-strip.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/patch_with_strip/0001-Patch-with-levels-to-strip.patch -------------------------------------------------------------------------------- /test-data/recipes/patch_with_strip/0002-Patch-without-additional-levels.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/patch_with_strip/0002-Patch-without-additional-levels.patch -------------------------------------------------------------------------------- /test-data/recipes/patch_with_strip/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/patch_with_strip/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/patch_with_strip/somefile.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/patch_with_strip/somefile.tar -------------------------------------------------------------------------------- /test-data/recipes/pe-malformed-windows/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/pe-malformed-windows/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/perl-test/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/perl-test/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/pin_compatible/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/pin_compatible/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/pin_subpackage/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/pin_subpackage/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/pkg_hash/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/pkg_hash/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/polarify/linux_64_.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/polarify/linux_64_.yaml -------------------------------------------------------------------------------- /test-data/recipes/polarify/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/polarify/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/post-link/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/post-link/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/prefix_detection/create_files_with_prefix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/prefix_detection/create_files_with_prefix.py -------------------------------------------------------------------------------- /test-data/recipes/prefix_detection/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/prefix_detection/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/private-repository/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/private-repository/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/python-version-spec/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/python-version-spec/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/python_compilation/recipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/python_compilation/recipe.py -------------------------------------------------------------------------------- /test-data/recipes/python_compilation/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/python_compilation/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/r-test/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/r-test/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/race-condition/recipe-cycle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/race-condition/recipe-cycle.yaml -------------------------------------------------------------------------------- /test-data/recipes/race-condition/recipe-pin-invalid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/race-condition/recipe-pin-invalid.yaml -------------------------------------------------------------------------------- /test-data/recipes/race-condition/recipe-pin-subpackage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/race-condition/recipe-pin-subpackage.yaml -------------------------------------------------------------------------------- /test-data/recipes/race-condition/recipe-python-min.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/race-condition/recipe-python-min.yaml -------------------------------------------------------------------------------- /test-data/recipes/race-condition/recipe-undefined-variant.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/race-condition/recipe-undefined-variant.yaml -------------------------------------------------------------------------------- /test-data/recipes/race-condition/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/race-condition/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/race-condition/variants.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/race-condition/variants.yaml -------------------------------------------------------------------------------- /test-data/recipes/rattlerbuildignore/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/rattlerbuildignore/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/read_only_build_files/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/read_only_build_files/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/recipe_variant/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/recipe_variant/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/recipe_variant/variants.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/recipe_variant/variants.yaml -------------------------------------------------------------------------------- /test-data/recipes/regex_post_process/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/regex_post_process/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/regex_post_process/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/regex_post_process/test.cmake -------------------------------------------------------------------------------- /test-data/recipes/regex_post_process/test.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/regex_post_process/test.pc -------------------------------------------------------------------------------- /test-data/recipes/relative_file_loading/data/package_data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/relative_file_loading/data/package_data.yaml -------------------------------------------------------------------------------- /test-data/recipes/relative_file_loading/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/relative_file_loading/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/rich/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/rich/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/rpath/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/rpath/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/ruby-extension-test/build.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/ruby-extension-test/build.rb -------------------------------------------------------------------------------- /test-data/recipes/ruby-extension-test/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/ruby-extension-test/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/ruby-imports-test/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/ruby-imports-test/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/ruby-test/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/ruby-test/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/run_exports/multi_run_exports_dict.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/run_exports/multi_run_exports_dict.yaml -------------------------------------------------------------------------------- /test-data/recipes/run_exports/multi_run_exports_list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/run_exports/multi_run_exports_list.yaml -------------------------------------------------------------------------------- /test-data/recipes/run_exports/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/run_exports/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/run_exports_from/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/run_exports_from/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/script/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/script/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/script/recipe_with_extensions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/script/recipe_with_extensions.yaml -------------------------------------------------------------------------------- /test-data/recipes/script/script.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/script/script.bat -------------------------------------------------------------------------------- /test-data/recipes/script/script.sh: -------------------------------------------------------------------------------- 1 | touch $PREFIX/script-executed.txt 2 | -------------------------------------------------------------------------------- /test-data/recipes/script_env/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/script_env/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/simple-nodejs-test/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/simple-nodejs-test/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/simple-ruby-test/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/simple-ruby-test/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/source_filter/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/source_filter/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/source_filter/test-folder/excluded.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-data/recipes/source_filter/test-folder/included.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-data/recipes/source_filter/test-folder/not-included: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-data/recipes/sourceforge-redirects/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/sourceforge-redirects/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/spaces-in-paths/recipe-with-quotes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/spaces-in-paths/recipe-with-quotes.yaml -------------------------------------------------------------------------------- /test-data/recipes/spaces-in-paths/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/spaces-in-paths/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/ssl_test/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/ssl_test/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/strict-mode/recipe-fail.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/strict-mode/recipe-fail.yaml -------------------------------------------------------------------------------- /test-data/recipes/strict-mode/recipe-many-files.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/strict-mode/recipe-many-files.yaml -------------------------------------------------------------------------------- /test-data/recipes/strict-mode/recipe-pass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/strict-mode/recipe-pass.yaml -------------------------------------------------------------------------------- /test-data/recipes/symlink/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/symlink/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/symlink_test/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/symlink_test/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/tar-source/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/tar-source/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/test-execution/recipe-test-fail.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/test-execution/recipe-test-fail.yaml -------------------------------------------------------------------------------- /test-data/recipes/test-execution/recipe-test-succeed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/test-execution/recipe-test-succeed.yaml -------------------------------------------------------------------------------- /test-data/recipes/test-execution/testfile.txt: -------------------------------------------------------------------------------- 1 | just a test 2 | -------------------------------------------------------------------------------- /test-data/recipes/test-execution/testfolder/data.txt: -------------------------------------------------------------------------------- 1 | data 2 | -------------------------------------------------------------------------------- /test-data/recipes/test-parsing/map_jinja_null_values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/test-parsing/map_jinja_null_values.yaml -------------------------------------------------------------------------------- /test-data/recipes/test-parsing/recipe_bad_skip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/test-parsing/recipe_bad_skip.yaml -------------------------------------------------------------------------------- /test-data/recipes/test-parsing/recipe_bad_skip_multi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/test-parsing/recipe_bad_skip_multi.yaml -------------------------------------------------------------------------------- /test-data/recipes/test-parsing/recipe_build_binary_relocation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/test-parsing/recipe_build_binary_relocation.yaml -------------------------------------------------------------------------------- /test-data/recipes/test-parsing/recipe_build_binary_relocation_paths.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/test-parsing/recipe_build_binary_relocation_paths.yaml -------------------------------------------------------------------------------- /test-data/recipes/test-parsing/recipe_duplicate_keys.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/test-parsing/recipe_duplicate_keys.yaml -------------------------------------------------------------------------------- /test-data/recipes/test-parsing/recipe_ignore_run_exports.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/test-parsing/recipe_ignore_run_exports.yaml -------------------------------------------------------------------------------- /test-data/recipes/test-parsing/recipe_inline_jinja.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/test-parsing/recipe_inline_jinja.yaml -------------------------------------------------------------------------------- /test-data/recipes/test-parsing/recipe_jinja_error.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/test-parsing/recipe_jinja_error.yaml -------------------------------------------------------------------------------- /test-data/recipes/test-parsing/recipe_missing_version.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/test-parsing/recipe_missing_version.yaml -------------------------------------------------------------------------------- /test-data/recipes/test-parsing/recipe_outputs_and_package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/test-parsing/recipe_outputs_and_package.yaml -------------------------------------------------------------------------------- /test-data/recipes/test-parsing/recipe_outputs_and_requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/test-parsing/recipe_outputs_and_requirements.yaml -------------------------------------------------------------------------------- /test-data/recipes/test-parsing/recipe_outputs_extra_keys.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/test-parsing/recipe_outputs_extra_keys.yaml -------------------------------------------------------------------------------- /test-data/recipes/test-parsing/recipe_outputs_merging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/test-parsing/recipe_outputs_merging.yaml -------------------------------------------------------------------------------- /test-data/recipes/test-parsing/single_output.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/test-parsing/single_output.yaml -------------------------------------------------------------------------------- /test-data/recipes/test-parsing/xtensor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/test-parsing/xtensor.yaml -------------------------------------------------------------------------------- /test-data/recipes/test-relink/absolute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/test-relink/absolute.c -------------------------------------------------------------------------------- /test-data/recipes/test-relink/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/test-relink/build.sh -------------------------------------------------------------------------------- /test-data/recipes/test-relink/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/test-relink/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/test-relink/relative.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/test-relink/relative.c -------------------------------------------------------------------------------- /test-data/recipes/test-relink/test_link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/test-relink/test_link.c -------------------------------------------------------------------------------- /test-data/recipes/test-section/script-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/test-section/script-test.yaml -------------------------------------------------------------------------------- /test-data/recipes/test-sources/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/test-sources/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/test-sources/test-file.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-data/recipes/test-sources/test-folder/test-file-2.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-data/recipes/test-sources/test-folder/test-file-3.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-data/recipes/test_strategy/recipe-noarch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/test_strategy/recipe-noarch.yaml -------------------------------------------------------------------------------- /test-data/recipes/test_strategy/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/test_strategy/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/timestamps/create_archive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/timestamps/create_archive.sh -------------------------------------------------------------------------------- /test-data/recipes/timestamps/oldarchive.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/timestamps/oldarchive.tar.gz -------------------------------------------------------------------------------- /test-data/recipes/timestamps/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/timestamps/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/toml/expected/about.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/toml/expected/about.json -------------------------------------------------------------------------------- /test-data/recipes/toml/expected/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/toml/expected/index.json -------------------------------------------------------------------------------- /test-data/recipes/toml/expected/link.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/toml/expected/link.json -------------------------------------------------------------------------------- /test-data/recipes/toml/expected/paths.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/toml/expected/paths.json -------------------------------------------------------------------------------- /test-data/recipes/toml/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/toml/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/topological-sort-variants/pkg-a/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/topological-sort-variants/pkg-a/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/topological-sort-variants/pkg-a/variants.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/topological-sort-variants/pkg-a/variants.yaml -------------------------------------------------------------------------------- /test-data/recipes/topological-sort-variants/pkg-b/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/topological-sort-variants/pkg-b/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/topological-sort-variants/pkg-b/variants.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/topological-sort-variants/pkg-b/variants.yaml -------------------------------------------------------------------------------- /test-data/recipes/topological-sort-variants/pkg-c/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/topological-sort-variants/pkg-c/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/topological-sort-variants/pkg-c/variants.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/topological-sort-variants/pkg-c/variants.yaml -------------------------------------------------------------------------------- /test-data/recipes/url-source-with-ignore/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/url-source-with-ignore/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/used-vars/recipe_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/used-vars/recipe_1.yaml -------------------------------------------------------------------------------- /test-data/recipes/used-vars/variants.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/used-vars/variants.yaml -------------------------------------------------------------------------------- /test-data/recipes/variant_config/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/variant_config/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/variant_config/variant_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/variant_config/variant_config.yaml -------------------------------------------------------------------------------- /test-data/recipes/variants/boltons_recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/variants/boltons_recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/variants/issue_variant_ignore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/variants/issue_variant_ignore.yaml -------------------------------------------------------------------------------- /test-data/recipes/variants/python_variant.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/variants/python_variant.yaml -------------------------------------------------------------------------------- /test-data/recipes/variants/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/variants/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/variants/variant_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/variants/variant_config.yaml -------------------------------------------------------------------------------- /test-data/recipes/win-symlink-test/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/win-symlink-test/recipe.yaml -------------------------------------------------------------------------------- /test-data/recipes/zip-source/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/recipes/zip-source/recipe.yaml -------------------------------------------------------------------------------- /test-data/rendered_recipes/curl_recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/rendered_recipes/curl_recipe.yaml -------------------------------------------------------------------------------- /test-data/rendered_recipes/dependencies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/rendered_recipes/dependencies.yaml -------------------------------------------------------------------------------- /test-data/rendered_recipes/git_source.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/rendered_recipes/git_source.yaml -------------------------------------------------------------------------------- /test-data/rendered_recipes/rich_recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/rendered_recipes/rich_recipe.yaml -------------------------------------------------------------------------------- /test-data/selectors/config_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/selectors/config_1.yaml -------------------------------------------------------------------------------- /test-data/shebang/replace_shebang_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/shebang/replace_shebang_1.py -------------------------------------------------------------------------------- /test-data/shebang/replace_shebang_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/shebang/replace_shebang_2.py -------------------------------------------------------------------------------- /test-data/variant_files/variant_config_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test-data/variant_files/variant_config_1.yaml -------------------------------------------------------------------------------- /test/end-to-end/__snapshots__/test_simple.ambr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test/end-to-end/__snapshots__/test_simple.ambr -------------------------------------------------------------------------------- /test/end-to-end/__snapshots__/test_simple/test_build_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test/end-to-end/__snapshots__/test_simple/test_build_files.json -------------------------------------------------------------------------------- /test/end-to-end/__snapshots__/test_simple/test_extra_meta_is_recorded_into_about_json.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test/end-to-end/__snapshots__/test_simple/test_extra_meta_is_recorded_into_about_json.json -------------------------------------------------------------------------------- /test/end-to-end/__snapshots__/test_simple/test_filter_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test/end-to-end/__snapshots__/test_simple/test_filter_files.json -------------------------------------------------------------------------------- /test/end-to-end/__snapshots__/test_simple/test_git_submodule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test/end-to-end/__snapshots__/test_simple/test_git_submodule.json -------------------------------------------------------------------------------- /test/end-to-end/__snapshots__/test_simple/test_jinja_types.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test/end-to-end/__snapshots__/test_simple/test_jinja_types.1.json -------------------------------------------------------------------------------- /test/end-to-end/__snapshots__/test_simple/test_jinja_types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test/end-to-end/__snapshots__/test_simple/test_jinja_types.json -------------------------------------------------------------------------------- /test/end-to-end/__snapshots__/test_simple/test_pin_compatible.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test/end-to-end/__snapshots__/test_simple/test_pin_compatible.json -------------------------------------------------------------------------------- /test/end-to-end/__snapshots__/test_simple/test_post_link.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test/end-to-end/__snapshots__/test_simple/test_post_link.json -------------------------------------------------------------------------------- /test/end-to-end/__snapshots__/test_simple/test_python_min_render.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test/end-to-end/__snapshots__/test_simple/test_python_min_render.json -------------------------------------------------------------------------------- /test/end-to-end/__snapshots__/test_simple/test_recipe_variant_render.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test/end-to-end/__snapshots__/test_simple/test_recipe_variant_render.1.json -------------------------------------------------------------------------------- /test/end-to-end/__snapshots__/test_simple/test_recipe_variant_render.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test/end-to-end/__snapshots__/test_simple/test_recipe_variant_render.json -------------------------------------------------------------------------------- /test/end-to-end/__snapshots__/test_simple/test_run_exports.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test/end-to-end/__snapshots__/test_simple/test_run_exports.json -------------------------------------------------------------------------------- /test/end-to-end/__snapshots__/test_simple/test_symlink_recipe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test/end-to-end/__snapshots__/test_simple/test_symlink_recipe.json -------------------------------------------------------------------------------- /test/end-to-end/__snapshots__/test_symlinks/test_symlink_cache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test/end-to-end/__snapshots__/test_symlinks/test_symlink_cache.json -------------------------------------------------------------------------------- /test/end-to-end/__snapshots__/test_tests.ambr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test/end-to-end/__snapshots__/test_tests.ambr -------------------------------------------------------------------------------- /test/end-to-end/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test/end-to-end/conftest.py -------------------------------------------------------------------------------- /test/end-to-end/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test/end-to-end/helpers.py -------------------------------------------------------------------------------- /test/end-to-end/test_create_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test/end-to-end/test_create_patch.py -------------------------------------------------------------------------------- /test/end-to-end/test_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test/end-to-end/test_debug.py -------------------------------------------------------------------------------- /test/end-to-end/test_ignore_keys_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test/end-to-end/test_ignore_keys_context.py -------------------------------------------------------------------------------- /test/end-to-end/test_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test/end-to-end/test_simple.py -------------------------------------------------------------------------------- /test/end-to-end/test_ssl_handling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test/end-to-end/test_ssl_handling.py -------------------------------------------------------------------------------- /test/end-to-end/test_symlinks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test/end-to-end/test_symlinks.py -------------------------------------------------------------------------------- /test/end-to-end/test_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test/end-to-end/test_tests.py -------------------------------------------------------------------------------- /test/end-to-end/test_variant_override.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/test/end-to-end/test_variant_override.py -------------------------------------------------------------------------------- /typos.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prefix-dev/rattler-build/HEAD/typos.toml --------------------------------------------------------------------------------