pkgsrc-Changes archive

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

CVS commit: pkgsrc/security/libssh



Module Name:    pkgsrc
Committed By:   tnn
Date:           Sat Apr 15 21:36:14 UTC 2023

Modified Files:
        pkgsrc/security/libssh: Makefile PLIST buildlink3.mk distinfo
Removed Files:
        pkgsrc/security/libssh/patches: patch-CompilerChecks.cmake

Log Message:
libssh: update to 0.10.4

version 0.10.4 (released 2022-09-07)
  * Fixed issues with KDF on big endian
version 0.10.3 (released 2022-09-05)
  * Fixed possible infinite loop in known hosts checking
version 0.10.2 (released 2022-09-02)
  * Fixed tilde expansion when handling include directives
  * Fixed building the shared torture library
  * Made rekey test more robust (fixes running on i586 build systems e.g koji)
version 0.10.1 (released 2022-08-30)
  * Fixed proxycommand support
  * Fixed musl libc support
version 0.10.0 (released 2022-08-26)
  * Added support for OpenSSL 3.0
  * Added support for mbedTLS 3
  * Added support for Smart Cards  (through openssl pkcs11 engine)
  * Added support for chacha20-poly1305%openssh.com@localhost with libgcrypt
  * Added support ed25519 keys in PEM files
  * Added support for sk-ecdsa and sk-ed25519 (server side)
  * Added support for limiting RSA key sizes and not accepting small one by
    default
  * Added support for ssh-agent on Windows
  * Added ssh_userauth_publickey_auto_get_current_identity() API
  * Added ssh_vlog() API
  * Added ssh_send_issue_banner() API
  * Added ssh_session_set_disconnect_message() API
  * Added new configuration options:
    + IdentityAgent
    + ModuliFile
  * Provided X11 client example
  * Disabled DSA support at build time by default (will be removed in the next
    release)
  * Deprecated the SCP API!
  * Deprecated old pubkey, privatekey API
  * Avoided some needless large stack buffers to minimize memory footprint
  * Removed support for OpenSSL < 1.0.1
  * Fixed parsing username@host in login name
  * Free global init mutex in the destructor on Windows
  * Fixed PEM parsing in mbedtls to support both legacy and new PKCS8 formats


To generate a diff of this commit:
cvs rdiff -u -r1.44 -r1.45 pkgsrc/security/libssh/Makefile
cvs rdiff -u -r1.18 -r1.19 pkgsrc/security/libssh/PLIST
cvs rdiff -u -r1.22 -r1.23 pkgsrc/security/libssh/buildlink3.mk
cvs rdiff -u -r1.28 -r1.29 pkgsrc/security/libssh/distinfo
cvs rdiff -u -r1.2 -r0 \
    pkgsrc/security/libssh/patches/patch-CompilerChecks.cmake

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

Modified files:

Index: pkgsrc/security/libssh/Makefile
diff -u pkgsrc/security/libssh/Makefile:1.44 pkgsrc/security/libssh/Makefile:1.45
--- pkgsrc/security/libssh/Makefile:1.44        Tue Jan 24 18:36:32 2023
+++ pkgsrc/security/libssh/Makefile     Sat Apr 15 21:36:14 2023
@@ -1,12 +1,11 @@
-# $NetBSD: Makefile,v 1.44 2023/01/24 18:36:32 wiz Exp $
+# $NetBSD: Makefile,v 1.45 2023/04/15 21:36:14 tnn Exp $
 #
 # history: upstream renamed 0.11 to 0.1.1;
 # we have to use the old-style convention so that version compares work.
 
-VER=           0.9.6
+VER=           0.10.4
 DISTNAME=      libssh-${VER}
-PKGNAME=       libssh-0.96
-PKGREVISION=   3
+PKGNAME=       libssh-0.104
 CATEGORIES=    security
 MASTER_SITES=  https://www.libssh.org/files/${VER:R}/
 EXTRACT_SUFX=  .tar.xz

Index: pkgsrc/security/libssh/PLIST
diff -u pkgsrc/security/libssh/PLIST:1.18 pkgsrc/security/libssh/PLIST:1.19
--- pkgsrc/security/libssh/PLIST:1.18   Mon Aug 30 15:57:11 2021
+++ pkgsrc/security/libssh/PLIST        Sat Apr 15 21:36:14 2023
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.18 2021/08/30 15:57:11 wiz Exp $
+@comment $NetBSD: PLIST,v 1.19 2023/04/15 21:36:14 tnn Exp $
 include/libssh/callbacks.h
 include/libssh/legacy.h
 include/libssh/libssh.h
@@ -12,5 +12,5 @@ lib/cmake/libssh/libssh-config-version.c
 lib/cmake/libssh/libssh-config.cmake
 lib/libssh.so
 lib/libssh.so.4
-lib/libssh.so.4.8.7
+lib/libssh.so.4.9.4
 lib/pkgconfig/libssh.pc

Index: pkgsrc/security/libssh/buildlink3.mk
diff -u pkgsrc/security/libssh/buildlink3.mk:1.22 pkgsrc/security/libssh/buildlink3.mk:1.23
--- pkgsrc/security/libssh/buildlink3.mk:1.22   Sat Jan 29 18:05:30 2022
+++ pkgsrc/security/libssh/buildlink3.mk        Sat Apr 15 21:36:14 2023
@@ -1,4 +1,4 @@
-# $NetBSD: buildlink3.mk,v 1.22 2022/01/29 18:05:30 wiz Exp $
+# $NetBSD: buildlink3.mk,v 1.23 2023/04/15 21:36:14 tnn Exp $
 
 BUILDLINK_TREE+=       libssh
 
@@ -6,7 +6,7 @@ BUILDLINK_TREE+=        libssh
 LIBSSH_BUILDLINK3_MK:=
 
 BUILDLINK_API_DEPENDS.libssh+= libssh>=0.54
-BUILDLINK_ABI_DEPENDS.libssh+= libssh>=0.96nb1
+BUILDLINK_ABI_DEPENDS.libssh+= libssh>=0.104
 BUILDLINK_PKGSRCDIR.libssh?=   ../../security/libssh
 
 pkgbase := libssh

Index: pkgsrc/security/libssh/distinfo
diff -u pkgsrc/security/libssh/distinfo:1.28 pkgsrc/security/libssh/distinfo:1.29
--- pkgsrc/security/libssh/distinfo:1.28        Tue Oct 26 11:17:15 2021
+++ pkgsrc/security/libssh/distinfo     Sat Apr 15 21:36:14 2023
@@ -1,9 +1,8 @@
-$NetBSD: distinfo,v 1.28 2021/10/26 11:17:15 nia Exp $
+$NetBSD: distinfo,v 1.29 2023/04/15 21:36:14 tnn Exp $
 
-BLAKE2s (libssh-0.9.6.tar.xz) = 4b9a7c963614715ffa514dee686cb4867fb8f984058e2ae28386347c15d232cd
-SHA512 (libssh-0.9.6.tar.xz) = 4040ec4af937e95be2e41313ef6d4db60b46b8d4dea10c09402398127c1d1ca8843392d207088aeee3c7ef631c6ae7b66861327dcebf78ed3af0723777619fd1
-Size (libssh-0.9.6.tar.xz) = 1053056 bytes
-SHA1 (patch-CompilerChecks.cmake) = 77b93572006132c557cb9a57698e8455f7874073
+BLAKE2s (libssh-0.10.4.tar.xz) = aebc81f5ff27800f278d1c6246d5d00a5175a9ea0c66311a15e3bfacec905151
+SHA512 (libssh-0.10.4.tar.xz) = 01ee52d480201d9886c15e81137c185334b404d1c8e8b743ddf58e95fe8619c8c013616a49807bd1111fde72fa177cd35f3c22b66cbf5d720b5abfacdf7601ed
+Size (libssh-0.10.4.tar.xz) = 554920 bytes
 SHA1 (patch-examples_sshd__direct-tcpip.c) = 62de8625d58dbc03c38b0eb23f6e7f20a46e91de
 SHA1 (patch-tests_CMakeLists.txt) = 61d9e21d612545766b00f577b3d342eb20a0a9a5
 SHA1 (patch-tests_torture.c) = 2c70e9d827f15ec36a62e0d0f5dd98774f24f79e



Home | Main Index | Thread Index | Old Index