From owner-svn-ports-head@freebsd.org Sat Dec 7 21:30:19 2019 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id D3B451CD3EC; Sat, 7 Dec 2019 21:30:19 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47VjKl5KrFz4FVg; Sat, 7 Dec 2019 21:30:19 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9A3E31FDEB; Sat, 7 Dec 2019 21:30:19 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xB7LUJAK067478; Sat, 7 Dec 2019 21:30:19 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xB7LUJEv067475; Sat, 7 Dec 2019 21:30:19 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <201912072130.xB7LUJEv067475@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Sat, 7 Dec 2019 21:30:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r519242 - head/security/libssh X-SVN-Group: ports-head X-SVN-Commit-Author: tcberner X-SVN-Commit-Paths: head/security/libssh X-SVN-Commit-Revision: 519242 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 Dec 2019 21:30:19 -0000 Author: tcberner Date: Sat Dec 7 21:30:18 2019 New Revision: 519242 URL: https://svnweb.freebsd.org/changeset/ports/519242 Log: security/libssh: Update to 0.9.2 PR: 241761 Submitted by: Lorenzo Salvadore (maintainer) Modified: head/security/libssh/Makefile head/security/libssh/distinfo head/security/libssh/pkg-plist Modified: head/security/libssh/Makefile ============================================================================== --- head/security/libssh/Makefile Sat Dec 7 21:28:10 2019 (r519241) +++ head/security/libssh/Makefile Sat Dec 7 21:30:18 2019 (r519242) @@ -2,9 +2,9 @@ # $FreeBSD$ PORTNAME= libssh -DISTVERSION= 0.8.6 +DISTVERSION= 0.9.2 CATEGORIES= security devel -MASTER_SITES= https://www.libssh.org/files/0.8/ +MASTER_SITES= https://www.libssh.org/files/0.9/ MAINTAINER= phascolarctos@protonmail.ch COMMENT= Library implementing the SSH2 protocol @@ -15,21 +15,21 @@ LICENSE_FILE= ${WRKSRC}/COPYING USES= cmake cpe tar:xz USE_LDCONFIG= yes -CMAKE_ARGS= -DWITH_EXAMPLES:BOOL=OFF \ - -DWITH_TESTING:BOOL=OFF \ - -DWITH_ZLIB:BOOL=ON +CMAKE_OFF= WITH_EXAMPLES -OPTIONS_DEFINE= GSSAPI STATIC +OPTIONS_DEFINE= GSSAPI STATIC ZLIB OPTIONS_RADIO= CRYPTO OPTIONS_RADIO_CRYPTO= GCRYPT OPENSSL -OPTIONS_DEFAULT= GSSAPI OPENSSL STATIC +OPTIONS_DEFAULT= GSSAPI OPENSSL STATIC ZLIB OPTIONS_SUB= yes -GCRYPT_LIB_DEPENDS= libgcrypt.so:security/libgcrypt +GCRYPT_LIB_DEPENDS= libgcrypt.so:security/libgcrypt \ + libgpg-error.so:security/libgpg-error GCRYPT_CMAKE_BOOL= WITH_GCRYPT GSSAPI_CMAKE_BOOL= WITH_GSSAPI OPENSSL_USES= ssl -STATIC_CMAKE_BOOL= WITH_STATIC_LIB +STATIC_CMAKE_BOOL= BUILD_STATIC_LIB +ZLIB_CMAKE_BOOL= WITH_ZLIB post-patch: ${RM} ${PATCH_WRKSRC}/cmake/Modules/UseDoxygen.cmake @@ -37,9 +37,8 @@ post-patch: -e 's|LIB_INSTALL_DIR}|CMAKE_INSTALL_PREFIX}/libdata|' \ -e 's|CMAKE_INSTALL_DIR}|CMAKE_INSTALL_DIR}/libssh|' \ ${WRKSRC}/CMakeLists.txt -# ${REINPLACE_CMD} -e 's|-lssh_threads|-lssh_threads -lpthread|' \ -# ${WRKSRC}/libssh_threads.pc.cmake - ${REINPLACE_CMD} -e 's| -pedantic-errors||' \ - ${WRKSRC}/cmake/Modules/DefineCompilerFlags.cmake + +post-install-STATIC-on: + ${INSTALL_DATA} ${CONFIGURE_WRKSRC}/src/libssh.a ${STAGEDIR}${PREFIX}/lib/ .include Modified: head/security/libssh/distinfo ============================================================================== --- head/security/libssh/distinfo Sat Dec 7 21:28:10 2019 (r519241) +++ head/security/libssh/distinfo Sat Dec 7 21:30:18 2019 (r519242) @@ -1,3 +1,3 @@ -TIMESTAMP = 1548450366 -SHA256 (libssh-0.8.6.tar.xz) = 1046b95632a07fc00b1ea70ee683072d0c8a23f544f4535440b727812002fd01 -SIZE (libssh-0.8.6.tar.xz) = 433680 +TIMESTAMP = 1573566147 +SHA256 (libssh-0.9.2.tar.xz) = 1970a8991374fc8cbdcb7fcc3683fe8f8824aa37d575f38cfb75fe0fe50fd9ad +SIZE (libssh-0.9.2.tar.xz) = 495876 Modified: head/security/libssh/pkg-plist ============================================================================== --- head/security/libssh/pkg-plist Sat Dec 7 21:28:10 2019 (r519241) +++ head/security/libssh/pkg-plist Sat Dec 7 21:30:18 2019 (r519242) @@ -5,10 +5,11 @@ include/libssh/libsshpp.hpp include/libssh/server.h include/libssh/sftp.h include/libssh/ssh2.h -lib/cmake/libssh/libssh/libssh-config.cmake -lib/cmake/libssh/libssh/libssh-config-version.cmake +lib/cmake/libssh/libssh-config-release.cmake +lib/cmake/libssh/libssh-config.cmake +lib/cmake/libssh/libssh-config-version.cmake %%STATIC%%lib/libssh.a lib/libssh.so lib/libssh.so.4 -lib/libssh.so.4.7.3 +lib/libssh.so.4.8.3 libdata/pkgconfig/libssh.pc