2015-05-04 20:13:06 +02:00
|
|
|
#
|
|
|
|
# spec file for package ghc-x509
|
|
|
|
#
|
2017-02-22 20:26:10 +01:00
|
|
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
2015-05-04 20:13:06 +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/
|
|
|
|
#
|
|
|
|
|
2015-05-31 21:47:41 +02:00
|
|
|
|
2015-05-04 20:13:06 +02:00
|
|
|
%global pkg_name x509
|
|
|
|
%bcond_with tests
|
2016-07-18 00:05:49 +02:00
|
|
|
Name: ghc-%{pkg_name}
|
2017-07-29 10:17:02 +02:00
|
|
|
Version: 1.7.1
|
2015-05-19 14:29:06 +02:00
|
|
|
Release: 0
|
2015-05-04 20:13:06 +02:00
|
|
|
Summary: X509 reader and writer
|
2015-05-31 21:47:41 +02:00
|
|
|
License: BSD-3-Clause
|
2016-09-28 13:55:22 +02:00
|
|
|
Group: Development/Languages/Other
|
2015-05-04 20:13:06 +02:00
|
|
|
Url: https://hackage.haskell.org/package/%{pkg_name}
|
|
|
|
Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
|
2017-08-01 04:10:23 +02:00
|
|
|
Source1: https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/1.cabal#/%{pkg_name}.cabal
|
2015-05-04 20:13:06 +02:00
|
|
|
BuildRequires: ghc-Cabal-devel
|
|
|
|
BuildRequires: ghc-asn1-encoding-devel
|
|
|
|
BuildRequires: ghc-asn1-parse-devel
|
|
|
|
BuildRequires: ghc-asn1-types-devel
|
|
|
|
BuildRequires: ghc-bytestring-devel
|
|
|
|
BuildRequires: ghc-containers-devel
|
2015-08-20 08:38:43 +02:00
|
|
|
BuildRequires: ghc-cryptonite-devel
|
2015-05-04 20:13:06 +02:00
|
|
|
BuildRequires: ghc-hourglass-devel
|
2015-08-20 08:38:43 +02:00
|
|
|
BuildRequires: ghc-memory-devel
|
2015-05-04 20:13:06 +02:00
|
|
|
BuildRequires: ghc-mtl-devel
|
|
|
|
BuildRequires: ghc-pem-devel
|
2016-07-18 00:05:49 +02:00
|
|
|
BuildRequires: ghc-rpm-macros
|
2015-05-04 20:13:06 +02:00
|
|
|
%if %{with tests}
|
|
|
|
BuildRequires: ghc-tasty-devel
|
|
|
|
BuildRequires: ghc-tasty-quickcheck-devel
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%description
|
|
|
|
X509 reader and writer.
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: Haskell %{pkg_name} library development files
|
|
|
|
Group: Development/Libraries/Other
|
2016-07-18 00:05:49 +02:00
|
|
|
Requires: %{name} = %{version}-%{release}
|
2015-05-04 20:13:06 +02:00
|
|
|
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}
|
2017-08-01 04:10:23 +02:00
|
|
|
cp -p %{SOURCE1} %{pkg_name}.cabal
|
2015-05-04 20:13:06 +02:00
|
|
|
|
|
|
|
%build
|
|
|
|
%ghc_lib_build
|
|
|
|
|
|
|
|
%install
|
|
|
|
%ghc_lib_install
|
|
|
|
|
|
|
|
%check
|
2016-09-28 13:55:22 +02:00
|
|
|
%cabal_test
|
2016-07-18 00:05:49 +02:00
|
|
|
|
2015-05-04 20:13:06 +02:00
|
|
|
%post devel
|
|
|
|
%ghc_pkg_recache
|
|
|
|
|
|
|
|
%postun devel
|
|
|
|
%ghc_pkg_recache
|
|
|
|
|
|
|
|
%files -f %{name}.files
|
|
|
|
%doc LICENSE
|
|
|
|
|
|
|
|
%files devel -f %{name}-devel.files
|
|
|
|
|
|
|
|
%changelog
|