emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#46770: closed ([PATCH] gnu: Add caf.)


From: GNU bug Tracking System
Subject: bug#46770: closed ([PATCH] gnu: Add caf.)
Date: Thu, 25 Feb 2021 19:44:02 +0000

Your message dated Thu, 25 Feb 2021 14:43:31 -0500
with message-id <YDf940X7HuzURVaG@jasmine.lan>
and subject line Re: [bug#46770] [PATCH] gnu: Add caf.
has caused the debbugs.gnu.org bug report #46770,
regarding [PATCH] gnu: Add caf.
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
46770: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=46770
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] gnu: Add caf. Date: Thu, 25 Feb 2021 09:38:02 -0500
From 3ea6fefe7e48bcf6ea3997faabdcbe415c607479 Mon Sep 17 00:00:00 2001
From: Greg Hogan <code@greghogan.com>
Date: Wed, 24 Feb 2021 14:13:13 +0000
Subject: [PATCH] gnu: Add caf.

* gnu/packages/cpp.scm (caf): New variable.
---
 gnu/packages/cpp.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm
index 685dc02fca..659eb1cdeb 100644
--- a/gnu/packages/cpp.scm
+++ b/gnu/packages/cpp.scm
@@ -954,3 +954,29 @@ conversions to and from strings, iteration and related functionality.")
 feature set with a simple and intuitive interface.")
     (license license:bsd-3)))
+
+(define-public caf
+  (package
+    (name "caf")
+    (version "0.18.0")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/actor-framework/actor-framework")
+                    (commit version)))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "1c3spd6vm1h9qhlk5c4fdwi6nbqx5vwz2zvv6qp0rj1hx6xpq3cx"))))
+    (build-system cmake-build-system)
+    (arguments
+     '(#:configure-flags
+       '("-DCAF_ENABLE_EXAMPLES=OFF")))
+    (inputs
+     `(("openssl" ,openssl)))
+    (synopsis "C++ implementation of the actor model")
+    (description "The C++ Actor Framework (CAF) offers a high-level C++17
+programming environment using the actor model for concurrent, distributed
+computation.")
+    (license license:bsd-3)))
-- 
2.30.1

Attachment: 0001-gnu-Add-caf.patch
Description: Binary data


--- End Message ---
--- Begin Message --- Subject: Re: [bug#46770] [PATCH] gnu: Add caf. Date: Thu, 25 Feb 2021 14:43:31 -0500
On Thu, Feb 25, 2021 at 09:38:02AM -0500, Greg Hogan wrote:
> From 3ea6fefe7e48bcf6ea3997faabdcbe415c607479 Mon Sep 17 00:00:00 2001
> From: Greg Hogan <code@greghogan.com>
> Date: Wed, 24 Feb 2021 14:13:13 +0000
> Subject: [PATCH] gnu: Add caf.
> 
> * gnu/packages/cpp.scm (caf): New variable.

Thanks! Pushed as f16168744e8d5ab30cc77919cc06389c3f4a6abe


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]