122 lines
2.9 KiB
RPMSpec
122 lines
2.9 KiB
RPMSpec
# generated by cabal-rpm-0.13.1
|
|
# https://fedoraproject.org/wiki/Packaging:Haskell
|
|
|
|
%global pkg_name websockets
|
|
%global pkgver %{pkg_name}-%{version}
|
|
|
|
%bcond_with tests
|
|
|
|
Name: ghc-%{pkg_name}
|
|
Version: 0.12.5.2
|
|
Release: 1%{?dist}
|
|
Summary: A sensible and clean way to write WebSocket-capable servers in Haskell
|
|
|
|
License: BSD
|
|
Url: https://hackage.haskell.org/package/%{pkg_name}
|
|
# Begin cabal-rpm sources:
|
|
Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz
|
|
# End cabal-rpm sources
|
|
|
|
# Begin cabal-rpm deps:
|
|
BuildRequires: ghc-Cabal-devel
|
|
BuildRequires: ghc-rpm-macros
|
|
BuildRequires: ghc-SHA-devel
|
|
BuildRequires: ghc-attoparsec-devel
|
|
BuildRequires: ghc-base64-bytestring-devel
|
|
BuildRequires: ghc-binary-devel
|
|
BuildRequires: ghc-bytestring-devel
|
|
BuildRequires: ghc-case-insensitive-devel
|
|
BuildRequires: ghc-containers-devel
|
|
BuildRequires: ghc-entropy-devel
|
|
BuildRequires: ghc-network-devel
|
|
BuildRequires: ghc-random-devel
|
|
BuildRequires: ghc-streaming-commons-devel
|
|
BuildRequires: ghc-text-devel
|
|
%if %{with tests}
|
|
BuildRequires: ghc-HUnit-devel
|
|
BuildRequires: ghc-QuickCheck-devel
|
|
BuildRequires: ghc-test-framework-devel
|
|
BuildRequires: ghc-test-framework-hunit-devel
|
|
BuildRequires: ghc-test-framework-quickcheck2-devel
|
|
%endif
|
|
# End cabal-rpm deps
|
|
|
|
%description
|
|
This library allows you to write WebSocket-capable servers.
|
|
|
|
An example server:
|
|
<https://github.com/jaspervdj/websockets/blob/master/example/server.lhs>
|
|
|
|
An example client:
|
|
<https://github.com/jaspervdj/websockets/blob/master/example/client.hs>
|
|
|
|
See also:
|
|
|
|
* The specification of the WebSocket protocol:
|
|
<http://www.whatwg.org/specs/web-socket-protocol/>
|
|
|
|
* The JavaScript API for dealing with WebSockets:
|
|
<http://www.w3.org/TR/websockets/>.
|
|
|
|
|
|
%package devel
|
|
Summary: Haskell %{pkg_name} library development files
|
|
Provides: %{name}-static = %{version}-%{release}
|
|
Provides: %{name}-doc = %{version}-%{release}
|
|
%if %{defined ghc_version}
|
|
Requires: ghc-compiler = %{ghc_version}
|
|
Requires(post): ghc-compiler = %{ghc_version}
|
|
Requires(postun): ghc-compiler = %{ghc_version}
|
|
%endif
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
%description devel
|
|
This package provides the Haskell %{pkg_name} library development files.
|
|
|
|
|
|
%prep
|
|
# Begin cabal-rpm setup:
|
|
%setup -q -n %{pkgver}
|
|
# End cabal-rpm setup
|
|
cabal-tweak-drop-dep bytestring-builder
|
|
|
|
|
|
%build
|
|
# Begin cabal-rpm build:
|
|
%ghc_lib_build
|
|
# End cabal-rpm build
|
|
|
|
|
|
%install
|
|
# Begin cabal-rpm install
|
|
%ghc_lib_install
|
|
# End cabal-rpm install
|
|
|
|
|
|
%check
|
|
%cabal_test
|
|
|
|
|
|
%post devel
|
|
%ghc_pkg_recache
|
|
|
|
|
|
%postun devel
|
|
%ghc_pkg_recache
|
|
|
|
|
|
%files -f %{name}.files
|
|
# Begin cabal-rpm files:
|
|
%license LICENCE
|
|
# End cabal-rpm files
|
|
|
|
|
|
%files devel -f %{name}-devel.files
|
|
%doc CHANGELOG example
|
|
|
|
|
|
%changelog
|
|
* Fri Apr 5 2019 Jens Petersen <petersen@redhat.com> - 0.12.5.2-1
|
|
- spec file generated by cabal-rpm-0.13.1
|
|
- exclude deprecated bytestring-builder
|