From 41842024943ecb46bcefbd35ea59f2161692d8b4 Mon Sep 17 00:00:00 2001 From: Mark Wright Date: Tue, 15 Nov 2022 14:39:19 +1100 Subject: dev-haskell/dbus: Bump to 1.2.27, patch to allow earlier TH Patch (by me) to allow earlier template-haskell versions. Tests pass with network-sandbox, thanks to eroen for reporting. Fix: dbus depends on nonexistent version of lens #1360, thanks to Hypoon for reporting. Closes: https://github.com/gentoo-haskell/gentoo-haskell/issues/1360 Closes: https://bugs.gentoo.org/575254 Signed-off-by: Mark Wright --- dev-haskell/dbus/Manifest | 1 + dev-haskell/dbus/dbus-1.2.27.ebuild | 51 ++++++++++++++++++++++ .../dbus/files/dbus-1.2.27-template-haskell.patch | 14 ++++++ dev-haskell/dbus/metadata.xml | 18 +++++--- 4 files changed, 77 insertions(+), 7 deletions(-) create mode 100644 dev-haskell/dbus/dbus-1.2.27.ebuild create mode 100644 dev-haskell/dbus/files/dbus-1.2.27-template-haskell.patch (limited to 'dev-haskell') diff --git a/dev-haskell/dbus/Manifest b/dev-haskell/dbus/Manifest index 94a488b3bbbb..5e6f09b72982 100644 --- a/dev-haskell/dbus/Manifest +++ b/dev-haskell/dbus/Manifest @@ -1 +1,2 @@ DIST dbus-1.2.22.tar.gz 78010 BLAKE2B c7189e15e0a9622e707bb50064584bd43141857257baec8e6d59d0cf39428b3b5efa82668ef70fbff218738ba5822b1aaad0c85b5e14bfa3ae4ef237e2458a9d SHA512 81f9fe1420939ebb5b03602ba59dd86656e4443690d8be460684dcb461ff7df1ff4cdf846a5a15ea6193b6f64b08526b27d3e12825a375eecbded3d0a99a59b9 +DIST dbus-1.2.27.tar.gz 78017 BLAKE2B 396739e7e6af0fe1921c9d3857c0650db9532d00a3fd2eda18042d42ce8336631d93d0c0ce75681b695f9e90c7205e38aea7c4f984544460ecab19c7d5090478 SHA512 2c6b87b4a793b555ef617e3f3f89695116180f0e1df2f84ee3da62c819c05c10a78d328644b84c8c9796354ee6dd1c6ad6b0430a1b9a2d7fe112b251d4606e8d diff --git a/dev-haskell/dbus/dbus-1.2.27.ebuild b/dev-haskell/dbus/dbus-1.2.27.ebuild new file mode 100644 index 000000000000..37104d3dc902 --- /dev/null +++ b/dev-haskell/dbus/dbus-1.2.27.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +# ebuild generated by hackport 0.7.1.1.9999 + +CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite" +inherit haskell-cabal + +DESCRIPTION="A client library for the D-Bus IPC system" +HOMEPAGE="https://github.com/rblaze/haskell-dbus#readme" +SRC_URI="https://hackage.haskell.org/package/${P}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86" + +PATCHES=( + "${FILESDIR}/${PN}-1.2.22-disable-integration-tests.patch" + "${FILESDIR}/${PN}-1.2.27-template-haskell.patch" +) + +RDEPEND="=dev-haskell/conduit-1.3.0:=[profile?] =dev-haskell/network-3.1.2.1:=[profile?] =dev-haskell/xml-conduit-1.9.0.0:=[profile?] =dev-lang/ghc-8.10.1:= +" +DEPEND="${RDEPEND} + >=dev-haskell/cabal-3.2.0.0 + test? ( =4.16 && <5" "base >=4 && <5" \ + "template-haskell >= 2.18 && < 2.20" "template-haskell" +} diff --git a/dev-haskell/dbus/files/dbus-1.2.27-template-haskell.patch b/dev-haskell/dbus/files/dbus-1.2.27-template-haskell.patch new file mode 100644 index 000000000000..dab7aaff6aef --- /dev/null +++ b/dev-haskell/dbus/files/dbus-1.2.27-template-haskell.patch @@ -0,0 +1,14 @@ +--- dbus-1.2.27-orig/lib/DBus/Generation.hs 2022-07-13 00:32:15.000000000 +1000 ++++ dbus-1.2.27/lib/DBus/Generation.hs 2022-11-15 11:11:32.291154128 +1100 +@@ -148,7 +148,11 @@ + makeFromVariantApp name = AppE (VarE 'T.fromVariant) $ VarE name + + makeJustPattern :: Name -> Pat ++#if MIN_VERSION_template_haskell(2,18,0) + makeJustPattern name = ConP 'Just [] [VarP name] ++#else ++makeJustPattern name = ConP 'Just [VarP name] ++#endif + + mapOrHead :: + (Num a, Eq a) => a -> (t -> b) -> [t] -> ([b] -> b) -> b diff --git a/dev-haskell/dbus/metadata.xml b/dev-haskell/dbus/metadata.xml index 5063563f544d..4640c75ee040 100644 --- a/dev-haskell/dbus/metadata.xml +++ b/dev-haskell/dbus/metadata.xml @@ -8,23 +8,23 @@ 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. - + @ &#x7b;-\# LANGUAGE OverloadedStrings \#-&#x7d; - + import Data.List (sort) import DBus import DBus.Client - + main = do &#x20; client <- connectSession &#x20; // @@ -41,7 +41,7 @@ &#x20; \-- temporary names. &#x20; mapM_ putStrLn (sort names) @ - + >$ ghc --make list-names.hs >$ ./list-names >:1.0 @@ -56,4 +56,8 @@ >org.freedesktop.secrets >org.gnome.ScreenSaver + + dbus + rblaze/haskell-dbus + -- cgit v1.2.3-65-gdbad