Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=K54r3JTF; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=FHkyIBgQ Received: by mail.netbsd.org (Postfix, from userid 605) id 74A8A84EB1; Thu, 25 Apr 2024 17:00:17 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1714064417; bh=338d3ZejUKZpA0SvWCfE7ab1Ie/ENx11CxR4NEzb1YQ=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=K54r3JTFyCFExvMHEO4+NkTRBNxHs89n5FXYpuiXEwICE/XUpSMZcxpTcWR4lp+gN YY9DPwFyEUag+VrduLwsC3Pi4x0HZCyrOOjoSyd/Gm+iii4O5QzP67HjaCUeYL7Ebq cFKThbK6H1brVCwM5sqBjvDw+YeemoO9FR/nvuU8= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 6549D84EAA for ; Thu, 25 Apr 2024 17:00:16 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Authentication-Results: mail.netbsd.org (amavisd-new); dkim=pass (1024-bit key) header.d=netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id QN3wMTTflx4C for ; Thu, 25 Apr 2024 17:00:15 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id A9BCC84D82 for ; Thu, 25 Apr 2024 17:00:15 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1714064415; bh=338d3ZejUKZpA0SvWCfE7ab1Ie/ENx11CxR4NEzb1YQ=; h=Date:From:Subject:To:Reply-To; b=FHkyIBgQukIrzyW7D4XkaIv+kyMoxQy/6/W8OVqQmIvpQp+QjxbdhFwIllZtYB3/C ZcjNbIj5GfVKHPCEvuY6BI3D8PHAxl/liUt65JxPEa5Hq4O2P29qCSezscCO0utsgt w/zJs0HreyzySDz0uZgumR1nEkfh/J3ZWaLBfgxQ= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 9E659FA2C; Thu, 25 Apr 2024 17:00:15 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_171406441520180" MIME-Version: 1.0 Date: Thu, 25 Apr 2024 17:00:15 +0000 From: "Pierre Pronchery" Subject: CVS commit: pkgsrc/chat/jitsi-srtp To: pkgsrc-changes@NetBSD.org Reply-To: khorben@netbsd.org X-Mailer: log_accum Message-Id: <20240425170015.9E659FA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_171406441520180 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: khorben Date: Thu Apr 25 17:00:15 UTC 2024 Modified Files: pkgsrc/chat/jitsi-srtp: Makefile PLIST Log Message: jitsi-srtp: default to OpenSSL version 3 (or higher) Bumps PKGREVISION. Build-tested on NetBSD/amd64. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/chat/jitsi-srtp/Makefile cvs rdiff -u -r1.1 -r1.2 pkgsrc/chat/jitsi-srtp/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_171406441520180 Content-Disposition: inline Content-Length: 1339 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/chat/jitsi-srtp/Makefile diff -u pkgsrc/chat/jitsi-srtp/Makefile:1.2 pkgsrc/chat/jitsi-srtp/Makefile:1.3 --- pkgsrc/chat/jitsi-srtp/Makefile:1.2 Tue Oct 24 22:08:21 2023 +++ pkgsrc/chat/jitsi-srtp/Makefile Thu Apr 25 17:00:15 2024 @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.2 2023/10/24 22:08:21 wiz Exp $ +# $NetBSD: Makefile,v 1.3 2024/04/25 17:00:15 khorben Exp $ GITHUB_TAG= 88a9c387a8dc006a06dbe911ef1252423004927b DISTNAME= jitsi-srtp-1.1 -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= chat MASTER_SITES= ${MASTER_SITE_GITHUB:=jitsi/} @@ -21,7 +21,8 @@ USE_TOOLS+= pax:build USE_CMAKE= yes CMAKE_ARGS+= -DJAVA_INCLUDE_PATH2=${PKG_JAVA_HOME}/include/netbsd -CMAKE_ARGS+= -DJITSI_SRTP_LIBSSL_VERSION=1.1 +CMAKE_ARGS+= -DJITSI_SRTP_LIBSSL_VERSION=3 +CMAKE_ARGS+= -DOPENSSL_INCLUDE_DIR=${PREFIX}/include CMAKE_INSTALL_PREFIX= ${PREFIX}/lib USE_JAVA2= 17 Index: pkgsrc/chat/jitsi-srtp/PLIST diff -u pkgsrc/chat/jitsi-srtp/PLIST:1.1 pkgsrc/chat/jitsi-srtp/PLIST:1.2 --- pkgsrc/chat/jitsi-srtp/PLIST:1.1 Thu Feb 16 09:55:38 2023 +++ pkgsrc/chat/jitsi-srtp/PLIST Thu Apr 25 17:00:15 2024 @@ -1,2 +1,2 @@ -@comment $NetBSD: PLIST,v 1.1 2023/02/16 09:55:38 khorben Exp $ -lib/libjitsisrtp_${PKGVERSION}.so +@comment $NetBSD: PLIST,v 1.2 2024/04/25 17:00:15 khorben Exp $ +lib/libjitsisrtp_3.so --_----------=_171406441520180--