8
0
forked from pool/cppzmq-devel

17 Commits

Author SHA256 Message Date
fe6bd3dbc7 Accepting request 1252500 from devel:libraries:c_c++
OBS-URL: https://build.opensuse.org/request/show/1252500
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/cppzmq-devel?expand=0&rev=5
2025-03-12 19:14:45 +00:00
aff5670de9 cppzmq-devel 4.10.0
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/cppzmq-devel?expand=0&rev=16
2025-03-12 14:21:08 +00:00
3d216697a2 Accepting request 977876 from devel:libraries:c_c++
OBS-URL: https://build.opensuse.org/request/show/977876
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/cppzmq-devel?expand=0&rev=4
2022-05-18 11:13:37 +00:00
a13704b924 Accepting request 975864 from home:cgiboudeaux:branches:devel:libraries:c_c++
- Update to 4.8.1
  * Fix fallback value for ZMQ_DEPRECATED
  * Fix MSYS libzmq discovery
  * Fix handshake event don't need DRAFT API in libzmq v4.3.0 and above
  * Use chrono duration for poll default timeout
  * context_t close no longer uses deprecated function
  * Fix for potential memory leak in monitor_t::check_event
  * Fix conversion warnings
  * Deprecate confusing connected() function
  * Add all draft socket types up to libzmq 4.3.4
  * Add support for socket_ref to multipart_t ctor/send/recv
  * Expose zmq::fd_t
  * Add poller_t::size function

OBS-URL: https://build.opensuse.org/request/show/975864
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/cppzmq-devel?expand=0&rev=14
2022-05-18 06:52:38 +00:00
f7fbb20d24 Accepting request 894927 from devel:libraries:c_c++
OBS-URL: https://build.opensuse.org/request/show/894927
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/cppzmq-devel?expand=0&rev=3
2021-05-22 22:06:09 +00:00
d60223861f Accepting request 892511 from home:frank_kunz:branches:devel:libraries:c_c++
- Update to version 4.7.1
  * Fixes syntax issues with MSVC
  * Add shutdown() for context_t
  * Typesafe context options
  * Typesafe socket options
  * Better C++ standard detection
  * CMake fixes and improvements
  * Multipart message encoding and decoding
  * Fix (unlikely) UB in message_t constructor
  * Improved poll() overloads
  * Require non-null handlers to active_poller
  * Fix socket move assignment bug
  * Deprecate surprising message_t constructor from string literals

OBS-URL: https://build.opensuse.org/request/show/892511
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/cppzmq-devel?expand=0&rev=12
2021-05-22 11:01:45 +00:00
9e80a500c2 Accepting request 805758 from devel:libraries:c_c++
- Update to version 4.6.0
  * New generic algorithms for sending and receiving multipart messages
  * New to_string and to_string_view member functions in message_t
  * Less surprising behaviour when move assigning socket_t and context_t
  * Return types for send and recv moved into zmq namespace
  * Checks for 32/64bit-ness in cppzmqConfigVersion.cmake removed
  * fixed issues when compiling with C++11
  * fixed and improved cmake build (in and out of source builds, libzmq discovery, fallback to pkg-config and more)
  * updated README.md with clear design goals, supported platforms
  * official CI support for Linux, MacOS and Windows
  * unit tests infrastructure
  * test code coverage brought to 77%
  * updated code style (more details in .clang-format)
  * socket_t:
    + added support for draft ZMQ_SERVER and ZMQ_CLIENT sockets
    + added support for draft ZMQ_RADIO and ZMQ_DISH sockets
  * poller_t:
    + poller_t became thin abstraction layer on zmq_poller_*
    + functionality with std::function handlers split and moved to a new active_poller_t in zmq_addon.hpp
    + simpler and safer implementation
    + made non-copyable, but properly movable
    + more consistent and robust error handling
    + event type part of handler definition
    + fixed a segfault issue when modifying poller_t from a handler
    + added empty method indicating presence of registered sockets
  * context_t:
    + added methods for context options: setctxopt(int option_, int optval_) and int getctxopt(int option_)
  * message_t:
    + easier construction from iterable type e.g. std::string, std::array
    + added != and == operators and equals method marked as deprecated

OBS-URL: https://build.opensuse.org/request/show/805758
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/cppzmq-devel?expand=0&rev=2
2020-05-15 21:52:11 +00:00
ef531c4439 re-add copyright header
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/cppzmq-devel?expand=0&rev=10
2020-05-15 08:07:16 +00:00
8e4b277a03 Accepting request 797736 from home:TheBlackCat:branches:devel:languages:python:jupyter
- Update to version 4.6.0
  * New generic algorithms for sending and receiving multipart messages
  * New to_string and to_string_view member functions in message_t
  * Less surprising behaviour when move assigning socket_t and context_t
  * Return types for send and recv moved into zmq namespace
  * Checks for 32/64bit-ness in cppzmqConfigVersion.cmake removed
  * fixed issues when compiling with C++11
  * fixed and improved cmake build (in and out of source builds, libzmq discovery, fallback to pkg-config and more)
  * updated README.md with clear design goals, supported platforms
  * official CI support for Linux, MacOS and Windows
  * unit tests infrastructure
  * test code coverage brought to 77%
  * updated code style (more details in .clang-format)
  * socket_t:
    + added support for draft ZMQ_SERVER and ZMQ_CLIENT sockets
    + added support for draft ZMQ_RADIO and ZMQ_DISH sockets
  * poller_t:
    + poller_t became thin abstraction layer on zmq_poller_*
    + functionality with std::function handlers split and moved to a new active_poller_t in zmq_addon.hpp
    + simpler and safer implementation
    + made non-copyable, but properly movable
    + more consistent and robust error handling
    + event type part of handler definition
    + fixed a segfault issue when modifying poller_t from a handler
    + added empty method indicating presence of registered sockets
  * context_t:
    + added methods for context options: setctxopt(int option_, int optval_) and int getctxopt(int option_)
  * message_t:
    + easier construction from iterable type e.g. std::string, std::array
    + added != and == operators and equals method marked as deprecated
  * multipart_t:
    + added an operator<<(std::ostream) to easily print out multipart_t content
  * monitor_t:
    + build error in constructor #135
    + blocked when used without threads #134
    + move constructor was only partly initialized #130
  * socket::send(): improper EHOSTUNREACH handling #125
  * check for zmq_msg_gets did not properly exclude libzmq 4.0.X #114
  * CMake:
    + export targets to config (requires CMake 3.0+ now) #118 #121
    + pkg-config fallback for libzmq installs via autotools #133
  * peekstr & peektyp: peek into parts of messages #124
  * allow empty handler parameter in zmq::poller_t::add() #119 #120
  * poller_t class based on new libzmq poller API #111

OBS-URL: https://build.opensuse.org/request/show/797736
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/cppzmq-devel?expand=0&rev=9
2020-05-15 07:47:07 +00:00
38062ae0be Accepting request 450039 from devel:libraries:c_c++
fix license. This package is needed for openshot

OBS-URL: https://build.opensuse.org/request/show/450039
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/cppzmq-devel?expand=0&rev=1
2017-05-09 16:00:43 +00:00
b4bf3d6065 try
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/cppzmq-devel?expand=0&rev=7
2017-01-13 13:03:31 +00:00
65fae06c24 fix versino
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/cppzmq-devel?expand=0&rev=6
2017-01-13 13:03:02 +00:00
f67c48d16b go
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/cppzmq-devel?expand=0&rev=5
2017-01-13 12:32:16 +00:00
f40c5eb29d go
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/cppzmq-devel?expand=0&rev=4
2017-01-13 12:29:19 +00:00
2a68e9209f ups
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/cppzmq-devel?expand=0&rev=3
2017-01-13 12:27:34 +00:00
ca9cbd2a11 fix license
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/cppzmq-devel?expand=0&rev=2
2017-01-13 12:22:36 +00:00
c78321d723 Accepting request 449968 from home:adrianSuSE
in the end just a header file ....

OBS-URL: https://build.opensuse.org/request/show/449968
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/cppzmq-devel?expand=0&rev=1
2017-01-13 11:44:31 +00:00