pkgsrc-Changes archive

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

CVS commit: pkgsrc/audio/libshout



Module Name:    pkgsrc
Committed By:   wiz
Date:           Tue May 21 15:49:28 UTC 2019

Modified Files:
        pkgsrc/audio/libshout: Makefile distinfo
        pkgsrc/audio/libshout/patches: patch-src_tls.c

Log Message:
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.


To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 pkgsrc/audio/libshout/Makefile
cvs rdiff -u -r1.9 -r1.10 pkgsrc/audio/libshout/distinfo
cvs rdiff -u -r1.1 -r1.2 pkgsrc/audio/libshout/patches/patch-src_tls.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/audio/libshout/Makefile
diff -u pkgsrc/audio/libshout/Makefile:1.13 pkgsrc/audio/libshout/Makefile:1.14
--- pkgsrc/audio/libshout/Makefile:1.13 Mon Nov 23 09:51:48 2015
+++ pkgsrc/audio/libshout/Makefile      Tue May 21 15:49:27 2019
@@ -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/
 

Index: pkgsrc/audio/libshout/distinfo
diff -u pkgsrc/audio/libshout/distinfo:1.9 pkgsrc/audio/libshout/distinfo:1.10
--- pkgsrc/audio/libshout/distinfo:1.9  Mon Mar  5 09:16:28 2018
+++ pkgsrc/audio/libshout/distinfo      Tue May 21 15:49:27 2019
@@ -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

Index: pkgsrc/audio/libshout/patches/patch-src_tls.c
diff -u pkgsrc/audio/libshout/patches/patch-src_tls.c:1.1 pkgsrc/audio/libshout/patches/patch-src_tls.c:1.2
--- pkgsrc/audio/libshout/patches/patch-src_tls.c:1.1   Mon Mar  5 09:16:28 2018
+++ pkgsrc/audio/libshout/patches/patch-src_tls.c       Tue May 21 15:49:27 2019
@@ -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