├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ └── bug_report.md ├── PULL_REQUEST_TEMPLATE.md ├── copilot-instructions.md └── workflows │ ├── ci-docker.yml │ ├── ci-integrity.yml │ ├── ci-release.yml │ ├── ci-toolchain.yml │ ├── ci-unsupported.yml │ ├── cleaner.yml │ ├── spellcheck.yml │ └── tarball-full.yml ├── .gitignore ├── .gitmodules ├── .gitpod.Dockerfile ├── .gitpod.yml ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── BREAKING.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── RELEASING-post.md ├── RELEASING.md ├── alire.gpr ├── alire.toml ├── alire_common.gpr ├── alr.gpr ├── alr_env.gpr ├── dev ├── build.sh ├── clean.sh ├── edit.sh ├── functions.sh ├── reset-version.sh └── unused.sh ├── doc ├── 2018-03.alr-draft.pdf ├── AEPs │ ├── aep-0001.md │ ├── aep-0002.md │ ├── aep-0003.md │ └── aep-0004.md ├── alr-logo-black-white.svg ├── alr-logo-sq.png ├── alr-logo-white.svg ├── alr-logo.svg ├── alr-logo.svg.png ├── catalog-format-spec.md ├── classes.graphml ├── getting-started.md ├── introduction.md ├── policies.md ├── private-crates.md ├── publishing.md ├── settings.md ├── toolchains.md ├── unicode.md ├── upgrading.md └── user-changes.md ├── elim ├── ajunitgen.gpr ├── alire.gpr ├── alr.gpr └── run.sh ├── resources ├── alr-qr-code-gradient.png ├── alr.desktop └── alr.png ├── scripts ├── alr-completion.bash ├── aptdetect ├── ci-github.sh ├── git-fingerprint ├── gnat_install.qs ├── installer │ ├── README.md │ ├── alr_icon.ico │ ├── alr_installer_icon.ico │ ├── auto-install.js │ ├── make-alire-installer │ └── qt-ifw │ │ ├── config │ │ └── config.xml │ │ └── packages │ │ └── com.alire.root │ │ └── meta │ │ ├── installscript.js │ │ └── package.xml ├── python │ ├── alire │ │ ├── __init__.py │ │ ├── index.py │ │ └── utils.py │ ├── check_finalize_exceptions.py │ ├── manifest-version.py │ ├── separate-origins.py │ └── split-crates.py ├── verify-pins.sh ├── version-patcher.ps1 └── version-patcher.sh ├── src ├── alire │ ├── README.md │ ├── alire-builds-hashes.adb │ ├── alire-builds-hashes.ads │ ├── alire-builds.adb │ ├── alire-builds.ads │ ├── alire-cache.adb │ ├── alire-cache.ads │ ├── alire-conditional.adb │ ├── alire-conditional.ads │ ├── alire-conditional_trees-case_nodes.adb │ ├── alire-conditional_trees-case_nodes.ads │ ├── alire-conditional_trees-toml_load.adb │ ├── alire-conditional_trees-toml_load.ads │ ├── alire-conditional_trees.adb │ ├── alire-conditional_trees.ads │ ├── alire-containers.ads │ ├── alire-crate_configuration-hashes.adb │ ├── alire-crate_configuration-hashes.ads │ ├── alire-crate_configuration.adb │ ├── alire-crate_configuration.ads │ ├── alire-crates-containers.ads │ ├── alire-crates.adb │ ├── alire-crates.ads │ ├── alire-defaults.ads │ ├── alire-dependencies-containers.adb │ ├── alire-dependencies-containers.ads │ ├── alire-dependencies-diffs.adb │ ├── alire-dependencies-diffs.ads │ ├── alire-dependencies-graphs.adb │ ├── alire-dependencies-graphs.ads │ ├── alire-dependencies-states-maps.adb │ ├── alire-dependencies-states-maps.ads │ ├── alire-dependencies-states.adb │ ├── alire-dependencies-states.ads │ ├── alire-dependencies.adb │ ├── alire-dependencies.ads │ ├── alire-directories.adb │ ├── alire-directories.ads │ ├── alire-environment-loading.adb │ ├── alire-environment-loading.ads │ ├── alire-environment.adb │ ├── alire-environment.ads │ ├── alire-errors.adb │ ├── alire-errors.ads │ ├── alire-expressions-enums.adb │ ├── alire-expressions-enums.ads │ ├── alire-expressions-maps.adb │ ├── alire-expressions-maps.ads │ ├── alire-expressions.adb │ ├── alire-expressions.ads │ ├── alire-externals-from_output.adb │ ├── alire-externals-from_output.ads │ ├── alire-externals-from_system.adb │ ├── alire-externals-from_system.ads │ ├── alire-externals-lists.adb │ ├── alire-externals-lists.ads │ ├── alire-externals-unindexed.adb │ ├── alire-externals-unindexed.ads │ ├── alire-externals.adb │ ├── alire-externals.ads │ ├── alire-features.ads │ ├── alire-flags.adb │ ├── alire-flags.ads │ ├── alire-formatting.adb │ ├── alire-formatting.ads │ ├── alire-github.adb │ ├── alire-github.ads │ ├── alire-gpr.adb │ ├── alire-gpr.ads │ ├── alire-hashes-common.adb │ ├── alire-hashes-common.ads │ ├── alire-hashes-sha256_impl.ads │ ├── alire-hashes-sha512_impl.ads │ ├── alire-hashes.adb │ ├── alire-hashes.ads │ ├── alire-index-search.adb │ ├── alire-index-search.ads │ ├── alire-index.adb │ ├── alire-index.ads │ ├── alire-index_on_disk-directory.adb │ ├── alire-index_on_disk-directory.ads │ ├── alire-index_on_disk-git.adb │ ├── alire-index_on_disk-git.ads │ ├── alire-index_on_disk-loading.adb │ ├── alire-index_on_disk-loading.ads │ ├── alire-index_on_disk-updates.adb │ ├── alire-index_on_disk-updates.ads │ ├── alire-index_on_disk.adb │ ├── alire-index_on_disk.ads │ ├── alire-install.adb │ ├── alire-install.ads │ ├── alire-interfaces.ads │ ├── alire-licensing.adb │ ├── alire-licensing.ads │ ├── alire-loading.ads │ ├── alire-lockfiles.adb │ ├── alire-lockfiles.ads │ ├── alire-manifest.adb │ ├── alire-manifest.ads │ ├── alire-meta.ads │ ├── alire-milestones-containers.ads │ ├── alire-milestones.ads │ ├── alire-optional.ads │ ├── alire-origins-deployers-external.ads │ ├── alire-origins-deployers-filesystem.adb │ ├── alire-origins-deployers-filesystem.ads │ ├── alire-origins-deployers-git.adb │ ├── alire-origins-deployers-git.ads │ ├── alire-origins-deployers-hg.adb │ ├── alire-origins-deployers-hg.ads │ ├── alire-origins-deployers-source_archive.adb │ ├── alire-origins-deployers-source_archive.ads │ ├── alire-origins-deployers-svn.adb │ ├── alire-origins-deployers-svn.ads │ ├── alire-origins-deployers-system-apt.adb │ ├── alire-origins-deployers-system-apt.ads │ ├── alire-origins-deployers-system-homebrew.adb │ ├── alire-origins-deployers-system-homebrew.ads │ ├── alire-origins-deployers-system-macports.adb │ ├── alire-origins-deployers-system-macports.ads │ ├── alire-origins-deployers-system-pacman.adb │ ├── alire-origins-deployers-system-pacman.ads │ ├── alire-origins-deployers-system-portage.adb │ ├── alire-origins-deployers-system-portage.ads │ ├── alire-origins-deployers-system-rpm_wrappers.adb │ ├── alire-origins-deployers-system-rpm_wrappers.ads │ ├── alire-origins-deployers-system-unknown.ads │ ├── alire-origins-deployers-system-zypper.adb │ ├── alire-origins-deployers-system-zypper.ads │ ├── alire-origins-deployers-system.adb │ ├── alire-origins-deployers-system.ads │ ├── alire-origins-deployers.adb │ ├── alire-origins-deployers.ads │ ├── alire-origins-tweaks.adb │ ├── alire-origins-tweaks.ads │ ├── alire-origins.adb │ ├── alire-origins.ads │ ├── alire-os_lib-download.adb │ ├── alire-os_lib-download.ads │ ├── alire-os_lib-subprocess.adb │ ├── alire-os_lib-subprocess.ads │ ├── alire-os_lib.adb │ ├── alire-os_lib.ads │ ├── alire-outcomes-definite.ads │ ├── alire-outcomes-indefinite.adb │ ├── alire-outcomes-indefinite.ads │ ├── alire-outcomes.ads │ ├── alire-paths-vault.ads │ ├── alire-paths.ads │ ├── alire-platforms-common.adb │ ├── alire-platforms-common.ads │ ├── alire-platforms-current.ads │ ├── alire-platforms-folders.ads │ ├── alire-platforms.ads │ ├── alire-policies.ads │ ├── alire-properties-actions-executor.adb │ ├── alire-properties-actions-executor.ads │ ├── alire-properties-actions-runners.adb │ ├── alire-properties-actions-runners.ads │ ├── alire-properties-actions.adb │ ├── alire-properties-actions.ads │ ├── alire-properties-bool.adb │ ├── alire-properties-bool.ads │ ├── alire-properties-build_profiles.adb │ ├── alire-properties-build_profiles.ads │ ├── alire-properties-build_switches.adb │ ├── alire-properties-build_switches.ads │ ├── alire-properties-cases.ads │ ├── alire-properties-configurations.adb │ ├── alire-properties-configurations.ads │ ├── alire-properties-environment.adb │ ├── alire-properties-environment.ads │ ├── alire-properties-from_toml.adb │ ├── alire-properties-from_toml.ads │ ├── alire-properties-future.adb │ ├── alire-properties-future.ads │ ├── alire-properties-labeled.adb │ ├── alire-properties-labeled.ads │ ├── alire-properties-licenses.adb │ ├── alire-properties-licenses.ads │ ├── alire-properties-platform.ads │ ├── alire-properties-scenarios.adb │ ├── alire-properties-scenarios.ads │ ├── alire-properties-tests.adb │ ├── alire-properties-tests.ads │ ├── alire-properties.adb │ ├── alire-properties.ads │ ├── alire-provides.adb │ ├── alire-provides.ads │ ├── alire-publish-states.adb │ ├── alire-publish-states.ads │ ├── alire-publish-submit.adb │ ├── alire-publish-submit.ads │ ├── alire-publish.adb │ ├── alire-publish.ads │ ├── alire-releases-containers.adb │ ├── alire-releases-containers.ads │ ├── alire-releases.adb │ ├── alire-releases.ads │ ├── alire-root.adb │ ├── alire-root.ads │ ├── alire-roots-editable.adb │ ├── alire-roots-editable.ads │ ├── alire-roots-optional.adb │ ├── alire-roots-optional.ads │ ├── alire-roots.adb │ ├── alire-roots.ads │ ├── alire-settings-builtins.ads │ ├── alire-settings-checks.adb │ ├── alire-settings-checks.ads │ ├── alire-settings-edit-early_load.adb │ ├── alire-settings-edit-early_load.ads │ ├── alire-settings-edit.adb │ ├── alire-settings-edit.ads │ ├── alire-settings.adb │ ├── alire-settings.ads │ ├── alire-solutions-containers.ads │ ├── alire-solutions-diffs.adb │ ├── alire-solutions-diffs.ads │ ├── alire-solutions.adb │ ├── alire-solutions.ads │ ├── alire-solver-predefined_options.ads │ ├── alire-solver.adb │ ├── alire-solver.ads │ ├── alire-spawn.adb │ ├── alire-spawn.ads │ ├── alire-templates-builtins.ads │ ├── alire-templates.adb │ ├── alire-templates.ads │ ├── alire-test_runner.adb │ ├── alire-test_runner.ads │ ├── alire-toml_adapters.adb │ ├── alire-toml_adapters.ads │ ├── alire-toml_index.adb │ ├── alire-toml_index.ads │ ├── alire-toml_keys.ads │ ├── alire-toml_load.adb │ ├── alire-toml_load.ads │ ├── alire-toolchains-solutions.adb │ ├── alire-toolchains-solutions.ads │ ├── alire-toolchains.adb │ ├── alire-toolchains.ads │ ├── alire-types.ads │ ├── alire-uri.adb │ ├── alire-uri.ads │ ├── alire-user_pins-maps.adb │ ├── alire-user_pins-maps.ads │ ├── alire-user_pins.adb │ ├── alire-user_pins.ads │ ├── alire-utils-comparisons.ads │ ├── alire-utils-did_you_mean.adb │ ├── alire-utils-did_you_mean.ads │ ├── alire-utils-gnat_switches.ads │ ├── alire-utils-regex.adb │ ├── alire-utils-regex.ads │ ├── alire-utils-switches-knowledge.adb │ ├── alire-utils-switches-knowledge.ads │ ├── alire-utils-switches.adb │ ├── alire-utils-switches.ads │ ├── alire-utils-tables.adb │ ├── alire-utils-tables.ads │ ├── alire-utils-text_files.adb │ ├── alire-utils-text_files.ads │ ├── alire-utils-tools.adb │ ├── alire-utils-tools.ads │ ├── alire-utils-tty.ads │ ├── alire-utils-user_input-query_config.adb │ ├── alire-utils-user_input-query_config.ads │ ├── alire-utils-user_input.adb │ ├── alire-utils-user_input.ads │ ├── alire-utils-yaml.adb │ ├── alire-utils-yaml.ads │ ├── alire-utils.adb │ ├── alire-utils.ads │ ├── alire-vcss-git.adb │ ├── alire-vcss-git.ads │ ├── alire-vcss-hg.adb │ ├── alire-vcss-hg.ads │ ├── alire-vcss-svn.adb │ ├── alire-vcss-svn.ads │ ├── alire-vcss.adb │ ├── alire-vcss.ads │ ├── alire-version.ads │ ├── alire-vfs.adb │ ├── alire-vfs.ads │ ├── alire-warnings.adb │ ├── alire-warnings.ads │ ├── alire.adb │ ├── alire.ads │ ├── alire_early_elaboration.adb │ ├── alire_early_elaboration.ads │ ├── obsolete │ │ ├── alire-dependencies-vectors.ads │ │ ├── alire-platform.adb │ │ ├── alire-platform.ads │ │ └── alire-properties-dependencies.ads │ ├── os_freebsd │ │ ├── alire-platforms-current__freebsd.adb │ │ └── alire-platforms-folders__freebsd.adb │ ├── os_linux │ │ ├── alire-platforms-current__linux.adb │ │ └── alire-platforms-folders__linux.adb │ ├── os_macos │ │ ├── alire-platforms-current__macos.adb │ │ └── alire-platforms-folders__macos.adb │ ├── os_openbsd │ │ ├── alire-platforms-current__openbsd.adb │ │ └── alire-platforms-folders__openbsd.adb │ └── os_windows │ │ ├── alire-platforms-current__windows.adb │ │ ├── alire-platforms-folders__windows.adb │ │ └── alire-settings-builtins-windows.ads ├── alr │ ├── README.md │ ├── alr-actions.adb │ ├── alr-actions.ads │ ├── alr-bootstrap.adb │ ├── alr-bootstrap.ads │ ├── alr-commands-action.adb │ ├── alr-commands-action.ads │ ├── alr-commands-build.adb │ ├── alr-commands-build.ads │ ├── alr-commands-cache.adb │ ├── alr-commands-cache.ads │ ├── alr-commands-clean.adb │ ├── alr-commands-clean.ads │ ├── alr-commands-config.adb │ ├── alr-commands-config.ads │ ├── alr-commands-dev.adb │ ├── alr-commands-dev.ads │ ├── alr-commands-edit.adb │ ├── alr-commands-edit.ads │ ├── alr-commands-exec.adb │ ├── alr-commands-exec.ads │ ├── alr-commands-get.adb │ ├── alr-commands-get.ads │ ├── alr-commands-index.adb │ ├── alr-commands-index.ads │ ├── alr-commands-init.adb │ ├── alr-commands-init.ads │ ├── alr-commands-install.adb │ ├── alr-commands-install.ads │ ├── alr-commands-pin.adb │ ├── alr-commands-pin.ads │ ├── alr-commands-printenv.adb │ ├── alr-commands-printenv.ads │ ├── alr-commands-publish.adb │ ├── alr-commands-publish.ads │ ├── alr-commands-run.adb │ ├── alr-commands-run.ads │ ├── alr-commands-search.adb │ ├── alr-commands-search.ads │ ├── alr-commands-self_update.adb │ ├── alr-commands-self_update.ads │ ├── alr-commands-settings.adb │ ├── alr-commands-settings.ads │ ├── alr-commands-show.adb │ ├── alr-commands-show.ads │ ├── alr-commands-skeleton.ads │ ├── alr-commands-test.adb │ ├── alr-commands-test.ads │ ├── alr-commands-toolchain.adb │ ├── alr-commands-toolchain.ads │ ├── alr-commands-topics-aliases.ads │ ├── alr-commands-topics-naming_convention.ads │ ├── alr-commands-topics-toolchains.ads │ ├── alr-commands-topics-upgrading_alr.ads │ ├── alr-commands-topics.ads │ ├── alr-commands-update.adb │ ├── alr-commands-update.ads │ ├── alr-commands-user_input.adb │ ├── alr-commands-user_input.ads │ ├── alr-commands-version.adb │ ├── alr-commands-version.ads │ ├── alr-commands-withing.adb │ ├── alr-commands-withing.ads │ ├── alr-commands.adb │ ├── alr-commands.ads │ ├── alr-common.adb │ ├── alr-common.ads │ ├── alr-exceptions.adb │ ├── alr-exceptions.ads │ ├── alr-files.adb │ ├── alr-files.ads │ ├── alr-last_chance_handler.adb │ ├── alr-last_chance_handler.ads │ ├── alr-main.adb │ ├── alr-os_lib.adb │ ├── alr-os_lib.ads │ ├── alr-testing-collections.adb │ ├── alr-testing-collections.ads │ ├── alr-testing-console.adb │ ├── alr-testing-console.ads │ ├── alr-testing-junit.adb │ ├── alr-testing-junit.ads │ ├── alr-testing-markdown.adb │ ├── alr-testing-markdown.ads │ ├── alr-testing-text.adb │ ├── alr-testing-text.ads │ ├── alr-testing.ads │ ├── alr-utils-temp_file.adb │ ├── alr-utils-temp_file.ads │ ├── alr-utils.adb │ ├── alr-utils.ads │ ├── alr.ads │ ├── default_session │ │ └── alr-session.ads │ ├── obsolete │ │ ├── alr-commands-depend.adb │ │ └── alr-commands-depend.ads │ ├── os_linux │ │ ├── .retaindir │ │ └── os.c │ ├── os_macos │ │ └── .retaindir │ └── os_windows │ │ └── .retaindir └── templates │ ├── r-crate_bin_alire_toml.ads │ ├── r-crate_bin_name_gpr.ads │ ├── r-crate_bin_src_name_adb.ads │ ├── r-crate_common_gitignore_hidden.ads │ ├── r-crate_lib_alire_toml.ads │ ├── r-crate_lib_name_gpr.ads │ ├── r-crate_lib_src_name_ads.ads │ ├── r-crate_test_tests_alire_toml.ads │ ├── r-crate_test_tests_common_name_tests_ads.ads │ ├── r-crate_test_tests_crate_test_tests_gpr.ads │ ├── r-crate_test_tests_src_name_testsxassertions_enabled_adb.ads │ ├── r-github_publish_yml.ads │ ├── r-github_readme_md.ads │ ├── r-github_selftest_yml.ads │ ├── r.adb │ └── r.ads ├── support ├── embedder │ ├── .gitignore │ ├── embedder.sh │ └── templates.hash └── version_patcher │ ├── .gitignore │ ├── alire.toml │ ├── config │ ├── version_patcher_config.ads │ ├── version_patcher_config.gpr │ └── version_patcher_config.h │ ├── src │ └── version_patcher.adb │ └── version_patcher.gpr ├── templates ├── crate_bin │ ├── alire.toml │ ├── name.gpr │ └── src │ │ └── name.adb ├── crate_common │ └── gitignore.hidden ├── crate_lib │ ├── alire.toml │ ├── name.gpr │ └── src │ │ └── name.ads ├── crate_test │ └── tests │ │ ├── alire.toml │ │ ├── common │ │ └── name_tests.ads │ │ ├── crate_test_tests.gpr │ │ └── src │ │ └── name_tests-assertions_enabled.adb └── github │ ├── README.md │ ├── publish.yml │ └── selftest.yml ├── testsuite ├── Dockerfile ├── README.md ├── deprecated │ └── config │ │ └── shared-deps-profiles │ │ ├── test.py │ │ └── test.yaml ├── disabled │ ├── manifest │ │ ├── version-mismatch │ │ │ ├── test.py │ │ │ └── test.yaml │ │ └── version-missing │ │ │ ├── test.py │ │ │ └── test.yaml │ └── publish │ │ └── hash │ │ ├── test.py │ │ └── test.yaml ├── drivers │ ├── __init__.py │ ├── alr.py │ ├── asserts.py │ ├── builds.py │ ├── driver │ │ ├── __init__.py │ │ ├── base_driver.py │ │ ├── docker_nested.py │ │ ├── docker_wrapper.py │ │ └── python_script.py │ └── helpers.py ├── fix-text.sh ├── fix-versions.sh ├── fixtures │ ├── ambiguous_ssh_origin_index │ │ ├── index.toml │ │ └── li │ │ │ └── libfoo │ │ │ └── libfoo-1.0.0.toml │ ├── basic_index │ │ ├── gn │ │ │ └── gnat_external │ │ │ │ └── gnat_external-external.toml │ │ ├── he │ │ │ └── hello │ │ │ │ ├── hello-1.0.0.toml │ │ │ │ └── hello-1.0.1.toml │ │ ├── index.toml │ │ ├── li │ │ │ └── libhello │ │ │ │ └── libhello-1.0.0.toml │ │ └── ma │ │ │ └── make │ │ │ └── make-external.toml │ ├── basic_no_compiler_index │ │ ├── he │ │ │ └── hello │ │ │ │ ├── hello-1.0.0.toml │ │ │ │ └── hello-1.0.1.toml │ │ ├── index.toml │ │ ├── li │ │ │ └── libhello │ │ │ │ └── libhello-1.0.0.toml │ │ └── ma │ │ │ └── make │ │ │ └── make-external.toml │ ├── build_hash_index │ │ ├── gn │ │ │ ├── gnat_external │ │ │ │ └── gnat_external-external.toml │ │ │ └── gnat_native │ │ │ │ ├── gnat_native-7777.0.0.toml │ │ │ │ └── gnat_native-8888.0.0.toml │ │ ├── he │ │ │ └── hello │ │ │ │ ├── hello-1.0.0.toml │ │ │ │ └── hello-1.0.1.toml │ │ ├── index.toml │ │ ├── li │ │ │ └── libhello │ │ │ │ ├── libhello-0.9.0.toml │ │ │ │ └── libhello-1.0.0.toml │ │ └── ma │ │ │ └── make │ │ │ └── make-external.toml │ ├── cases_index │ │ ├── he │ │ │ └── hello │ │ │ │ ├── hello-0.9.0.toml │ │ │ │ └── hello-1.0.1.toml │ │ ├── index.toml │ │ └── li │ │ │ └── libhello │ │ │ ├── libhello-1.0.0-linuxonly.toml │ │ │ ├── libhello-1.0.0-unavail.toml │ │ │ ├── libhello-1.0.0.toml │ │ │ └── libhello-external.toml │ ├── checked_index │ │ ├── index.toml │ │ └── li │ │ │ └── libhello │ │ │ ├── libhello-1.0.0-git.toml │ │ │ ├── libhello-1.0.0-gitbad.toml │ │ │ └── libhello-1.0.0-tarball.toml │ ├── compiler_only_index │ │ ├── gn │ │ │ └── gnat_external │ │ │ │ └── gnat_external-external.toml │ │ ├── gp │ │ │ └── gprbuild │ │ │ │ └── gprbuild-external.toml │ │ └── index.toml │ ├── crates │ │ ├── gnat_cross_1_bin.tgz │ │ ├── gnat_native_bin.tgz │ │ ├── gnat_native_mock_1.0.zip │ │ ├── gprbuild_mock_1.0.zip │ │ ├── hello_1.0.0 │ │ │ ├── hello.gpr │ │ │ └── src │ │ │ │ └── hello.adb │ │ ├── hello_1.0.1 │ │ │ ├── hello.gpr │ │ │ └── src │ │ │ │ └── hello.adb │ │ ├── libfoo_git │ │ │ ├── HEAD │ │ │ ├── config │ │ │ ├── description │ │ │ ├── info │ │ │ │ └── exclude │ │ │ ├── objects │ │ │ │ ├── 78 │ │ │ │ │ └── 981922613b2afb6025042ff6bd878ac1994e85 │ │ │ │ ├── 9a │ │ │ │ │ └── f665c489b9079ead6193d01db502f1a074e36a │ │ │ │ ├── 9d │ │ │ │ │ └── dda32bbbf117dcf2314cb8c23f127c735e5863 │ │ │ │ ├── cb │ │ │ │ │ └── 514eabb745aff2b9a515cce4c4daaaac56edaf │ │ │ │ ├── e6 │ │ │ │ │ └── 9de29bb2d1d6434b8b29ae775ad8c2e48c5391 │ │ │ │ └── f9 │ │ │ │ │ └── 57ddd800de611a056d699da3304ad8e31a37c1 │ │ │ └── refs │ │ │ │ └── heads │ │ │ │ └── master │ │ ├── libhello_1.0.0.tgz │ │ ├── libhello_1.0.0 │ │ │ ├── libhello.gpr │ │ │ └── src │ │ │ │ ├── libhello.adb │ │ │ │ └── libhello.ads │ │ ├── noop_1.0-default.tgz │ │ ├── noop_1.0-multi.tgz │ │ └── noop_1.0-nondef.tgz │ ├── git_index │ │ ├── index.toml │ │ └── li │ │ │ └── libfoo │ │ │ └── libfoo-1.0.0-git.toml │ ├── gnat_toolchain_index │ │ ├── gn │ │ │ ├── gnat_cross │ │ │ │ └── gnat_cross-1.0.0.toml │ │ │ ├── gnat_external │ │ │ │ └── gnat_external-external.toml │ │ │ └── gnat_native │ │ │ │ └── gnat_native-1.0.0.toml │ │ ├── gp │ │ │ └── gprbuild │ │ │ │ ├── gprbuild-1.0.0.toml │ │ │ │ └── gprbuild-external.toml │ │ └── index.toml │ ├── missing_external_index │ │ ├── index.toml │ │ └── mi │ │ │ └── missing_external │ │ │ └── missing_external-external.toml │ ├── native_index │ │ ├── index.toml │ │ ├── li │ │ │ └── libhello │ │ │ │ ├── libhello-0.9.0-test-unav-native.toml │ │ │ │ └── libhello-1.0.0.toml │ │ └── ma │ │ │ └── make │ │ │ └── make-external.toml │ ├── run_index │ │ ├── index.toml │ │ └── no │ │ │ └── noop │ │ │ ├── noop-1.0.0-default.toml │ │ │ ├── noop-1.0.0-multi.toml │ │ │ └── noop-1.0.0-nondef.toml │ ├── solver_index │ │ ├── gn │ │ │ └── gnat_external │ │ │ │ └── gnat_external-external.toml │ │ ├── he │ │ │ └── hello │ │ │ │ ├── hello-1.0.0.toml │ │ │ │ ├── hello-1.0.1.toml │ │ │ │ ├── hello-2.0.0.toml │ │ │ │ ├── hello-3.0.0.toml │ │ │ │ └── hello-4.0.0.toml │ │ ├── index.toml │ │ ├── li │ │ │ └── libhello │ │ │ │ ├── libhello-1.0.0.toml │ │ │ │ ├── libhello-1.0.1.toml │ │ │ │ ├── libhello-1.1.0.toml │ │ │ │ └── libhello-2.0.0.toml │ │ ├── ma │ │ │ └── make │ │ │ │ └── make-external.toml │ │ └── su │ │ │ └── superhello │ │ │ └── superhello-1.0.0.toml │ ├── ssh_origin_index │ │ ├── index.toml │ │ └── li │ │ │ ├── libbar │ │ │ └── libbar-1.0.0.toml │ │ │ ├── libbaz │ │ │ └── libbaz-1.0.0.toml │ │ │ └── libfoo │ │ │ └── libfoo-1.0.0.toml │ ├── system_index │ │ ├── gn │ │ │ └── gnat_external │ │ │ │ └── gnat_external-external.toml │ │ ├── index.toml │ │ └── ma │ │ │ └── make │ │ │ └── make-external.toml │ ├── system_toolchain_ubuntu │ │ ├── gn │ │ │ └── gnat_external │ │ │ │ └── gnat_external-external.toml │ │ ├── gp │ │ │ └── gprbuild │ │ │ │ └── gprbuild-external.toml │ │ └── index.toml │ └── toolchain_index │ │ ├── cr │ │ ├── crate_conflict │ │ │ └── crate_conflict-1.2.3.toml │ │ ├── crate_equiv │ │ │ └── crate_equiv-2.0.0.toml │ │ ├── crate_lone │ │ │ ├── crate_lone-1.0.0.toml │ │ │ └── crate_lone-2.0.0.toml │ │ ├── crate_non_virt │ │ │ └── crate_non_virt-1.0.0.toml │ │ ├── crate_real │ │ │ └── crate_real-1.0.0.toml │ │ ├── crate_subst │ │ │ └── crate_subst-1.0.0.toml │ │ ├── crate_virt_1 │ │ │ └── crate_virt_1-2.0.0.toml │ │ └── crate_virt_2 │ │ │ └── crate_virt_2-1.0.0.toml │ │ ├── gn │ │ ├── gnat_cross_1 │ │ │ ├── gnat_cross_1-1.0.0.toml │ │ │ └── gnat_cross_1-9999.0.0.toml │ │ ├── gnat_cross_2 │ │ │ └── gnat_cross_2-1.0.0.toml │ │ ├── gnat_external │ │ │ └── gnat_external-external.toml │ │ └── gnat_native │ │ │ ├── gnat_native-7777.0.0.toml │ │ │ └── gnat_native-8888.0.0.toml │ │ ├── gp │ │ └── gprbuild │ │ │ ├── gprbuild-8888.0.0.toml │ │ │ └── gprbuild-external.toml │ │ └── index.toml ├── requirements.txt ├── run-dev.sh ├── run-solver.sh ├── run.py ├── run.sh ├── skels │ ├── global-index │ │ ├── test.py │ │ └── test.yaml │ ├── local-index │ │ ├── my_index │ │ │ ├── crates │ │ │ │ └── crate │ │ │ │ │ └── .emptydir │ │ │ └── index │ │ │ │ ├── cr │ │ │ │ └── crate │ │ │ │ │ └── crate-1.0.0.toml │ │ │ │ └── index.toml │ │ ├── test.py │ │ └── test.yaml │ └── no-index │ │ ├── test.py │ │ └── test.yaml ├── tests │ ├── action │ │ ├── conditional │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── directory │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── environment │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── list │ │ │ ├── my_index │ │ │ │ ├── index.toml │ │ │ │ └── ma │ │ │ │ │ └── main │ │ │ │ │ └── main-1.0.0.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── masked-error │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── missing-exec │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── post-fetch-once │ │ │ ├── my_index │ │ │ │ ├── index.toml │ │ │ │ └── ma │ │ │ │ │ └── main │ │ │ │ │ └── main-1.0.0.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ └── trigger │ │ │ ├── my_index │ │ │ ├── index.toml │ │ │ └── ma │ │ │ │ └── main │ │ │ │ └── main-1.0.0.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ ├── alias │ │ └── basic │ │ │ ├── test.py │ │ │ └── test.yaml │ ├── build │ │ ├── hashes │ │ │ ├── compiler-input │ │ │ │ ├── test.py │ │ │ │ └── test.yaml │ │ │ ├── compiler-missing │ │ │ │ ├── test.py │ │ │ │ └── test.yaml │ │ │ ├── config-types │ │ │ │ ├── test.py │ │ │ │ └── test.yaml │ │ │ ├── hashing-inputs │ │ │ │ ├── test.py │ │ │ │ └── test.yaml │ │ │ ├── incomplete-config │ │ │ │ ├── test.py │ │ │ │ └── test.yaml │ │ │ └── linked-dependency │ │ │ │ ├── test.py │ │ │ │ └── test.yaml │ │ ├── incremental │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── no-rebuild │ │ │ ├── test.py │ │ │ └── test.yaml │ │ └── stop-after │ │ │ ├── test.py │ │ │ └── test.yaml │ ├── build_profile │ │ ├── alr_build_switches │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── bad_profile_lists │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── custom_profiles │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── custom_switches │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── default │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── get-build-profile │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── last_profile │ │ │ ├── test.py │ │ │ └── test.yaml │ │ └── recursive │ │ │ ├── test.py │ │ │ └── test.yaml │ ├── cache │ │ ├── softlinks │ │ │ ├── my_index │ │ │ │ ├── crate-0.1.0.tgz │ │ │ │ └── index │ │ │ │ │ ├── cr │ │ │ │ │ └── crate │ │ │ │ │ │ └── crate-0.1.0.toml │ │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── summary │ │ │ ├── test.py │ │ │ └── test.yaml │ │ └── sync-attrs │ │ │ ├── my_index │ │ │ ├── crates │ │ │ │ └── crate │ │ │ │ │ ├── .emptydir │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── alire.toml │ │ │ │ │ ├── crate.gpr │ │ │ │ │ ├── myscript.sh │ │ │ │ │ └── src │ │ │ │ │ └── crate.adb │ │ │ └── index │ │ │ │ ├── cr │ │ │ │ └── crate │ │ │ │ │ └── crate-1.0.0.toml │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ ├── clean │ │ ├── cache-files │ │ │ ├── test.py │ │ │ └── test.yaml │ │ └── temp-files │ │ │ ├── test.py │ │ │ └── test.yaml │ ├── crate_config │ │ ├── basic │ │ │ ├── my_index │ │ │ │ ├── hello_src │ │ │ │ │ ├── hello_world.gpr │ │ │ │ │ └── src │ │ │ │ │ │ └── main.adb │ │ │ │ ├── index │ │ │ │ │ ├── he │ │ │ │ │ │ └── hello_world │ │ │ │ │ │ │ └── hello_world-0.1.0.toml │ │ │ │ │ ├── index.toml │ │ │ │ │ └── li │ │ │ │ │ │ └── libcrate_config │ │ │ │ │ │ └── libcrate_config-1.0.0.toml │ │ │ │ └── libcrate_config_src │ │ │ │ │ ├── libcrate_config.gpr │ │ │ │ │ └── src │ │ │ │ │ ├── host_specific.ads │ │ │ │ │ ├── linux │ │ │ │ │ └── host_specific.adb │ │ │ │ │ ├── macos │ │ │ │ │ └── host_specific.adb │ │ │ │ │ ├── plop.adb │ │ │ │ │ ├── plop.ads │ │ │ │ │ ├── test.c │ │ │ │ │ └── windows │ │ │ │ │ └── host_specific.adb │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── gen_control │ │ │ ├── my_index │ │ │ │ ├── hello_src │ │ │ │ │ ├── hello_world.gpr │ │ │ │ │ └── src │ │ │ │ │ │ └── main.adb │ │ │ │ ├── index │ │ │ │ │ ├── he │ │ │ │ │ │ └── hello_world │ │ │ │ │ │ │ └── hello_world-0.1.0.toml │ │ │ │ │ ├── index.toml │ │ │ │ │ └── li │ │ │ │ │ │ └── libcrate_config │ │ │ │ │ │ └── libcrate_config-1.0.0.toml │ │ │ │ └── libcrate_config_src │ │ │ │ │ ├── libcrate_config.gpr │ │ │ │ │ └── src │ │ │ │ │ ├── plop.adb │ │ │ │ │ └── plop.ads │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── no-rebuilds │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── reserved_names │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── style_checks_off │ │ │ ├── my_index │ │ │ │ ├── hello_src │ │ │ │ │ ├── hello_world.gpr │ │ │ │ │ └── src │ │ │ │ │ │ └── hello_world.adb │ │ │ │ └── index │ │ │ │ │ ├── he │ │ │ │ │ └── hello_world │ │ │ │ │ │ └── hello_world-0.1.0.toml │ │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── value_conflict │ │ │ ├── my_index │ │ │ │ └── index │ │ │ │ │ ├── he │ │ │ │ │ └── hello_world │ │ │ │ │ │ └── hello_world-0.1.0.toml │ │ │ │ │ ├── index.toml │ │ │ │ │ └── li │ │ │ │ │ ├── libcrate_config_a │ │ │ │ │ └── libcrate_config_a-1.0.0.toml │ │ │ │ │ ├── libcrate_config_b │ │ │ │ │ └── libcrate_config_b-1.0.0.toml │ │ │ │ │ └── libcrate_config_c │ │ │ │ │ └── libcrate_config_c-1.0.0.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ └── value_match │ │ │ ├── my_index │ │ │ └── index │ │ │ │ ├── he │ │ │ │ └── hello_world │ │ │ │ │ └── hello_world-0.1.0.toml │ │ │ │ ├── index.toml │ │ │ │ └── li │ │ │ │ ├── libcrate_config_a │ │ │ │ └── libcrate_config_a-1.0.0.toml │ │ │ │ ├── libcrate_config_b │ │ │ │ └── libcrate_config_b-1.0.0.toml │ │ │ │ └── libcrate_config_c │ │ │ │ └── libcrate_config_c-1.0.0.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ ├── debug │ │ ├── enabled-dump-exception │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── logging-scopes │ │ │ ├── test.py │ │ │ └── test.yaml │ │ └── outcome-stack-trace │ │ │ ├── test.py │ │ │ └── test.yaml │ ├── dockerized │ │ ├── get │ │ │ └── build │ │ │ │ ├── test.py │ │ │ │ └── test.yaml │ │ ├── misc │ │ │ ├── default-cache │ │ │ │ ├── test.py │ │ │ │ └── test.yaml │ │ │ ├── failed-auto-update │ │ │ │ ├── test.py │ │ │ │ └── test.yaml │ │ │ └── no-home │ │ │ │ ├── test.py │ │ │ │ └── test.yaml │ │ └── toolchain │ │ │ └── install-from-system │ │ │ ├── test.py │ │ │ └── test.yaml │ ├── exec │ │ ├── basic │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── no-extra-line │ │ │ ├── test.py │ │ │ └── test.yaml │ │ └── with_project │ │ │ ├── test.py │ │ │ └── test.yaml │ ├── externals │ │ └── bad-versions │ │ │ ├── my_index │ │ │ ├── crates │ │ │ │ └── crate │ │ │ │ │ └── .emptydir │ │ │ └── index │ │ │ │ ├── cr │ │ │ │ ├── crate1 │ │ │ │ │ └── crate1-external.toml │ │ │ │ └── crate2 │ │ │ │ │ └── crate2-external.toml │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ ├── get │ │ ├── backup-user-manifest │ │ │ ├── my_index │ │ │ │ ├── crates │ │ │ │ │ └── crate │ │ │ │ │ │ ├── .emptydir │ │ │ │ │ │ ├── alire.lock │ │ │ │ │ │ ├── alire.toml │ │ │ │ │ │ ├── crate.gpr │ │ │ │ │ │ └── src │ │ │ │ │ │ └── crate.adb │ │ │ │ └── index │ │ │ │ │ ├── cr │ │ │ │ │ └── crate │ │ │ │ │ │ └── crate-1.0.0.toml │ │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── build │ │ │ ├── my_index │ │ │ │ ├── crates │ │ │ │ │ ├── bad │ │ │ │ │ │ ├── bad.gpr │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── bad.adb │ │ │ │ │ └── good │ │ │ │ │ │ ├── good.gpr │ │ │ │ │ │ └── src │ │ │ │ │ │ └── good.adb │ │ │ │ └── index │ │ │ │ │ ├── ba │ │ │ │ │ └── bad │ │ │ │ │ │ └── bad-1.0.0.toml │ │ │ │ │ ├── go │ │ │ │ │ └── good │ │ │ │ │ │ └── good-1.0.0.toml │ │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── custom-download-command │ │ │ ├── my_index │ │ │ │ └── index │ │ │ │ │ ├── index.toml │ │ │ │ │ └── li │ │ │ │ │ └── libhello │ │ │ │ │ └── libhello-1.0.0.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── dirname │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── external-tool-dependency │ │ │ ├── my_index │ │ │ │ ├── index.toml │ │ │ │ └── ma │ │ │ │ │ ├── main │ │ │ │ │ └── main-1.0.0.toml │ │ │ │ │ └── make │ │ │ │ │ └── make-external.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── get-not-found │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── git-local │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── indirect-link │ │ │ ├── my_index │ │ │ │ └── index │ │ │ │ │ ├── index.toml │ │ │ │ │ └── ti │ │ │ │ │ ├── tier1 │ │ │ │ │ └── tier1-1.0.0.toml │ │ │ │ │ ├── tier2 │ │ │ │ │ └── tier2-1.0.0.toml │ │ │ │ │ └── tier3 │ │ │ │ │ └── tier3-1.0.0.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── integrity-tarballs │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── missing-deps │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── only │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── provides │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── system-hint │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── system-unsupported │ │ │ ├── test.py │ │ │ └── test.yaml │ │ └── unpack-in-place │ │ │ ├── test.py │ │ │ └── test.yaml │ ├── help │ │ ├── equivalent_help │ │ │ ├── test.py │ │ │ └── test.yaml │ │ └── help-after-double-dash │ │ │ ├── test.py │ │ │ └── test.yaml │ ├── index │ │ ├── auto-update │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── bad-action-command │ │ │ ├── my_index │ │ │ │ └── index │ │ │ │ │ ├── he │ │ │ │ │ └── hello_world │ │ │ │ │ │ └── hello_world-0.1.0.toml │ │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── bad-config-vars │ │ │ ├── manifest.toml │ │ │ ├── my_index │ │ │ │ └── index │ │ │ │ │ ├── he │ │ │ │ │ └── hello_world │ │ │ │ │ │ └── .gitignore │ │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── bad-external-regex │ │ │ ├── my_index │ │ │ │ └── index │ │ │ │ │ ├── ba │ │ │ │ │ └── bad_regex │ │ │ │ │ │ └── bad_regex-external.toml │ │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── bad-index-metadata │ │ │ ├── my_index │ │ │ │ └── index │ │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── bad-index-version │ │ │ ├── my_index │ │ │ │ └── index │ │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── bad-license-array │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── bad-license-too-long │ │ │ ├── my_index │ │ │ │ └── index │ │ │ │ │ ├── he │ │ │ │ │ └── hello_world │ │ │ │ │ │ └── hello_world-0.1.0.toml │ │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── bad-license │ │ │ ├── my_index │ │ │ │ └── index │ │ │ │ │ ├── he │ │ │ │ │ └── hello_world │ │ │ │ │ │ └── hello_world-0.1.0.toml │ │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── bad-name │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── bad-tag │ │ │ ├── my_index │ │ │ │ └── index │ │ │ │ │ ├── he │ │ │ │ │ └── hello_world │ │ │ │ │ │ └── hello_world-0.1.0.toml │ │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── bad-underscore │ │ │ ├── my_index │ │ │ │ └── index │ │ │ │ │ ├── he │ │ │ │ │ └── hello_world │ │ │ │ │ │ └── hello_world-0.1.0.toml │ │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── branch-mismatch │ │ │ ├── community │ │ │ │ └── index │ │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── case-expressions │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── check-cardinality │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── check-dynamic │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── check-enums │ │ │ ├── my_index │ │ │ │ ├── crates │ │ │ │ │ └── crate │ │ │ │ │ │ └── .emptydir │ │ │ │ └── index │ │ │ │ │ ├── cr │ │ │ │ │ └── crate │ │ │ │ │ │ └── crate-1.0.0.toml │ │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── custom-action │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── empty-dependency-case │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── empty-tag │ │ │ ├── my_index │ │ │ │ └── index │ │ │ │ │ ├── he │ │ │ │ │ └── hello_world │ │ │ │ │ │ └── hello_world-0.1.0.toml │ │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── env-bad-path │ │ │ ├── my_index │ │ │ │ ├── crates │ │ │ │ │ └── crate │ │ │ │ │ │ └── .emptydir │ │ │ │ └── index │ │ │ │ │ ├── cr │ │ │ │ │ └── crate │ │ │ │ │ │ └── crate-1.0.0.toml │ │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── env-path │ │ │ ├── my_index │ │ │ │ ├── crates │ │ │ │ │ └── crate │ │ │ │ │ │ └── .emptydir │ │ │ │ └── index │ │ │ │ │ ├── cr │ │ │ │ │ └── crate │ │ │ │ │ │ └── crate-1.0.0.toml │ │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── environment │ │ │ ├── my_index │ │ │ │ └── index │ │ │ │ │ ├── he │ │ │ │ │ └── hello │ │ │ │ │ │ └── hello-1.0.0.toml │ │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── external-available │ │ │ ├── my_index │ │ │ │ ├── cr │ │ │ │ │ └── crate │ │ │ │ │ │ └── crate-external.toml │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── external-from-output │ │ │ ├── my_index │ │ │ │ └── index │ │ │ │ │ ├── ba │ │ │ │ │ ├── bad_switch │ │ │ │ │ │ └── bad_switch-external.toml │ │ │ │ │ └── bad_version │ │ │ │ │ │ └── bad_version-external.toml │ │ │ │ │ ├── index.toml │ │ │ │ │ └── ma │ │ │ │ │ └── make │ │ │ │ │ └── make-external.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── external-hint │ │ │ ├── my_index │ │ │ │ ├── cr │ │ │ │ │ ├── crate │ │ │ │ │ │ └── crate-external.toml │ │ │ │ │ └── crate_master │ │ │ │ │ │ └── crate_master-1.0.0.toml │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── external-msys2 │ │ │ ├── my_index │ │ │ │ ├── di │ │ │ │ │ └── dialog │ │ │ │ │ │ └── dialog-external.toml │ │ │ │ ├── index.toml │ │ │ │ └── ma │ │ │ │ │ └── main │ │ │ │ │ └── main-1.0.0.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── external-unindexed │ │ │ ├── my_index │ │ │ │ └── index │ │ │ │ │ ├── he │ │ │ │ │ └── hello_world │ │ │ │ │ │ ├── hello_world-0.1.0.toml │ │ │ │ │ │ └── hello_world-external.toml │ │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── future-compatibility │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── git-local │ │ │ ├── my_crates │ │ │ │ ├── hello │ │ │ │ │ ├── hello.gpr │ │ │ │ │ └── src │ │ │ │ │ │ └── hello.adb │ │ │ │ └── libhello │ │ │ │ │ ├── libhello.gpr │ │ │ │ │ └── src │ │ │ │ │ ├── libhello.adb │ │ │ │ │ └── libhello.ads │ │ │ ├── my_index │ │ │ │ └── index │ │ │ │ │ ├── he │ │ │ │ │ └── hello │ │ │ │ │ │ └── hello-1.0.1.toml │ │ │ │ │ ├── index.toml │ │ │ │ │ └── li │ │ │ │ │ └── libhello │ │ │ │ │ └── libhello-1.0.0.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── git-ssh-remote │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── ignore-unknown-property │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── local-index-not-found │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── long-description │ │ │ ├── my_index │ │ │ │ └── index │ │ │ │ │ ├── he │ │ │ │ │ └── hello_world │ │ │ │ │ │ └── hello_world-0.1.0.toml │ │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── long-tag │ │ │ ├── my_index │ │ │ │ └── index │ │ │ │ │ ├── he │ │ │ │ │ └── hello_world │ │ │ │ │ │ └── hello_world-0.1.0.toml │ │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── maint-bad-email │ │ │ ├── my_index │ │ │ │ └── index │ │ │ │ │ ├── he │ │ │ │ │ └── hello_world │ │ │ │ │ │ └── hello_world-0.1.0.toml │ │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── maint-bad-login │ │ │ ├── my_index │ │ │ │ └── index │ │ │ │ │ ├── he │ │ │ │ │ └── hello_world │ │ │ │ │ │ └── hello_world-0.1.0.toml │ │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── mismatched-crate │ │ │ ├── my_index │ │ │ │ └── index │ │ │ │ │ ├── cr │ │ │ │ │ └── crate │ │ │ │ │ │ └── misplaced_crate-1.0.0.toml │ │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── mismatched-parent │ │ │ ├── my_index │ │ │ │ └── index │ │ │ │ │ ├── cr │ │ │ │ │ └── bad_parent │ │ │ │ │ │ └── crate-1.0.0.toml │ │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── old-compat-version │ │ │ ├── community │ │ │ │ └── index │ │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── old-incompat-version │ │ │ ├── community │ │ │ │ └── index │ │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── origin-binary-explicit │ │ │ ├── my_index │ │ │ │ ├── crates │ │ │ │ │ └── libhello_1.0.0.tgz │ │ │ │ └── index │ │ │ │ │ ├── he │ │ │ │ │ └── hello_world │ │ │ │ │ │ └── hello_world-0.1.0.toml │ │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── origin-dynamic-binary-explicit │ │ │ ├── my_index │ │ │ │ ├── crates │ │ │ │ │ └── libhello_1.0.0.tgz │ │ │ │ └── index │ │ │ │ │ ├── he │ │ │ │ │ └── hello_world │ │ │ │ │ │ └── hello_world-0.1.0.toml │ │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── origin-filesystem-bad-path │ │ │ ├── bad_index_1 │ │ │ │ ├── he │ │ │ │ │ └── hello │ │ │ │ │ │ └── hello-1.0.0.toml │ │ │ │ └── index.toml │ │ │ ├── bad_index_2 │ │ │ │ ├── he │ │ │ │ │ └── hello │ │ │ │ │ │ └── hello-1.0.0.toml │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── origin-no-archive-name │ │ │ ├── my_index │ │ │ │ └── index │ │ │ │ │ ├── he │ │ │ │ │ └── hello_world │ │ │ │ │ │ └── hello_world-0.1.0.toml │ │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── origin-unknown-kind │ │ │ ├── my_index │ │ │ │ └── index │ │ │ │ │ ├── he │ │ │ │ │ └── hello_world │ │ │ │ │ │ └── hello_world-0.1.0.toml │ │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── too-long-short-description │ │ │ ├── my_index │ │ │ │ └── index │ │ │ │ │ ├── he │ │ │ │ │ └── hello_world │ │ │ │ │ │ └── hello_world-0.1.0.toml │ │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── unexpected-contents │ │ │ ├── my_index │ │ │ │ └── index │ │ │ │ │ ├── cr │ │ │ │ │ └── crate │ │ │ │ │ │ └── crate-1.0.0.toml │ │ │ │ │ ├── index.toml │ │ │ │ │ └── shouldnt_be_here │ │ │ ├── test.py │ │ │ └── test.yaml │ │ └── untrusted-host │ │ │ ├── my_index │ │ │ └── index │ │ │ │ ├── cr │ │ │ │ └── crate │ │ │ │ │ └── crate-1.0.0.toml │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ ├── init │ │ ├── crate-name-validation │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── default-executable │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── default-licenses │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── github-files │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── github-login │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── interactive-inputs │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── other-licenses │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── user-input-validation │ │ │ ├── test.py │ │ │ └── test.yaml │ │ └── with-chdir │ │ │ ├── test.py │ │ │ └── test.yaml │ ├── install │ │ ├── binary-release │ │ │ ├── my_index │ │ │ │ ├── crates │ │ │ │ │ └── crate │ │ │ │ │ │ └── crate.tgz │ │ │ │ └── index │ │ │ │ │ ├── cr │ │ │ │ │ └── crate │ │ │ │ │ │ ├── crate-0.1.0.toml │ │ │ │ │ │ └── crate-1.0.0.toml │ │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── default-location │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── dynamic-linking │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── executable-dependency │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── independent │ │ │ ├── my_index │ │ │ │ ├── crates │ │ │ │ │ └── crate │ │ │ │ │ │ ├── crate1.tgz │ │ │ │ │ │ └── crate2.tgz │ │ │ │ └── index │ │ │ │ │ ├── cr │ │ │ │ │ ├── crate1 │ │ │ │ │ │ └── crate1-1.0.0.toml │ │ │ │ │ └── crate2 │ │ │ │ │ │ └── crate2-1.0.0.toml │ │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── indexed │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── softlinks │ │ │ ├── my_index │ │ │ │ ├── crate-0.1.0.tgz │ │ │ │ └── index │ │ │ │ │ ├── cr │ │ │ │ │ └── crate │ │ │ │ │ │ └── crate-0.1.0.toml │ │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ └── static-linking │ │ │ ├── test.py │ │ │ └── test.yaml │ ├── issues │ │ ├── 1517 │ │ │ ├── test.py │ │ │ └── test.yaml │ │ └── did-you-mean │ │ │ ├── test.py │ │ │ └── test.yaml │ ├── misc │ │ ├── bad-lockfile │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── bad-tomlfile │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── clean-end │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── did-you-mean │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── dir-traversal │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── empty-path │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── env-traceback │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── exe-not-found │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── force-switch │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── git-ungit │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── gprbuild-switches │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── hashes │ │ │ ├── my_index │ │ │ │ └── index │ │ │ │ │ ├── cr │ │ │ │ │ └── crate │ │ │ │ │ │ ├── crate-1.0.0.toml │ │ │ │ │ │ └── crate-2.0.0.toml │ │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── local-no-origin │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── local-reject-origin │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── lockfile-hiding │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── no-home │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── other-slash-in-path │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── structured-output-always-quiet │ │ │ ├── outdated_index │ │ │ │ └── index │ │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── structured-tables │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── sync-manual-edit-indirect │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── sync-manual-edit │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── sync-missing-deps │ │ │ ├── test.py │ │ │ └── test.yaml │ │ └── utf8-output │ │ │ ├── test.py │ │ │ └── test.yaml │ ├── monorepo │ │ ├── basic │ │ │ ├── my_index │ │ │ │ └── index │ │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── doubly-nested │ │ │ ├── my_index │ │ │ │ └── index │ │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── get-dirname │ │ │ ├── my_index │ │ │ │ └── index │ │ │ │ │ ├── cr │ │ │ │ │ └── crate │ │ │ │ │ │ └── crate-1.0.0.toml │ │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── manifest-in-place │ │ │ ├── my_index │ │ │ │ └── index │ │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── multi-commit │ │ │ ├── my_index │ │ │ │ └── index │ │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ └── subdir-in-tar │ │ │ ├── my_index │ │ │ └── index │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ ├── pin │ │ ├── all │ │ │ ├── my_index │ │ │ │ └── index │ │ │ │ │ ├── he │ │ │ │ │ ├── hello1 │ │ │ │ │ │ └── hello1-0.1.0.toml │ │ │ │ │ └── hello2 │ │ │ │ │ │ └── hello2-0.1.0.toml │ │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── bad-path │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── branch-remote-protocols │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── branch-update-dirty │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── branch │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── change-path │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── change-type │ │ │ ├── my_index │ │ │ │ ├── index.toml │ │ │ │ └── li │ │ │ │ │ └── libhello │ │ │ │ │ └── libhello-1.0.0.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── circularity │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── conflicting-link │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── conflicting-remote │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── crate-with-provides │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── dir-crate │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── dir-mismatch │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── downgrade │ │ │ ├── my_index │ │ │ │ └── index │ │ │ │ │ ├── index.toml │ │ │ │ │ └── li │ │ │ │ │ ├── libchild │ │ │ │ │ ├── libchild-0.1.0.toml │ │ │ │ │ └── libchild-0.2.0.toml │ │ │ │ │ └── libparent │ │ │ │ │ └── libparent-1.0.0.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── equivalent │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── from-subdir │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── invalid-linked-manifest │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── manifest-invalid-pins │ │ │ ├── my_index │ │ │ │ ├── crates │ │ │ │ │ └── crate │ │ │ │ │ │ └── .emptydir │ │ │ │ └── index │ │ │ │ │ ├── cr │ │ │ │ │ └── crate │ │ │ │ │ │ └── crate-1.0.0.toml │ │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── missing-version │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── pin-dir-with-regular │ │ │ ├── my_index │ │ │ │ ├── index.toml │ │ │ │ └── li │ │ │ │ │ └── libhello │ │ │ │ │ └── libhello-1.0.0.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── pin-dir │ │ │ ├── my_index │ │ │ │ ├── index.toml │ │ │ │ └── li │ │ │ │ │ └── libhello │ │ │ │ │ └── libhello-1.0.0.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── portable-path │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── post-update │ │ │ ├── my_index │ │ │ │ └── index │ │ │ │ │ ├── index.toml │ │ │ │ │ └── li │ │ │ │ │ ├── libchild │ │ │ │ │ ├── libchild-0.1.0.toml │ │ │ │ │ └── libchild-0.2.0.toml │ │ │ │ │ └── libparent │ │ │ │ │ └── libparent-1.0.0.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── recursive-local │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── recursive-remote │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── remote-subdir │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── remote │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── to-parent │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── twice-in-manifest │ │ │ ├── my_index │ │ │ │ ├── index.toml │ │ │ │ └── li │ │ │ │ │ └── libhello │ │ │ │ │ └── libhello-1.0.0.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── unneeded-held │ │ │ ├── my_index │ │ │ │ └── index │ │ │ │ │ ├── index.toml │ │ │ │ │ └── li │ │ │ │ │ ├── libchild │ │ │ │ │ ├── libchild-0.1.0.toml │ │ │ │ │ └── libchild-0.2.0.toml │ │ │ │ │ └── libparent │ │ │ │ │ └── libparent-1.0.0.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── unpin │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── version │ │ │ ├── test.py │ │ │ └── test.yaml │ │ └── without-lockfile │ │ │ ├── test.py │ │ │ └── test.yaml │ ├── printenv │ │ ├── always-quiet │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── basic │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── compiler-indirect │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── double-set │ │ │ ├── my_index │ │ │ │ ├── crates │ │ │ │ │ └── checkenv │ │ │ │ │ │ ├── checkenv.gpr │ │ │ │ │ │ └── src │ │ │ │ │ │ └── checkenv.adb │ │ │ │ └── index │ │ │ │ │ ├── ch │ │ │ │ │ ├── checkenv │ │ │ │ │ │ └── checkenv-1.0.0.toml │ │ │ │ │ └── checkparent │ │ │ │ │ │ └── checkparent-1.0.0.toml │ │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── env-during-fetch │ │ │ ├── my_index │ │ │ │ ├── crates │ │ │ │ │ └── checkenv │ │ │ │ │ │ ├── checkenv.gpr │ │ │ │ │ │ └── src │ │ │ │ │ │ └── checkenv.adb │ │ │ │ └── index │ │ │ │ │ ├── ch │ │ │ │ │ ├── checkenv │ │ │ │ │ │ └── checkenv-1.0.0.toml │ │ │ │ │ └── checkparent │ │ │ │ │ │ └── checkparent-1.0.0.toml │ │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── last-build │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── linked-paths │ │ │ ├── my_index │ │ │ │ ├── crates │ │ │ │ │ └── crate_1234 │ │ │ │ │ │ ├── .emptydir │ │ │ │ │ │ ├── alire.toml │ │ │ │ │ │ └── alire │ │ │ │ │ │ └── .emptydir │ │ │ │ └── index │ │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── out-of-root │ │ │ ├── test.py │ │ │ └── test.yaml │ │ └── with-external │ │ │ ├── test.py │ │ │ └── test.yaml │ ├── provides │ │ └── metadata │ │ │ ├── my_index │ │ │ └── index │ │ │ │ ├── cr │ │ │ │ └── crate │ │ │ │ │ └── crate-1.0.0.toml │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ ├── publish │ │ ├── bad-arguments │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── broken-manifest │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── check-build │ │ │ ├── crate.tgz │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── check-pre-release-version │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── check-properties │ │ │ ├── nomaint.tgz │ │ │ ├── notags.tgz │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── check-trusted │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── file-scheme │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── help-url │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── local-repo-branched │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── local-repo-nonstd │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── local-repo │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── missing-manifest │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── multiple-remotes │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── pin-removal │ │ │ ├── my_index │ │ │ │ └── index │ │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── private-indexes │ │ │ ├── my_index │ │ │ │ ├── crates │ │ │ │ │ └── crate │ │ │ │ │ │ ├── alire.toml │ │ │ │ │ │ ├── crate.gpr │ │ │ │ │ │ └── src │ │ │ │ │ │ └── crate.adb │ │ │ │ └── index │ │ │ │ │ ├── cr │ │ │ │ │ └── crate │ │ │ │ │ │ └── crate-1.0.0.toml │ │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── remote-origin-nonstd │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── remote-origin │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── ssh-remote-origin │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── submit-request-cancel │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── tarball-plaindir-nonstd │ │ │ ├── my_index │ │ │ │ ├── crates │ │ │ │ │ └── crate │ │ │ │ │ │ ├── alire.toml │ │ │ │ │ │ ├── crate.gpr │ │ │ │ │ │ └── src │ │ │ │ │ │ └── crate.adb │ │ │ │ └── index │ │ │ │ │ ├── cr │ │ │ │ │ └── crate │ │ │ │ │ │ └── crate-1.0.0.toml │ │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── tarball-plaindir │ │ │ ├── my_index │ │ │ │ ├── crates │ │ │ │ │ └── crate │ │ │ │ │ │ ├── alire.toml │ │ │ │ │ │ ├── crate.gpr │ │ │ │ │ │ └── src │ │ │ │ │ │ └── crate.adb │ │ │ │ └── index │ │ │ │ │ ├── cr │ │ │ │ │ └── crate │ │ │ │ │ │ └── crate-1.0.0.toml │ │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── tarball-repo-nonstd │ │ │ ├── my_index │ │ │ │ ├── crates │ │ │ │ │ └── crate │ │ │ │ │ │ ├── alire.toml │ │ │ │ │ │ ├── crate.gpr │ │ │ │ │ │ └── src │ │ │ │ │ │ └── crate.adb │ │ │ │ └── index │ │ │ │ │ ├── cr │ │ │ │ │ └── crate │ │ │ │ │ │ └── crate-1.0.0.toml │ │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── tarball-repo │ │ │ ├── my_index │ │ │ │ ├── crates │ │ │ │ │ └── crate │ │ │ │ │ │ ├── alire.toml │ │ │ │ │ │ ├── crate.gpr │ │ │ │ │ │ └── src │ │ │ │ │ │ └── crate.adb │ │ │ │ └── index │ │ │ │ │ ├── cr │ │ │ │ │ └── crate │ │ │ │ │ │ └── crate-1.0.0.toml │ │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ └── trusted-sites │ │ │ ├── test.py │ │ │ └── test.yaml │ ├── run │ │ ├── defaults │ │ │ ├── test.py │ │ │ └── test.yaml │ │ └── no-compile │ │ │ ├── test.py │ │ │ └── test.yaml │ ├── search │ │ └── basic │ │ │ ├── test.py │ │ │ └── test.yaml │ ├── self_update │ │ ├── latest │ │ │ ├── test.py │ │ │ └── test.yaml │ │ └── specific_version │ │ │ ├── test.py │ │ │ └── test.yaml │ ├── settings │ │ ├── basics │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── builtin-check │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── cache-relocation │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── community-disable │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── distro-disable │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── distro-override │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── early-loading │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── missing-settings-default │ │ │ ├── my_index │ │ │ │ ├── he │ │ │ │ │ └── hello │ │ │ │ │ │ ├── hello-1.0.0.toml │ │ │ │ │ │ └── hello-1.0.1.toml │ │ │ │ ├── index.toml │ │ │ │ └── li │ │ │ │ │ └── libhello │ │ │ │ │ └── libhello-1.0.0.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── missing-settings-path │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── relative-settings-path │ │ │ ├── test.py │ │ │ └── test.yaml │ │ └── shared-deps │ │ │ ├── test.py │ │ │ └── test.yaml │ ├── show │ │ ├── bad-crate-names │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── dependents │ │ │ ├── my_index │ │ │ │ ├── crates │ │ │ │ │ └── crate │ │ │ │ │ │ └── .emptydir │ │ │ │ └── index │ │ │ │ │ ├── cr │ │ │ │ │ ├── crate1 │ │ │ │ │ │ └── crate1-1.0.0.toml │ │ │ │ │ ├── crate2a │ │ │ │ │ │ └── crate2a-2.0.0.toml │ │ │ │ │ ├── crate2b │ │ │ │ │ │ └── crate2b-2.0.0.toml │ │ │ │ │ └── crate3 │ │ │ │ │ │ └── crate3-3.0.0.toml │ │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── external-structured │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── inside-vs-outside │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── jekyll │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── nested │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── provides │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── solve-local │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── solve-remote │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── structured-output │ │ │ ├── test.py │ │ │ └── test.yaml │ │ └── system-hint │ │ │ ├── test.py │ │ │ └── test.yaml │ ├── solver │ │ ├── compiler-installed │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── compiler-mixing │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── compiler-priorities │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── compiler-selected │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── equivalences │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── forbids-replace │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── forbids │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── missing-reasons │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── no-skipped │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── one-dep-two-constraints │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── provides-no-conflict │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── timeout │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── traverse-order │ │ │ ├── test.py │ │ │ └── test.yaml │ │ └── unsatisfying-external │ │ │ ├── test.py │ │ │ └── test.yaml │ ├── test │ │ ├── conditional-tests │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── crate-init │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── custom-runner │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── default-failure │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── filtering │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── from-subdir │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── legacy-behaviour │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── multiple-builtin │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── nested-filtering │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── nested-tests │ │ │ ├── test.py │ │ │ └── test.yaml │ │ └── select_id │ │ │ ├── test.py │ │ │ └── test.yaml │ ├── toolchain │ │ ├── alr-get │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── alr-install │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── arch-mismatch │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── bad-switches │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── basic │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── directories │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── missing-tool-redeploy │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── select-defaults │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── select-dontmix │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── select-while-missing │ │ │ ├── test.py │ │ │ └── test.yaml │ │ └── select │ │ │ ├── test.py │ │ │ └── test.yaml │ ├── update │ │ ├── manual-once │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── missing-deps │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── pinned │ │ │ ├── test.py │ │ │ └── test.yaml │ │ └── selective │ │ │ ├── my_index │ │ │ ├── index │ │ │ │ ├── he │ │ │ │ │ ├── hello1 │ │ │ │ │ │ └── hello1-0.1.0.toml │ │ │ │ │ └── hello2 │ │ │ │ │ │ └── hello2-0.1.0.toml │ │ │ │ └── index.toml │ │ │ └── updated │ │ │ │ └── index │ │ │ │ ├── he │ │ │ │ ├── hello1 │ │ │ │ │ ├── hello1-0.1.0.toml │ │ │ │ │ └── hello1-0.2.0.toml │ │ │ │ └── hello2 │ │ │ │ │ ├── hello2-0.1.0.toml │ │ │ │ │ └── hello2-0.2.0.toml │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ ├── version │ │ ├── inside-outside │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── nothing │ │ │ ├── test.py │ │ │ └── test.yaml │ │ └── short │ │ │ ├── test.py │ │ │ └── test.yaml │ ├── with │ │ ├── add-several │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── ambiguous_ssh_origin │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── auto-gpr-with │ │ │ ├── basic │ │ │ │ ├── my_index │ │ │ │ │ ├── ex │ │ │ │ │ │ └── extern │ │ │ │ │ │ │ └── extern-external.toml │ │ │ │ │ ├── index.toml │ │ │ │ │ └── li │ │ │ │ │ │ └── libhello_nogprwith │ │ │ │ │ │ └── libhello_nogprwith-1.0.0.toml │ │ │ │ ├── test.py │ │ │ │ └── test.yaml │ │ │ └── gpr_in_subdir │ │ │ │ ├── my_index │ │ │ │ ├── gp │ │ │ │ │ └── gpr_in_subdir │ │ │ │ │ │ └── gpr_in_subdir-1.0.0.toml │ │ │ │ └── index.toml │ │ │ │ ├── test.py │ │ │ │ └── test.yaml │ │ ├── changes-info │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── delete-two │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── dynamic-dependencies │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── equivalent │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── external │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── git-reference │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── missing-deps │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── narrow-pre1 │ │ │ ├── my_index │ │ │ │ └── index │ │ │ │ │ ├── he │ │ │ │ │ ├── hello1 │ │ │ │ │ │ └── hello1-0.1.2.toml │ │ │ │ │ └── hello2 │ │ │ │ │ │ └── hello2-1.2.3.toml │ │ │ │ │ └── index.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── nested-prj │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── no-double-add │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── pin-bad-path │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── pin-dir-crate-autodetect │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── pin-dir-crate │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── pin-dir-mismatch │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── pin-dir │ │ │ ├── my_index │ │ │ │ ├── crates │ │ │ │ │ └── libhello_1.0.0 │ │ │ │ │ │ ├── libhello.gpr │ │ │ │ │ │ └── src │ │ │ │ │ │ └── libhello.ads │ │ │ │ └── index │ │ │ │ │ ├── index.toml │ │ │ │ │ └── li │ │ │ │ │ └── libhello │ │ │ │ │ └── libhello-1.0.0.toml │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── pin-transitive │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── pin-twice │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── ssh-origins │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── system-crate │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── tree-concise │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── tree-switch │ │ │ ├── test.py │ │ │ └── test.yaml │ │ ├── versions-switch │ │ │ ├── test.py │ │ │ └── test.yaml │ │ └── virtual-crate │ │ │ ├── test.py │ │ │ └── test.yaml │ └── workflows │ │ ├── actions-as-dependency │ │ ├── my_index │ │ │ ├── hello_src │ │ │ │ ├── hello_world.gpr │ │ │ │ └── src │ │ │ │ │ └── .emptydir │ │ │ └── index │ │ │ │ ├── he │ │ │ │ └── hello_world │ │ │ │ │ └── hello_world-0.1.0.toml │ │ │ │ └── index.toml │ │ ├── test.py │ │ └── test.yaml │ │ ├── actions-as-root │ │ ├── my_index │ │ │ ├── hello_src │ │ │ │ └── hello_world.gpr │ │ │ └── index │ │ │ │ ├── he │ │ │ │ └── hello_world │ │ │ │ │ └── hello_world-0.1.0.toml │ │ │ │ └── index.toml │ │ ├── test.py │ │ └── test.yaml │ │ ├── air-gapping │ │ ├── my_index │ │ │ ├── crates │ │ │ │ ├── hello.tar │ │ │ │ └── libhello.tar │ │ │ └── index │ │ │ │ ├── he │ │ │ │ └── hello │ │ │ │ │ └── hello-1.0.1.toml │ │ │ │ ├── index.toml │ │ │ │ └── li │ │ │ │ └── libhello │ │ │ │ └── libhello-1.0.0.toml │ │ ├── test.py │ │ └── test.yaml │ │ ├── edit │ │ ├── my_index │ │ │ ├── index.toml │ │ │ └── li │ │ │ │ └── libhello │ │ │ │ └── libhello-1.0.0.toml │ │ ├── test.py │ │ └── test.yaml │ │ ├── get-build-run-clean │ │ ├── test.py │ │ └── test.yaml │ │ ├── init-options │ │ ├── test.py │ │ └── test.yaml │ │ └── init-with-pin │ │ ├── test.py │ │ └── test.yaml └── tests_ada │ ├── .gitignore │ ├── alire.toml │ ├── alr_tests.gpr │ ├── src │ ├── alr_tests-assertions_enabled.adb │ ├── alr_tests-commands_to_boolean.adb │ ├── alr_tests-config_changes.adb │ ├── alr_tests-email_identification.adb │ ├── alr_tests-git_to_http_transforms.adb │ ├── alr_tests-github_logins.adb │ ├── alr_tests-github_tokens.adb │ ├── alr_tests-regex_escaping.adb │ └── alr_tests-regexes.adb │ └── src_common │ ├── alr-commands-testing.adb │ ├── alr-commands-testing.ads │ └── alr_tests.ads └── trash ├── changelog.txt ├── issues.txt ├── shipcommon ├── shippable.yml ├── shippable ├── samples │ ├── alr.bad │ ├── alr.xml │ └── sample.ok └── testresults │ └── .emptydir ├── shiptest.sh ├── shiptrigci.sh └── stress ├── alire-index-template01.ads ├── alire-index-template10.ads ├── avg.sh ├── gen.sh ├── selftest.sh ├── tester.sh ├── times10000x1 ├── times10000x10 ├── times1000x1 ├── times1000x10 ├── times100x1 └── times100x10 /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/workflows/ci-docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/.github/workflows/ci-docker.yml -------------------------------------------------------------------------------- /.github/workflows/ci-integrity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/.github/workflows/ci-integrity.yml -------------------------------------------------------------------------------- /.github/workflows/ci-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/.github/workflows/ci-release.yml -------------------------------------------------------------------------------- /.github/workflows/ci-toolchain.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/.github/workflows/ci-toolchain.yml -------------------------------------------------------------------------------- /.github/workflows/ci-unsupported.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/.github/workflows/ci-unsupported.yml -------------------------------------------------------------------------------- /.github/workflows/cleaner.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/.github/workflows/cleaner.yml -------------------------------------------------------------------------------- /.github/workflows/spellcheck.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/.github/workflows/spellcheck.yml -------------------------------------------------------------------------------- /.github/workflows/tarball-full.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/.github/workflows/tarball-full.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/.gitmodules -------------------------------------------------------------------------------- /.gitpod.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/.gitpod.Dockerfile -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /BREAKING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/BREAKING.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/README.md -------------------------------------------------------------------------------- /RELEASING-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/RELEASING-post.md -------------------------------------------------------------------------------- /RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/RELEASING.md -------------------------------------------------------------------------------- /alire.gpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/alire.gpr -------------------------------------------------------------------------------- /alire.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/alire.toml -------------------------------------------------------------------------------- /alire_common.gpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/alire_common.gpr -------------------------------------------------------------------------------- /alr.gpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/alr.gpr -------------------------------------------------------------------------------- /alr_env.gpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/alr_env.gpr -------------------------------------------------------------------------------- /dev/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/dev/build.sh -------------------------------------------------------------------------------- /dev/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/dev/clean.sh -------------------------------------------------------------------------------- /dev/edit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/dev/edit.sh -------------------------------------------------------------------------------- /dev/functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/dev/functions.sh -------------------------------------------------------------------------------- /dev/reset-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/dev/reset-version.sh -------------------------------------------------------------------------------- /dev/unused.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/dev/unused.sh -------------------------------------------------------------------------------- /doc/2018-03.alr-draft.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/doc/2018-03.alr-draft.pdf -------------------------------------------------------------------------------- /doc/AEPs/aep-0001.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/doc/AEPs/aep-0001.md -------------------------------------------------------------------------------- /doc/AEPs/aep-0002.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/doc/AEPs/aep-0002.md -------------------------------------------------------------------------------- /doc/AEPs/aep-0003.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/doc/AEPs/aep-0003.md -------------------------------------------------------------------------------- /doc/AEPs/aep-0004.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/doc/AEPs/aep-0004.md -------------------------------------------------------------------------------- /doc/alr-logo-black-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/doc/alr-logo-black-white.svg -------------------------------------------------------------------------------- /doc/alr-logo-sq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/doc/alr-logo-sq.png -------------------------------------------------------------------------------- /doc/alr-logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/doc/alr-logo-white.svg -------------------------------------------------------------------------------- /doc/alr-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/doc/alr-logo.svg -------------------------------------------------------------------------------- /doc/alr-logo.svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/doc/alr-logo.svg.png -------------------------------------------------------------------------------- /doc/catalog-format-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/doc/catalog-format-spec.md -------------------------------------------------------------------------------- /doc/classes.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/doc/classes.graphml -------------------------------------------------------------------------------- /doc/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/doc/getting-started.md -------------------------------------------------------------------------------- /doc/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/doc/introduction.md -------------------------------------------------------------------------------- /doc/policies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/doc/policies.md -------------------------------------------------------------------------------- /doc/private-crates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/doc/private-crates.md -------------------------------------------------------------------------------- /doc/publishing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/doc/publishing.md -------------------------------------------------------------------------------- /doc/settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/doc/settings.md -------------------------------------------------------------------------------- /doc/toolchains.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/doc/toolchains.md -------------------------------------------------------------------------------- /doc/unicode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/doc/unicode.md -------------------------------------------------------------------------------- /doc/upgrading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/doc/upgrading.md -------------------------------------------------------------------------------- /doc/user-changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/doc/user-changes.md -------------------------------------------------------------------------------- /elim/ajunitgen.gpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/elim/ajunitgen.gpr -------------------------------------------------------------------------------- /elim/alire.gpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/elim/alire.gpr -------------------------------------------------------------------------------- /elim/alr.gpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/elim/alr.gpr -------------------------------------------------------------------------------- /elim/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/elim/run.sh -------------------------------------------------------------------------------- /resources/alr-qr-code-gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/resources/alr-qr-code-gradient.png -------------------------------------------------------------------------------- /resources/alr.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/resources/alr.desktop -------------------------------------------------------------------------------- /resources/alr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/resources/alr.png -------------------------------------------------------------------------------- /scripts/alr-completion.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/scripts/alr-completion.bash -------------------------------------------------------------------------------- /scripts/aptdetect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/scripts/aptdetect -------------------------------------------------------------------------------- /scripts/ci-github.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/scripts/ci-github.sh -------------------------------------------------------------------------------- /scripts/git-fingerprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/scripts/git-fingerprint -------------------------------------------------------------------------------- /scripts/gnat_install.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/scripts/gnat_install.qs -------------------------------------------------------------------------------- /scripts/installer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/scripts/installer/README.md -------------------------------------------------------------------------------- /scripts/installer/alr_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/scripts/installer/alr_icon.ico -------------------------------------------------------------------------------- /scripts/installer/alr_installer_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/scripts/installer/alr_installer_icon.ico -------------------------------------------------------------------------------- /scripts/installer/auto-install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/scripts/installer/auto-install.js -------------------------------------------------------------------------------- /scripts/installer/make-alire-installer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/scripts/installer/make-alire-installer -------------------------------------------------------------------------------- /scripts/installer/qt-ifw/config/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/scripts/installer/qt-ifw/config/config.xml -------------------------------------------------------------------------------- /scripts/python/alire/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/python/alire/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/scripts/python/alire/index.py -------------------------------------------------------------------------------- /scripts/python/alire/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/scripts/python/alire/utils.py -------------------------------------------------------------------------------- /scripts/python/check_finalize_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/scripts/python/check_finalize_exceptions.py -------------------------------------------------------------------------------- /scripts/python/manifest-version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/scripts/python/manifest-version.py -------------------------------------------------------------------------------- /scripts/python/separate-origins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/scripts/python/separate-origins.py -------------------------------------------------------------------------------- /scripts/python/split-crates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/scripts/python/split-crates.py -------------------------------------------------------------------------------- /scripts/verify-pins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/scripts/verify-pins.sh -------------------------------------------------------------------------------- /scripts/version-patcher.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/scripts/version-patcher.ps1 -------------------------------------------------------------------------------- /scripts/version-patcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/scripts/version-patcher.sh -------------------------------------------------------------------------------- /src/alire/README.md: -------------------------------------------------------------------------------- 1 | Common core functionality 2 | -------------------------------------------------------------------------------- /src/alire/alire-builds-hashes.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-builds-hashes.adb -------------------------------------------------------------------------------- /src/alire/alire-builds-hashes.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-builds-hashes.ads -------------------------------------------------------------------------------- /src/alire/alire-builds.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-builds.adb -------------------------------------------------------------------------------- /src/alire/alire-builds.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-builds.ads -------------------------------------------------------------------------------- /src/alire/alire-cache.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-cache.adb -------------------------------------------------------------------------------- /src/alire/alire-cache.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-cache.ads -------------------------------------------------------------------------------- /src/alire/alire-conditional.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-conditional.adb -------------------------------------------------------------------------------- /src/alire/alire-conditional.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-conditional.ads -------------------------------------------------------------------------------- /src/alire/alire-conditional_trees.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-conditional_trees.adb -------------------------------------------------------------------------------- /src/alire/alire-conditional_trees.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-conditional_trees.ads -------------------------------------------------------------------------------- /src/alire/alire-containers.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-containers.ads -------------------------------------------------------------------------------- /src/alire/alire-crate_configuration.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-crate_configuration.adb -------------------------------------------------------------------------------- /src/alire/alire-crate_configuration.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-crate_configuration.ads -------------------------------------------------------------------------------- /src/alire/alire-crates-containers.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-crates-containers.ads -------------------------------------------------------------------------------- /src/alire/alire-crates.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-crates.adb -------------------------------------------------------------------------------- /src/alire/alire-crates.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-crates.ads -------------------------------------------------------------------------------- /src/alire/alire-defaults.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-defaults.ads -------------------------------------------------------------------------------- /src/alire/alire-dependencies-containers.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-dependencies-containers.adb -------------------------------------------------------------------------------- /src/alire/alire-dependencies-containers.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-dependencies-containers.ads -------------------------------------------------------------------------------- /src/alire/alire-dependencies-diffs.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-dependencies-diffs.adb -------------------------------------------------------------------------------- /src/alire/alire-dependencies-diffs.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-dependencies-diffs.ads -------------------------------------------------------------------------------- /src/alire/alire-dependencies-graphs.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-dependencies-graphs.adb -------------------------------------------------------------------------------- /src/alire/alire-dependencies-graphs.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-dependencies-graphs.ads -------------------------------------------------------------------------------- /src/alire/alire-dependencies-states-maps.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-dependencies-states-maps.adb -------------------------------------------------------------------------------- /src/alire/alire-dependencies-states-maps.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-dependencies-states-maps.ads -------------------------------------------------------------------------------- /src/alire/alire-dependencies-states.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-dependencies-states.adb -------------------------------------------------------------------------------- /src/alire/alire-dependencies-states.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-dependencies-states.ads -------------------------------------------------------------------------------- /src/alire/alire-dependencies.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-dependencies.adb -------------------------------------------------------------------------------- /src/alire/alire-dependencies.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-dependencies.ads -------------------------------------------------------------------------------- /src/alire/alire-directories.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-directories.adb -------------------------------------------------------------------------------- /src/alire/alire-directories.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-directories.ads -------------------------------------------------------------------------------- /src/alire/alire-environment-loading.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-environment-loading.adb -------------------------------------------------------------------------------- /src/alire/alire-environment-loading.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-environment-loading.ads -------------------------------------------------------------------------------- /src/alire/alire-environment.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-environment.adb -------------------------------------------------------------------------------- /src/alire/alire-environment.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-environment.ads -------------------------------------------------------------------------------- /src/alire/alire-errors.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-errors.adb -------------------------------------------------------------------------------- /src/alire/alire-errors.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-errors.ads -------------------------------------------------------------------------------- /src/alire/alire-expressions-enums.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-expressions-enums.adb -------------------------------------------------------------------------------- /src/alire/alire-expressions-enums.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-expressions-enums.ads -------------------------------------------------------------------------------- /src/alire/alire-expressions-maps.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-expressions-maps.adb -------------------------------------------------------------------------------- /src/alire/alire-expressions-maps.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-expressions-maps.ads -------------------------------------------------------------------------------- /src/alire/alire-expressions.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-expressions.adb -------------------------------------------------------------------------------- /src/alire/alire-expressions.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-expressions.ads -------------------------------------------------------------------------------- /src/alire/alire-externals-from_output.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-externals-from_output.adb -------------------------------------------------------------------------------- /src/alire/alire-externals-from_output.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-externals-from_output.ads -------------------------------------------------------------------------------- /src/alire/alire-externals-from_system.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-externals-from_system.adb -------------------------------------------------------------------------------- /src/alire/alire-externals-from_system.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-externals-from_system.ads -------------------------------------------------------------------------------- /src/alire/alire-externals-lists.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-externals-lists.adb -------------------------------------------------------------------------------- /src/alire/alire-externals-lists.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-externals-lists.ads -------------------------------------------------------------------------------- /src/alire/alire-externals-unindexed.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-externals-unindexed.adb -------------------------------------------------------------------------------- /src/alire/alire-externals-unindexed.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-externals-unindexed.ads -------------------------------------------------------------------------------- /src/alire/alire-externals.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-externals.adb -------------------------------------------------------------------------------- /src/alire/alire-externals.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-externals.ads -------------------------------------------------------------------------------- /src/alire/alire-features.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-features.ads -------------------------------------------------------------------------------- /src/alire/alire-flags.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-flags.adb -------------------------------------------------------------------------------- /src/alire/alire-flags.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-flags.ads -------------------------------------------------------------------------------- /src/alire/alire-formatting.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-formatting.adb -------------------------------------------------------------------------------- /src/alire/alire-formatting.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-formatting.ads -------------------------------------------------------------------------------- /src/alire/alire-github.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-github.adb -------------------------------------------------------------------------------- /src/alire/alire-github.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-github.ads -------------------------------------------------------------------------------- /src/alire/alire-gpr.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-gpr.adb -------------------------------------------------------------------------------- /src/alire/alire-gpr.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-gpr.ads -------------------------------------------------------------------------------- /src/alire/alire-hashes-common.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-hashes-common.adb -------------------------------------------------------------------------------- /src/alire/alire-hashes-common.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-hashes-common.ads -------------------------------------------------------------------------------- /src/alire/alire-hashes-sha256_impl.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-hashes-sha256_impl.ads -------------------------------------------------------------------------------- /src/alire/alire-hashes-sha512_impl.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-hashes-sha512_impl.ads -------------------------------------------------------------------------------- /src/alire/alire-hashes.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-hashes.adb -------------------------------------------------------------------------------- /src/alire/alire-hashes.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-hashes.ads -------------------------------------------------------------------------------- /src/alire/alire-index-search.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-index-search.adb -------------------------------------------------------------------------------- /src/alire/alire-index-search.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-index-search.ads -------------------------------------------------------------------------------- /src/alire/alire-index.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-index.adb -------------------------------------------------------------------------------- /src/alire/alire-index.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-index.ads -------------------------------------------------------------------------------- /src/alire/alire-index_on_disk-directory.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-index_on_disk-directory.adb -------------------------------------------------------------------------------- /src/alire/alire-index_on_disk-directory.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-index_on_disk-directory.ads -------------------------------------------------------------------------------- /src/alire/alire-index_on_disk-git.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-index_on_disk-git.adb -------------------------------------------------------------------------------- /src/alire/alire-index_on_disk-git.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-index_on_disk-git.ads -------------------------------------------------------------------------------- /src/alire/alire-index_on_disk-loading.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-index_on_disk-loading.adb -------------------------------------------------------------------------------- /src/alire/alire-index_on_disk-loading.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-index_on_disk-loading.ads -------------------------------------------------------------------------------- /src/alire/alire-index_on_disk-updates.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-index_on_disk-updates.adb -------------------------------------------------------------------------------- /src/alire/alire-index_on_disk-updates.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-index_on_disk-updates.ads -------------------------------------------------------------------------------- /src/alire/alire-index_on_disk.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-index_on_disk.adb -------------------------------------------------------------------------------- /src/alire/alire-index_on_disk.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-index_on_disk.ads -------------------------------------------------------------------------------- /src/alire/alire-install.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-install.adb -------------------------------------------------------------------------------- /src/alire/alire-install.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-install.ads -------------------------------------------------------------------------------- /src/alire/alire-interfaces.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-interfaces.ads -------------------------------------------------------------------------------- /src/alire/alire-licensing.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-licensing.adb -------------------------------------------------------------------------------- /src/alire/alire-licensing.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-licensing.ads -------------------------------------------------------------------------------- /src/alire/alire-loading.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-loading.ads -------------------------------------------------------------------------------- /src/alire/alire-lockfiles.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-lockfiles.adb -------------------------------------------------------------------------------- /src/alire/alire-lockfiles.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-lockfiles.ads -------------------------------------------------------------------------------- /src/alire/alire-manifest.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-manifest.adb -------------------------------------------------------------------------------- /src/alire/alire-manifest.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-manifest.ads -------------------------------------------------------------------------------- /src/alire/alire-meta.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-meta.ads -------------------------------------------------------------------------------- /src/alire/alire-milestones-containers.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-milestones-containers.ads -------------------------------------------------------------------------------- /src/alire/alire-milestones.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-milestones.ads -------------------------------------------------------------------------------- /src/alire/alire-optional.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-optional.ads -------------------------------------------------------------------------------- /src/alire/alire-origins-deployers-git.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-origins-deployers-git.adb -------------------------------------------------------------------------------- /src/alire/alire-origins-deployers-git.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-origins-deployers-git.ads -------------------------------------------------------------------------------- /src/alire/alire-origins-deployers-hg.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-origins-deployers-hg.adb -------------------------------------------------------------------------------- /src/alire/alire-origins-deployers-hg.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-origins-deployers-hg.ads -------------------------------------------------------------------------------- /src/alire/alire-origins-deployers-svn.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-origins-deployers-svn.adb -------------------------------------------------------------------------------- /src/alire/alire-origins-deployers-svn.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-origins-deployers-svn.ads -------------------------------------------------------------------------------- /src/alire/alire-origins-deployers-system.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-origins-deployers-system.adb -------------------------------------------------------------------------------- /src/alire/alire-origins-deployers-system.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-origins-deployers-system.ads -------------------------------------------------------------------------------- /src/alire/alire-origins-deployers.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-origins-deployers.adb -------------------------------------------------------------------------------- /src/alire/alire-origins-deployers.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-origins-deployers.ads -------------------------------------------------------------------------------- /src/alire/alire-origins-tweaks.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-origins-tweaks.adb -------------------------------------------------------------------------------- /src/alire/alire-origins-tweaks.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-origins-tweaks.ads -------------------------------------------------------------------------------- /src/alire/alire-origins.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-origins.adb -------------------------------------------------------------------------------- /src/alire/alire-origins.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-origins.ads -------------------------------------------------------------------------------- /src/alire/alire-os_lib-download.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-os_lib-download.adb -------------------------------------------------------------------------------- /src/alire/alire-os_lib-download.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-os_lib-download.ads -------------------------------------------------------------------------------- /src/alire/alire-os_lib-subprocess.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-os_lib-subprocess.adb -------------------------------------------------------------------------------- /src/alire/alire-os_lib-subprocess.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-os_lib-subprocess.ads -------------------------------------------------------------------------------- /src/alire/alire-os_lib.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-os_lib.adb -------------------------------------------------------------------------------- /src/alire/alire-os_lib.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-os_lib.ads -------------------------------------------------------------------------------- /src/alire/alire-outcomes-definite.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-outcomes-definite.ads -------------------------------------------------------------------------------- /src/alire/alire-outcomes-indefinite.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-outcomes-indefinite.adb -------------------------------------------------------------------------------- /src/alire/alire-outcomes-indefinite.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-outcomes-indefinite.ads -------------------------------------------------------------------------------- /src/alire/alire-outcomes.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-outcomes.ads -------------------------------------------------------------------------------- /src/alire/alire-paths-vault.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-paths-vault.ads -------------------------------------------------------------------------------- /src/alire/alire-paths.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-paths.ads -------------------------------------------------------------------------------- /src/alire/alire-platforms-common.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-platforms-common.adb -------------------------------------------------------------------------------- /src/alire/alire-platforms-common.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-platforms-common.ads -------------------------------------------------------------------------------- /src/alire/alire-platforms-current.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-platforms-current.ads -------------------------------------------------------------------------------- /src/alire/alire-platforms-folders.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-platforms-folders.ads -------------------------------------------------------------------------------- /src/alire/alire-platforms.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-platforms.ads -------------------------------------------------------------------------------- /src/alire/alire-policies.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-policies.ads -------------------------------------------------------------------------------- /src/alire/alire-properties-actions.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-properties-actions.adb -------------------------------------------------------------------------------- /src/alire/alire-properties-actions.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-properties-actions.ads -------------------------------------------------------------------------------- /src/alire/alire-properties-bool.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-properties-bool.adb -------------------------------------------------------------------------------- /src/alire/alire-properties-bool.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-properties-bool.ads -------------------------------------------------------------------------------- /src/alire/alire-properties-cases.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-properties-cases.ads -------------------------------------------------------------------------------- /src/alire/alire-properties-environment.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-properties-environment.adb -------------------------------------------------------------------------------- /src/alire/alire-properties-environment.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-properties-environment.ads -------------------------------------------------------------------------------- /src/alire/alire-properties-from_toml.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-properties-from_toml.adb -------------------------------------------------------------------------------- /src/alire/alire-properties-from_toml.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-properties-from_toml.ads -------------------------------------------------------------------------------- /src/alire/alire-properties-future.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-properties-future.adb -------------------------------------------------------------------------------- /src/alire/alire-properties-future.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-properties-future.ads -------------------------------------------------------------------------------- /src/alire/alire-properties-labeled.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-properties-labeled.adb -------------------------------------------------------------------------------- /src/alire/alire-properties-labeled.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-properties-labeled.ads -------------------------------------------------------------------------------- /src/alire/alire-properties-licenses.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-properties-licenses.adb -------------------------------------------------------------------------------- /src/alire/alire-properties-licenses.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-properties-licenses.ads -------------------------------------------------------------------------------- /src/alire/alire-properties-platform.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-properties-platform.ads -------------------------------------------------------------------------------- /src/alire/alire-properties-scenarios.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-properties-scenarios.adb -------------------------------------------------------------------------------- /src/alire/alire-properties-scenarios.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-properties-scenarios.ads -------------------------------------------------------------------------------- /src/alire/alire-properties-tests.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-properties-tests.adb -------------------------------------------------------------------------------- /src/alire/alire-properties-tests.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-properties-tests.ads -------------------------------------------------------------------------------- /src/alire/alire-properties.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-properties.adb -------------------------------------------------------------------------------- /src/alire/alire-properties.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-properties.ads -------------------------------------------------------------------------------- /src/alire/alire-provides.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-provides.adb -------------------------------------------------------------------------------- /src/alire/alire-provides.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-provides.ads -------------------------------------------------------------------------------- /src/alire/alire-publish-states.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-publish-states.adb -------------------------------------------------------------------------------- /src/alire/alire-publish-states.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-publish-states.ads -------------------------------------------------------------------------------- /src/alire/alire-publish-submit.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-publish-submit.adb -------------------------------------------------------------------------------- /src/alire/alire-publish-submit.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-publish-submit.ads -------------------------------------------------------------------------------- /src/alire/alire-publish.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-publish.adb -------------------------------------------------------------------------------- /src/alire/alire-publish.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-publish.ads -------------------------------------------------------------------------------- /src/alire/alire-releases-containers.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-releases-containers.adb -------------------------------------------------------------------------------- /src/alire/alire-releases-containers.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-releases-containers.ads -------------------------------------------------------------------------------- /src/alire/alire-releases.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-releases.adb -------------------------------------------------------------------------------- /src/alire/alire-releases.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-releases.ads -------------------------------------------------------------------------------- /src/alire/alire-root.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-root.adb -------------------------------------------------------------------------------- /src/alire/alire-root.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-root.ads -------------------------------------------------------------------------------- /src/alire/alire-roots-editable.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-roots-editable.adb -------------------------------------------------------------------------------- /src/alire/alire-roots-editable.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-roots-editable.ads -------------------------------------------------------------------------------- /src/alire/alire-roots-optional.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-roots-optional.adb -------------------------------------------------------------------------------- /src/alire/alire-roots-optional.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-roots-optional.ads -------------------------------------------------------------------------------- /src/alire/alire-roots.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-roots.adb -------------------------------------------------------------------------------- /src/alire/alire-roots.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-roots.ads -------------------------------------------------------------------------------- /src/alire/alire-settings-builtins.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-settings-builtins.ads -------------------------------------------------------------------------------- /src/alire/alire-settings-checks.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-settings-checks.adb -------------------------------------------------------------------------------- /src/alire/alire-settings-checks.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-settings-checks.ads -------------------------------------------------------------------------------- /src/alire/alire-settings-edit-early_load.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-settings-edit-early_load.adb -------------------------------------------------------------------------------- /src/alire/alire-settings-edit-early_load.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-settings-edit-early_load.ads -------------------------------------------------------------------------------- /src/alire/alire-settings-edit.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-settings-edit.adb -------------------------------------------------------------------------------- /src/alire/alire-settings-edit.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-settings-edit.ads -------------------------------------------------------------------------------- /src/alire/alire-settings.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-settings.adb -------------------------------------------------------------------------------- /src/alire/alire-settings.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-settings.ads -------------------------------------------------------------------------------- /src/alire/alire-solutions-containers.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-solutions-containers.ads -------------------------------------------------------------------------------- /src/alire/alire-solutions-diffs.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-solutions-diffs.adb -------------------------------------------------------------------------------- /src/alire/alire-solutions-diffs.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-solutions-diffs.ads -------------------------------------------------------------------------------- /src/alire/alire-solutions.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-solutions.adb -------------------------------------------------------------------------------- /src/alire/alire-solutions.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-solutions.ads -------------------------------------------------------------------------------- /src/alire/alire-solver.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-solver.adb -------------------------------------------------------------------------------- /src/alire/alire-solver.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-solver.ads -------------------------------------------------------------------------------- /src/alire/alire-spawn.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-spawn.adb -------------------------------------------------------------------------------- /src/alire/alire-spawn.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-spawn.ads -------------------------------------------------------------------------------- /src/alire/alire-templates-builtins.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-templates-builtins.ads -------------------------------------------------------------------------------- /src/alire/alire-templates.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-templates.adb -------------------------------------------------------------------------------- /src/alire/alire-templates.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-templates.ads -------------------------------------------------------------------------------- /src/alire/alire-test_runner.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-test_runner.adb -------------------------------------------------------------------------------- /src/alire/alire-test_runner.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-test_runner.ads -------------------------------------------------------------------------------- /src/alire/alire-toml_adapters.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-toml_adapters.adb -------------------------------------------------------------------------------- /src/alire/alire-toml_adapters.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-toml_adapters.ads -------------------------------------------------------------------------------- /src/alire/alire-toml_index.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-toml_index.adb -------------------------------------------------------------------------------- /src/alire/alire-toml_index.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-toml_index.ads -------------------------------------------------------------------------------- /src/alire/alire-toml_keys.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-toml_keys.ads -------------------------------------------------------------------------------- /src/alire/alire-toml_load.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-toml_load.adb -------------------------------------------------------------------------------- /src/alire/alire-toml_load.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-toml_load.ads -------------------------------------------------------------------------------- /src/alire/alire-toolchains-solutions.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-toolchains-solutions.adb -------------------------------------------------------------------------------- /src/alire/alire-toolchains-solutions.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-toolchains-solutions.ads -------------------------------------------------------------------------------- /src/alire/alire-toolchains.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-toolchains.adb -------------------------------------------------------------------------------- /src/alire/alire-toolchains.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-toolchains.ads -------------------------------------------------------------------------------- /src/alire/alire-types.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-types.ads -------------------------------------------------------------------------------- /src/alire/alire-uri.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-uri.adb -------------------------------------------------------------------------------- /src/alire/alire-uri.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-uri.ads -------------------------------------------------------------------------------- /src/alire/alire-user_pins-maps.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-user_pins-maps.adb -------------------------------------------------------------------------------- /src/alire/alire-user_pins-maps.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-user_pins-maps.ads -------------------------------------------------------------------------------- /src/alire/alire-user_pins.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-user_pins.adb -------------------------------------------------------------------------------- /src/alire/alire-user_pins.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-user_pins.ads -------------------------------------------------------------------------------- /src/alire/alire-utils-comparisons.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-utils-comparisons.ads -------------------------------------------------------------------------------- /src/alire/alire-utils-did_you_mean.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-utils-did_you_mean.adb -------------------------------------------------------------------------------- /src/alire/alire-utils-did_you_mean.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-utils-did_you_mean.ads -------------------------------------------------------------------------------- /src/alire/alire-utils-gnat_switches.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-utils-gnat_switches.ads -------------------------------------------------------------------------------- /src/alire/alire-utils-regex.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-utils-regex.adb -------------------------------------------------------------------------------- /src/alire/alire-utils-regex.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-utils-regex.ads -------------------------------------------------------------------------------- /src/alire/alire-utils-switches-knowledge.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-utils-switches-knowledge.adb -------------------------------------------------------------------------------- /src/alire/alire-utils-switches-knowledge.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-utils-switches-knowledge.ads -------------------------------------------------------------------------------- /src/alire/alire-utils-switches.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-utils-switches.adb -------------------------------------------------------------------------------- /src/alire/alire-utils-switches.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-utils-switches.ads -------------------------------------------------------------------------------- /src/alire/alire-utils-tables.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-utils-tables.adb -------------------------------------------------------------------------------- /src/alire/alire-utils-tables.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-utils-tables.ads -------------------------------------------------------------------------------- /src/alire/alire-utils-text_files.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-utils-text_files.adb -------------------------------------------------------------------------------- /src/alire/alire-utils-text_files.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-utils-text_files.ads -------------------------------------------------------------------------------- /src/alire/alire-utils-tools.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-utils-tools.adb -------------------------------------------------------------------------------- /src/alire/alire-utils-tools.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-utils-tools.ads -------------------------------------------------------------------------------- /src/alire/alire-utils-tty.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-utils-tty.ads -------------------------------------------------------------------------------- /src/alire/alire-utils-user_input.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-utils-user_input.adb -------------------------------------------------------------------------------- /src/alire/alire-utils-user_input.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-utils-user_input.ads -------------------------------------------------------------------------------- /src/alire/alire-utils-yaml.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-utils-yaml.adb -------------------------------------------------------------------------------- /src/alire/alire-utils-yaml.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-utils-yaml.ads -------------------------------------------------------------------------------- /src/alire/alire-utils.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-utils.adb -------------------------------------------------------------------------------- /src/alire/alire-utils.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-utils.ads -------------------------------------------------------------------------------- /src/alire/alire-vcss-git.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-vcss-git.adb -------------------------------------------------------------------------------- /src/alire/alire-vcss-git.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-vcss-git.ads -------------------------------------------------------------------------------- /src/alire/alire-vcss-hg.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-vcss-hg.adb -------------------------------------------------------------------------------- /src/alire/alire-vcss-hg.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-vcss-hg.ads -------------------------------------------------------------------------------- /src/alire/alire-vcss-svn.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-vcss-svn.adb -------------------------------------------------------------------------------- /src/alire/alire-vcss-svn.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-vcss-svn.ads -------------------------------------------------------------------------------- /src/alire/alire-vcss.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-vcss.adb -------------------------------------------------------------------------------- /src/alire/alire-vcss.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-vcss.ads -------------------------------------------------------------------------------- /src/alire/alire-version.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-version.ads -------------------------------------------------------------------------------- /src/alire/alire-vfs.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-vfs.adb -------------------------------------------------------------------------------- /src/alire/alire-vfs.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-vfs.ads -------------------------------------------------------------------------------- /src/alire/alire-warnings.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-warnings.adb -------------------------------------------------------------------------------- /src/alire/alire-warnings.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire-warnings.ads -------------------------------------------------------------------------------- /src/alire/alire.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire.adb -------------------------------------------------------------------------------- /src/alire/alire.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire.ads -------------------------------------------------------------------------------- /src/alire/alire_early_elaboration.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire_early_elaboration.adb -------------------------------------------------------------------------------- /src/alire/alire_early_elaboration.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/alire_early_elaboration.ads -------------------------------------------------------------------------------- /src/alire/obsolete/alire-platform.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/obsolete/alire-platform.adb -------------------------------------------------------------------------------- /src/alire/obsolete/alire-platform.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alire/obsolete/alire-platform.ads -------------------------------------------------------------------------------- /src/alr/README.md: -------------------------------------------------------------------------------- 1 | Command-line tool specific code 2 | -------------------------------------------------------------------------------- /src/alr/alr-actions.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-actions.adb -------------------------------------------------------------------------------- /src/alr/alr-actions.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-actions.ads -------------------------------------------------------------------------------- /src/alr/alr-bootstrap.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-bootstrap.adb -------------------------------------------------------------------------------- /src/alr/alr-bootstrap.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-bootstrap.ads -------------------------------------------------------------------------------- /src/alr/alr-commands-action.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-commands-action.adb -------------------------------------------------------------------------------- /src/alr/alr-commands-action.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-commands-action.ads -------------------------------------------------------------------------------- /src/alr/alr-commands-build.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-commands-build.adb -------------------------------------------------------------------------------- /src/alr/alr-commands-build.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-commands-build.ads -------------------------------------------------------------------------------- /src/alr/alr-commands-cache.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-commands-cache.adb -------------------------------------------------------------------------------- /src/alr/alr-commands-cache.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-commands-cache.ads -------------------------------------------------------------------------------- /src/alr/alr-commands-clean.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-commands-clean.adb -------------------------------------------------------------------------------- /src/alr/alr-commands-clean.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-commands-clean.ads -------------------------------------------------------------------------------- /src/alr/alr-commands-config.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-commands-config.adb -------------------------------------------------------------------------------- /src/alr/alr-commands-config.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-commands-config.ads -------------------------------------------------------------------------------- /src/alr/alr-commands-dev.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-commands-dev.adb -------------------------------------------------------------------------------- /src/alr/alr-commands-dev.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-commands-dev.ads -------------------------------------------------------------------------------- /src/alr/alr-commands-edit.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-commands-edit.adb -------------------------------------------------------------------------------- /src/alr/alr-commands-edit.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-commands-edit.ads -------------------------------------------------------------------------------- /src/alr/alr-commands-exec.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-commands-exec.adb -------------------------------------------------------------------------------- /src/alr/alr-commands-exec.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-commands-exec.ads -------------------------------------------------------------------------------- /src/alr/alr-commands-get.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-commands-get.adb -------------------------------------------------------------------------------- /src/alr/alr-commands-get.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-commands-get.ads -------------------------------------------------------------------------------- /src/alr/alr-commands-index.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-commands-index.adb -------------------------------------------------------------------------------- /src/alr/alr-commands-index.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-commands-index.ads -------------------------------------------------------------------------------- /src/alr/alr-commands-init.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-commands-init.adb -------------------------------------------------------------------------------- /src/alr/alr-commands-init.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-commands-init.ads -------------------------------------------------------------------------------- /src/alr/alr-commands-install.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-commands-install.adb -------------------------------------------------------------------------------- /src/alr/alr-commands-install.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-commands-install.ads -------------------------------------------------------------------------------- /src/alr/alr-commands-pin.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-commands-pin.adb -------------------------------------------------------------------------------- /src/alr/alr-commands-pin.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-commands-pin.ads -------------------------------------------------------------------------------- /src/alr/alr-commands-printenv.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-commands-printenv.adb -------------------------------------------------------------------------------- /src/alr/alr-commands-printenv.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-commands-printenv.ads -------------------------------------------------------------------------------- /src/alr/alr-commands-publish.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-commands-publish.adb -------------------------------------------------------------------------------- /src/alr/alr-commands-publish.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-commands-publish.ads -------------------------------------------------------------------------------- /src/alr/alr-commands-run.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-commands-run.adb -------------------------------------------------------------------------------- /src/alr/alr-commands-run.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-commands-run.ads -------------------------------------------------------------------------------- /src/alr/alr-commands-search.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-commands-search.adb -------------------------------------------------------------------------------- /src/alr/alr-commands-search.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-commands-search.ads -------------------------------------------------------------------------------- /src/alr/alr-commands-self_update.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-commands-self_update.adb -------------------------------------------------------------------------------- /src/alr/alr-commands-self_update.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-commands-self_update.ads -------------------------------------------------------------------------------- /src/alr/alr-commands-settings.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-commands-settings.adb -------------------------------------------------------------------------------- /src/alr/alr-commands-settings.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-commands-settings.ads -------------------------------------------------------------------------------- /src/alr/alr-commands-show.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-commands-show.adb -------------------------------------------------------------------------------- /src/alr/alr-commands-show.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-commands-show.ads -------------------------------------------------------------------------------- /src/alr/alr-commands-skeleton.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-commands-skeleton.ads -------------------------------------------------------------------------------- /src/alr/alr-commands-test.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-commands-test.adb -------------------------------------------------------------------------------- /src/alr/alr-commands-test.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-commands-test.ads -------------------------------------------------------------------------------- /src/alr/alr-commands-toolchain.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-commands-toolchain.adb -------------------------------------------------------------------------------- /src/alr/alr-commands-toolchain.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-commands-toolchain.ads -------------------------------------------------------------------------------- /src/alr/alr-commands-topics-aliases.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-commands-topics-aliases.ads -------------------------------------------------------------------------------- /src/alr/alr-commands-topics-toolchains.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-commands-topics-toolchains.ads -------------------------------------------------------------------------------- /src/alr/alr-commands-topics.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-commands-topics.ads -------------------------------------------------------------------------------- /src/alr/alr-commands-update.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-commands-update.adb -------------------------------------------------------------------------------- /src/alr/alr-commands-update.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-commands-update.ads -------------------------------------------------------------------------------- /src/alr/alr-commands-user_input.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-commands-user_input.adb -------------------------------------------------------------------------------- /src/alr/alr-commands-user_input.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-commands-user_input.ads -------------------------------------------------------------------------------- /src/alr/alr-commands-version.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-commands-version.adb -------------------------------------------------------------------------------- /src/alr/alr-commands-version.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-commands-version.ads -------------------------------------------------------------------------------- /src/alr/alr-commands-withing.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-commands-withing.adb -------------------------------------------------------------------------------- /src/alr/alr-commands-withing.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-commands-withing.ads -------------------------------------------------------------------------------- /src/alr/alr-commands.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-commands.adb -------------------------------------------------------------------------------- /src/alr/alr-commands.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-commands.ads -------------------------------------------------------------------------------- /src/alr/alr-common.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-common.adb -------------------------------------------------------------------------------- /src/alr/alr-common.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-common.ads -------------------------------------------------------------------------------- /src/alr/alr-exceptions.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-exceptions.adb -------------------------------------------------------------------------------- /src/alr/alr-exceptions.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-exceptions.ads -------------------------------------------------------------------------------- /src/alr/alr-files.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-files.adb -------------------------------------------------------------------------------- /src/alr/alr-files.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-files.ads -------------------------------------------------------------------------------- /src/alr/alr-last_chance_handler.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-last_chance_handler.adb -------------------------------------------------------------------------------- /src/alr/alr-last_chance_handler.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-last_chance_handler.ads -------------------------------------------------------------------------------- /src/alr/alr-main.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-main.adb -------------------------------------------------------------------------------- /src/alr/alr-os_lib.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-os_lib.adb -------------------------------------------------------------------------------- /src/alr/alr-os_lib.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-os_lib.ads -------------------------------------------------------------------------------- /src/alr/alr-testing-collections.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-testing-collections.adb -------------------------------------------------------------------------------- /src/alr/alr-testing-collections.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-testing-collections.ads -------------------------------------------------------------------------------- /src/alr/alr-testing-console.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-testing-console.adb -------------------------------------------------------------------------------- /src/alr/alr-testing-console.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-testing-console.ads -------------------------------------------------------------------------------- /src/alr/alr-testing-junit.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-testing-junit.adb -------------------------------------------------------------------------------- /src/alr/alr-testing-junit.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-testing-junit.ads -------------------------------------------------------------------------------- /src/alr/alr-testing-markdown.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-testing-markdown.adb -------------------------------------------------------------------------------- /src/alr/alr-testing-markdown.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-testing-markdown.ads -------------------------------------------------------------------------------- /src/alr/alr-testing-text.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-testing-text.adb -------------------------------------------------------------------------------- /src/alr/alr-testing-text.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-testing-text.ads -------------------------------------------------------------------------------- /src/alr/alr-testing.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-testing.ads -------------------------------------------------------------------------------- /src/alr/alr-utils-temp_file.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-utils-temp_file.adb -------------------------------------------------------------------------------- /src/alr/alr-utils-temp_file.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-utils-temp_file.ads -------------------------------------------------------------------------------- /src/alr/alr-utils.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-utils.adb -------------------------------------------------------------------------------- /src/alr/alr-utils.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr-utils.ads -------------------------------------------------------------------------------- /src/alr/alr.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/alr.ads -------------------------------------------------------------------------------- /src/alr/default_session/alr-session.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/default_session/alr-session.ads -------------------------------------------------------------------------------- /src/alr/obsolete/alr-commands-depend.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/obsolete/alr-commands-depend.adb -------------------------------------------------------------------------------- /src/alr/obsolete/alr-commands-depend.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/obsolete/alr-commands-depend.ads -------------------------------------------------------------------------------- /src/alr/os_linux/.retaindir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/alr/os_linux/os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/alr/os_linux/os.c -------------------------------------------------------------------------------- /src/alr/os_macos/.retaindir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/alr/os_windows/.retaindir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/templates/r-crate_bin_alire_toml.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/templates/r-crate_bin_alire_toml.ads -------------------------------------------------------------------------------- /src/templates/r-crate_bin_name_gpr.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/templates/r-crate_bin_name_gpr.ads -------------------------------------------------------------------------------- /src/templates/r-crate_bin_src_name_adb.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/templates/r-crate_bin_src_name_adb.ads -------------------------------------------------------------------------------- /src/templates/r-crate_lib_alire_toml.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/templates/r-crate_lib_alire_toml.ads -------------------------------------------------------------------------------- /src/templates/r-crate_lib_name_gpr.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/templates/r-crate_lib_name_gpr.ads -------------------------------------------------------------------------------- /src/templates/r-crate_lib_src_name_ads.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/templates/r-crate_lib_src_name_ads.ads -------------------------------------------------------------------------------- /src/templates/r-github_publish_yml.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/templates/r-github_publish_yml.ads -------------------------------------------------------------------------------- /src/templates/r-github_readme_md.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/templates/r-github_readme_md.ads -------------------------------------------------------------------------------- /src/templates/r-github_selftest_yml.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/templates/r-github_selftest_yml.ads -------------------------------------------------------------------------------- /src/templates/r.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/templates/r.adb -------------------------------------------------------------------------------- /src/templates/r.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/src/templates/r.ads -------------------------------------------------------------------------------- /support/embedder/.gitignore: -------------------------------------------------------------------------------- 1 | awsres 2 | -------------------------------------------------------------------------------- /support/embedder/embedder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/support/embedder/embedder.sh -------------------------------------------------------------------------------- /support/embedder/templates.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/support/embedder/templates.hash -------------------------------------------------------------------------------- /support/version_patcher/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/support/version_patcher/.gitignore -------------------------------------------------------------------------------- /support/version_patcher/alire.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/support/version_patcher/alire.toml -------------------------------------------------------------------------------- /support/version_patcher/version_patcher.gpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/support/version_patcher/version_patcher.gpr -------------------------------------------------------------------------------- /templates/crate_bin/alire.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/templates/crate_bin/alire.toml -------------------------------------------------------------------------------- /templates/crate_bin/name.gpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/templates/crate_bin/name.gpr -------------------------------------------------------------------------------- /templates/crate_bin/src/name.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/templates/crate_bin/src/name.adb -------------------------------------------------------------------------------- /templates/crate_common/gitignore.hidden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/templates/crate_common/gitignore.hidden -------------------------------------------------------------------------------- /templates/crate_lib/alire.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/templates/crate_lib/alire.toml -------------------------------------------------------------------------------- /templates/crate_lib/name.gpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/templates/crate_lib/name.gpr -------------------------------------------------------------------------------- /templates/crate_lib/src/name.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/templates/crate_lib/src/name.ads -------------------------------------------------------------------------------- /templates/crate_test/tests/alire.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/templates/crate_test/tests/alire.toml -------------------------------------------------------------------------------- /templates/github/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/templates/github/README.md -------------------------------------------------------------------------------- /templates/github/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/templates/github/publish.yml -------------------------------------------------------------------------------- /templates/github/selftest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/templates/github/selftest.yml -------------------------------------------------------------------------------- /testsuite/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/Dockerfile -------------------------------------------------------------------------------- /testsuite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/README.md -------------------------------------------------------------------------------- /testsuite/disabled/manifest/version-mismatch/test.yaml: -------------------------------------------------------------------------------- 1 | driver: python-script 2 | -------------------------------------------------------------------------------- /testsuite/disabled/manifest/version-missing/test.yaml: -------------------------------------------------------------------------------- 1 | driver: python-script 2 | -------------------------------------------------------------------------------- /testsuite/disabled/publish/hash/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/disabled/publish/hash/test.py -------------------------------------------------------------------------------- /testsuite/disabled/publish/hash/test.yaml: -------------------------------------------------------------------------------- 1 | driver: python-script 2 | -------------------------------------------------------------------------------- /testsuite/drivers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/drivers/alr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/drivers/alr.py -------------------------------------------------------------------------------- /testsuite/drivers/asserts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/drivers/asserts.py -------------------------------------------------------------------------------- /testsuite/drivers/builds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/drivers/builds.py -------------------------------------------------------------------------------- /testsuite/drivers/driver/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/drivers/driver/base_driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/drivers/driver/base_driver.py -------------------------------------------------------------------------------- /testsuite/drivers/driver/docker_nested.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/drivers/driver/docker_nested.py -------------------------------------------------------------------------------- /testsuite/drivers/driver/docker_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/drivers/driver/docker_wrapper.py -------------------------------------------------------------------------------- /testsuite/drivers/driver/python_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/drivers/driver/python_script.py -------------------------------------------------------------------------------- /testsuite/drivers/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/drivers/helpers.py -------------------------------------------------------------------------------- /testsuite/fix-text.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/fix-text.sh -------------------------------------------------------------------------------- /testsuite/fix-versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/fix-versions.sh -------------------------------------------------------------------------------- /testsuite/fixtures/ambiguous_ssh_origin_index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/fixtures/basic_index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/fixtures/basic_no_compiler_index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/fixtures/build_hash_index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/fixtures/cases_index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/fixtures/checked_index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/fixtures/compiler_only_index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/fixtures/crates/libfoo_git/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/main 2 | -------------------------------------------------------------------------------- /testsuite/fixtures/crates/libfoo_git/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/fixtures/crates/libfoo_git/config -------------------------------------------------------------------------------- /testsuite/fixtures/crates/libfoo_git/refs/heads/master: -------------------------------------------------------------------------------- 1 | 9ddda32bbbf117dcf2314cb8c23f127c735e5863 2 | -------------------------------------------------------------------------------- /testsuite/fixtures/crates/libhello_1.0.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/fixtures/crates/libhello_1.0.0.tgz -------------------------------------------------------------------------------- /testsuite/fixtures/crates/noop_1.0-multi.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/fixtures/crates/noop_1.0-multi.tgz -------------------------------------------------------------------------------- /testsuite/fixtures/git_index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/fixtures/missing_external_index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/fixtures/native_index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/fixtures/run_index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/fixtures/solver_index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/fixtures/ssh_origin_index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/fixtures/system_index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/fixtures/toolchain_index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/requirements.txt: -------------------------------------------------------------------------------- 1 | docker 2 | e3-testsuite 3 | pexpect 4 | toml 5 | -------------------------------------------------------------------------------- /testsuite/run-dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/run-dev.sh -------------------------------------------------------------------------------- /testsuite/run-solver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/run-solver.sh -------------------------------------------------------------------------------- /testsuite/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/run.py -------------------------------------------------------------------------------- /testsuite/run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | clear 4 | python3 run.py --show-time-info -M1 "$@" 5 | -------------------------------------------------------------------------------- /testsuite/skels/global-index/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/skels/global-index/test.py -------------------------------------------------------------------------------- /testsuite/skels/global-index/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/skels/global-index/test.yaml -------------------------------------------------------------------------------- /testsuite/skels/local-index/my_index/crates/crate/.emptydir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/skels/local-index/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.2" 2 | -------------------------------------------------------------------------------- /testsuite/skels/local-index/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/skels/local-index/test.py -------------------------------------------------------------------------------- /testsuite/skels/local-index/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/skels/local-index/test.yaml -------------------------------------------------------------------------------- /testsuite/skels/no-index/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/skels/no-index/test.py -------------------------------------------------------------------------------- /testsuite/skels/no-index/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/skels/no-index/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/action/conditional/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/action/conditional/test.py -------------------------------------------------------------------------------- /testsuite/tests/action/conditional/test.yaml: -------------------------------------------------------------------------------- 1 | driver: python-script 2 | -------------------------------------------------------------------------------- /testsuite/tests/action/directory/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/action/directory/test.py -------------------------------------------------------------------------------- /testsuite/tests/action/directory/test.yaml: -------------------------------------------------------------------------------- 1 | driver: python-script 2 | -------------------------------------------------------------------------------- /testsuite/tests/action/environment/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/action/environment/test.py -------------------------------------------------------------------------------- /testsuite/tests/action/list/my_index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/action/list/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/action/list/test.py -------------------------------------------------------------------------------- /testsuite/tests/action/list/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/action/list/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/action/missing-exec/test.yaml: -------------------------------------------------------------------------------- 1 | driver: python-script 2 | build_mode: both 3 | indexes: {} -------------------------------------------------------------------------------- /testsuite/tests/action/post-fetch-once/my_index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/action/trigger/my_index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/action/trigger/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/action/trigger/test.py -------------------------------------------------------------------------------- /testsuite/tests/action/trigger/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/action/trigger/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/alias/basic/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/alias/basic/test.py -------------------------------------------------------------------------------- /testsuite/tests/alias/basic/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/alias/basic/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/build/incremental/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/build/incremental/test.py -------------------------------------------------------------------------------- /testsuite/tests/build/no-rebuild/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/build/no-rebuild/test.py -------------------------------------------------------------------------------- /testsuite/tests/build/stop-after/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/build/stop-after/test.py -------------------------------------------------------------------------------- /testsuite/tests/build_profile/bad_profile_lists/test.yaml: -------------------------------------------------------------------------------- 1 | driver: python-script 2 | -------------------------------------------------------------------------------- /testsuite/tests/build_profile/last_profile/test.yaml: -------------------------------------------------------------------------------- 1 | driver: python-script 2 | -------------------------------------------------------------------------------- /testsuite/tests/cache/softlinks/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/cache/softlinks/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/cache/softlinks/test.py -------------------------------------------------------------------------------- /testsuite/tests/cache/softlinks/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/cache/softlinks/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/cache/summary/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/cache/summary/test.py -------------------------------------------------------------------------------- /testsuite/tests/cache/summary/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/cache/summary/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/cache/sync-attrs/my_index/crates/crate/.emptydir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/cache/sync-attrs/my_index/crates/crate/myscript.sh: -------------------------------------------------------------------------------- 1 | echo "SCRIPT RUN" -------------------------------------------------------------------------------- /testsuite/tests/cache/sync-attrs/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.2" 2 | -------------------------------------------------------------------------------- /testsuite/tests/cache/sync-attrs/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/cache/sync-attrs/test.py -------------------------------------------------------------------------------- /testsuite/tests/clean/cache-files/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/clean/cache-files/test.py -------------------------------------------------------------------------------- /testsuite/tests/clean/temp-files/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/clean/temp-files/test.py -------------------------------------------------------------------------------- /testsuite/tests/crate_config/basic/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/crate_config/basic/my_index/libcrate_config_src/src/host_specific.ads: -------------------------------------------------------------------------------- 1 | function Host_Specific return String; 2 | -------------------------------------------------------------------------------- /testsuite/tests/crate_config/gen_control/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/crate_config/style_checks_off/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/crate_config/value_conflict/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/crate_config/value_match/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/debug/enabled-dump-exception/test.yaml: -------------------------------------------------------------------------------- 1 | driver: python-script 2 | -------------------------------------------------------------------------------- /testsuite/tests/debug/logging-scopes/test.yaml: -------------------------------------------------------------------------------- 1 | driver: python-script 2 | -------------------------------------------------------------------------------- /testsuite/tests/debug/outcome-stack-trace/test.yaml: -------------------------------------------------------------------------------- 1 | driver: python-script 2 | -------------------------------------------------------------------------------- /testsuite/tests/exec/basic/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/exec/basic/test.py -------------------------------------------------------------------------------- /testsuite/tests/exec/basic/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/exec/basic/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/exec/with_project/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/exec/with_project/test.py -------------------------------------------------------------------------------- /testsuite/tests/externals/bad-versions/my_index/crates/crate/.emptydir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/externals/bad-versions/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.2" 2 | -------------------------------------------------------------------------------- /testsuite/tests/get/backup-user-manifest/my_index/crates/crate/.emptydir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/get/backup-user-manifest/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/get/build/my_index/crates/bad/src/bad.adb: -------------------------------------------------------------------------------- 1 | procedure Bad is 2 | begin 3 | Won't build 4 | end Bad; 5 | -------------------------------------------------------------------------------- /testsuite/tests/get/build/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/get/build/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/get/build/test.py -------------------------------------------------------------------------------- /testsuite/tests/get/build/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/get/build/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/get/custom-download-command/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/get/dirname/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/get/dirname/test.py -------------------------------------------------------------------------------- /testsuite/tests/get/dirname/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/get/dirname/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/get/external-tool-dependency/my_index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/get/get-not-found/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/get/get-not-found/test.py -------------------------------------------------------------------------------- /testsuite/tests/get/git-local/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/get/git-local/test.py -------------------------------------------------------------------------------- /testsuite/tests/get/git-local/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/get/git-local/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/get/indirect-link/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/get/indirect-link/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/get/indirect-link/test.py -------------------------------------------------------------------------------- /testsuite/tests/get/missing-deps/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/get/missing-deps/test.py -------------------------------------------------------------------------------- /testsuite/tests/get/only/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/get/only/test.py -------------------------------------------------------------------------------- /testsuite/tests/get/only/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/get/only/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/get/provides/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/get/provides/test.py -------------------------------------------------------------------------------- /testsuite/tests/get/provides/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/get/provides/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/get/system-hint/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/get/system-hint/test.py -------------------------------------------------------------------------------- /testsuite/tests/get/system-hint/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/get/system-hint/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/help/equivalent_help/test.yaml: -------------------------------------------------------------------------------- 1 | driver: python-script 2 | -------------------------------------------------------------------------------- /testsuite/tests/help/help-after-double-dash/test.yaml: -------------------------------------------------------------------------------- 1 | driver: python-script 2 | build_mode: both 3 | indexes: {} -------------------------------------------------------------------------------- /testsuite/tests/index/auto-update/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/index/auto-update/test.py -------------------------------------------------------------------------------- /testsuite/tests/index/bad-action-command/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/index/bad-config-vars/my_index/index/he/hello_world/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore 2 | -------------------------------------------------------------------------------- /testsuite/tests/index/bad-config-vars/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/index/bad-external-regex/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/index/bad-index-version/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "0.0" 2 | -------------------------------------------------------------------------------- /testsuite/tests/index/bad-license-too-long/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/index/bad-license/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/index/bad-license/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/index/bad-license/test.py -------------------------------------------------------------------------------- /testsuite/tests/index/bad-name/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/index/bad-name/test.py -------------------------------------------------------------------------------- /testsuite/tests/index/bad-name/test.yaml: -------------------------------------------------------------------------------- 1 | driver: python-script 2 | -------------------------------------------------------------------------------- /testsuite/tests/index/bad-tag/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/index/bad-tag/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/index/bad-tag/test.py -------------------------------------------------------------------------------- /testsuite/tests/index/bad-tag/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/index/bad-tag/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/index/bad-underscore/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/index/branch-mismatch/community/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/index/check-enums/my_index/crates/crate/.emptydir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/index/check-enums/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/index/check-enums/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/index/check-enums/test.py -------------------------------------------------------------------------------- /testsuite/tests/index/empty-tag/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/index/empty-tag/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/index/empty-tag/test.py -------------------------------------------------------------------------------- /testsuite/tests/index/empty-tag/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/index/empty-tag/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/index/env-bad-path/my_index/crates/crate/.emptydir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/index/env-bad-path/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.2" 2 | -------------------------------------------------------------------------------- /testsuite/tests/index/env-path/my_index/crates/crate/.emptydir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/index/env-path/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.2" 2 | -------------------------------------------------------------------------------- /testsuite/tests/index/env-path/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/index/env-path/test.py -------------------------------------------------------------------------------- /testsuite/tests/index/env-path/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/index/env-path/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/index/environment/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/index/environment/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/index/environment/test.py -------------------------------------------------------------------------------- /testsuite/tests/index/external-available/my_index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/index/external-from-output/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/index/external-hint/my_index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/index/external-msys2/my_index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/index/external-unindexed/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/index/future-compatibility/test.yaml: -------------------------------------------------------------------------------- 1 | driver: python-script -------------------------------------------------------------------------------- /testsuite/tests/index/git-local/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/index/git-local/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/index/git-local/test.py -------------------------------------------------------------------------------- /testsuite/tests/index/git-local/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/index/git-local/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/index/local-index-not-found/test.yaml: -------------------------------------------------------------------------------- 1 | driver: python-script 2 | -------------------------------------------------------------------------------- /testsuite/tests/index/long-description/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/index/long-tag/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/index/long-tag/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/index/long-tag/test.py -------------------------------------------------------------------------------- /testsuite/tests/index/long-tag/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/index/long-tag/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/index/maint-bad-email/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/index/maint-bad-login/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/index/mismatched-crate/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/index/mismatched-parent/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/index/old-compat-version/community/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/index/old-incompat-version/community/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "0.0" 2 | # Deliberately too old 3 | -------------------------------------------------------------------------------- /testsuite/tests/index/origin-binary-explicit/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/index/origin-dynamic-binary-explicit/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/index/origin-filesystem-bad-path/bad_index_1/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/index/origin-filesystem-bad-path/bad_index_2/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/index/origin-filesystem-bad-path/test.yaml: -------------------------------------------------------------------------------- 1 | driver: python-script 2 | -------------------------------------------------------------------------------- /testsuite/tests/index/origin-no-archive-name/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/index/origin-unknown-kind/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/index/too-long-short-description/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/index/unexpected-contents/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/index/unexpected-contents/my_index/index/shouldnt_be_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/index/untrusted-host/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/init/default-licenses/test.yaml: -------------------------------------------------------------------------------- 1 | driver: python-script 2 | indexes: {} 3 | -------------------------------------------------------------------------------- /testsuite/tests/init/github-files/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/init/github-files/test.py -------------------------------------------------------------------------------- /testsuite/tests/init/github-files/test.yaml: -------------------------------------------------------------------------------- 1 | driver: python-script -------------------------------------------------------------------------------- /testsuite/tests/init/github-login/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/init/github-login/test.py -------------------------------------------------------------------------------- /testsuite/tests/init/github-login/test.yaml: -------------------------------------------------------------------------------- 1 | driver: python-script 2 | -------------------------------------------------------------------------------- /testsuite/tests/init/interactive-inputs/test.yaml: -------------------------------------------------------------------------------- 1 | driver: python-script 2 | indexes: {} 3 | -------------------------------------------------------------------------------- /testsuite/tests/init/other-licenses/test.yaml: -------------------------------------------------------------------------------- 1 | driver: python-script 2 | indexes: {} 3 | -------------------------------------------------------------------------------- /testsuite/tests/init/with-chdir/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/init/with-chdir/test.py -------------------------------------------------------------------------------- /testsuite/tests/init/with-chdir/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/init/with-chdir/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/install/binary-release/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.2" 2 | -------------------------------------------------------------------------------- /testsuite/tests/install/default-location/test.yaml: -------------------------------------------------------------------------------- 1 | driver: python-script 2 | -------------------------------------------------------------------------------- /testsuite/tests/install/independent/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.2" 2 | -------------------------------------------------------------------------------- /testsuite/tests/install/indexed/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/install/indexed/test.py -------------------------------------------------------------------------------- /testsuite/tests/install/indexed/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/install/indexed/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/install/softlinks/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/install/softlinks/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/install/softlinks/test.py -------------------------------------------------------------------------------- /testsuite/tests/issues/1517/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/issues/1517/test.py -------------------------------------------------------------------------------- /testsuite/tests/issues/1517/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/issues/1517/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/misc/bad-lockfile/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/misc/bad-lockfile/test.py -------------------------------------------------------------------------------- /testsuite/tests/misc/bad-tomlfile/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/misc/bad-tomlfile/test.py -------------------------------------------------------------------------------- /testsuite/tests/misc/bad-tomlfile/test.yaml: -------------------------------------------------------------------------------- 1 | driver: python-script 2 | -------------------------------------------------------------------------------- /testsuite/tests/misc/clean-end/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/misc/clean-end/test.py -------------------------------------------------------------------------------- /testsuite/tests/misc/clean-end/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/misc/clean-end/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/misc/did-you-mean/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/misc/did-you-mean/test.py -------------------------------------------------------------------------------- /testsuite/tests/misc/did-you-mean/test.yaml: -------------------------------------------------------------------------------- 1 | driver: python-script 2 | -------------------------------------------------------------------------------- /testsuite/tests/misc/empty-path/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/misc/empty-path/test.py -------------------------------------------------------------------------------- /testsuite/tests/misc/empty-path/test.yaml: -------------------------------------------------------------------------------- 1 | driver: python-script 2 | -------------------------------------------------------------------------------- /testsuite/tests/misc/env-traceback/test.yaml: -------------------------------------------------------------------------------- 1 | driver: python-script 2 | -------------------------------------------------------------------------------- /testsuite/tests/misc/exe-not-found/test.yaml: -------------------------------------------------------------------------------- 1 | driver: python-script 2 | -------------------------------------------------------------------------------- /testsuite/tests/misc/force-switch/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/misc/force-switch/test.py -------------------------------------------------------------------------------- /testsuite/tests/misc/force-switch/test.yaml: -------------------------------------------------------------------------------- 1 | driver: python-script 2 | -------------------------------------------------------------------------------- /testsuite/tests/misc/git-ungit/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/misc/git-ungit/test.py -------------------------------------------------------------------------------- /testsuite/tests/misc/git-ungit/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/misc/git-ungit/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/misc/hashes/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/misc/hashes/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/misc/hashes/test.py -------------------------------------------------------------------------------- /testsuite/tests/misc/hashes/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/misc/hashes/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/misc/local-reject-origin/test.yaml: -------------------------------------------------------------------------------- 1 | driver: python-script 2 | -------------------------------------------------------------------------------- /testsuite/tests/misc/no-home/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/misc/no-home/test.py -------------------------------------------------------------------------------- /testsuite/tests/misc/no-home/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/misc/no-home/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/misc/structured-output-always-quiet/outdated_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/misc/utf8-output/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/misc/utf8-output/test.py -------------------------------------------------------------------------------- /testsuite/tests/misc/utf8-output/test.yaml: -------------------------------------------------------------------------------- 1 | driver: python-script 2 | -------------------------------------------------------------------------------- /testsuite/tests/monorepo/basic/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/monorepo/basic/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/monorepo/basic/test.py -------------------------------------------------------------------------------- /testsuite/tests/monorepo/basic/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/monorepo/basic/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/monorepo/doubly-nested/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/monorepo/get-dirname/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/monorepo/manifest-in-place/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/monorepo/multi-commit/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/monorepo/subdir-in-tar/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/pin/all/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/pin/all/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/pin/all/test.py -------------------------------------------------------------------------------- /testsuite/tests/pin/all/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/pin/all/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/pin/bad-path/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/pin/bad-path/test.py -------------------------------------------------------------------------------- /testsuite/tests/pin/bad-path/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/pin/bad-path/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/pin/branch-remote-protocols/test.yaml: -------------------------------------------------------------------------------- 1 | driver: python-script 2 | -------------------------------------------------------------------------------- /testsuite/tests/pin/branch/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/pin/branch/test.py -------------------------------------------------------------------------------- /testsuite/tests/pin/branch/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/pin/branch/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/pin/change-path/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/pin/change-path/test.py -------------------------------------------------------------------------------- /testsuite/tests/pin/change-path/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/pin/change-path/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/pin/change-type/my_index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/pin/change-type/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/pin/change-type/test.py -------------------------------------------------------------------------------- /testsuite/tests/pin/change-type/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/pin/change-type/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/pin/circularity/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/pin/circularity/test.py -------------------------------------------------------------------------------- /testsuite/tests/pin/circularity/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/pin/circularity/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/pin/dir-crate/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/pin/dir-crate/test.py -------------------------------------------------------------------------------- /testsuite/tests/pin/dir-crate/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/pin/dir-crate/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/pin/dir-mismatch/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/pin/dir-mismatch/test.py -------------------------------------------------------------------------------- /testsuite/tests/pin/downgrade/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/pin/downgrade/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/pin/downgrade/test.py -------------------------------------------------------------------------------- /testsuite/tests/pin/downgrade/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/pin/downgrade/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/pin/equivalent/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/pin/equivalent/test.py -------------------------------------------------------------------------------- /testsuite/tests/pin/equivalent/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/pin/equivalent/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/pin/from-subdir/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/pin/from-subdir/test.py -------------------------------------------------------------------------------- /testsuite/tests/pin/from-subdir/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/pin/from-subdir/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/pin/manifest-invalid-pins/my_index/crates/crate/.emptydir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/pin/manifest-invalid-pins/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/pin/pin-dir-with-regular/my_index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/pin/pin-dir/my_index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/pin/pin-dir/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/pin/pin-dir/test.py -------------------------------------------------------------------------------- /testsuite/tests/pin/pin-dir/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/pin/pin-dir/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/pin/portable-path/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/pin/portable-path/test.py -------------------------------------------------------------------------------- /testsuite/tests/pin/post-update/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/pin/post-update/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/pin/post-update/test.py -------------------------------------------------------------------------------- /testsuite/tests/pin/post-update/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/pin/post-update/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/pin/remote-subdir/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/pin/remote-subdir/test.py -------------------------------------------------------------------------------- /testsuite/tests/pin/remote/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/pin/remote/test.py -------------------------------------------------------------------------------- /testsuite/tests/pin/remote/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/pin/remote/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/pin/to-parent/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/pin/to-parent/test.py -------------------------------------------------------------------------------- /testsuite/tests/pin/to-parent/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/pin/to-parent/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/pin/twice-in-manifest/my_index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/pin/unneeded-held/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/pin/unneeded-held/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/pin/unneeded-held/test.py -------------------------------------------------------------------------------- /testsuite/tests/pin/unpin/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/pin/unpin/test.py -------------------------------------------------------------------------------- /testsuite/tests/pin/unpin/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/pin/unpin/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/pin/version/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/pin/version/test.py -------------------------------------------------------------------------------- /testsuite/tests/pin/version/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/pin/version/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/printenv/basic/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/printenv/basic/test.py -------------------------------------------------------------------------------- /testsuite/tests/printenv/basic/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/printenv/basic/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/printenv/double-set/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/printenv/env-during-fetch/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/printenv/linked-paths/my_index/crates/crate_1234/.emptydir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/printenv/linked-paths/my_index/crates/crate_1234/alire/.emptydir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/printenv/linked-paths/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/provides/metadata/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.2" 2 | -------------------------------------------------------------------------------- /testsuite/tests/provides/metadata/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/provides/metadata/test.py -------------------------------------------------------------------------------- /testsuite/tests/publish/bad-arguments/test.yaml: -------------------------------------------------------------------------------- 1 | driver: python-script 2 | -------------------------------------------------------------------------------- /testsuite/tests/publish/broken-manifest/test.yaml: -------------------------------------------------------------------------------- 1 | driver: python-script 2 | -------------------------------------------------------------------------------- /testsuite/tests/publish/check-trusted/test.yaml: -------------------------------------------------------------------------------- 1 | driver: python-script 2 | -------------------------------------------------------------------------------- /testsuite/tests/publish/file-scheme/test.yaml: -------------------------------------------------------------------------------- 1 | driver: python-script 2 | -------------------------------------------------------------------------------- /testsuite/tests/publish/help-url/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/publish/help-url/test.py -------------------------------------------------------------------------------- /testsuite/tests/publish/missing-manifest/test.yaml: -------------------------------------------------------------------------------- 1 | driver: python-script 2 | -------------------------------------------------------------------------------- /testsuite/tests/publish/multiple-remotes/test.yaml: -------------------------------------------------------------------------------- 1 | driver: python-script 2 | -------------------------------------------------------------------------------- /testsuite/tests/publish/pin-removal/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/publish/private-indexes/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/publish/remote-origin-nonstd/test.yaml: -------------------------------------------------------------------------------- 1 | driver: python-script 2 | -------------------------------------------------------------------------------- /testsuite/tests/publish/remote-origin/test.yaml: -------------------------------------------------------------------------------- 1 | driver: python-script 2 | -------------------------------------------------------------------------------- /testsuite/tests/publish/ssh-remote-origin/test.yaml: -------------------------------------------------------------------------------- 1 | driver: python-script 2 | -------------------------------------------------------------------------------- /testsuite/tests/publish/tarball-plaindir-nonstd/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/publish/tarball-plaindir/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/publish/tarball-repo-nonstd/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/publish/tarball-repo/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/publish/trusted-sites/test.yaml: -------------------------------------------------------------------------------- 1 | driver: python-script 2 | -------------------------------------------------------------------------------- /testsuite/tests/run/defaults/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/run/defaults/test.py -------------------------------------------------------------------------------- /testsuite/tests/run/defaults/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/run/defaults/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/run/no-compile/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/run/no-compile/test.py -------------------------------------------------------------------------------- /testsuite/tests/run/no-compile/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/run/no-compile/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/search/basic/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/search/basic/test.py -------------------------------------------------------------------------------- /testsuite/tests/search/basic/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/search/basic/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/settings/basics/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/settings/basics/test.py -------------------------------------------------------------------------------- /testsuite/tests/settings/basics/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/settings/basics/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/settings/community-disable/test.yaml: -------------------------------------------------------------------------------- 1 | driver: python-script 2 | # No index defined, on purpose 3 | -------------------------------------------------------------------------------- /testsuite/tests/settings/missing-settings-default/my_index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/show/dependents/my_index/crates/crate/.emptydir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/show/dependents/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.2" 2 | -------------------------------------------------------------------------------- /testsuite/tests/show/dependents/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/show/dependents/test.py -------------------------------------------------------------------------------- /testsuite/tests/show/dependents/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/show/dependents/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/show/jekyll/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/show/jekyll/test.py -------------------------------------------------------------------------------- /testsuite/tests/show/jekyll/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/show/jekyll/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/show/nested/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/show/nested/test.py -------------------------------------------------------------------------------- /testsuite/tests/show/nested/test.yaml: -------------------------------------------------------------------------------- 1 | driver: python-script 2 | -------------------------------------------------------------------------------- /testsuite/tests/show/provides/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/show/provides/test.py -------------------------------------------------------------------------------- /testsuite/tests/show/provides/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/show/provides/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/show/solve-local/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/show/solve-local/test.py -------------------------------------------------------------------------------- /testsuite/tests/show/solve-remote/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/show/solve-remote/test.py -------------------------------------------------------------------------------- /testsuite/tests/show/system-hint/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/show/system-hint/test.py -------------------------------------------------------------------------------- /testsuite/tests/solver/forbids/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/solver/forbids/test.py -------------------------------------------------------------------------------- /testsuite/tests/solver/forbids/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/solver/forbids/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/solver/no-skipped/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/solver/no-skipped/test.py -------------------------------------------------------------------------------- /testsuite/tests/solver/timeout/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/solver/timeout/test.py -------------------------------------------------------------------------------- /testsuite/tests/solver/timeout/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/solver/timeout/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/test/crate-init/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/test/crate-init/test.py -------------------------------------------------------------------------------- /testsuite/tests/test/crate-init/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/test/crate-init/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/test/filtering/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/test/filtering/test.py -------------------------------------------------------------------------------- /testsuite/tests/test/filtering/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/test/filtering/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/test/from-subdir/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/test/from-subdir/test.py -------------------------------------------------------------------------------- /testsuite/tests/test/legacy-behaviour/test.yaml: -------------------------------------------------------------------------------- 1 | driver: python-script 2 | -------------------------------------------------------------------------------- /testsuite/tests/test/nested-tests/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/test/nested-tests/test.py -------------------------------------------------------------------------------- /testsuite/tests/test/select_id/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/test/select_id/test.py -------------------------------------------------------------------------------- /testsuite/tests/test/select_id/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/test/select_id/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/toolchain/alr-get/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/toolchain/alr-get/test.py -------------------------------------------------------------------------------- /testsuite/tests/toolchain/basic/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/toolchain/basic/test.py -------------------------------------------------------------------------------- /testsuite/tests/toolchain/basic/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/toolchain/basic/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/toolchain/select/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/toolchain/select/test.py -------------------------------------------------------------------------------- /testsuite/tests/update/pinned/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/update/pinned/test.py -------------------------------------------------------------------------------- /testsuite/tests/update/pinned/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/update/pinned/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/update/selective/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/update/selective/my_index/updated/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/update/selective/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/update/selective/test.py -------------------------------------------------------------------------------- /testsuite/tests/version/nothing/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/version/nothing/test.py -------------------------------------------------------------------------------- /testsuite/tests/version/nothing/test.yaml: -------------------------------------------------------------------------------- 1 | driver: python-script 2 | -------------------------------------------------------------------------------- /testsuite/tests/version/short/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/version/short/test.py -------------------------------------------------------------------------------- /testsuite/tests/version/short/test.yaml: -------------------------------------------------------------------------------- 1 | driver: python-script 2 | -------------------------------------------------------------------------------- /testsuite/tests/with/add-several/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/with/add-several/test.py -------------------------------------------------------------------------------- /testsuite/tests/with/auto-gpr-with/basic/my_index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/with/auto-gpr-with/gpr_in_subdir/my_index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/with/changes-info/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/with/changes-info/test.py -------------------------------------------------------------------------------- /testsuite/tests/with/delete-two/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/with/delete-two/test.py -------------------------------------------------------------------------------- /testsuite/tests/with/delete-two/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/with/delete-two/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/with/equivalent/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/with/equivalent/test.py -------------------------------------------------------------------------------- /testsuite/tests/with/equivalent/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/with/equivalent/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/with/external/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/with/external/test.py -------------------------------------------------------------------------------- /testsuite/tests/with/external/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/with/external/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/with/missing-deps/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/with/missing-deps/test.py -------------------------------------------------------------------------------- /testsuite/tests/with/narrow-pre1/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/with/narrow-pre1/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/with/narrow-pre1/test.py -------------------------------------------------------------------------------- /testsuite/tests/with/nested-prj/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/with/nested-prj/test.py -------------------------------------------------------------------------------- /testsuite/tests/with/nested-prj/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/with/nested-prj/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/with/pin-bad-path/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/with/pin-bad-path/test.py -------------------------------------------------------------------------------- /testsuite/tests/with/pin-bad-path/test.yaml: -------------------------------------------------------------------------------- 1 | driver: python-script 2 | -------------------------------------------------------------------------------- /testsuite/tests/with/pin-dir/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/with/pin-dir/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/with/pin-dir/test.py -------------------------------------------------------------------------------- /testsuite/tests/with/pin-dir/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/with/pin-dir/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/with/pin-twice/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/with/pin-twice/test.py -------------------------------------------------------------------------------- /testsuite/tests/with/pin-twice/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/with/pin-twice/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/with/ssh-origins/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/with/ssh-origins/test.py -------------------------------------------------------------------------------- /testsuite/tests/with/system-crate/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/with/system-crate/test.py -------------------------------------------------------------------------------- /testsuite/tests/with/tree-concise/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/with/tree-concise/test.py -------------------------------------------------------------------------------- /testsuite/tests/with/tree-switch/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/with/tree-switch/test.py -------------------------------------------------------------------------------- /testsuite/tests/workflows/actions-as-dependency/my_index/hello_src/src/.emptydir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/tests/workflows/actions-as-dependency/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/workflows/actions-as-root/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/workflows/air-gapping/my_index/index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/workflows/edit/my_index/index.toml: -------------------------------------------------------------------------------- 1 | version = "1.1" 2 | -------------------------------------------------------------------------------- /testsuite/tests/workflows/edit/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/workflows/edit/test.py -------------------------------------------------------------------------------- /testsuite/tests/workflows/edit/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests/workflows/edit/test.yaml -------------------------------------------------------------------------------- /testsuite/tests/workflows/init-options/test.yaml: -------------------------------------------------------------------------------- 1 | driver: python-script 2 | -------------------------------------------------------------------------------- /testsuite/tests_ada/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests_ada/.gitignore -------------------------------------------------------------------------------- /testsuite/tests_ada/alire.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests_ada/alire.toml -------------------------------------------------------------------------------- /testsuite/tests_ada/alr_tests.gpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/testsuite/tests_ada/alr_tests.gpr -------------------------------------------------------------------------------- /trash/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/trash/changelog.txt -------------------------------------------------------------------------------- /trash/issues.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/trash/issues.txt -------------------------------------------------------------------------------- /trash/shipcommon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/trash/shipcommon -------------------------------------------------------------------------------- /trash/shippable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/trash/shippable.yml -------------------------------------------------------------------------------- /trash/shippable/samples/alr.bad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/trash/shippable/samples/alr.bad -------------------------------------------------------------------------------- /trash/shippable/samples/alr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/trash/shippable/samples/alr.xml -------------------------------------------------------------------------------- /trash/shippable/samples/sample.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/trash/shippable/samples/sample.ok -------------------------------------------------------------------------------- /trash/shippable/testresults/.emptydir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /trash/shiptest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/trash/shiptest.sh -------------------------------------------------------------------------------- /trash/shiptrigci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/trash/shiptrigci.sh -------------------------------------------------------------------------------- /trash/stress/alire-index-template01.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/trash/stress/alire-index-template01.ads -------------------------------------------------------------------------------- /trash/stress/alire-index-template10.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/trash/stress/alire-index-template10.ads -------------------------------------------------------------------------------- /trash/stress/avg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/trash/stress/avg.sh -------------------------------------------------------------------------------- /trash/stress/gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/trash/stress/gen.sh -------------------------------------------------------------------------------- /trash/stress/selftest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/trash/stress/selftest.sh -------------------------------------------------------------------------------- /trash/stress/tester.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/trash/stress/tester.sh -------------------------------------------------------------------------------- /trash/stress/times10000x1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/trash/stress/times10000x1 -------------------------------------------------------------------------------- /trash/stress/times10000x10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/trash/stress/times10000x10 -------------------------------------------------------------------------------- /trash/stress/times1000x1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/trash/stress/times1000x1 -------------------------------------------------------------------------------- /trash/stress/times1000x10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/trash/stress/times1000x10 -------------------------------------------------------------------------------- /trash/stress/times100x1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/trash/stress/times100x1 -------------------------------------------------------------------------------- /trash/stress/times100x10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alire-project/alire/HEAD/trash/stress/times100x10 --------------------------------------------------------------------------------