├── .azure-pipelines ├── azure-pipelines-linux.yml └── azure-pipelines-osx.yml ├── .ci_support ├── README ├── linux_64_.yaml ├── migrations │ └── pcre21047.yaml └── osx_64_.yaml ├── .circleci └── config.yml ├── .gitattributes ├── .github └── CODEOWNERS ├── .gitignore ├── .scripts ├── build_steps.sh ├── create_conda_build_artifacts.sh ├── logging_utils.sh ├── run_docker_build.sh └── run_osx_build.sh ├── LICENSE.txt ├── README.md ├── azure-pipelines.yml ├── conda-forge.yml └── recipe ├── build.sh ├── conda_build_config.yaml ├── meta.yaml ├── patches ├── bf16_darwin.patch ├── disable-some-cmdlineargs-test.patch ├── disable-some-gmp-tests.patch ├── disable-testing-Baz.baz.patch ├── julia-hardcoded-libs.patch ├── julia-libunwind-1.6.patch ├── repl-precompile.patch ├── suitesparse-no-cuda.patch └── suitesparse-soname.patch ├── post-link.sh └── scripts ├── activate.sh └── deactivate.sh /.azure-pipelines/azure-pipelines-linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/julia-feedstock/HEAD/.azure-pipelines/azure-pipelines-linux.yml -------------------------------------------------------------------------------- /.azure-pipelines/azure-pipelines-osx.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/julia-feedstock/HEAD/.azure-pipelines/azure-pipelines-osx.yml -------------------------------------------------------------------------------- /.ci_support/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/julia-feedstock/HEAD/.ci_support/README -------------------------------------------------------------------------------- /.ci_support/linux_64_.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/julia-feedstock/HEAD/.ci_support/linux_64_.yaml -------------------------------------------------------------------------------- /.ci_support/migrations/pcre21047.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/julia-feedstock/HEAD/.ci_support/migrations/pcre21047.yaml -------------------------------------------------------------------------------- /.ci_support/osx_64_.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/julia-feedstock/HEAD/.ci_support/osx_64_.yaml -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/julia-feedstock/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/julia-feedstock/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/julia-feedstock/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/julia-feedstock/HEAD/.gitignore -------------------------------------------------------------------------------- /.scripts/build_steps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/julia-feedstock/HEAD/.scripts/build_steps.sh -------------------------------------------------------------------------------- /.scripts/create_conda_build_artifacts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/julia-feedstock/HEAD/.scripts/create_conda_build_artifacts.sh -------------------------------------------------------------------------------- /.scripts/logging_utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/julia-feedstock/HEAD/.scripts/logging_utils.sh -------------------------------------------------------------------------------- /.scripts/run_docker_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/julia-feedstock/HEAD/.scripts/run_docker_build.sh -------------------------------------------------------------------------------- /.scripts/run_osx_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/julia-feedstock/HEAD/.scripts/run_osx_build.sh -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/julia-feedstock/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/julia-feedstock/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/julia-feedstock/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /conda-forge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/julia-feedstock/HEAD/conda-forge.yml -------------------------------------------------------------------------------- /recipe/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/julia-feedstock/HEAD/recipe/build.sh -------------------------------------------------------------------------------- /recipe/conda_build_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/julia-feedstock/HEAD/recipe/conda_build_config.yaml -------------------------------------------------------------------------------- /recipe/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/julia-feedstock/HEAD/recipe/meta.yaml -------------------------------------------------------------------------------- /recipe/patches/bf16_darwin.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/julia-feedstock/HEAD/recipe/patches/bf16_darwin.patch -------------------------------------------------------------------------------- /recipe/patches/disable-some-cmdlineargs-test.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/julia-feedstock/HEAD/recipe/patches/disable-some-cmdlineargs-test.patch -------------------------------------------------------------------------------- /recipe/patches/disable-some-gmp-tests.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/julia-feedstock/HEAD/recipe/patches/disable-some-gmp-tests.patch -------------------------------------------------------------------------------- /recipe/patches/disable-testing-Baz.baz.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/julia-feedstock/HEAD/recipe/patches/disable-testing-Baz.baz.patch -------------------------------------------------------------------------------- /recipe/patches/julia-hardcoded-libs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/julia-feedstock/HEAD/recipe/patches/julia-hardcoded-libs.patch -------------------------------------------------------------------------------- /recipe/patches/julia-libunwind-1.6.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/julia-feedstock/HEAD/recipe/patches/julia-libunwind-1.6.patch -------------------------------------------------------------------------------- /recipe/patches/repl-precompile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/julia-feedstock/HEAD/recipe/patches/repl-precompile.patch -------------------------------------------------------------------------------- /recipe/patches/suitesparse-no-cuda.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/julia-feedstock/HEAD/recipe/patches/suitesparse-no-cuda.patch -------------------------------------------------------------------------------- /recipe/patches/suitesparse-soname.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/julia-feedstock/HEAD/recipe/patches/suitesparse-soname.patch -------------------------------------------------------------------------------- /recipe/post-link.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/julia-feedstock/HEAD/recipe/post-link.sh -------------------------------------------------------------------------------- /recipe/scripts/activate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/julia-feedstock/HEAD/recipe/scripts/activate.sh -------------------------------------------------------------------------------- /recipe/scripts/deactivate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/julia-feedstock/HEAD/recipe/scripts/deactivate.sh --------------------------------------------------------------------------------