File ghc-options.spec of Package ghc-options
#
# spec file for package ghc-options
#
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
#
# 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 http://bugs.opensuse.org/
#
%global pkg_name options
%bcond_with tests
Name: ghc-%{pkg_name}
Version: 1.2.1.1
Release: 0
Summary: A powerful and easy-to-use command-line option parser
License: MIT
Group: Development/Libraries/Haskell
URL: https://hackage.haskell.org/package/%{pkg_name}
Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
BuildRequires: ghc-Cabal-devel
BuildRequires: ghc-containers-devel
BuildRequires: ghc-monads-tf-devel
BuildRequires: ghc-rpm-macros
BuildRequires: ghc-transformers-devel
%if %{with tests}
BuildRequires: ghc-chell-devel
BuildRequires: ghc-chell-quickcheck-devel
%endif
%description
The 'options' package lets library and application developers easily work with
command-line options.
The following example is a full program that can accept two options,
'--message' and '--quiet':
' import Control.Applicative import Options
data MainOptions = MainOptions   { optMessage :: String   ,
optQuiet :: Bool   }
instance 'Options' MainOptions where   defineOptions = pure MainOptions
  <*> simpleOption "message" "Hello world!"   "A message to show the
user."   <*> simpleOption "quiet" False   "Whether to be quiet."
main :: IO () main = runCommand $ \opts args -> do   if optQuiet opts
  then return ()   else putStrLn (optMessage opts) '
>$ ./hello >Hello world! >$ ./hello --message='ciao mondo' >ciao mondo >$
./hello --quiet >$
In addition, this library will automatically create documentation options such
as '--help' and '--help-all':
>$ ./hello --help >Help Options: > -h, --help > Show option summary. >
--help-all > Show all help options. > >Application Options: > --message :: text
> A message to show the user. > default: "Hello world!" > --quiet :: bool >
Whether to be quiet. > default: false.
%package devel
Summary: Haskell %{pkg_name} library development files
Group: Development/Libraries/Haskell
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.
%prep
%setup -q -n %{pkg_name}-%{version}
%build
%ghc_lib_build
%install
%ghc_lib_install
%check
%cabal_test
%post devel
%ghc_pkg_recache
%postun devel
%ghc_pkg_recache
%files -f %{name}.files
%doc license.txt
%files devel -f %{name}-devel.files
%changelog