llvm/prep.spec.inc
Konrad Kleine bee7a61730 Fix ModuleNotFoundError: No module named 'myst_parser'
This should fix this error which appears on RHEL only:

```
Configuration error:
There is a programmable error in your configuration file:

Traceback (most recent call last):
  File "/usr/lib/python3.9/site-packages/sphinx/config.py", line 326, in eval_config_file
    execfile_(filename, namespace)
  File "/usr/lib/python3.9/site-packages/sphinx/util/pycompat.py", line 88, in execfile_
    exec(code, _globals)
  File "/builddir/build/BUILD/llvm-project-c1d5cc99c6ba8e897ea145dbb2221a155b5e3e5a/llvm/redhat-linux-build/tools/clang/docs/conf.py", line 42, in <module>
    import myst_parser
ModuleNotFoundError: No module named 'myst_parser'
```

See also https://github.com/fedora-llvm-team/llvm-snapshots/issues/492
2024-09-02 15:45:30 +02:00

62 lines
1.5 KiB
PHP

%if %{without snapshot_build}
# llvm
%{gpgverify} --keyring='%{SOURCE1006}' --signature='%{SOURCE1}' --data='%{SOURCE0}'
%endif
# -T : Do Not Perform Default Archive Unpacking (without this, the <n>th source would be unpacked twice)
# -b <n> : Unpack The nth Sources Before Changing Directory
# -n : Set Name of Build Directory
#
# see http://ftp.rpm.org/max-rpm/s1-rpm-inside-macros.html
%autosetup -N -T -b 0 -n %{src_tarball_dir}
# Apply all patches with number <= 9000
# See https://rpm-software-management.github.io/rpm/manual/autosetup.html
%autopatch -M9000 -p1
%if 0%{?fedora} == 38
%patch -p1 -P9001
%endif
%if %{defined rhel}
%patch -p1 -P9002
%endif
#region LLVM preparation
%py3_shebang_fix \
llvm/test/BugPoint/compile-custom.ll.py \
llvm/tools/opt-viewer/*.py \
llvm/utils/update_cc_test_checks.py
#endregion
#region CLANG preparation
%if %{without compat_build}
%py3_shebang_fix \
clang-tools-extra/clang-tidy/tool/ \
clang-tools-extra/clang-include-fixer/find-all-symbols/tool/run-find-all-symbols.py
%py3_shebang_fix \
clang/tools/clang-format/ \
clang/tools/clang-format/git-clang-format \
clang/utils/hmaptool/hmaptool \
clang/tools/scan-view/bin/scan-view \
clang/tools/scan-view/share/Reporter.py \
clang/tools/scan-view/share/startfile.py \
clang/tools/scan-build-py/bin/* \
clang/tools/scan-build-py/libexec/*
%endif
#endregion
#region COMPILER-RT preparation
%if %{without compat_build}
%py3_shebang_fix compiler-rt/lib/hwasan/scripts/hwasan_symbolize
%endif
#endregion