16 Commits

Author SHA256 Message Date
4df92add73 Accepting request 1154443 from home:AndreasStieger:branches:multimedia:libs
liblo 0.32

OBS-URL: https://build.opensuse.org/request/show/1154443
OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/liblo?expand=0&rev=25
2024-03-06 09:19:41 +00:00
9297b41525 Accepting request 828320 from home:dirkmueller:branches:multimedia:libs
- update to 0.31:
  - oscsend can write to files and stdout.
  - oscdump can write raw output.
  - Fixed parsing bug with } and [a-] patterns.
  - Support for // mattern matching operator.
  - Support for double-ENDed SLIP packets.
  - Assertions in C++ header and optional use of exceptions.
  - Fixed improper use of va_end.
  - Fix a clang compilation error.
  - Compatibility with ESP32 embedded platform.

OBS-URL: https://build.opensuse.org/request/show/828320
OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/liblo?expand=0&rev=23
2020-08-21 13:42:50 +00:00
Tomáš Chvátal
501715c0a8 Accepting request 706939 from home:jengelh:branches:multimedia:libs
- Use noun phrase in descriptions. Kill off historic boilerplate
  descriptions.
- Ensure neutrality of descriptions.
- Remove --with-pic which is useless when --disable-static is used.

OBS-URL: https://build.opensuse.org/request/show/706939
OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/liblo?expand=0&rev=21
2019-06-03 08:00:35 +00:00
Tomáš Chvátal
984d61d49f Accepting request 703655 from home:alois:branches:multimedia:libs
- Update to version 0.30
  * Functions to wait and receive on multiple servers
    (lo_servers_wait and lo_servers_recv_noblock)
  * Improvements to the CMake build system.
  * Remove premake4 files and rely on CMake for building on
    Windows.
  * Fix memory leak in lo_server_recv_raw_stream.
  * C++ wrapper: Fix memory leak on string allocation.
  version 0.29:
  * Several fixes for C++ headers
  * Addition of function to remove methods by lo_method
    identifier (lo_server_del_lo_method)
  * Addition of a secondary CMake-based build system
  * Fix a bug in SLIP decoder
  * Support run-time specification of maximum message size
  * Remove limit on outgoing TCP message size
  * Make oscdump use unbuffered output by default
  * Add timetags to oscdump output
  * Add a utility to play back oscdump output
- Spec cleanup

OBS-URL: https://build.opensuse.org/request/show/703655
OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/liblo?expand=0&rev=20
2019-05-20 07:45:40 +00:00
Ismail Dönmez
f56d9a6e9a Accepting request 316626 from home:pluskalm:branches:multimedia:libs
- Use url for source
- Explictitly depend on autoconf/automake
- Cleanup spec file with spec-clener

OBS-URL: https://build.opensuse.org/request/show/316626
OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/liblo?expand=0&rev=18
2015-07-14 13:03:22 +00:00
783fe4facf Accepting request 285775 from home:olh:branches:multimedia:libs
- Run autoreconf only with autoconf >= 2.69

OBS-URL: https://build.opensuse.org/request/show/285775
OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/liblo?expand=0&rev=16
2015-02-16 17:55:42 +00:00
Ismail Dönmez
1cee6b95d9 - Add baselibs.conf to spec file
OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/liblo?expand=0&rev=14
2014-08-25 09:22:26 +00:00
Ismail Dönmez
4bb6aabf8a Accepting request 246183 from home:tiwai:branches:multimedia:libs
- Update to version 0.27
  * Support for sending and receiving nested bundles, including
    ref-counted memory handling for bundled messages.
  * Support for multicast in oscdump and oscsend tools.
  * Callbacks for bundle handling.
  * Select desired network interface for multicast.
  * Fix blocking semantics of lo_server_wait() / lo_server_recv().
  * Make inclusion of threading-related code optional.
  * Basic compilation script for Android.
  * Allow to optionally disable server dispatch queueing at runtime.
    (In this case messages are dispatched immediately even if they are
    timestamped for later.)
  * Support bidirectional use of TCP ports using lo_send_from().
  * Add SLIP protocol support for packetization when sending and
    receiving with TCP.
  * Allow to enable the TCP_NODELAY flag on TCP sockets.
  * Support for specifying server parameters via URL string, and also
    support for URL strings in the oscsend and oscdump tools.
  * As a result of the above, support for TCP and Unix sockets in the
    oscsend and oscdump tools.
- Update to version 0.28
  * Fixed build for Windows (MingW, MSVC) and Android platforms
  * Fixed an implicit cast issue in C++ bindings for lo::ServerThread
  * Documentation, small fixes
  * Added a function to get library version information (lo_version)

OBS-URL: https://build.opensuse.org/request/show/246183
OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/liblo?expand=0&rev=13
2014-08-25 09:18:12 +00:00
Cristian Rodríguez
e7cd252164 Accepting request 235614 from home:elvigia:branches:multimedia:libs
- disable timestamps in doxygen, make build-compare happy.

OBS-URL: https://build.opensuse.org/request/show/235614
OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/liblo?expand=0&rev=11
2014-05-28 16:23:45 +00:00
Ismail Dönmez
a30369a494 Accepting request 200190 from home:kwk:branches:multimedia:libs
- Update to version 0.26
  - Change license to LGPL 2.1 or later.
  - Change in .so version, rename to liblo7
  - Add return codes to all functions that may fail.
  - Fix memory leaks in lo_address_new_from_url(), dispatch_method(),
    lo_url_get_path()
  - Move lo_arg_size(), lo_get_path(), lo_arg_host/network_endian() back
    to lo_lowlevel.h.
  - Expose the lo_server_dispatch_data() function as public, making it
    possible to react to messages contained in an arbitrary block of
    memory.  (i.e., allows use with custom transport protocols)
  - Get protocol by ID number.
  - Keep TCP sessions open, and automatically track multiple open
    sessions in a data structure.
  - Allow access to bundle timestamp information.
  - Fix bug in lo_timetag_diff().
  - Change the value of LO_TT_IMMEDIATE to correspond with the OSC
    specification.
  - Enable SO_REUSEPORT when initializing a multicast server.
  - Update the "soname" describing API/ABI compatibility.
  - Update documentation and various bug fixes.
  - Compiles under MSVC, avoiding the use of gcc-isms when not using
    gcc.

OBS-URL: https://build.opensuse.org/request/show/200190
OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/liblo?expand=0&rev=9
2013-09-23 15:38:13 +00:00
Ismail Dönmez
fd61f75cc0 Accepting request 196964 from home:jengelh:branches:multimedia:libs
- Implement shlib packaging guidelines: liblo -> liblo0

OBS-URL: https://build.opensuse.org/request/show/196964
OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/liblo?expand=0&rev=7
2013-08-31 13:23:52 +00:00
Ismail Dönmez
69080867bb Accepting request 92537 from home:coolo:removelibtool
- add libtool as buildrequire to avoid implicit dependency

OBS-URL: https://build.opensuse.org/request/show/92537
OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/liblo?expand=0&rev=5
2011-11-19 20:57:13 +00:00
Sascha Peilicke
5f65c090db Accepting request 70807 from multimedia:libs
Added 32bit compatibility libraries. Removed a period at the end of a summary (fix for RPMLINT warning) (forwarded request 69479 from TheBlackCat)

OBS-URL: https://build.opensuse.org/request/show/70807
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/liblo?expand=0&rev=9
2011-05-20 14:29:15 +00:00
OBS User unknown
21593c320d OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/liblo?expand=0&rev=3 2008-09-12 20:21:52 +00:00
OBS User unknown
5e5fa291f2 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/liblo?expand=0&rev=2 2007-03-26 23:42:01 +00:00
OBS User unknown
2005d3c974 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/liblo?expand=0&rev=1 2007-01-15 23:22:20 +00:00