me
/
guix
Archived
1
0
Fork 0

gnu: msgpack: Deprecate with msgpack-c.

* gnu/packages/serialization.scm (msgpack-c): New variable.
(msgpack-cxx): New variable.
(msgpack): Rename to...
(msgpack-3): ... this, and inherit from msgpack-c.
* gnu/packages/vim.scm (eovim) [arguments]: Add help-cmake-find-msgpack-c
phase.
[inputs]: Replace msgpack with msgpack-c.
* gnu/packages/terminals.scm (tmate)
[inputs]: Replace msgpack with msgpack-3.
* gnu/packages/networking.scm (opendht)
[propagated-inputs]: Replace msgpack with msgpack-cxx.
* gnu/packages/chemistry.scm (mmtf-cpp) [propagated-inputs]: Likewise.
master
Maxim Cournoyer 2023-08-17 17:29:08 -04:00
parent 504b46cd87
commit edb03ceb60
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
5 changed files with 72 additions and 25 deletions

View File

@ -263,7 +263,7 @@ molecules.")
(arguments '(#:tests? #f)) (arguments '(#:tests? #f))
;; There is no support for modern msgpack versions yet (see: ;; There is no support for modern msgpack versions yet (see:
;; https://github.com/rcsb/mmtf-cpp/issues/44). ;; https://github.com/rcsb/mmtf-cpp/issues/44).
(propagated-inputs (list msgpack)) ;included by mmtf/structure_data.hpp (propagated-inputs (list msgpack-3)) ;included by mmtf/structure_data.hpp
(home-page "https://mmtf.rcsb.org/") (home-page "https://mmtf.rcsb.org/")
(synopsis "C++ API for the Macromolecular Transmission Format") (synopsis "C++ API for the Macromolecular Transmission Format")
(description "This package is a library for the (description "This package is a library for the

View File

@ -3888,7 +3888,7 @@ and targeted primarily for asynchronous processing of HTTP-requests.")
fmt fmt
readline)) readline))
(propagated-inputs (propagated-inputs
(list msgpack ;included in several installed headers (list msgpack-cxx ;included in several installed headers
restinio-0.6 ;included in opendht/http.h restinio-0.6 ;included in opendht/http.h
;; The following are listed in the 'Requires.private' field of ;; The following are listed in the 'Requires.private' field of
;; opendht.pc: ;; opendht.pc:

View File

@ -15,6 +15,7 @@
;;; Copyright © 2023 Alexey Abramov <levenson@mmer.org> ;;; Copyright © 2023 Alexey Abramov <levenson@mmer.org>
;;; Copyright © 2023 Sharlatan Hellseher <sharlatanus@gmail.com> ;;; Copyright © 2023 Sharlatan Hellseher <sharlatanus@gmail.com>
;;; Copyright © 2023 Vinicius Monego <monego@posteo.net> ;;; Copyright © 2023 Vinicius Monego <monego@posteo.net>
;;; Copyright © 2023 Maxim Cournoyer <maxim.cournoyer@gmail.com>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
@ -219,8 +220,60 @@ such as compact binary encodings, XML, or JSON.")
(list doxygen gcc-10 (list doxygen gcc-10
(package-source cereal))))) (package-source cereal)))))
(define-public msgpack (define-public msgpack-c
(package (package
(name "msgpack-c")
(version "6.0.0")
(source
(origin
(method url-fetch)
(uri
(string-append
"https://github.com/msgpack/msgpack-c/releases/download/"
"c-" version "/" name "-" version ".tar.gz"))
(sha256
(base32 "1fmf08babfsjq5qkgw034wk2nw6mayxp1qlkm7h55p2jqvigam1n"))
(snippet
'(let ((p (open-file "msgpack-c.pc.in" "a")))
(display "Requires: zlib\n" p)
(close-output-port p)))))
(build-system cmake-build-system)
(arguments (list #:configure-flags #~(list "-DMSGPACK_BUILD_TESTS=ON")))
(native-inputs (list googletest))
(propagated-inputs (list zlib)) ;zbuffer.h includes zlib.h
(home-page "https://www.msgpack.org")
(synopsis "Binary serialization library")
(description "Msgpack is a library for C that implements binary
serialization.")
(license license:boost1.0)))
(define-public msgpack-cxx
(package
(inherit msgpack-c)
(name "msgpack-cxx")
(version "6.1.0")
(source
(origin
(method url-fetch)
(uri
(string-append
"https://github.com/msgpack/msgpack-c/releases/download/"
"cpp-" version "/" name "-" version ".tar.gz"))
(sha256
(base32 "1rrrf3nskcv994z3pbq6a5z2021piz118rccmm1y7zlf7klygv93"))))
(build-system cmake-build-system)
(propagated-inputs (list boost zlib)) ;included in headers
(description "Msgpack is a library for C++ that implements binary
serialization.")))
;;; The msgpack package was split into msgpack-c and msgpack-cxx starting from
;;; version 4.0.0.
(define-public msgpack
(deprecated-package "msgpack" msgpack-c))
(define-public msgpack-3
(package
(inherit msgpack-c)
(name "msgpack") (name "msgpack")
(version "3.3.0") (version "3.3.0")
(source (source
@ -234,23 +287,13 @@ such as compact binary encodings, XML, or JSON.")
'(let ((p (open-file "msgpack.pc.in" "a"))) '(let ((p (open-file "msgpack.pc.in" "a")))
(display (display
(string-append "Requires: " "zlib" "\n") p) (string-append "Requires: " "zlib" "\n") p)
(close-output-port p) (close-output-port p)))
#t))
(sha256 (sha256
(base32 "0yzhq50ijvwrfkr97knhvn54lj3f4hr3zy39yq8wpf6xll94s4bf")))) (base32 "0yzhq50ijvwrfkr97knhvn54lj3f4hr3zy39yq8wpf6xll94s4bf"))))
(build-system cmake-build-system) (native-inputs (list googletest-1.8))
(native-inputs
(list googletest-1.8 pkg-config))
(propagated-inputs
(list zlib)) ;; Msgpack installs two headers (zbuffer.h,
;; zbuffer.hpp) which #include <zlib.h>. However, 'guix gc --references'
;; does not detect a store reference to zlib since these headers are not
;; compiled.
(home-page "https://www.msgpack.org")
(synopsis "Binary serialization library")
(description "Msgpack is a library for C/C++ that implements binary (description "Msgpack is a library for C/C++ that implements binary
serialization.") serialization. This is the legacy version that predates the split into C and
(license license:boost1.0))) C++ specific packages.")))
(define-public libmpack (define-public libmpack
(package (package

View File

@ -1289,10 +1289,8 @@ that can be displayed terminal.")
(base32 (base32
"0x5c31yq7ansmiy20a0qf59wagba9v3pq97mlkxrqxn4n1gcc6vi")))) "0x5c31yq7ansmiy20a0qf59wagba9v3pq97mlkxrqxn4n1gcc6vi"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(inputs (inputs (list libevent libssh msgpack-3 ncurses))
(list libevent libssh msgpack ncurses)) (native-inputs (list autoconf automake pkg-config))
(native-inputs
(list autoconf automake pkg-config))
(home-page "https://tmate.io/") (home-page "https://tmate.io/")
(synopsis "Terminal sharing application") (synopsis "Terminal sharing application")
(description "tmate is a terminal sharing application that allows you to (description "tmate is a terminal sharing application that allows you to

View File

@ -884,6 +884,14 @@ refactor Vim in order to:
'(#:tests? #false ;no tests '(#:tests? #false ;no tests
#:phases #:phases
(modify-phases %standard-phases (modify-phases %standard-phases
(add-after 'unpack 'help-cmake-find-msgpack-c
(lambda _
;; Patch the build system so that it can find the modern
;; 'msgpack-c' named pkg-config file (see:
;; https://github.com/jeanguyomarch/eovim/issues/73).
(substitute* "cmake/Modules/FindMsgPack.cmake"
(("MSGPACK QUIET msgpack")
"MSGPACK QUIET msgpack-c msgpack"))))
(add-after 'configure 'reference-nvim (add-after 'configure 'reference-nvim
(lambda* (#:key inputs #:allow-other-keys) (lambda* (#:key inputs #:allow-other-keys)
(let ((nvim (search-input-file inputs "/bin/nvim"))) (let ((nvim (search-input-file inputs "/bin/nvim")))
@ -894,10 +902,8 @@ refactor Vim in order to:
(string-append start nvim)))))) (string-append start nvim))))))
(add-before 'build 'set-home (add-before 'build 'set-home
(lambda _ (setenv "HOME" "/tmp")))))) (lambda _ (setenv "HOME" "/tmp"))))))
(native-inputs (native-inputs (list pkg-config))
(list pkg-config)) (inputs (list efl msgpack-c neovim))
(inputs
(list efl msgpack neovim))
(home-page "https://github.com/jeanguyomarch/eovim/") (home-page "https://github.com/jeanguyomarch/eovim/")
(synopsis "EFL GUI for Neovim") (synopsis "EFL GUI for Neovim")
(description "Graphical Neovim interface based on the @acronym{EFL, Enlightenment (description "Graphical Neovim interface based on the @acronym{EFL, Enlightenment