2009b14a5f
OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-dbus?expand=0&rev=63
129 lines
4.2 KiB
RPMSpec
129 lines
4.2 KiB
RPMSpec
#
|
|
# spec file for package ghc-dbus
|
|
#
|
|
# Copyright (c) 2021 SUSE LLC
|
|
#
|
|
# 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 https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%global pkg_name dbus
|
|
%bcond_with tests
|
|
Name: ghc-%{pkg_name}
|
|
Version: 1.2.22
|
|
Release: 0
|
|
Summary: A client library for the D-Bus IPC system
|
|
License: Apache-2.0
|
|
URL: https://hackage.haskell.org/package/%{pkg_name}
|
|
Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
|
|
BuildRequires: ghc-Cabal-devel
|
|
BuildRequires: ghc-bytestring-devel
|
|
BuildRequires: ghc-cereal-devel
|
|
BuildRequires: ghc-conduit-devel
|
|
BuildRequires: ghc-containers-devel
|
|
BuildRequires: ghc-deepseq-devel
|
|
BuildRequires: ghc-exceptions-devel
|
|
BuildRequires: ghc-filepath-devel
|
|
BuildRequires: ghc-lens-devel
|
|
BuildRequires: ghc-network-devel
|
|
BuildRequires: ghc-parsec-devel
|
|
BuildRequires: ghc-random-devel
|
|
BuildRequires: ghc-rpm-macros
|
|
BuildRequires: ghc-split-devel
|
|
BuildRequires: ghc-template-haskell-devel
|
|
BuildRequires: ghc-text-devel
|
|
BuildRequires: ghc-th-lift-devel
|
|
BuildRequires: ghc-transformers-devel
|
|
BuildRequires: ghc-unix-devel
|
|
BuildRequires: ghc-vector-devel
|
|
BuildRequires: ghc-xml-conduit-devel
|
|
BuildRequires: ghc-xml-types-devel
|
|
ExcludeArch: %{ix86}
|
|
%if %{with tests}
|
|
BuildRequires: ghc-QuickCheck-devel
|
|
BuildRequires: ghc-directory-devel
|
|
BuildRequires: ghc-extra-devel
|
|
BuildRequires: ghc-process-devel
|
|
BuildRequires: ghc-resourcet-devel
|
|
BuildRequires: ghc-tasty-devel
|
|
BuildRequires: ghc-tasty-hunit-devel
|
|
BuildRequires: ghc-tasty-quickcheck-devel
|
|
%endif
|
|
|
|
%description
|
|
D-Bus is a simple, message-based protocol for inter-process communication,
|
|
which allows applications to interact with other parts of the machine and the
|
|
user's session using remote procedure calls.
|
|
|
|
D-Bus is a essential part of the modern Linux desktop, where it replaces
|
|
earlier protocols such as CORBA and DCOP.
|
|
|
|
This library is an implementation of the D-Bus protocol in Haskell. It can be
|
|
used to add D-Bus support to Haskell applications, without the awkward
|
|
interfaces common to foreign bindings.
|
|
|
|
Example: connect to the session bus, and get a list of active names.
|
|
|
|
' {-# LANGUAGE OverloadedStrings #-}
|
|
|
|
import Data.List (sort) import DBus import DBus.Client
|
|
|
|
main = do   client <- connectSession     -- Request a list of
|
|
connected clients from the bus   reply <- call_ client (methodCall
|
|
"/org/freedesktop/DBus" "org.freedesktop.DBus" "ListNames")   {
|
|
methodCallDestination = Just "org.freedesktop.DBus"   }    
|
|
-- org.freedesktop.DBus.ListNames() returns a single value, which is   --
|
|
a list of names (here represented as [String])   let Just names =
|
|
fromVariant (methodReturnBody reply !! 0)     -- Print each name on a
|
|
line, sorted so reserved names are below   -- temporary names.
|
|
  mapM_ putStrLn (sort names) '
|
|
|
|
>$ ghc --make list-names.hs >$ ./list-names >:1.0 >:1.1 >:1.10 >:1.106 >:1.109
|
|
>:1.110 >ca.desrt.dconf >org.freedesktop.DBus >org.freedesktop.Notifications
|
|
>org.freedesktop.secrets >org.gnome.ScreenSaver.
|
|
|
|
%package devel
|
|
Summary: Haskell %{pkg_name} library development files
|
|
Requires: %{name} = %{version}-%{release}
|
|
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
|
|
%autosetup -n %{pkg_name}-%{version}
|
|
|
|
%build
|
|
%ghc_lib_build
|
|
|
|
%install
|
|
%ghc_lib_install
|
|
|
|
%check
|
|
%cabal_test
|
|
|
|
%post devel
|
|
%ghc_pkg_recache
|
|
|
|
%postun devel
|
|
%ghc_pkg_recache
|
|
|
|
%files -f %{name}.files
|
|
%license license.txt
|
|
|
|
%files devel -f %{name}-devel.files
|
|
%doc examples
|
|
|
|
%changelog
|