Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=nlULDDC7; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=t++KQf3H Received: by mail.netbsd.org (Postfix, from userid 605) id E4F7F84CD5; Thu, 14 Mar 2024 19:33:05 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1710444786; bh=E5wkw8AQPy1kdhOvTHfcxW5KTut+fhmWRYsQXWyfHP4=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=nlULDDC75ayA4T//fo17zupV4iv23F0orvYjP/lwODske17rsJ8SafwzX22Npr6hT o7SbXuPPw8MUW5tB5v9g305DGgGBxGPqrZSfxz6VD3CmKA+xrcuUC9pGOzr8GTkUVz 0frgLVBT0BCoh/ygYunlA6uvS2dHNANyujDAEfj8= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D5C0184CCC for ; Thu, 14 Mar 2024 19:33:04 +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 3lYzI226odwx for ; Thu, 14 Mar 2024 19:33:04 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 54B4D84CC8 for ; Thu, 14 Mar 2024 19:33:04 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1710444784; bh=E5wkw8AQPy1kdhOvTHfcxW5KTut+fhmWRYsQXWyfHP4=; h=Date:From:Subject:To:Reply-To; b=t++KQf3HntiALt4Sx1d0qjww70PWqCBzyxgF2umCQK0Ti3xrIpWBX7Y12nx3kvMcF AUlkSkY3OEVafl+huU7Ut4rZ4Of2CySDkrXkVtO/U3jxQLRV1EJzeB0XdUBtphSC9z XXbRKwSC5Pi44jtKLIwCLFlzrR6mYyYPjqCDSPy4= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 4AF75FA2C; Thu, 14 Mar 2024 19:33:04 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1710444784145420" MIME-Version: 1.0 Date: Thu, 14 Mar 2024 19:33:04 +0000 From: "Mark Davies" Subject: CVS commit: pkgsrc/math/fftw To: pkgsrc-changes@NetBSD.org Reply-To: markd@netbsd.org X-Mailer: log_accum Message-Id: <20240314193304.4AF75FA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1710444784145420 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: markd Date: Thu Mar 14 19:33:04 UTC 2024 Modified Files: pkgsrc/math/fftw: Makefile PLIST Log Message: fftw: add lib/cmake/fftw3/FFTW3LibraryDepends.cmake FFTW3*Config.cmake includes FFTW3LibraryDepends.cmake but package doesn't install it, making cmake unhappy. Creating an empty file is sufficient to at least get graphics/krita building. To generate a diff of this commit: cvs rdiff -u -r1.78 -r1.79 pkgsrc/math/fftw/Makefile cvs rdiff -u -r1.16 -r1.17 pkgsrc/math/fftw/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1710444784145420 Content-Disposition: inline Content-Length: 1469 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/math/fftw/Makefile diff -u pkgsrc/math/fftw/Makefile:1.78 pkgsrc/math/fftw/Makefile:1.79 --- pkgsrc/math/fftw/Makefile:1.78 Tue Jun 28 11:34:36 2022 +++ pkgsrc/math/fftw/Makefile Thu Mar 14 19:33:04 2024 @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.78 2022/06/28 11:34:36 wiz Exp $ +# $NetBSD: Makefile,v 1.79 2024/03/14 19:33:04 markd Exp $ COMMENT= Fast C routines to compute DFTs (single and double precision) -PKGREVISION= 1 +PKGREVISION= 2 SUPERSEDES= fftwf-[0-9]* CONFLICTS+= fftwf-[0-9]* @@ -12,4 +12,8 @@ FFTW_PRECISION= double float .include "Makefile.common" +# referenced by FFTW3*Config.cmake +post-install: + touch ${DESTDIR}${PREFIX}/lib/cmake/fftw3/FFTW3LibraryDepends.cmake + .include "../../mk/bsd.pkg.mk" Index: pkgsrc/math/fftw/PLIST diff -u pkgsrc/math/fftw/PLIST:1.16 pkgsrc/math/fftw/PLIST:1.17 --- pkgsrc/math/fftw/PLIST:1.16 Sun May 16 10:14:09 2021 +++ pkgsrc/math/fftw/PLIST Thu Mar 14 19:33:04 2024 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.16 2021/05/16 10:14:09 nia Exp $ +@comment $NetBSD: PLIST,v 1.17 2024/03/14 19:33:04 markd Exp $ bin/fftw-wisdom bin/fftw-wisdom-to-conf bin/fftwf-wisdom @@ -15,6 +15,7 @@ lib/cmake/fftw3/FFTW3Config.cmake lib/cmake/fftw3/FFTW3ConfigVersion.cmake lib/cmake/fftw3/FFTW3fConfig.cmake lib/cmake/fftw3/FFTW3fConfigVersion.cmake +lib/cmake/fftw3/FFTW3LibraryDepends.cmake lib/libfftw3.la ${PLIST.mpi}lib/libfftw3_mpi.la ${PLIST.omp}lib/libfftw3_omp.la --_----------=_1710444784145420--