Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id E60F61A9217 for ; Fri, 27 Nov 2020 19:52:15 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 34D9B84DDF; Fri, 27 Nov 2020 19:52:15 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 7084D84DD3 for ; Fri, 27 Nov 2020 19:52:14 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id PiCgOyZwtQB2 for ; Fri, 27 Nov 2020 19:52:14 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id E5EA284DB2 for ; Fri, 27 Nov 2020 19:52:13 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 82ACAFA9D; Fri, 27 Nov 2020 19:52:11 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_160650673166990" MIME-Version: 1.0 Date: Fri, 27 Nov 2020 19:52:11 +0000 From: "Amitai Schleier" Subject: CVS commit: pkgsrc/security/bearssl To: pkgsrc-changes@NetBSD.org Reply-To: schmonz@netbsd.org X-Mailer: log_accum Message-Id: <20201127195211.82ACAFA9D@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_160650673166990 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: schmonz Date: Fri Nov 27 19:52:11 UTC 2020 Modified Files: pkgsrc/security/bearssl: Makefile PLIST Log Message: Quell packaging warning by installing the shlib with ${INSTALL_LIB}. To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 pkgsrc/security/bearssl/Makefile cvs rdiff -u -r1.4 -r1.5 pkgsrc/security/bearssl/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_160650673166990 Content-Disposition: inline Content-Length: 2050 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/bearssl/Makefile diff -u pkgsrc/security/bearssl/Makefile:1.8 pkgsrc/security/bearssl/Makefile:1.9 --- pkgsrc/security/bearssl/Makefile:1.8 Mon Nov 16 07:43:25 2020 +++ pkgsrc/security/bearssl/Makefile Fri Nov 27 19:52:11 2020 @@ -1,18 +1,23 @@ -# $NetBSD: Makefile,v 1.8 2020/11/16 07:43:25 schmonz Exp $ +# $NetBSD: Makefile,v 1.9 2020/11/27 19:52:11 schmonz Exp $ -DISTNAME= bearssl-0.6 -PKGREVISION= 1 -CATEGORIES= security -MASTER_SITES= ${HOMEPAGE} - -MAINTAINER= pkgsrc-users@NetBSD.org -HOMEPAGE= https://bearssl.org/ -COMMENT= Implementation of the SSL/TLS protocol (RFC 5246) -LICENSE= mit +DISTNAME= bearssl-0.6 +PKGREVISION= 1 +CATEGORIES= security +MASTER_SITES= ${HOMEPAGE} + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= https://bearssl.org/ +COMMENT= Implementation of the SSL/TLS protocol (RFC 5246) +LICENSE= mit INSTALLATION_DIRS= bin include lib -LDFLAGS.SunOS+= -lsocket -lnsl +LDFLAGS.SunOS+= -lsocket -lnsl + +OPSYSVARS+= SOEXT +SOEXT.Darwin= dylib +SOEXT.*= so +PLIST_SUBST+= SOEXT=${SOEXT} pre-build: ${MKDIR} ${WRKSRC}/build/obj @@ -23,7 +28,8 @@ do-install: cd ${WRKSRC}/inc && \ ${INSTALL_DATA} *.h ${DESTDIR}${PREFIX}/include cd ${WRKSRC}/build && \ - ${INSTALL_DATA} libbearssl.* ${DESTDIR}${PREFIX}/lib + ${INSTALL_DATA} libbearssl.a ${DESTDIR}${PREFIX}/lib && \ + ${INSTALL_LIB} libbearssl.${SOEXT} ${DESTDIR}${PREFIX}/lib do-test: cd ${WRKSRC} && \ Index: pkgsrc/security/bearssl/PLIST diff -u pkgsrc/security/bearssl/PLIST:1.4 pkgsrc/security/bearssl/PLIST:1.5 --- pkgsrc/security/bearssl/PLIST:1.4 Mon Nov 16 07:43:25 2020 +++ pkgsrc/security/bearssl/PLIST Fri Nov 27 19:52:11 2020 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.4 2020/11/16 07:43:25 schmonz Exp $ +@comment $NetBSD: PLIST,v 1.5 2020/11/27 19:52:11 schmonz Exp $ bin/brssl include/bearssl.h include/bearssl_aead.h @@ -14,4 +14,4 @@ include/bearssl_rsa.h include/bearssl_ssl.h include/bearssl_x509.h lib/libbearssl.a -lib/libbearssl.so +lib/libbearssl.${SOEXT} --_----------=_160650673166990--