diff options
author | Juan Miguel Carceller <22276694+jmcarcell@users.noreply.github.com> | 2024-08-02 04:40:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-01 19:40:15 -0700 |
commit | a3c3f4c3d13f0c7138d2c4c074dbe34ca3c28178 (patch) | |
tree | 1b15713a5e82187f6266f456f3736b63d83e690f | |
parent | 445b6dfcf805414a87ce9a75ee31e294cfbc2a31 (diff) | |
download | spack-a3c3f4c3d13f0c7138d2c4c074dbe34ca3c28178.tar.gz spack-a3c3f4c3d13f0c7138d2c4c074dbe34ca3c28178.tar.bz2 spack-a3c3f4c3d13f0c7138d2c4c074dbe34ca3c28178.tar.xz spack-a3c3f4c3d13f0c7138d2c4c074dbe34ca3c28178.zip |
root: Add patch to fix TUri (#45428)
Co-authored-by: jmcarcell <jmcarcell@users.noreply.github.com>
-rw-r--r-- | var/spack/repos/builtin/packages/root/package.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/root/package.py b/var/spack/repos/builtin/packages/root/package.py index d797a4c33a..bf037c8700 100644 --- a/var/spack/repos/builtin/packages/root/package.py +++ b/var/spack/repos/builtin/packages/root/package.py @@ -139,6 +139,13 @@ class Root(CMakePackage): when="@6.30:6.30.04", ) + # Fix TUri to be PCRE2 compatible + patch( + "https://github.com/root-project/root/pull/15988.patch?full_index=1", + sha256="9de4aa66f791dc3a1b9521995552b2d28b57be88a96a2e9e369977e32da26eb0", + when="@6.32.0:6.32.02", + ) + if sys.platform == "darwin": # Resolve non-standard use of uint, _cf_ # https://sft.its.cern.ch/jira/browse/ROOT-7886. |