Received: by mail.netbsd.org (Postfix, from userid 605) id 4197184E62; Sat, 8 Oct 2022 19:53:35 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 7161384E5F for ; Sat, 8 Oct 2022 19:53:34 +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 s2iT_brD78Ma for ; Sat, 8 Oct 2022 19:53:34 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id BC70184C13 for ; Sat, 8 Oct 2022 19:53:33 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A949EFA90; Sat, 8 Oct 2022 19:53:33 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_166525881386130" MIME-Version: 1.0 Date: Sat, 8 Oct 2022 19:53:33 +0000 From: "Havard Eidnes" Subject: CVS commit: pkgsrc/math/R To: pkgsrc-changes@NetBSD.org Reply-To: he@netbsd.org X-Mailer: log_accum Message-Id: <20221008195333.A949EFA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_166525881386130 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: he Date: Sat Oct 8 19:53:33 UTC 2022 Modified Files: pkgsrc/math/R: Makefile Log Message: math/R: use ../../mk/atomic64.mk for 64-bit atomics. R itself doesn't need this, but some modules might, e.g. R-s2. Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.234 -r1.235 pkgsrc/math/R/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_166525881386130 Content-Disposition: inline Content-Length: 851 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/math/R/Makefile diff -u pkgsrc/math/R/Makefile:1.234 pkgsrc/math/R/Makefile:1.235 --- pkgsrc/math/R/Makefile:1.234 Tue Jun 28 11:34:35 2022 +++ pkgsrc/math/R/Makefile Sat Oct 8 19:53:33 2022 @@ -1,11 +1,11 @@ -# $NetBSD: Makefile,v 1.234 2022/06/28 11:34:35 wiz Exp $ +# $NetBSD: Makefile,v 1.235 2022/10/08 19:53:33 he Exp $ # # If updating this package, please try to ensure PLIST.Darwin is kept in sync # to avoid unnecessarily breaking macOS users. # DISTNAME= R-4.2.0 -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= math MASTER_SITES= ${MASTER_SITE_R_CRAN:=base/R-4/} @@ -200,4 +200,5 @@ DEINSTALL_TEMPLATES+= ../../math/R/files PRINT_PLIST_AWK+= /^lib\/R\/doc\/html\/packages.html$$/ { next; } .include "../../mk/pthread.buildlink3.mk" +.include "../../mk/atomic64.mk" .include "../../mk/bsd.pkg.mk" --_----------=_166525881386130--