pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/audio/libshout libshout: update to 2.4.2.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/a5b76c83ba31
branches:  trunk
changeset: 334229:a5b76c83ba31
user:      wiz <wiz%pkgsrc.org@localhost>
date:      Tue May 21 15:49:27 2019 +0000

description:
libshout: update to 2.4.2.

libshout 2.4.2 (20190429)

* Fixed handling of invalid characters in strings:
  * Correctly escape mountpoint names (#2233),
  * Correctly escape mountpoint names and passwords in deprecated metadata API (#2304),
  * Do not allow ICE headers with invalid characters (#2302).
* Fixed and updated build system.
* Allow building libshout on Android.
* Rewrote TLS handling code and statemachine (#2244, #2298, #2301, #2303).
* Support OPTIONS for RFC 2817 TLS mode.
* Allow manual inspection of server's TLS certificate.
* Updated documentation.

diffstat:

 audio/libshout/Makefile                |   4 ++--
 audio/libshout/distinfo                |  12 ++++++------
 audio/libshout/patches/patch-src_tls.c |  20 ++++++++++----------
 3 files changed, 18 insertions(+), 18 deletions(-)

diffs (61 lines):

diff -r 9b96c3b76e0d -r a5b76c83ba31 audio/libshout/Makefile
--- a/audio/libshout/Makefile   Tue May 21 14:48:46 2019 +0000
+++ b/audio/libshout/Makefile   Tue May 21 15:49:27 2019 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.13 2015/11/23 09:51:48 wiz Exp $
+# $NetBSD: Makefile,v 1.14 2019/05/21 15:49:27 wiz Exp $
 
-DISTNAME=      libshout-2.4.1
+DISTNAME=      libshout-2.4.2
 CATEGORIES=    audio
 MASTER_SITES=  http://downloads.xiph.org/releases/libshout/
 
diff -r 9b96c3b76e0d -r a5b76c83ba31 audio/libshout/distinfo
--- a/audio/libshout/distinfo   Tue May 21 14:48:46 2019 +0000
+++ b/audio/libshout/distinfo   Tue May 21 15:49:27 2019 +0000
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.9 2018/03/05 09:16:28 kamil Exp $
+$NetBSD: distinfo,v 1.10 2019/05/21 15:49:27 wiz Exp $
 
-SHA1 (libshout-2.4.1.tar.gz) = cca5606f38e84a4c46223796b06cf7483abaa32f
-RMD160 (libshout-2.4.1.tar.gz) = 4dc076d0d12161202110b4fd53954314db5e6ebf
-SHA512 (libshout-2.4.1.tar.gz) = 4d4b958947e020de3330d49d39d59220fc89315f25f653a7456b9aa24ca9566fca30bb3d65e6348e79958656096b6b864ea8885157d24e55c8d84d6604670219
-Size (libshout-2.4.1.tar.gz) = 516161 bytes
-SHA1 (patch-src_tls.c) = 09e5ce5f0dc7c5a3581fe98b7245ea51daced303
+SHA1 (libshout-2.4.2.tar.gz) = 01802fa4be4dce62dd65fe194077aa631a4711d5
+RMD160 (libshout-2.4.2.tar.gz) = ccb54fcba52e9a3fb77ddd0ac814ec039ffb3783
+SHA512 (libshout-2.4.2.tar.gz) = ae4b042009887de22d105eb8238f4362f6ff51bd645fd51b5a87c4b5e3f5fdc99e9f99f85c24ae2e9d23eab92b854a7e733bf9f8cc61a8362ce984f02a014e93
+Size (libshout-2.4.2.tar.gz) = 519249 bytes
+SHA1 (patch-src_tls.c) = 5754acdea0f685cc8dd4fd02ab4b30b0b5ff7112
diff -r 9b96c3b76e0d -r a5b76c83ba31 audio/libshout/patches/patch-src_tls.c
--- a/audio/libshout/patches/patch-src_tls.c    Tue May 21 14:48:46 2019 +0000
+++ b/audio/libshout/patches/patch-src_tls.c    Tue May 21 15:49:27 2019 +0000
@@ -1,18 +1,18 @@
-$NetBSD: patch-src_tls.c,v 1.1 2018/03/05 09:16:28 kamil Exp $
+$NetBSD: patch-src_tls.c,v 1.2 2019/05/21 15:49:27 wiz Exp $
 
-Support OpenSSL 1.1
+Fix build with OpenSSL-1.1.
 
---- src/tls.c.orig     2015-06-18 04:27:45.000000000 +0000
+--- src/tls.c.orig     2019-04-29 10:00:11.000000000 +0000
 +++ src/tls.c
-@@ -65,7 +65,11 @@ static inline int tls_setup(shout_tls_t 
+@@ -90,7 +90,11 @@ static inline int tls_setup(shout_tls_t 
  
-       SSL_library_init();
-       SSL_load_error_strings();
+     SSL_library_init();
+     SSL_load_error_strings();
 +#if OPENSSL_VERSION_NUMBER >= 0x10100000
-+      OpenSSL_add_all_algorithms();
++    OpenSSL_add_all_algorithms();
 +#else
-       SSLeay_add_all_algorithms();
+     SSLeay_add_all_algorithms();
 +#endif
-       SSLeay_add_ssl_algorithms();
+     SSLeay_add_ssl_algorithms();
  
-       meth = TLSv1_client_method();
+     meth = TLSv1_client_method();



Home | Main Index | Thread Index | Old Index