guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: guile-simple-zmq: Update to 0.0.0-8.e944617.


From: guix-commits
Subject: branch master updated: gnu: guile-simple-zmq: Update to 0.0.0-8.e944617.
Date: Thu, 25 Feb 2021 05:28:44 -0500

This is an automated email from the git hooks/post-receive script.

mothacehe pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 7330306  gnu: guile-simple-zmq: Update to 0.0.0-8.e944617.
7330306 is described below

commit 73303067c77becb861d8e288bb115149ac6999cd
Author: Mathieu Othacehe <othacehe@gnu.org>
AuthorDate: Thu Feb 25 11:27:33 2021 +0100

    gnu: guile-simple-zmq: Update to 0.0.0-8.e944617.
    
    * gnu/packages/guile-xyz.scm (guile-simple-zmq): Update to 0.0.0-8.e944617.
    [build-system]: Switch to gnu-build-system.
    [arguments]: Remove the set-libzmq-file-name phase.
    [inputs]: Add autoconf, automake and pkg-config.
---
 gnu/packages/guile-xyz.scm | 25 +++++++++++--------------
 1 file changed, 11 insertions(+), 14 deletions(-)

diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm
index ce5aad8..c75fc4b 100644
--- a/gnu/packages/guile-xyz.scm
+++ b/gnu/packages/guile-xyz.scm
@@ -1001,8 +1001,8 @@ convenient nested tree operations.")
     (license license:gpl3+)))
 
 (define-public guile-simple-zmq
-  (let ((commit "c8b1fa09e08e12207cf84023fc3d569936c886d7")
-        (revision "7"))
+  (let ((commit "e9446173280117e98ab4208e2aa5273128650e19")
+        (revision "8"))
     (package
       (name "guile-simple-zmq")
       (version (git-version "0.0.0" revision commit))
@@ -1014,23 +1014,20 @@ convenient nested tree operations.")
                (commit commit)))
          (sha256
           (base32
-           "0ilyviny3c2am20d192cqhq7rsdy3jvbvmvqqg7qv9myrcwqg26y"))
+           "1nhlp5kl1095k1irvv0kgdbc7lp5qki3d3wg9rla6f7822hkmrzw"))
          (file-name (git-file-name name version))))
-      (build-system guile-build-system)
+      (build-system gnu-build-system)
       (arguments
-       `(#:source-directory "src"
-         #:phases (modify-phases %standard-phases
-                    (add-after 'unpack 'set-libzmq-file-name
-                      (lambda* (#:key inputs #:allow-other-keys)
-                        (substitute* "src/simple-zmq.scm"
-                          (("\\(dynamic-link \"libzmq\"\\)")
-                           (format #f "(dynamic-link \"~a/lib/libzmq.so\")"
-                                   (assoc-ref inputs "zeromq"))))
-                        #t)))))
+       '(#:make-flags
+         '("GUILE_AUTO_COMPILE=0"))) ;to prevent guild warnings
+
       (native-inputs
        `(("guile" ,guile-3.0)))
       (inputs
-       `(("zeromq" ,zeromq)))
+       `(("autoconf" ,autoconf)
+         ("automake" ,automake)
+         ("pkg-config" ,pkg-config)
+         ("zeromq" ,zeromq)))
       (home-page "https://github.com/jerry40/guile-simple-zmq";)
       (synopsis "Guile wrapper over ZeroMQ library")
       (description



reply via email to

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