From 3a962c6305b8f4cf967edeaf6344cc2f2e7d4568 Mon Sep 17 00:00:00 2001 From: Daniel Moerner Date: Apr 07 2021 14:17:51 +0000 Subject: Update guidelines/modules/ROOT/pages/Haskell.adoc The BinLib spec template seems to have a typo in the Requires and Supplements for the -prof package. These need to include the ghc- prefix, since the BinLib spec uses %{pkg_name} rather than ghc-%{pkg_name} as Name. I tested this with an in-progress BinLib package (citeproc), and confirmed it with the pandoc spec file. --- diff --git a/guidelines/modules/ROOT/pages/Haskell.adoc b/guidelines/modules/ROOT/pages/Haskell.adoc index ccd3798..fe6d0f0 100644 --- a/guidelines/modules/ROOT/pages/Haskell.adoc +++ b/guidelines/modules/ROOT/pages/Haskell.adoc @@ -176,8 +176,8 @@ This package provides the Haskell %{pkg_name} library documentation. %package -n ghc-%{name}-prof Summary: Haskell %{pkg_name} profiling library -Requires: %{name}-devel%{?_isa} = %{version}-%{release} -Supplements: (%{name}-devel and ghc-prof) +Requires: ghc-%{name}-devel%{?_isa} = %{version}-%{release} +Supplements: (ghc-%{name}-devel and ghc-prof) %description -n ghc-%{name}-prof This package provides the Haskell %{pkg_name} profiling library.