pkgsrc-Changes archive

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

CVS commit: pkgsrc/chat/gloox



Module Name:    pkgsrc
Committed By:   nikita
Date:           Wed May  3 19:51:39 UTC 2023

Modified Files:
        pkgsrc/chat/gloox: Makefile distinfo
Removed Files:
        pkgsrc/chat/gloox/patches: patch-src_dns.cpp
            patch-src_examples_e2ee__client.cpp
            patch-src_examples_e2ee__server.cpp patch-src_examples_ft__recv.cpp

Log Message:
gloox: update to version 1.0.27

Changelog:

v1.0.27 -- 24 Apr 2023
----------------------
Note: This release is not binary compatible with previous releases. It is source
 compatible.

- BookmarkStorage: allow empty bookmark names (as per spec) (fixes #300)
- MUCRoom: added send( message, subject, StanzaExtensionList ) (fixes #301)

v1.0.26 -- 19 Mar 2023
----------------------
- MUCRoom: init m_session (fixes #293)
- TLSOpenSSL: use system certificates for verification (fixes #292)
- ConnectionTCPServer: compilation fix for musl (fixes #291)

v1.0.25 -- 16 Mar 2023
----------------------
- compile fixes for modern compilers
- Tag: expose internal NodeList for optional XHTML-IM rendering without external
 parser; compile with --enable-xhtmlim (fixes #297)
- enabled/fixed support for TLS 1.3

v1.0.24 -- 14 Jul 2020
----------------------
Note: This release is not binary compatible with previous releases. It is source
 compatible.

- Tag: fixed XML namespace for attribute with empty namespace (fixes #278) (than
ks to drizt72)
- PubSub::Event: add simple ctor (thanks to Daniel Kraft)
- PubSub::Manager: fixed subscription error case handling (thanks to Daniel Kraf
t)
- PubSub: fixed support for instant nodes
- RosterManager: fixed behavior if subscription attribute is absent in roster it
em

v1.0.23 -- 08 Dec 2019
----------------------
- fixed a memory leak in dns.cpp (thanks to Daniel Kraft)
- fixed session management/stream resumption (thanks to Michel Vedrine, François
 Ferreira-de-Sousa, Frédéric Rossi)
- MUCRoom::MUCUser: include reason if set
- ClientBase: fix honorThreadID (first noticed by Erik Johansson in 2010)
- TLSGnuTLS: disabled TLS 1.3 for now, as there are connection issues with it

v1.0.22 -- 04 Jan 2019
----------------------
- TLSOpenSSLBase: conditionally compile in TLS compression support only if available in OpenSSL (fixes #276) (thanks to Dominyk Tiller)
- TLSGNUTLS*Anon: fix GnuTLS test by explicitely requesting ANON key exchange algorithms (fixes #279) (thanks to elexis)
- TLSGNUTLSClient: fix server cert validation by adding gnutls_certificate_set_x509_system_trust() (fixes #280) (thanks to elexis)
- DNS: fix compilation on OpenBSD sparc64 (fixes #281) (thanks to Anthony Anjbe)
- Enable getaddrinfo by default (fixes #282) (thanks to Filip Moc)

v1.0.21 -- 12 Jun 2018
----------------------
- InBandBytestream: error handling corrected
- doc fix: CertInfo::date_from/to set correctly when using OpenSSL

v1.0.20 -- 26 Feb 2017
----------------------
Note: This release is not binary compatible with previous releases. It is source compatible.

- BytestreamDataHandler: added callback for acknowledged packets
- ConnectionTCPClient: compile fix for Win32 (broken in 1.0.19)
- ConnectionTCPClient: no-block fix
- use ws2_32.lib instead of ws_32.lib on Win32

v1.0.19 -- 21 Feb 2017
----------------------
Note: This release is not binary compatible with previous releases. It is source compatible.

- ConnectionTCPServer: cleanup
- lots of compile-time warnings removed
- TLSOpenSSL: made it speak TLSv1.1 and 1.2 again (thanks to Nicolas Belouin)
- added Client State Indication (XEP-0352)
- CertInfo struct: fixed protocol version when using OpenSSL
- TLSOpenSSL: fixed compilation with OpenSSL 1.1.0
- Registration: added Resource Constraint error condition (thanks to elexis1987) (#267)
- ConnectionTCP: fixed some blocking (thanks to Marco Ciprietti)

v1.0.18 -- 10 Nov 2016
----------------------
- TLSOpenSSL: fixed wildcard certificate support (#262)
- Pubsub::Event: fixed potential NULL dereference (#257)
- ConnectionTCPServer: fixed listening on local socket
- Adhoc: fixed memory leak (thanks to Erik Horemans)
- documentation fixes (Adhoc::Plugin, StanzaExtension)
- ConnectionTLS: delete old connection in setConnectionImpl() (thanks to Erik Horemans) and clarify this in the documentation
- Tag: Android compilation fix (thanks to Erik Horemans)
- ConnectionSOCKS5Proxy: improved compatibility (thanks to Erik Horemans)
- util: Android compilation fix (thanks to Erik Horemans)
- Client, ClientBase: avoid 'from' attribute when doing resource binding (#265)
- MUCRoom: allow empty message body if extension is present (#264) (thanks to Tom Quackenbush)
- ConnectionBOSH: initialize 'hold' to 1 to improve compatibility (#238)
- ConnectionTCPServer: actually accept incoming connections


To generate a diff of this commit:
cvs rdiff -u -r1.29 -r1.30 pkgsrc/chat/gloox/Makefile
cvs rdiff -u -r1.11 -r1.12 pkgsrc/chat/gloox/distinfo
cvs rdiff -u -r1.2 -r0 pkgsrc/chat/gloox/patches/patch-src_dns.cpp
cvs rdiff -u -r1.1 -r0 \
    pkgsrc/chat/gloox/patches/patch-src_examples_e2ee__client.cpp \
    pkgsrc/chat/gloox/patches/patch-src_examples_e2ee__server.cpp \
    pkgsrc/chat/gloox/patches/patch-src_examples_ft__recv.cpp

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

Modified files:

Index: pkgsrc/chat/gloox/Makefile
diff -u pkgsrc/chat/gloox/Makefile:1.29 pkgsrc/chat/gloox/Makefile:1.30
--- pkgsrc/chat/gloox/Makefile:1.29     Wed Apr 19 08:09:15 2023
+++ pkgsrc/chat/gloox/Makefile  Wed May  3 19:51:38 2023
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.29 2023/04/19 08:09:15 adam Exp $
+# $NetBSD: Makefile,v 1.30 2023/05/03 19:51:38 nikita Exp $
 
-DISTNAME=              gloox-1.0.17
-PKGREVISION=           11
+DISTNAME=              gloox-1.0.27
 CATEGORIES=            chat
 MASTER_SITES=          https://camaya.net/download/
 EXTRACT_SUFX=          .tar.bz2

Index: pkgsrc/chat/gloox/distinfo
diff -u pkgsrc/chat/gloox/distinfo:1.11 pkgsrc/chat/gloox/distinfo:1.12
--- pkgsrc/chat/gloox/distinfo:1.11     Tue Oct 26 10:05:14 2021
+++ pkgsrc/chat/gloox/distinfo  Wed May  3 19:51:38 2023
@@ -1,12 +1,8 @@
-$NetBSD: distinfo,v 1.11 2021/10/26 10:05:14 nia Exp $
+$NetBSD: distinfo,v 1.12 2023/05/03 19:51:38 nikita Exp $
 
-BLAKE2s (gloox-1.0.17.tar.bz2) = 527ab319220070755f4ba948dbca344449e402ebff7e321c064de0d2ad3a550a
-SHA512 (gloox-1.0.17.tar.bz2) = 8595586da391fa23f54eff7c8eb514e7000d3569eac3846edc28da02ec2da409f46013de93dd6d4b5185965675fc22ff2c96f031afa581e2d9243469b1b419f2
-Size (gloox-1.0.17.tar.bz2) = 698239 bytes
+BLAKE2s (gloox-1.0.27.tar.bz2) = 336ee7e0722d9a2514d9b240534b01bf5a42c489e168a7755ae51afafbe3028c
+SHA512 (gloox-1.0.27.tar.bz2) = 873f7a155894c6e48e02bb4f3731f5140db76c0d3e6a3e91389c47cee805be52c54cd2a103e4d868e62069301ffbf2fc48aea0a6128526804536444f28b87006
+Size (gloox-1.0.27.tar.bz2) = 728128 bytes
 SHA1 (patch-configure) = b14cc132665cbcb722589007c36767c0ddfab25f
 SHA1 (patch-src_connectiontcpserver.cpp) = 17ad7a3b1a9ba47153b72e8b924052e3faf3d09f
-SHA1 (patch-src_dns.cpp) = dfc538e9a059b06b6222c3dffe879105701d504c
-SHA1 (patch-src_examples_e2ee__client.cpp) = 3a28030733fca789769c9361fe21b586aebe1370
-SHA1 (patch-src_examples_e2ee__server.cpp) = eb8c22427def85387b9bf88b665feb1315df878f
-SHA1 (patch-src_examples_ft__recv.cpp) = 3a4431f24b9ad933e7829af23ea99bcd4a488abd
 SHA1 (patch-src_util.h) = 225609b219c76fdf1171a326cf40a9c26fde0a80



Home | Main Index | Thread Index | Old Index