[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
19/19: gnu: emacs-zmq: Update to 1.0.0.
From: |
guix-commits |
Subject: |
19/19: gnu: emacs-zmq: Update to 1.0.0. |
Date: |
Sat, 24 Jun 2023 11:43:48 -0400 (EDT) |
ngz pushed a commit to branch master
in repository guix.
commit 42a48a11b7a085c7df74941e0cf48f521c961a7f
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Sat Jun 24 17:39:58 2023 +0200
gnu: emacs-zmq: Update to 1.0.0.
* gnu/packages/emacs-xyz.scm (emacs-zmq): Update to 1.0.0.
[arguments]: Use G-expressions.
---
gnu/packages/emacs-xyz.scm | 41 +++++++++++++++++++++--------------------
1 file changed, 21 insertions(+), 20 deletions(-)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index dc1780c731..27ba88534f 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -8459,7 +8459,7 @@ build jobs.")
(define-public emacs-zmq
(package
(name "emacs-zmq")
- (version "0.10.10")
+ (version "1.0.0")
(source
(origin
(method git-fetch)
@@ -8468,26 +8468,27 @@ build jobs.")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "0ngxm5mm0kqgvn8977ryrngamx0khzlw86d8vz5s0jhm2kgwnqp8"))))
+ (base32 "1bg4c26f8n1jy6z9dr2c9fz79myy9lbb5z67797qp1cbx8k6p3n7"))))
(build-system emacs-build-system)
(arguments
- `(#:tests? #f ; no tests
- #:phases
- (modify-phases %standard-phases
- (add-after 'unpack 'configure
- (lambda _
- (invoke "make" "src/configure")
- (substitute* "src/configure"
- (("/bin/sh") (which "sh"))
- (("/usr/bin/file") (which "file")))
- (invoke "make")))
- (add-after 'install 'install-shared-object
- (lambda* (#:key inputs outputs #:allow-other-keys)
- (let* ((out (assoc-ref outputs "out"))
- (site-lisp (string-append out "/share/emacs/site-lisp"))
- (libdir (string-append site-lisp "/zmq-0.10.10")))
- (copy-file "emacs-zmq.so"
- (string-append libdir "/emacs-zmq.so"))))))))
+ (list
+ #:tests? #f ; no tests
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'configure
+ (lambda _
+ (invoke "make" "src/configure")
+ (substitute* "src/configure"
+ (("/bin/sh") (which "sh"))
+ (("/usr/bin/file") (which "file")))
+ (invoke "make")))
+ (add-after 'install 'install-shared-object
+ (lambda* (#:key inputs outputs #:allow-other-keys)
+ (let* ((out (assoc-ref outputs "out"))
+ (site-lisp (string-append out "/share/emacs/site-lisp"))
+ (libdir (string-append site-lisp "/zmq-" #$version)))
+ (copy-file "emacs-zmq.so"
+ (string-append libdir "/emacs-zmq.so"))))))))
(native-inputs
(list autoconf automake libtool pkg-config))
(inputs
@@ -8495,7 +8496,7 @@ build jobs.")
(home-page "https://github.com/nnicandro/emacs-zmq")
(synopsis "Emacs bindings to ØMQ")
(description "This package provides Emacs bindings to ØMQ.")
- (license (list license:gpl2+ ;zmq.el
+ (license (list license:gpl2+ ;zmq.el
license:gpl3+)))) ;src/emacs-module.h
(define-public emacs-tup-mode
- 04/19: gnu: emacs-autothemer: Update to 0.2.18., (continued)
- 04/19: gnu: emacs-autothemer: Update to 0.2.18., guix-commits, 2023/06/24
- 06/19: gnu: emacs-debbugs: Update to 0.36., guix-commits, 2023/06/24
- 09/19: gnu: emacs-elixir-mode: Update to 2.4.1., guix-commits, 2023/06/24
- 11/19: gnu: emacs-engine-mode: Update to 2.2.4., guix-commits, 2023/06/24
- 12/19: gnu: emacs-evil-matchit: Update to 3.0.1., guix-commits, 2023/06/24
- 13/19: gnu: emacs-keycast: Update to 1.3.2., guix-commits, 2023/06/24
- 16/19: gnu: emacs-nano-modeline: Update to 1.0.1., guix-commits, 2023/06/24
- 15/19: gnu: emacs-logview: Update to 0.16.2., guix-commits, 2023/06/24
- 17/19: gnu: emacs-pdf-tools: Update to 1.1.0., guix-commits, 2023/06/24
- 18/19: gnu: emacs-plz: Update to 0.6., guix-commits, 2023/06/24
- 19/19: gnu: emacs-zmq: Update to 1.0.0.,
guix-commits <=