├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── CTestConfig.cmake ├── FairSoftConfig.cmake ├── FairSoft_test.cmake ├── Jenkinsfile ├── LICENSE ├── README.md ├── bootstrap-cmake.sh ├── cmake ├── FairSoftLib.cmake ├── FindZSTD.cmake ├── legacy.cmake └── spack.cmake ├── config ├── darwin │ ├── modules.yaml │ └── packages.yaml └── packages.yaml ├── docs ├── README.md ├── advanced.md ├── development.md ├── execution.md ├── installation.md ├── preparation.md ├── prerequisites.md ├── structure.md └── troubleshooting.md ├── env ├── apr21 │ ├── sim │ │ └── spack.yaml │ ├── sim_mt │ │ └── spack.yaml │ └── sim_mt_headless │ │ └── spack.yaml ├── dev │ ├── sim │ │ └── spack.yaml │ ├── sim_mt │ │ └── spack.yaml │ └── sim_mt_headless │ │ └── spack.yaml ├── jun19 │ ├── sim │ │ └── spack.yaml │ └── sim_mt │ │ └── spack.yaml └── nov20 │ ├── sim │ └── spack.yaml │ ├── sim_mt │ └── spack.yaml │ └── sim_mt_headless │ └── spack.yaml ├── legacy ├── README.md ├── Vagrantfile ├── advanced.md ├── boost │ ├── site-config.jam.in │ └── support-numpy-2.patch ├── dds │ └── relax_protobuf_requirement.patch ├── dependencies.md ├── make_clean.sh ├── onnxruntime │ ├── fix_python_detection.patch │ └── install_config_files.patch ├── pythia6 │ └── add_missing_extern_keyword.patch ├── root │ ├── fix_macos_sdk_mismatch.patch │ ├── fix_macosx_findOpenGL.patch │ └── fix_root_install_external_tars_with_cmake_3_24.patch ├── setup-almalinux.sh ├── setup-archlinux.sh ├── setup-centos-7.sh ├── setup-debian.sh ├── setup-fedora.sh ├── setup-macos.sh ├── setup-opensuse.sh ├── setup-rockylinux.sh └── setup-ubuntu.sh ├── patches ├── README.md └── dds │ ├── fix_uuid_init.patch │ ├── fix_wn_bin_2.2.patch │ ├── fix_wn_bin_2.4.patch │ ├── fix_wn_bin_2.5-odc.patch │ ├── fix_wn_bin_3.0.patch │ ├── fix_wn_bin_3.2_3.5.2.patch │ ├── fix_wn_bin_3.5.3.patch │ ├── fix_wn_bin_3.5.4.patch │ └── fix_wn_bin_master.patch ├── repos ├── fairsoft-backports │ ├── packages │ │ ├── abseil-cpp │ │ │ └── package.py │ │ ├── asio │ │ │ └── package.py │ │ ├── berkeley-db │ │ │ └── package.py │ │ ├── boost │ │ │ ├── 1.72_boost_process.patch │ │ │ ├── boost_1.63.0_pgi.patch │ │ │ ├── boost_1.63.0_pgi_17.4_workaround.patch │ │ │ ├── boost_1.67.0_pgi.patch │ │ │ ├── boost_11856.patch │ │ │ ├── boost_154.patch │ │ │ ├── boost_218.patch │ │ │ ├── bootstrap-path.patch │ │ │ ├── bootstrap-toolset.patch │ │ │ ├── call_once_variadic.patch │ │ │ ├── clang-linux_add_option.patch │ │ │ ├── clang-linux_add_option2.patch │ │ │ ├── darwin_clang_version.patch │ │ │ ├── fujitsu_version_analysis.patch │ │ │ ├── nvhpc.patch │ │ │ ├── package.py │ │ │ ├── python_jam.patch │ │ │ ├── python_jam_pre156.patch │ │ │ ├── system-non-virtual-dtor-include.patch │ │ │ ├── system-non-virtual-dtor-test.patch │ │ │ └── xl_1_62_0_le.patch │ │ ├── clhep │ │ │ ├── darwin │ │ │ │ └── CLHEP.patch │ │ │ └── package.py │ │ ├── cmake │ │ │ ├── 5882-enable-cce-fortran-preprocessing.patch │ │ │ ├── cmake-macos-add-coreservices.patch │ │ │ ├── cmake-revert-findmpi-link-flag-list.patch │ │ │ ├── fix-xlf-ninja-mr-4075.patch │ │ │ ├── fujitsu_add_linker_option.patch │ │ │ ├── ignore_crayxc_warnings.patch │ │ │ ├── intel-c-gnu11.patch │ │ │ ├── intel-cxx-bootstrap.patch │ │ │ ├── nag-response-files.patch │ │ │ ├── package.py │ │ │ └── pgi-cxx-ansi.patch │ │ ├── davix │ │ │ └── package.py │ │ ├── flatbuffers │ │ │ ├── package.py │ │ │ └── silence_false_positive_gcc10_warning.patch │ │ ├── ftgl │ │ │ ├── package.py │ │ │ └── remove-ftlibrary-from-sources.diff │ │ ├── g4emlow │ │ │ └── package.py │ │ ├── g4ensdfstate │ │ │ └── package.py │ │ ├── g4particlexs │ │ │ └── package.py │ │ ├── g4photonevaporation │ │ │ └── package.py │ │ ├── g4radioactivedecay │ │ │ └── package.py │ │ ├── g4realsurface │ │ │ └── package.py │ │ ├── geant4-data │ │ │ └── package.py │ │ ├── geant4 │ │ │ ├── CLHEP-10.03.03.patch │ │ │ ├── cxx17.patch │ │ │ ├── cxx17_geant4_10_0.patch │ │ │ ├── geant4-10.4.3-cxx17-removed-features.patch │ │ │ └── package.py │ │ ├── glew │ │ │ └── package.py │ │ ├── hepmc │ │ │ └── package.py │ │ ├── libxcb │ │ │ └── package.py │ │ ├── msgpack-c │ │ │ ├── fix_Werror=class-memaccess.patch │ │ │ └── package.py │ │ ├── openblas │ │ │ ├── lapack-0.3.9-xerbl.patch │ │ │ ├── make.patch │ │ │ ├── openblas-0.3.2-cmake.patch │ │ │ ├── openblas-0.3.8-darwin.patch │ │ │ ├── openblas0.2.19.diff │ │ │ ├── openblas_0.3.10_appleclang12.patch │ │ │ ├── openblas_appleclang11.patch │ │ │ ├── openblas_fujitsu.patch │ │ │ ├── openblas_fujitsu2.patch │ │ │ ├── openblas_icc.patch │ │ │ ├── openblas_icc_fortran.patch │ │ │ ├── openblas_icc_fortran2.patch │ │ │ ├── openblas_icc_openmp.patch │ │ │ ├── package.py │ │ │ ├── power8.patch │ │ │ ├── test_cblas_dgemm.c │ │ │ └── test_cblas_dgemm.output │ │ ├── perl │ │ │ ├── macos-11-version-check.patch │ │ │ ├── nvhpc.patch │ │ │ ├── package.py │ │ │ └── protect-quotes-in-ccflags.patch │ │ ├── python │ │ │ ├── cray-rpath-2.3.patch │ │ │ ├── cray-rpath-3.1.patch │ │ │ ├── fj-rpath-2.3.patch │ │ │ ├── fj-rpath-3.1.patch │ │ │ ├── gcc-8-2.7.14.patch │ │ │ ├── intel-3.6.7.patch │ │ │ ├── package.py │ │ │ ├── python-2.7.17+-distutils-C++.patch │ │ │ ├── python-2.7.8-distutils-C++.patch │ │ │ ├── python-3.6.8-distutils-C++.patch │ │ │ ├── python-3.7.3-distutils-C++.patch │ │ │ ├── python-3.7.4+-distutils-C++.patch │ │ │ └── tkinter.patch │ │ ├── rsync │ │ │ └── package.py │ │ ├── xcb-proto │ │ │ ├── package.py │ │ │ └── xcb-proto-1.12-schema-1.patch │ │ ├── xrootd │ │ │ ├── package.py │ │ │ └── python-support.patch │ │ ├── xxhash │ │ │ └── package.py │ │ └── yaml-cpp │ │ │ └── package.py │ └── repo.yaml └── fairsoft │ ├── packages │ ├── dds │ │ ├── fix_missing_thread_include_2.4_3.5.11.patch │ │ ├── fix_missing_thread_include_2.5_3.0.patch │ │ ├── fix_uuid_init.patch │ │ ├── fix_wn_bin_2.2.patch │ │ ├── fix_wn_bin_2.4.patch │ │ ├── fix_wn_bin_2.5-odc.patch │ │ ├── fix_wn_bin_3.0.patch │ │ ├── fix_wn_bin_3.2_3.5.2.patch │ │ ├── fix_wn_bin_3.5.14.patch │ │ ├── fix_wn_bin_3.5.16.patch │ │ ├── fix_wn_bin_3.5.3.patch │ │ ├── fix_wn_bin_3.5.4_3.5.10.patch │ │ ├── fix_wn_bin_3.6.patch │ │ └── package.py │ ├── faircmakemodules │ │ └── package.py │ ├── fairlogger │ │ └── package.py │ ├── fairmq │ │ ├── fix_cpp17moveinsertable_assertion_xcode12.patch │ │ ├── fix_find_dds.patch │ │ ├── fix_missing_include_thread_1.4.10_1.4.38.patch │ │ ├── missing_stdexcept_header.patch │ │ ├── no_external_asio_1.4.11.patch │ │ ├── package.py │ │ ├── update_command_format_in_pmix_plugin.patch │ │ └── use_bundled_gtest_149.patch │ ├── fairroot │ │ ├── cmake_utf8.patch │ │ ├── drop_cxx_flag_check.patch │ │ ├── fairlogger_incdir.patch │ │ ├── find_pythia8_cmake.patch │ │ ├── package.py │ │ ├── support_geant4_with_external_clhep.patch │ │ └── support_geant4_with_external_clhep_18.2.patch │ ├── fairsoft-bundle │ │ └── package.py │ ├── fairsoft-config │ │ └── package.py │ ├── geant3 │ │ ├── dict_fixes_30.patch │ │ ├── fix_geane_propagator_v2-7_fairsoft.patch │ │ ├── fix_geane_propagator_v3-0_fairsoft.patch │ │ ├── fix_gfortran_7.patch │ │ ├── gcalor_stringsize.patch │ │ ├── gfortran10_support.patch │ │ └── package.py │ ├── geant4-vmc │ │ ├── dict_fixes_501.patch │ │ └── package.py │ ├── odc │ │ ├── fix_protoc_args.patch │ │ └── package.py │ ├── pandaroot │ │ └── package.py │ ├── pythia6 │ │ ├── add_missing_extern_keyword.patch │ │ └── package.py │ ├── pythia8 │ │ ├── 8303_limits.patch │ │ ├── package.py │ │ └── ropewalk_sqrt.patch │ ├── r3broot │ │ └── package.py │ ├── root │ │ ├── find-mysql.patch │ │ ├── format-stringbuf-size.patch │ │ ├── honor-unuran-switch.patch │ │ ├── math_uint.patch │ │ ├── package.py │ │ ├── root6-60606-mathmore.patch │ │ ├── root6_16_macos11_config.patch │ │ ├── root6_16_xrootd.patch │ │ └── root7-webgui.patch │ ├── vgm │ │ └── package.py │ └── vmc │ │ ├── dict_fixes_101.patch │ │ └── package.py │ └── repo.yaml ├── test ├── build-main-tests-common.sh ├── buildcleanup.sh ├── buildenv.sh ├── buildsetup.sh ├── buildspec.sh ├── buildstart.sh ├── cmaketest.sh.in ├── container │ ├── CMakeLists.txt │ ├── README.md │ ├── centos.7.def │ ├── debian.10.def │ ├── fedora.33.def │ ├── fedora.34.def │ ├── legacy │ │ ├── CMakeLists.txt │ │ ├── linux-cmake.def.in │ │ └── linux.def.in │ ├── opensuse.15.2.def │ └── ubuntu.20.04.def ├── env │ ├── dds │ │ └── spack.yaml │ ├── fairlogger │ │ └── spack.yaml │ ├── fairmq │ │ └── spack.yaml │ ├── fairroot_develop │ │ └── spack.yaml │ ├── jun19_fairroot_18_4 │ │ └── spack.yaml │ ├── pandaroot │ │ └── spack.yaml │ ├── r3broot │ │ └── spack.yaml │ └── virgo_base.yaml ├── legacy │ └── fairroot.sh.in ├── simpath_broken │ └── bin │ │ └── fairsoft-config ├── slurm-create-jobscript.sh ├── slurm-submit.sh ├── spack-pkg-sanity.sh ├── test-start-container.sh └── workflow │ └── classic_developer.sh ├── thisfairsoft.sh └── tools ├── dds_compiler_fix.py ├── find_specs.py └── spack_dev-build.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CTestConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/CTestConfig.cmake -------------------------------------------------------------------------------- /FairSoftConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/FairSoftConfig.cmake -------------------------------------------------------------------------------- /FairSoft_test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/FairSoft_test.cmake -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/README.md -------------------------------------------------------------------------------- /bootstrap-cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/bootstrap-cmake.sh -------------------------------------------------------------------------------- /cmake/FairSoftLib.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/cmake/FairSoftLib.cmake -------------------------------------------------------------------------------- /cmake/FindZSTD.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/cmake/FindZSTD.cmake -------------------------------------------------------------------------------- /cmake/legacy.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/cmake/legacy.cmake -------------------------------------------------------------------------------- /cmake/spack.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/cmake/spack.cmake -------------------------------------------------------------------------------- /config/darwin/modules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/config/darwin/modules.yaml -------------------------------------------------------------------------------- /config/darwin/packages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/config/darwin/packages.yaml -------------------------------------------------------------------------------- /config/packages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/config/packages.yaml -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/advanced.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/docs/advanced.md -------------------------------------------------------------------------------- /docs/development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/docs/development.md -------------------------------------------------------------------------------- /docs/execution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/docs/execution.md -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/docs/installation.md -------------------------------------------------------------------------------- /docs/preparation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/docs/preparation.md -------------------------------------------------------------------------------- /docs/prerequisites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/docs/prerequisites.md -------------------------------------------------------------------------------- /docs/structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/docs/structure.md -------------------------------------------------------------------------------- /docs/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/docs/troubleshooting.md -------------------------------------------------------------------------------- /env/apr21/sim/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/env/apr21/sim/spack.yaml -------------------------------------------------------------------------------- /env/apr21/sim_mt/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/env/apr21/sim_mt/spack.yaml -------------------------------------------------------------------------------- /env/apr21/sim_mt_headless/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/env/apr21/sim_mt_headless/spack.yaml -------------------------------------------------------------------------------- /env/dev/sim/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/env/dev/sim/spack.yaml -------------------------------------------------------------------------------- /env/dev/sim_mt/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/env/dev/sim_mt/spack.yaml -------------------------------------------------------------------------------- /env/dev/sim_mt_headless/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/env/dev/sim_mt_headless/spack.yaml -------------------------------------------------------------------------------- /env/jun19/sim/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/env/jun19/sim/spack.yaml -------------------------------------------------------------------------------- /env/jun19/sim_mt/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/env/jun19/sim_mt/spack.yaml -------------------------------------------------------------------------------- /env/nov20/sim/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/env/nov20/sim/spack.yaml -------------------------------------------------------------------------------- /env/nov20/sim_mt/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/env/nov20/sim_mt/spack.yaml -------------------------------------------------------------------------------- /env/nov20/sim_mt_headless/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/env/nov20/sim_mt_headless/spack.yaml -------------------------------------------------------------------------------- /legacy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/legacy/README.md -------------------------------------------------------------------------------- /legacy/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/legacy/Vagrantfile -------------------------------------------------------------------------------- /legacy/advanced.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/legacy/advanced.md -------------------------------------------------------------------------------- /legacy/boost/site-config.jam.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/legacy/boost/site-config.jam.in -------------------------------------------------------------------------------- /legacy/boost/support-numpy-2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/legacy/boost/support-numpy-2.patch -------------------------------------------------------------------------------- /legacy/dds/relax_protobuf_requirement.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/legacy/dds/relax_protobuf_requirement.patch -------------------------------------------------------------------------------- /legacy/dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/legacy/dependencies.md -------------------------------------------------------------------------------- /legacy/make_clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/legacy/make_clean.sh -------------------------------------------------------------------------------- /legacy/onnxruntime/fix_python_detection.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/legacy/onnxruntime/fix_python_detection.patch -------------------------------------------------------------------------------- /legacy/onnxruntime/install_config_files.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/legacy/onnxruntime/install_config_files.patch -------------------------------------------------------------------------------- /legacy/pythia6/add_missing_extern_keyword.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/legacy/pythia6/add_missing_extern_keyword.patch -------------------------------------------------------------------------------- /legacy/root/fix_macos_sdk_mismatch.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/legacy/root/fix_macos_sdk_mismatch.patch -------------------------------------------------------------------------------- /legacy/root/fix_macosx_findOpenGL.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/legacy/root/fix_macosx_findOpenGL.patch -------------------------------------------------------------------------------- /legacy/root/fix_root_install_external_tars_with_cmake_3_24.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/legacy/root/fix_root_install_external_tars_with_cmake_3_24.patch -------------------------------------------------------------------------------- /legacy/setup-almalinux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/legacy/setup-almalinux.sh -------------------------------------------------------------------------------- /legacy/setup-archlinux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/legacy/setup-archlinux.sh -------------------------------------------------------------------------------- /legacy/setup-centos-7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/legacy/setup-centos-7.sh -------------------------------------------------------------------------------- /legacy/setup-debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/legacy/setup-debian.sh -------------------------------------------------------------------------------- /legacy/setup-fedora.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/legacy/setup-fedora.sh -------------------------------------------------------------------------------- /legacy/setup-macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/legacy/setup-macos.sh -------------------------------------------------------------------------------- /legacy/setup-opensuse.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/legacy/setup-opensuse.sh -------------------------------------------------------------------------------- /legacy/setup-rockylinux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/legacy/setup-rockylinux.sh -------------------------------------------------------------------------------- /legacy/setup-ubuntu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/legacy/setup-ubuntu.sh -------------------------------------------------------------------------------- /patches/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/patches/README.md -------------------------------------------------------------------------------- /patches/dds/fix_uuid_init.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/patches/dds/fix_uuid_init.patch -------------------------------------------------------------------------------- /patches/dds/fix_wn_bin_2.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/patches/dds/fix_wn_bin_2.2.patch -------------------------------------------------------------------------------- /patches/dds/fix_wn_bin_2.4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/patches/dds/fix_wn_bin_2.4.patch -------------------------------------------------------------------------------- /patches/dds/fix_wn_bin_2.5-odc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/patches/dds/fix_wn_bin_2.5-odc.patch -------------------------------------------------------------------------------- /patches/dds/fix_wn_bin_3.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/patches/dds/fix_wn_bin_3.0.patch -------------------------------------------------------------------------------- /patches/dds/fix_wn_bin_3.2_3.5.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/patches/dds/fix_wn_bin_3.2_3.5.2.patch -------------------------------------------------------------------------------- /patches/dds/fix_wn_bin_3.5.3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/patches/dds/fix_wn_bin_3.5.3.patch -------------------------------------------------------------------------------- /patches/dds/fix_wn_bin_3.5.4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/patches/dds/fix_wn_bin_3.5.4.patch -------------------------------------------------------------------------------- /patches/dds/fix_wn_bin_master.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/patches/dds/fix_wn_bin_master.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/abseil-cpp/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/abseil-cpp/package.py -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/asio/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/asio/package.py -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/berkeley-db/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/berkeley-db/package.py -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/boost/1.72_boost_process.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/boost/1.72_boost_process.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/boost/boost_1.63.0_pgi.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/boost/boost_1.63.0_pgi.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/boost/boost_1.63.0_pgi_17.4_workaround.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/boost/boost_1.63.0_pgi_17.4_workaround.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/boost/boost_1.67.0_pgi.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/boost/boost_1.67.0_pgi.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/boost/boost_11856.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/boost/boost_11856.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/boost/boost_154.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/boost/boost_154.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/boost/boost_218.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/boost/boost_218.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/boost/bootstrap-path.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/boost/bootstrap-path.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/boost/bootstrap-toolset.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/boost/bootstrap-toolset.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/boost/call_once_variadic.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/boost/call_once_variadic.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/boost/clang-linux_add_option.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/boost/clang-linux_add_option.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/boost/clang-linux_add_option2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/boost/clang-linux_add_option2.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/boost/darwin_clang_version.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/boost/darwin_clang_version.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/boost/fujitsu_version_analysis.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/boost/fujitsu_version_analysis.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/boost/nvhpc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/boost/nvhpc.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/boost/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/boost/package.py -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/boost/python_jam.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/boost/python_jam.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/boost/python_jam_pre156.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/boost/python_jam_pre156.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/boost/system-non-virtual-dtor-include.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/boost/system-non-virtual-dtor-include.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/boost/system-non-virtual-dtor-test.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/boost/system-non-virtual-dtor-test.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/boost/xl_1_62_0_le.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/boost/xl_1_62_0_le.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/clhep/darwin/CLHEP.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/clhep/darwin/CLHEP.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/clhep/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/clhep/package.py -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/cmake/5882-enable-cce-fortran-preprocessing.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/cmake/5882-enable-cce-fortran-preprocessing.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/cmake/cmake-macos-add-coreservices.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/cmake/cmake-macos-add-coreservices.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/cmake/cmake-revert-findmpi-link-flag-list.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/cmake/cmake-revert-findmpi-link-flag-list.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/cmake/fix-xlf-ninja-mr-4075.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/cmake/fix-xlf-ninja-mr-4075.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/cmake/fujitsu_add_linker_option.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/cmake/fujitsu_add_linker_option.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/cmake/ignore_crayxc_warnings.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/cmake/ignore_crayxc_warnings.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/cmake/intel-c-gnu11.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/cmake/intel-c-gnu11.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/cmake/intel-cxx-bootstrap.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/cmake/intel-cxx-bootstrap.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/cmake/nag-response-files.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/cmake/nag-response-files.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/cmake/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/cmake/package.py -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/cmake/pgi-cxx-ansi.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/cmake/pgi-cxx-ansi.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/davix/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/davix/package.py -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/flatbuffers/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/flatbuffers/package.py -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/flatbuffers/silence_false_positive_gcc10_warning.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/flatbuffers/silence_false_positive_gcc10_warning.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/ftgl/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/ftgl/package.py -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/ftgl/remove-ftlibrary-from-sources.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/ftgl/remove-ftlibrary-from-sources.diff -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/g4emlow/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/g4emlow/package.py -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/g4ensdfstate/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/g4ensdfstate/package.py -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/g4particlexs/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/g4particlexs/package.py -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/g4photonevaporation/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/g4photonevaporation/package.py -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/g4radioactivedecay/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/g4radioactivedecay/package.py -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/g4realsurface/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/g4realsurface/package.py -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/geant4-data/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/geant4-data/package.py -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/geant4/CLHEP-10.03.03.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/geant4/CLHEP-10.03.03.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/geant4/cxx17.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/geant4/cxx17.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/geant4/cxx17_geant4_10_0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/geant4/cxx17_geant4_10_0.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/geant4/geant4-10.4.3-cxx17-removed-features.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/geant4/geant4-10.4.3-cxx17-removed-features.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/geant4/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/geant4/package.py -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/glew/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/glew/package.py -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/hepmc/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/hepmc/package.py -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/libxcb/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/libxcb/package.py -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/msgpack-c/fix_Werror=class-memaccess.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/msgpack-c/fix_Werror=class-memaccess.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/msgpack-c/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/msgpack-c/package.py -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/openblas/lapack-0.3.9-xerbl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/openblas/lapack-0.3.9-xerbl.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/openblas/make.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/openblas/make.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/openblas/openblas-0.3.2-cmake.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/openblas/openblas-0.3.2-cmake.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/openblas/openblas-0.3.8-darwin.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/openblas/openblas-0.3.8-darwin.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/openblas/openblas0.2.19.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/openblas/openblas0.2.19.diff -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/openblas/openblas_0.3.10_appleclang12.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/openblas/openblas_0.3.10_appleclang12.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/openblas/openblas_appleclang11.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/openblas/openblas_appleclang11.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/openblas/openblas_fujitsu.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/openblas/openblas_fujitsu.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/openblas/openblas_fujitsu2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/openblas/openblas_fujitsu2.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/openblas/openblas_icc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/openblas/openblas_icc.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/openblas/openblas_icc_fortran.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/openblas/openblas_icc_fortran.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/openblas/openblas_icc_fortran2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/openblas/openblas_icc_fortran2.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/openblas/openblas_icc_openmp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/openblas/openblas_icc_openmp.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/openblas/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/openblas/package.py -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/openblas/power8.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/openblas/power8.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/openblas/test_cblas_dgemm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/openblas/test_cblas_dgemm.c -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/openblas/test_cblas_dgemm.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/openblas/test_cblas_dgemm.output -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/perl/macos-11-version-check.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/perl/macos-11-version-check.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/perl/nvhpc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/perl/nvhpc.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/perl/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/perl/package.py -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/perl/protect-quotes-in-ccflags.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/perl/protect-quotes-in-ccflags.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/python/cray-rpath-2.3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/python/cray-rpath-2.3.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/python/cray-rpath-3.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/python/cray-rpath-3.1.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/python/fj-rpath-2.3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/python/fj-rpath-2.3.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/python/fj-rpath-3.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/python/fj-rpath-3.1.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/python/gcc-8-2.7.14.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/python/gcc-8-2.7.14.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/python/intel-3.6.7.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/python/intel-3.6.7.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/python/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/python/package.py -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/python/python-2.7.17+-distutils-C++.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/python/python-2.7.17+-distutils-C++.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/python/python-2.7.8-distutils-C++.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/python/python-2.7.8-distutils-C++.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/python/python-3.6.8-distutils-C++.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/python/python-3.6.8-distutils-C++.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/python/python-3.7.3-distutils-C++.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/python/python-3.7.3-distutils-C++.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/python/python-3.7.4+-distutils-C++.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/python/python-3.7.4+-distutils-C++.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/python/tkinter.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/python/tkinter.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/rsync/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/rsync/package.py -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/xcb-proto/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/xcb-proto/package.py -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/xcb-proto/xcb-proto-1.12-schema-1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/xcb-proto/xcb-proto-1.12-schema-1.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/xrootd/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/xrootd/package.py -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/xrootd/python-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/xrootd/python-support.patch -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/xxhash/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/xxhash/package.py -------------------------------------------------------------------------------- /repos/fairsoft-backports/packages/yaml-cpp/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft-backports/packages/yaml-cpp/package.py -------------------------------------------------------------------------------- /repos/fairsoft-backports/repo.yaml: -------------------------------------------------------------------------------- 1 | repo: 2 | namespace: 'fairsoft_backports' 3 | -------------------------------------------------------------------------------- /repos/fairsoft/packages/dds/fix_missing_thread_include_2.4_3.5.11.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/dds/fix_missing_thread_include_2.4_3.5.11.patch -------------------------------------------------------------------------------- /repos/fairsoft/packages/dds/fix_missing_thread_include_2.5_3.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/dds/fix_missing_thread_include_2.5_3.0.patch -------------------------------------------------------------------------------- /repos/fairsoft/packages/dds/fix_uuid_init.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/dds/fix_uuid_init.patch -------------------------------------------------------------------------------- /repos/fairsoft/packages/dds/fix_wn_bin_2.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/dds/fix_wn_bin_2.2.patch -------------------------------------------------------------------------------- /repos/fairsoft/packages/dds/fix_wn_bin_2.4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/dds/fix_wn_bin_2.4.patch -------------------------------------------------------------------------------- /repos/fairsoft/packages/dds/fix_wn_bin_2.5-odc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/dds/fix_wn_bin_2.5-odc.patch -------------------------------------------------------------------------------- /repos/fairsoft/packages/dds/fix_wn_bin_3.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/dds/fix_wn_bin_3.0.patch -------------------------------------------------------------------------------- /repos/fairsoft/packages/dds/fix_wn_bin_3.2_3.5.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/dds/fix_wn_bin_3.2_3.5.2.patch -------------------------------------------------------------------------------- /repos/fairsoft/packages/dds/fix_wn_bin_3.5.14.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/dds/fix_wn_bin_3.5.14.patch -------------------------------------------------------------------------------- /repos/fairsoft/packages/dds/fix_wn_bin_3.5.16.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/dds/fix_wn_bin_3.5.16.patch -------------------------------------------------------------------------------- /repos/fairsoft/packages/dds/fix_wn_bin_3.5.3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/dds/fix_wn_bin_3.5.3.patch -------------------------------------------------------------------------------- /repos/fairsoft/packages/dds/fix_wn_bin_3.5.4_3.5.10.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/dds/fix_wn_bin_3.5.4_3.5.10.patch -------------------------------------------------------------------------------- /repos/fairsoft/packages/dds/fix_wn_bin_3.6.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/dds/fix_wn_bin_3.6.patch -------------------------------------------------------------------------------- /repos/fairsoft/packages/dds/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/dds/package.py -------------------------------------------------------------------------------- /repos/fairsoft/packages/faircmakemodules/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/faircmakemodules/package.py -------------------------------------------------------------------------------- /repos/fairsoft/packages/fairlogger/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/fairlogger/package.py -------------------------------------------------------------------------------- /repos/fairsoft/packages/fairmq/fix_cpp17moveinsertable_assertion_xcode12.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/fairmq/fix_cpp17moveinsertable_assertion_xcode12.patch -------------------------------------------------------------------------------- /repos/fairsoft/packages/fairmq/fix_find_dds.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/fairmq/fix_find_dds.patch -------------------------------------------------------------------------------- /repos/fairsoft/packages/fairmq/fix_missing_include_thread_1.4.10_1.4.38.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/fairmq/fix_missing_include_thread_1.4.10_1.4.38.patch -------------------------------------------------------------------------------- /repos/fairsoft/packages/fairmq/missing_stdexcept_header.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/fairmq/missing_stdexcept_header.patch -------------------------------------------------------------------------------- /repos/fairsoft/packages/fairmq/no_external_asio_1.4.11.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/fairmq/no_external_asio_1.4.11.patch -------------------------------------------------------------------------------- /repos/fairsoft/packages/fairmq/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/fairmq/package.py -------------------------------------------------------------------------------- /repos/fairsoft/packages/fairmq/update_command_format_in_pmix_plugin.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/fairmq/update_command_format_in_pmix_plugin.patch -------------------------------------------------------------------------------- /repos/fairsoft/packages/fairmq/use_bundled_gtest_149.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/fairmq/use_bundled_gtest_149.patch -------------------------------------------------------------------------------- /repos/fairsoft/packages/fairroot/cmake_utf8.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/fairroot/cmake_utf8.patch -------------------------------------------------------------------------------- /repos/fairsoft/packages/fairroot/drop_cxx_flag_check.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/fairroot/drop_cxx_flag_check.patch -------------------------------------------------------------------------------- /repos/fairsoft/packages/fairroot/fairlogger_incdir.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/fairroot/fairlogger_incdir.patch -------------------------------------------------------------------------------- /repos/fairsoft/packages/fairroot/find_pythia8_cmake.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/fairroot/find_pythia8_cmake.patch -------------------------------------------------------------------------------- /repos/fairsoft/packages/fairroot/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/fairroot/package.py -------------------------------------------------------------------------------- /repos/fairsoft/packages/fairroot/support_geant4_with_external_clhep.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/fairroot/support_geant4_with_external_clhep.patch -------------------------------------------------------------------------------- /repos/fairsoft/packages/fairroot/support_geant4_with_external_clhep_18.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/fairroot/support_geant4_with_external_clhep_18.2.patch -------------------------------------------------------------------------------- /repos/fairsoft/packages/fairsoft-bundle/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/fairsoft-bundle/package.py -------------------------------------------------------------------------------- /repos/fairsoft/packages/fairsoft-config/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/fairsoft-config/package.py -------------------------------------------------------------------------------- /repos/fairsoft/packages/geant3/dict_fixes_30.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/geant3/dict_fixes_30.patch -------------------------------------------------------------------------------- /repos/fairsoft/packages/geant3/fix_geane_propagator_v2-7_fairsoft.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/geant3/fix_geane_propagator_v2-7_fairsoft.patch -------------------------------------------------------------------------------- /repos/fairsoft/packages/geant3/fix_geane_propagator_v3-0_fairsoft.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/geant3/fix_geane_propagator_v3-0_fairsoft.patch -------------------------------------------------------------------------------- /repos/fairsoft/packages/geant3/fix_gfortran_7.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/geant3/fix_gfortran_7.patch -------------------------------------------------------------------------------- /repos/fairsoft/packages/geant3/gcalor_stringsize.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/geant3/gcalor_stringsize.patch -------------------------------------------------------------------------------- /repos/fairsoft/packages/geant3/gfortran10_support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/geant3/gfortran10_support.patch -------------------------------------------------------------------------------- /repos/fairsoft/packages/geant3/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/geant3/package.py -------------------------------------------------------------------------------- /repos/fairsoft/packages/geant4-vmc/dict_fixes_501.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/geant4-vmc/dict_fixes_501.patch -------------------------------------------------------------------------------- /repos/fairsoft/packages/geant4-vmc/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/geant4-vmc/package.py -------------------------------------------------------------------------------- /repos/fairsoft/packages/odc/fix_protoc_args.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/odc/fix_protoc_args.patch -------------------------------------------------------------------------------- /repos/fairsoft/packages/odc/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/odc/package.py -------------------------------------------------------------------------------- /repos/fairsoft/packages/pandaroot/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/pandaroot/package.py -------------------------------------------------------------------------------- /repos/fairsoft/packages/pythia6/add_missing_extern_keyword.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/pythia6/add_missing_extern_keyword.patch -------------------------------------------------------------------------------- /repos/fairsoft/packages/pythia6/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/pythia6/package.py -------------------------------------------------------------------------------- /repos/fairsoft/packages/pythia8/8303_limits.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/pythia8/8303_limits.patch -------------------------------------------------------------------------------- /repos/fairsoft/packages/pythia8/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/pythia8/package.py -------------------------------------------------------------------------------- /repos/fairsoft/packages/pythia8/ropewalk_sqrt.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/pythia8/ropewalk_sqrt.patch -------------------------------------------------------------------------------- /repos/fairsoft/packages/r3broot/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/r3broot/package.py -------------------------------------------------------------------------------- /repos/fairsoft/packages/root/find-mysql.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/root/find-mysql.patch -------------------------------------------------------------------------------- /repos/fairsoft/packages/root/format-stringbuf-size.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/root/format-stringbuf-size.patch -------------------------------------------------------------------------------- /repos/fairsoft/packages/root/honor-unuran-switch.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/root/honor-unuran-switch.patch -------------------------------------------------------------------------------- /repos/fairsoft/packages/root/math_uint.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/root/math_uint.patch -------------------------------------------------------------------------------- /repos/fairsoft/packages/root/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/root/package.py -------------------------------------------------------------------------------- /repos/fairsoft/packages/root/root6-60606-mathmore.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/root/root6-60606-mathmore.patch -------------------------------------------------------------------------------- /repos/fairsoft/packages/root/root6_16_macos11_config.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/root/root6_16_macos11_config.patch -------------------------------------------------------------------------------- /repos/fairsoft/packages/root/root6_16_xrootd.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/root/root6_16_xrootd.patch -------------------------------------------------------------------------------- /repos/fairsoft/packages/root/root7-webgui.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/root/root7-webgui.patch -------------------------------------------------------------------------------- /repos/fairsoft/packages/vgm/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/vgm/package.py -------------------------------------------------------------------------------- /repos/fairsoft/packages/vmc/dict_fixes_101.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/vmc/dict_fixes_101.patch -------------------------------------------------------------------------------- /repos/fairsoft/packages/vmc/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/repos/fairsoft/packages/vmc/package.py -------------------------------------------------------------------------------- /repos/fairsoft/repo.yaml: -------------------------------------------------------------------------------- 1 | repo: 2 | namespace: 'fairsoft' 3 | -------------------------------------------------------------------------------- /test/build-main-tests-common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/test/build-main-tests-common.sh -------------------------------------------------------------------------------- /test/buildcleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/test/buildcleanup.sh -------------------------------------------------------------------------------- /test/buildenv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/test/buildenv.sh -------------------------------------------------------------------------------- /test/buildsetup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/test/buildsetup.sh -------------------------------------------------------------------------------- /test/buildspec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/test/buildspec.sh -------------------------------------------------------------------------------- /test/buildstart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/test/buildstart.sh -------------------------------------------------------------------------------- /test/cmaketest.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/test/cmaketest.sh.in -------------------------------------------------------------------------------- /test/container/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/test/container/CMakeLists.txt -------------------------------------------------------------------------------- /test/container/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/test/container/README.md -------------------------------------------------------------------------------- /test/container/centos.7.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/test/container/centos.7.def -------------------------------------------------------------------------------- /test/container/debian.10.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/test/container/debian.10.def -------------------------------------------------------------------------------- /test/container/fedora.33.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/test/container/fedora.33.def -------------------------------------------------------------------------------- /test/container/fedora.34.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/test/container/fedora.34.def -------------------------------------------------------------------------------- /test/container/legacy/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/test/container/legacy/CMakeLists.txt -------------------------------------------------------------------------------- /test/container/legacy/linux-cmake.def.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/test/container/legacy/linux-cmake.def.in -------------------------------------------------------------------------------- /test/container/legacy/linux.def.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/test/container/legacy/linux.def.in -------------------------------------------------------------------------------- /test/container/opensuse.15.2.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/test/container/opensuse.15.2.def -------------------------------------------------------------------------------- /test/container/ubuntu.20.04.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/test/container/ubuntu.20.04.def -------------------------------------------------------------------------------- /test/env/dds/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/test/env/dds/spack.yaml -------------------------------------------------------------------------------- /test/env/fairlogger/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/test/env/fairlogger/spack.yaml -------------------------------------------------------------------------------- /test/env/fairmq/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/test/env/fairmq/spack.yaml -------------------------------------------------------------------------------- /test/env/fairroot_develop/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/test/env/fairroot_develop/spack.yaml -------------------------------------------------------------------------------- /test/env/jun19_fairroot_18_4/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/test/env/jun19_fairroot_18_4/spack.yaml -------------------------------------------------------------------------------- /test/env/pandaroot/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/test/env/pandaroot/spack.yaml -------------------------------------------------------------------------------- /test/env/r3broot/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/test/env/r3broot/spack.yaml -------------------------------------------------------------------------------- /test/env/virgo_base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/test/env/virgo_base.yaml -------------------------------------------------------------------------------- /test/legacy/fairroot.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/test/legacy/fairroot.sh.in -------------------------------------------------------------------------------- /test/simpath_broken/bin/fairsoft-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/test/simpath_broken/bin/fairsoft-config -------------------------------------------------------------------------------- /test/slurm-create-jobscript.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/test/slurm-create-jobscript.sh -------------------------------------------------------------------------------- /test/slurm-submit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/test/slurm-submit.sh -------------------------------------------------------------------------------- /test/spack-pkg-sanity.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/test/spack-pkg-sanity.sh -------------------------------------------------------------------------------- /test/test-start-container.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/test/test-start-container.sh -------------------------------------------------------------------------------- /test/workflow/classic_developer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/test/workflow/classic_developer.sh -------------------------------------------------------------------------------- /thisfairsoft.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/thisfairsoft.sh -------------------------------------------------------------------------------- /tools/dds_compiler_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/tools/dds_compiler_fix.py -------------------------------------------------------------------------------- /tools/find_specs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/tools/find_specs.py -------------------------------------------------------------------------------- /tools/spack_dev-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FairRootGroup/FairSoft/HEAD/tools/spack_dev-build.sh --------------------------------------------------------------------------------