Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=JeUIyrKt; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=yV/8NyZp Received: by mail.netbsd.org (Postfix, from userid 605) id BB7DC84EC5; Fri, 26 Apr 2024 15:42:55 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1714146175; bh=pLdXlN+11HV5IvYpY/CL03xth6+49aZDnGQoFDzHKb0=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=JeUIyrKtRar2h13q8ZMPmppCpMW2zmnX+c6I2Um4lBQioZ2ryA7Xk2d5bzkQ7Pa2L Ku4mpMJ3rZSST4/hCyyEI6kn8qGncyPqH3X1SGcAiY6q3svxfGw3MrIVvv6758FpWI C/RKOOu7O0ixY1mX14hT/XIKDxHip7DS75oT6Ilw= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id AD87B84EC2 for ; Fri, 26 Apr 2024 15:42:54 +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 ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id N9CiF4DouC6F for ; Fri, 26 Apr 2024 15:42:54 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 098CB84D36 for ; Fri, 26 Apr 2024 15:42:54 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1714146174; bh=pLdXlN+11HV5IvYpY/CL03xth6+49aZDnGQoFDzHKb0=; h=Date:From:Subject:To:Reply-To; b=yV/8NyZpACmKCkl9IUMNrzKXkxGTQUN8q2v/mLbwHOdmHV6DPr7+3eYOtP5Fnqfp7 n18Nbq9dmx7pizvlZUNrLiGBDpwBB+h+90H9R8PQnaC2skfQlnmRPzslK+ureDS4gI noVkd0lw6CZhsQ6Zu7GkLLEhg5MXB8dw3RweKAYw= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 02105FA2C; Fri, 26 Apr 2024 15:42:53 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_171414617386310" MIME-Version: 1.0 Date: Fri, 26 Apr 2024 15:42:53 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/audio/libopus To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20240426154254.02105FA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_171414617386310 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Fri Apr 26 15:42:53 UTC 2024 Modified Files: pkgsrc/audio/libopus: Makefile Log Message: libopus: try fixing build on arm The build there seems to run a perl script, so replace the perl interpreter and tool-depend on perl. To generate a diff of this commit: cvs rdiff -u -r1.19 -r1.20 pkgsrc/audio/libopus/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_171414617386310 Content-Disposition: inline Content-Length: 851 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/audio/libopus/Makefile diff -u pkgsrc/audio/libopus/Makefile:1.19 pkgsrc/audio/libopus/Makefile:1.20 --- pkgsrc/audio/libopus/Makefile:1.19 Sat Apr 13 05:31:29 2024 +++ pkgsrc/audio/libopus/Makefile Fri Apr 26 15:42:53 2024 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.19 2024/04/13 05:31:29 adam Exp $ +# $NetBSD: Makefile,v 1.20 2024/04/26 15:42:53 wiz Exp $ DISTNAME= opus-1.5.2 PKGNAME= lib${DISTNAME} @@ -10,6 +10,8 @@ HOMEPAGE= https://opus-codec.org/ COMMENT= Totally open, royalty-free, highly versatile audio codec library LICENSE= modified-bsd +TOOL_DEPENDS+= perl-[0-9]*:../../lang/perl5 + SUPERSEDES= opus<=1.0.2 USE_LIBTOOL= yes @@ -19,6 +21,8 @@ TEST_TARGET= check PKGCONFIG_OVERRIDE+= opus.pc.in +REPLACE_PERL+= celt/arm/arm2gnu.pl + .include "options.mk" .include "../../mk/bsd.pkg.mk" --_----------=_171414617386310--