2012-07-04 19:10:36 +02:00
|
|
|
#
|
2016-07-17 17:17:27 +02:00
|
|
|
# spec file for package ghc-blaze-markup
|
2012-07-04 19:10:36 +02:00
|
|
|
#
|
2017-02-22 18:34:13 +01:00
|
|
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
2012-07-04 19:10:36 +02: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.
|
|
|
|
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
|
|
#
|
|
|
|
|
|
|
|
|
2013-08-03 10:25:26 +02:00
|
|
|
%global pkg_name blaze-markup
|
2015-05-04 19:28:19 +02:00
|
|
|
%bcond_with tests
|
|
|
|
Name: ghc-%{pkg_name}
|
2016-12-18 14:43:42 +01:00
|
|
|
Version: 0.7.1.1
|
2013-08-03 10:25:26 +02:00
|
|
|
Release: 0
|
|
|
|
Summary: A blazingly fast markup combinator library for Haskell
|
2012-07-04 19:10:36 +02:00
|
|
|
License: BSD-3-Clause
|
2016-08-24 15:07:26 +02:00
|
|
|
Group: Development/Languages/Other
|
2015-05-04 19:28:19 +02:00
|
|
|
Url: https://hackage.haskell.org/package/%{pkg_name}
|
|
|
|
Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
|
2012-07-04 19:10:36 +02:00
|
|
|
BuildRequires: ghc-Cabal-devel
|
|
|
|
BuildRequires: ghc-blaze-builder-devel
|
|
|
|
BuildRequires: ghc-bytestring-devel
|
2016-07-17 17:17:27 +02:00
|
|
|
BuildRequires: ghc-rpm-macros
|
2012-07-04 19:10:36 +02:00
|
|
|
BuildRequires: ghc-text-devel
|
2016-07-17 17:17:27 +02:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
2015-05-04 19:28:19 +02:00
|
|
|
%if %{with tests}
|
|
|
|
BuildRequires: ghc-HUnit-devel
|
|
|
|
BuildRequires: ghc-QuickCheck-devel
|
|
|
|
BuildRequires: ghc-containers-devel
|
|
|
|
BuildRequires: ghc-test-framework-devel
|
|
|
|
BuildRequires: ghc-test-framework-hunit-devel
|
|
|
|
BuildRequires: ghc-test-framework-quickcheck2-devel
|
|
|
|
%endif
|
2012-07-04 19:10:36 +02:00
|
|
|
|
|
|
|
%description
|
2013-08-03 10:25:26 +02:00
|
|
|
Core modules of a blazingly fast markup combinator library for the Haskell
|
2015-05-04 19:28:19 +02:00
|
|
|
programming language. The Text.Blaze module is a good starting point, as well
|
|
|
|
as this tutorial: <http://jaspervdj.be/blaze/tutorial.html>.
|
2013-08-03 10:25:26 +02:00
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: Haskell %{pkg_name} library development files
|
|
|
|
Group: Development/Libraries/Other
|
2016-07-17 17:17:27 +02:00
|
|
|
Requires: %{name} = %{version}-%{release}
|
2015-05-04 19:28:19 +02:00
|
|
|
Requires: ghc-compiler = %{ghc_version}
|
|
|
|
Requires(post): ghc-compiler = %{ghc_version}
|
|
|
|
Requires(postun): ghc-compiler = %{ghc_version}
|
2013-08-03 10:25:26 +02:00
|
|
|
|
|
|
|
%description devel
|
2015-05-04 19:28:19 +02:00
|
|
|
This package provides the Haskell %{pkg_name} library development files.
|
2012-07-04 19:10:36 +02:00
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n %{pkg_name}-%{version}
|
|
|
|
|
|
|
|
%build
|
|
|
|
%ghc_lib_build
|
|
|
|
|
|
|
|
%install
|
|
|
|
%ghc_lib_install
|
|
|
|
|
2015-05-04 19:28:19 +02:00
|
|
|
%check
|
2016-08-24 15:07:26 +02:00
|
|
|
%cabal_test
|
2016-07-17 17:17:27 +02:00
|
|
|
|
2013-08-03 10:25:26 +02:00
|
|
|
%post devel
|
|
|
|
%ghc_pkg_recache
|
2012-07-04 19:10:36 +02:00
|
|
|
|
2013-08-03 10:25:26 +02:00
|
|
|
%postun devel
|
|
|
|
%ghc_pkg_recache
|
2012-07-04 19:10:36 +02:00
|
|
|
|
2013-08-03 10:25:26 +02:00
|
|
|
%files -f %{name}.files
|
2013-10-21 09:16:13 +02:00
|
|
|
%defattr(-,root,root,-)
|
2013-08-03 10:25:26 +02:00
|
|
|
%doc LICENSE
|
2012-07-04 19:10:36 +02:00
|
|
|
|
2013-08-03 10:25:26 +02:00
|
|
|
%files devel -f %{name}-devel.files
|
2013-10-21 09:16:13 +02:00
|
|
|
%defattr(-,root,root,-)
|
2016-07-17 17:17:27 +02:00
|
|
|
%doc CHANGELOG
|
2012-07-04 19:10:36 +02:00
|
|
|
|
|
|
|
%changelog
|