Received: by mail.netbsd.org (Postfix, from userid 605) id CE33384DD0; Wed, 2 Sep 2020 11:45:52 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 5585C84DCD for ; Wed, 2 Sep 2020 11:45:52 +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 Qx-DixWbsOwG for ; Wed, 2 Sep 2020 11:45:51 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id AB72084CF7 for ; Wed, 2 Sep 2020 11:45:51 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 5931DFB28; Wed, 2 Sep 2020 11:45:51 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_159904715116470" MIME-Version: 1.0 Date: Wed, 2 Sep 2020 11:45:51 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/security/libssh To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20200902114551.5931DFB28@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_159904715116470 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Wed Sep 2 11:45:51 UTC 2020 Modified Files: pkgsrc/security/libssh: Makefile Log Message: libssh: Disable building examples They don't get installed and at least one of them doesn't like NetBSD 8. Bump PKGREVISION To generate a diff of this commit: cvs rdiff -u -r1.37 -r1.38 pkgsrc/security/libssh/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_159904715116470 Content-Disposition: inline Content-Length: 914 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/libssh/Makefile diff -u pkgsrc/security/libssh/Makefile:1.37 pkgsrc/security/libssh/Makefile:1.38 --- pkgsrc/security/libssh/Makefile:1.37 Sun Apr 12 21:05:01 2020 +++ pkgsrc/security/libssh/Makefile Wed Sep 2 11:45:51 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.37 2020/04/12 21:05:01 wiz Exp $ +# $NetBSD: Makefile,v 1.38 2020/09/02 11:45:51 nia Exp $ # # history: upstream renamed 0.11 to 0.1.1; # we have to use the old-style convention so that version compares work. @@ -6,6 +6,7 @@ VER= 0.9.4 DISTNAME= libssh-${VER} PKGNAME= libssh-0.94 +PKGREVISION= 1 CATEGORIES= security MASTER_SITES= https://www.libssh.org/files/${VER:R}/ EXTRACT_SUFX= .tar.xz @@ -23,6 +24,7 @@ TEST_TARGET= test CONFIGURE_DIRS= ${WRKDIR}/build CMAKE_ARG_PATH= ${WRKSRC} CMAKE_ARGS+= -DUNIT_TESTING=ON +CMAKE_ARGS+= -DWITH_EXAMPLES=OFF LDFLAGS.SunOS+= -lnsl -lsocket --_----------=_159904715116470--