commit 43f391910ce56065e015931692426e3ad24de31d0accd3cfa623e3ed237bf476 Author: Peter Simons Date: Fri Aug 3 01:01:33 2018 +0000 osc copypac from project:devel:languages:haskell:ghc-8.4.x package:ghc-dbus revision:1, using keep-link OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-dbus?expand=0&rev=1 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/dbus-1.0.1.tar.gz b/dbus-1.0.1.tar.gz new file mode 100644 index 0000000..38ec785 --- /dev/null +++ b/dbus-1.0.1.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a325b5c6958a343b30fd378d54ac01f9db889a4d7cadb14b2103da7ef4e7e8f5 +size 77535 diff --git a/ghc-dbus.changes b/ghc-dbus.changes new file mode 100644 index 0000000..00989eb --- /dev/null +++ b/ghc-dbus.changes @@ -0,0 +1,5 @@ +------------------------------------------------------------------- +Thu Aug 2 16:29:51 UTC 2018 - psimons@suse.com + +- Add dbus at version 1.0.1. + diff --git a/ghc-dbus.spec b/ghc-dbus.spec new file mode 100644 index 0000000..8786688 --- /dev/null +++ b/ghc-dbus.spec @@ -0,0 +1,127 @@ +# +# spec file for package ghc-dbus +# +# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. +# +# 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/ +# + + +%global pkg_name dbus +%bcond_with tests +Name: ghc-%{pkg_name} +Version: 1.0.1 +Release: 0 +Summary: A client library for the D-Bus IPC system +License: Apache-2.0 +Group: Development/Libraries/Haskell +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-containers-devel +BuildRequires: ghc-deepseq-devel +BuildRequires: ghc-filepath-devel +BuildRequires: ghc-lens-devel +BuildRequires: ghc-libxml-sax-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-types-devel +%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 +Group: Development/Libraries/Haskell +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 +%setup -q -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