2012-06-06 20:01:44 +02:00
|
|
|
#
|
2013-07-31 20:38:03 +02:00
|
|
|
# spec file for package ghc-syb
|
2012-06-06 20:01:44 +02:00
|
|
|
#
|
2021-02-09 10:17:49 +01:00
|
|
|
# Copyright (c) 2021 SUSE LLC
|
2012-01-12 16:32:24 +01:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
2018-10-18 11:52:19 +02:00
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
2012-01-12 16:32:24 +01:00
|
|
|
#
|
|
|
|
|
2013-07-31 20:38:03 +02:00
|
|
|
|
2012-01-12 16:32:24 +01:00
|
|
|
%global pkg_name syb
|
2016-07-19 11:59:41 +02:00
|
|
|
%bcond_with tests
|
|
|
|
Name: ghc-%{pkg_name}
|
2021-02-09 10:17:49 +01:00
|
|
|
Version: 0.7.2.1
|
2013-07-31 20:38:03 +02:00
|
|
|
Release: 0
|
2014-11-06 20:30:33 +01:00
|
|
|
Summary: Scrap Your Boilerplate
|
2012-06-06 20:01:44 +02:00
|
|
|
License: BSD-3-Clause
|
2017-08-15 16:06:06 +02:00
|
|
|
URL: https://hackage.haskell.org/package/%{pkg_name}
|
2016-07-19 11:59:41 +02:00
|
|
|
Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
|
2012-01-12 16:32:24 +01:00
|
|
|
BuildRequires: ghc-Cabal-devel
|
2013-07-31 20:38:03 +02:00
|
|
|
BuildRequires: ghc-rpm-macros
|
2020-12-19 18:49:15 +01:00
|
|
|
ExcludeArch: %{ix86}
|
2016-07-19 11:59:41 +02:00
|
|
|
%if %{with tests}
|
|
|
|
BuildRequires: ghc-containers-devel
|
|
|
|
BuildRequires: ghc-mtl-devel
|
2021-02-09 10:17:49 +01:00
|
|
|
BuildRequires: ghc-tasty-devel
|
|
|
|
BuildRequires: ghc-tasty-hunit-devel
|
2016-07-19 11:59:41 +02:00
|
|
|
%endif
|
2012-02-27 19:07:19 +01:00
|
|
|
|
2012-01-12 16:32:24 +01:00
|
|
|
%description
|
2014-11-06 20:30:33 +01:00
|
|
|
This package contains the generics system described in the /Scrap Your
|
|
|
|
Boilerplate/ papers (see <http://www.cs.uu.nl/wiki/GenericProgramming/SYB>).
|
2016-07-19 11:59:41 +02:00
|
|
|
It defines the 'Data' class of types permitting folding and unfolding of
|
2014-11-06 20:30:33 +01:00
|
|
|
constructor applications, instances of this class for primitive types, and a
|
|
|
|
variety of traversals.
|
|
|
|
|
2013-07-31 20:38:03 +02:00
|
|
|
%package devel
|
|
|
|
Summary: Haskell %{pkg_name} library development files
|
2016-07-19 11:59:41 +02:00
|
|
|
Requires: %{name} = %{version}-%{release}
|
2014-11-06 20:30:33 +01:00
|
|
|
Requires: ghc-compiler = %{ghc_version}
|
|
|
|
Requires(post): ghc-compiler = %{ghc_version}
|
|
|
|
Requires(postun): ghc-compiler = %{ghc_version}
|
2013-07-31 20:38:03 +02:00
|
|
|
|
|
|
|
%description devel
|
2014-11-06 20:30:33 +01:00
|
|
|
This package provides the Haskell %{pkg_name} library development files.
|
|
|
|
|
2012-01-12 16:32:24 +01:00
|
|
|
%prep
|
2020-09-04 17:11:41 +02:00
|
|
|
%autosetup -n %{pkg_name}-%{version}
|
2012-01-12 16:32:24 +01:00
|
|
|
|
|
|
|
%build
|
|
|
|
%ghc_lib_build
|
|
|
|
|
|
|
|
%install
|
|
|
|
%ghc_lib_install
|
|
|
|
|
2016-07-19 11:59:41 +02:00
|
|
|
%check
|
2016-10-06 20:52:51 +02:00
|
|
|
%cabal_test
|
2016-07-19 11:59:41 +02:00
|
|
|
|
2013-07-31 20:38:03 +02:00
|
|
|
%post devel
|
|
|
|
%ghc_pkg_recache
|
2012-01-12 16:32:24 +01:00
|
|
|
|
2013-07-31 20:38:03 +02:00
|
|
|
%postun devel
|
|
|
|
%ghc_pkg_recache
|
2012-01-12 16:32:24 +01:00
|
|
|
|
2013-07-31 20:38:03 +02:00
|
|
|
%files -f %{name}.files
|
2018-04-26 09:48:48 +02:00
|
|
|
%license LICENSE
|
2012-01-12 16:32:24 +01:00
|
|
|
|
2013-07-31 20:38:03 +02:00
|
|
|
%files devel -f %{name}-devel.files
|
2019-06-18 20:25:33 +02:00
|
|
|
%doc ChangeLog README.md
|
2012-01-12 16:32:24 +01:00
|
|
|
|
|
|
|
%changelog
|