2013-07-31 19:43:39 +02:00
|
|
|
#
|
|
|
|
# spec file for package ghc-attoparsec
|
|
|
|
#
|
2021-03-08 09:01:04 +01:00
|
|
|
# Copyright (c) 2021 SUSE LLC
|
2013-07-31 19:43:39 +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.
|
|
|
|
|
2018-10-18 11:47:07 +02:00
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
2013-07-31 19:43:39 +02:00
|
|
|
#
|
|
|
|
|
|
|
|
|
2014-11-06 20:14:56 +01:00
|
|
|
%global pkg_name attoparsec
|
2015-05-04 20:22:07 +02:00
|
|
|
%bcond_with tests
|
2016-07-16 22:40:10 +02:00
|
|
|
Name: ghc-%{pkg_name}
|
2021-11-09 09:31:49 +01:00
|
|
|
Version: 0.14.2
|
2013-07-31 19:43:39 +02:00
|
|
|
Release: 0
|
2014-11-06 20:14:56 +01:00
|
|
|
Summary: Fast combinator parsing for bytestrings and text
|
2013-07-31 19:43:39 +02:00
|
|
|
License: BSD-3-Clause
|
2017-08-15 15:53:24 +02:00
|
|
|
URL: https://hackage.haskell.org/package/%{pkg_name}
|
2016-04-26 10:08:43 +02:00
|
|
|
Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
|
2021-11-21 12:20:42 +01:00
|
|
|
Source1: https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/2.cabal#/%{pkg_name}.cabal
|
2013-07-31 19:43:39 +02:00
|
|
|
BuildRequires: ghc-Cabal-devel
|
|
|
|
BuildRequires: ghc-array-devel
|
|
|
|
BuildRequires: ghc-bytestring-devel
|
|
|
|
BuildRequires: ghc-containers-devel
|
2014-11-06 20:14:56 +01:00
|
|
|
BuildRequires: ghc-deepseq-devel
|
2016-07-16 22:40:10 +02:00
|
|
|
BuildRequires: ghc-rpm-macros
|
2015-05-04 20:22:07 +02:00
|
|
|
BuildRequires: ghc-scientific-devel
|
2013-07-31 19:43:39 +02:00
|
|
|
BuildRequires: ghc-text-devel
|
2015-09-26 14:21:28 +02:00
|
|
|
BuildRequires: ghc-transformers-devel
|
2020-12-19 18:47:36 +01:00
|
|
|
ExcludeArch: %{ix86}
|
2015-05-04 20:22:07 +02:00
|
|
|
%if %{with tests}
|
|
|
|
BuildRequires: ghc-QuickCheck-devel
|
|
|
|
BuildRequires: ghc-quickcheck-unicode-devel
|
2016-04-26 10:08:43 +02:00
|
|
|
BuildRequires: ghc-tasty-devel
|
|
|
|
BuildRequires: ghc-tasty-quickcheck-devel
|
2015-05-04 20:22:07 +02:00
|
|
|
BuildRequires: ghc-vector-devel
|
|
|
|
%endif
|
2013-07-31 19:43:39 +02:00
|
|
|
|
|
|
|
%description
|
2014-11-06 20:14:56 +01:00
|
|
|
A fast parser combinator library, aimed particularly at dealing efficiently
|
|
|
|
with network protocols and complicated text/binary file formats.
|
|
|
|
|
2013-07-31 19:43:39 +02:00
|
|
|
%package devel
|
|
|
|
Summary: Haskell %{pkg_name} library development files
|
2016-07-16 22:40:10 +02:00
|
|
|
Requires: %{name} = %{version}-%{release}
|
2014-11-06 20:14:56 +01:00
|
|
|
Requires: ghc-compiler = %{ghc_version}
|
|
|
|
Requires(post): ghc-compiler = %{ghc_version}
|
|
|
|
Requires(postun): ghc-compiler = %{ghc_version}
|
2013-07-31 19:43:39 +02:00
|
|
|
|
|
|
|
%description devel
|
2014-11-06 20:14:56 +01:00
|
|
|
This package provides the Haskell %{pkg_name} library development files.
|
|
|
|
|
2013-07-31 19:43:39 +02:00
|
|
|
%prep
|
2020-09-04 17:10:01 +02:00
|
|
|
%autosetup -n %{pkg_name}-%{version}
|
2021-11-21 12:20:42 +01:00
|
|
|
cp -p %{SOURCE1} %{pkg_name}.cabal
|
2013-07-31 19:43:39 +02:00
|
|
|
|
|
|
|
%build
|
|
|
|
%ghc_lib_build
|
|
|
|
|
|
|
|
%install
|
|
|
|
%ghc_lib_install
|
|
|
|
|
2015-05-04 20:22:07 +02:00
|
|
|
%check
|
2016-07-22 23:40:59 +02:00
|
|
|
%cabal_test
|
2015-05-04 20:22:07 +02:00
|
|
|
|
2013-07-31 19:43:39 +02:00
|
|
|
%post devel
|
|
|
|
%ghc_pkg_recache
|
|
|
|
|
|
|
|
%postun devel
|
|
|
|
%ghc_pkg_recache
|
|
|
|
|
|
|
|
%files -f %{name}.files
|
2018-04-26 11:41:48 +02:00
|
|
|
%license LICENSE
|
2013-07-31 19:43:39 +02:00
|
|
|
|
|
|
|
%files devel -f %{name}-devel.files
|
2016-07-16 22:40:10 +02:00
|
|
|
%doc README.markdown changelog.md examples
|
2013-07-31 19:43:39 +02:00
|
|
|
|
|
|
|
%changelog
|