commit 26d7872f37b7aa39294d49652fd250853ad94420 parent 6e66043481d1211c6f041d428a07b722fe0143ea Author: Andreas Gruhler <agruhl@gmx.ch> Date: Sat, 13 Nov 2021 21:23:50 +0100 document OBS zstd Diffstat:
M | docs/OBS.MD | | | 18 | ++++++++++++++++-- |
1 file changed, 16 insertions(+), 2 deletions(-)
diff --git a/docs/OBS.MD b/docs/OBS.MD @@ -93,4 +93,18 @@ Applying the latest version fixes the following issue: ``` The following patch might be related (needs to be applied OBS server-side, nothing left to do): -https://github.com/openSUSE/obs-build/pull/696 -\ No newline at end of file +https://github.com/openSUSE/obs-build/pull/696 + +## `zstd` + +`obs-service-recompress` requires `zstd`. + +Patch `zstd.spec`, such that RHEL build require `glibc-static` and openSUSE builds require `glibc-devel-static`: +```diff +- BuildRequires: (glibc-static or glibc-devel-static) ++ %if 0%{?rhel} || 0%{?fedora} ++ BuildRequires: glibc-static ++ %else ++ BuildRequires: glibc-devel-static ++ %endif +``` +\ No newline at end of file