File ghc-wizards.spec of Package ghc-wizards
#
# spec file for package ghc-wizards
#
# Copyright (c) 2024 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%global pkg_name wizards
%global pkgver %{pkg_name}-%{version}
Name:           ghc-%{pkg_name}
Version:        1.0.3
Release:        0
Summary:        High level, generic library for interrogative user interfaces
License:        BSD-3-Clause
URL:            https://hackage.haskell.org/package/%{pkg_name}
Source0:        https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
Source1:        https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/3.cabal#/%{pkg_name}.cabal
BuildRequires:  ghc-Cabal-devel
BuildRequires:  ghc-base-devel
BuildRequires:  ghc-base-prof
BuildRequires:  ghc-containers-devel
BuildRequires:  ghc-containers-prof
BuildRequires:  ghc-control-monad-free-devel
BuildRequires:  ghc-control-monad-free-prof
BuildRequires:  ghc-haskeline-devel
BuildRequires:  ghc-haskeline-prof
BuildRequires:  ghc-mtl-devel
BuildRequires:  ghc-mtl-prof
BuildRequires:  ghc-rpm-macros
BuildRequires:  ghc-transformers-devel
BuildRequires:  ghc-transformers-prof
ExcludeArch:    %{ix86}
%description
'wizards' is a package designed for the quick and painless development of
/interrogative/ programs, which revolve around a "dialogue" with the user, who
is asked a series of questions in a sequence much like an installation wizard.
Everything from interactive system scripts, to installation wizards, to
full-blown shells can be implemented with the support of 'wizards'.
It is developed transparently on top of a free monad, which separates out the
semantics of the program from any particular interface. A variety of backends
exist, including console-based "System.Console.Wizard.Haskeline" and
"System.Console.Wizard.BasicIO", and the pure "System.Console.Wizard.Pure".
It is also possible to write your own backends, or extend existing back-ends
with new features. While both built-in IO backends operate on a console, there
is no reason why 'wizards' cannot also be used for making GUI wizard
interfaces.
See the github page for examples on usage:
<http://www.github.com/liamoc/wizards>
For creating backends, the module "System.Console.Wizard.Internal" has a brief
tutorial.
%package devel
Summary:        Haskell %{pkg_name} library development files
Requires:       %{name} = %{version}-%{release}
Requires:       ghc-compiler = %{ghc_version}
Requires(post): ghc-compiler = %{ghc_version}
Requires(postun): ghc-compiler = %{ghc_version}
%description devel
This package provides the Haskell %{pkg_name} library development files.
%package -n ghc-%{pkg_name}-doc
Summary:        Haskell %{pkg_name} library documentation
Requires:       ghc-filesystem
BuildArch:      noarch
%description -n ghc-%{pkg_name}-doc
This package provides the Haskell %{pkg_name} library documentation.
%package -n ghc-%{pkg_name}-prof
Summary:        Haskell %{pkg_name} profiling library
Requires:       ghc-%{pkg_name}-devel = %{version}-%{release}
Supplements:    (ghc-%{pkg_name}-devel and ghc-prof)
%description -n ghc-%{pkg_name}-prof
This package provides the Haskell %{pkg_name} profiling library.
%prep
%autosetup -n %{pkg_name}-%{version}
cp -p %{SOURCE1} %{pkg_name}.cabal
%build
# Use an explicit build step to avoid passing the -fobject-determinism GHC flag
# which is not recognised by all GHC builds (notably on some architectures).
# The standard %ghc_lib_build macro injects --ghc-options including that flag;
# to keep the change minimal we replicate the essential configure/build steps
# without the problematic option.
# Create a small ghc wrapper that strips occurrences of -fobject-determinism
# from any arguments (including when embedded inside --ghc-options=...).
# Prepend the build directory to PATH so calls to "ghc" use the wrapper.
cat > ghc <<'EOF'
#!/bin/sh
# wrapper to remove -fobject-determinism (including when embedded)
_real="/usr/bin/ghc"
newargs=
for a in "$@"; do
  # remove all occurrences of -fobject-determinism and collapse spaces
  cleaned=$(printf '%s' "$a" | sed -e 's/-fobject-determinism//g' -e 's/  */ /g' -e 's/^ //' -e 's/ $//')
  # skip empty results
  if [ -z "${cleaned}" ]; then
    continue
  fi
  # escape any double quotes inside the argument
  esc=$(printf '%s' "$cleaned" | sed 's/"/\\"/g')
  newargs="$newargs \"$esc\""
done
# execute the real ghc with filtered arguments
eval "exec $_real $newargs"
EOF
chmod +x ghc
export PATH="$(pwd):$PATH"
# Compile Setup if necessary
if [ -f Setup.hs -o -f Setup.lhs ]; then
    ghc --make -package Cabal -no-user-package-db -dynamic Setup || true
fi
LANG=C.utf8
# Configure without --ghc-options that contains -fobject-determinism
# Force Setup to use our ghc wrapper using --with-ghc pointing at the wrapper
./Setup configure --prefix=/usr --libdir=/usr/lib64 --docdir=/usr/share/licenses/ghc-wizards '\'--libsubdir=$compiler/lib/$pkgid\'' '\'--datasubdir=$pkgid\'' '\'--libexecsubdir=$pkgid\'' --ghc --with-ghc=$(pwd)/ghc --dynlibdir=/usr/lib64/ghc-9.10.2/lib --ghc-options='' --enable-library-profiling --enable-shared --htmldir=/usr/share/doc/packages/ghc-9.10.2/html/libraries/wizards-1.0.3
# Build the library
./Setup build
%install
%ghc_lib_install
%post devel
%ghc_pkg_recache
%postun devel
%ghc_pkg_recache
%files -f %{name}.files
%license LICENSE
%files devel -f %{name}-devel.files
%files -n ghc-%{pkg_name}-doc -f ghc-%{pkg_name}-doc.files
%license LICENSE
%files -n ghc-%{pkg_name}-prof -f ghc-%{pkg_name}-prof.files
%changelog