From owner-svn-ports-all@freebsd.org Wed Apr 22 14:43:21 2020 Return-Path: Delivered-To: svn-ports-all@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 B071E2B6A39; Wed, 22 Apr 2020 14:43:21 +0000 (UTC) (envelope-from sunpoet@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 496jpx4DDCz4L7k; Wed, 22 Apr 2020 14:43:21 +0000 (UTC) (envelope-from sunpoet@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 8C2241C5A9; Wed, 22 Apr 2020 14:43:21 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 03MEhLcJ018654; Wed, 22 Apr 2020 14:43:21 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 03MEhKha018651; Wed, 22 Apr 2020 14:43:20 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <202004221443.03MEhKha018651@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 22 Apr 2020 14:43:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r532479 - branches/2020Q2/security/libntlm X-SVN-Group: ports-branches X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: branches/2020Q2/security/libntlm X-SVN-Commit-Revision: 532479 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Apr 2020 14:43:21 -0000 Author: sunpoet Date: Wed Apr 22 14:43:20 2020 New Revision: 532479 URL: https://svnweb.freebsd.org/changeset/ports/532479 Log: MFH: r532305 Update to 1.6 - Update MASTER_SITES - Remove DOCS option - Update WWW Changes: https://gitlab.com/jas/libntlm/-/blob/master/NEWS Security: 0f798bd6-8325-11ea-9a78-08002728f74c Approved by: ports-secteam (joneum) Modified: branches/2020Q2/security/libntlm/Makefile branches/2020Q2/security/libntlm/distinfo branches/2020Q2/security/libntlm/pkg-descr branches/2020Q2/security/libntlm/pkg-plist Directory Properties: branches/2020Q2/ (props changed) Modified: branches/2020Q2/security/libntlm/Makefile ============================================================================== --- branches/2020Q2/security/libntlm/Makefile Wed Apr 22 14:25:51 2020 (r532478) +++ branches/2020Q2/security/libntlm/Makefile Wed Apr 22 14:43:20 2020 (r532479) @@ -2,9 +2,9 @@ # $FreeBSD$ PORTNAME= libntlm -PORTVERSION= 1.5 +PORTVERSION= 1.6 CATEGORIES= security -MASTER_SITES= http://www.nongnu.org/libntlm/releases/ +MASTER_SITES= https://www.nongnu.org/libntlm/releases/ MAINTAINER= sunpoet@FreeBSD.org COMMENT= Library that implement Microsoft's NTLM authentication @@ -12,16 +12,9 @@ COMMENT= Library that implement Microsoft's NTLM authe LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/COPYING -USES= pathfix pkgconfig libtool +USES= libtool pathfix pkgconfig + GNU_CONFIGURE= yes USE_LDCONFIG= yes - -PORTDOCS= AUTHORS ChangeLog NEWS README THANKS - -OPTIONS_DEFINE= DOCS - -post-install-DOCS-on: - @${MKDIR} ${STAGEDIR}${DOCSDIR} - ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} .include Modified: branches/2020Q2/security/libntlm/distinfo ============================================================================== --- branches/2020Q2/security/libntlm/distinfo Wed Apr 22 14:25:51 2020 (r532478) +++ branches/2020Q2/security/libntlm/distinfo Wed Apr 22 14:43:20 2020 (r532479) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536654715 -SHA256 (libntlm-1.5.tar.gz) = 53d799f696a93b01fe877ccdef2326ed990c0b9f66e380bceaf7bd9cdcd99bbd -SIZE (libntlm-1.5.tar.gz) = 658935 +TIMESTAMP = 1587445358 +SHA256 (libntlm-1.6.tar.gz) = f2376b87b06d8755aa3498bb1226083fdb1d2cf4460c3982b05a9aa0b51d6821 +SIZE (libntlm-1.6.tar.gz) = 688608 Modified: branches/2020Q2/security/libntlm/pkg-descr ============================================================================== --- branches/2020Q2/security/libntlm/pkg-descr Wed Apr 22 14:25:51 2020 (r532478) +++ branches/2020Q2/security/libntlm/pkg-descr Wed Apr 22 14:43:20 2020 (r532479) @@ -1,3 +1,3 @@ Libntlm is a library that implement Microsoft's NTLM authentication. -WWW: http://www.nongnu.org/libntlm/ +WWW: https://www.nongnu.org/libntlm/ Modified: branches/2020Q2/security/libntlm/pkg-plist ============================================================================== --- branches/2020Q2/security/libntlm/pkg-plist Wed Apr 22 14:25:51 2020 (r532478) +++ branches/2020Q2/security/libntlm/pkg-plist Wed Apr 22 14:43:20 2020 (r532479) @@ -2,5 +2,5 @@ include/ntlm.h lib/libntlm.a lib/libntlm.so lib/libntlm.so.0 -lib/libntlm.so.0.0.20 +lib/libntlm.so.0.0.21 libdata/pkgconfig/libntlm.pc