Received: by mail.netbsd.org (Postfix, from userid 605) id 6215184E5B; Sun, 14 Aug 2022 23:35:50 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9811584D72 for ; Sun, 14 Aug 2022 23:35:49 +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 KT2wbdKu0Rnm for ; Sun, 14 Aug 2022 23:35:49 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 0838484D0E for ; Sun, 14 Aug 2022 23:35:49 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 01687FB1A; Sun, 14 Aug 2022 23:35:48 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1660520148290870" MIME-Version: 1.0 Date: Sun, 14 Aug 2022 23:35:48 +0000 From: "Tobias Nygren" Subject: CVS commit: pkgsrc/x11/xf86-video-nouveau To: pkgsrc-changes@NetBSD.org Reply-To: tnn@netbsd.org X-Mailer: log_accum Message-Id: <20220814233549.01687FB1A@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1660520148290870 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: tnn Date: Sun Aug 14 23:35:48 UTC 2022 Modified Files: pkgsrc/x11/xf86-video-nouveau: distinfo Added Files: pkgsrc/x11/xf86-video-nouveau/patches: patch-src_nv__driver.c Log Message: xf86-video-nouveau: newspeak compliance To generate a diff of this commit: cvs rdiff -u -r1.11 -r1.12 pkgsrc/x11/xf86-video-nouveau/distinfo cvs rdiff -u -r0 -r1.1 \ pkgsrc/x11/xf86-video-nouveau/patches/patch-src_nv__driver.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1660520148290870 Content-Disposition: inline Content-Length: 2111 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/x11/xf86-video-nouveau/distinfo diff -u pkgsrc/x11/xf86-video-nouveau/distinfo:1.11 pkgsrc/x11/xf86-video-nouveau/distinfo:1.12 --- pkgsrc/x11/xf86-video-nouveau/distinfo:1.11 Tue Oct 26 11:34:42 2021 +++ pkgsrc/x11/xf86-video-nouveau/distinfo Sun Aug 14 23:35:48 2022 @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.11 2021/10/26 11:34:42 nia Exp $ +$NetBSD: distinfo,v 1.12 2022/08/14 23:35:48 tnn Exp $ BLAKE2s (xf86-video-nouveau-1.0.16.tar.bz2) = 0887804c5eb7c03f23ba3d44ce69f14cd55b6ba2b4d96dec73557af9210a1d8a SHA512 (xf86-video-nouveau-1.0.16.tar.bz2) = 41b7839c37372660968ab7da2bc3d9feef3cab4e994d05d4ba6e59071f0d1b1f8d7dcdbcb15a42a375a556d28dc067f9ffe45d73c1d121ad307d199107ade3e0 Size (xf86-video-nouveau-1.0.16.tar.bz2) = 629404 bytes SHA1 (patch-configure) = 21b8b7b8410fced80aef457cec1c1e3b0fed3f57 +SHA1 (patch-src_nv__driver.c) = fbd21b158bf418769db5d1b2c04f3d285734ab2c Added files: Index: pkgsrc/x11/xf86-video-nouveau/patches/patch-src_nv__driver.c diff -u /dev/null pkgsrc/x11/xf86-video-nouveau/patches/patch-src_nv__driver.c:1.1 --- /dev/null Sun Aug 14 23:35:48 2022 +++ pkgsrc/x11/xf86-video-nouveau/patches/patch-src_nv__driver.c Sun Aug 14 23:35:48 2022 @@ -0,0 +1,27 @@ +$NetBSD: patch-src_nv__driver.c,v 1.1 2022/08/14 23:35:48 tnn Exp $ + +Can't have forbidden word in the source. +Thus we have the forbidden word in the patch instead. + +--- src/nv_driver.c.orig 2019-01-29 04:41:58.000000000 +0000 ++++ src/nv_driver.c +@@ -559,16 +559,16 @@ redisplay_dirty(ScreenPtr screen, Pixmap + { + RegionRec pixregion; + +- PixmapRegionInit(&pixregion, dirty->slave_dst); ++ PixmapRegionInit(&pixregion, dirty->secondary_dst); + +- DamageRegionAppend(&dirty->slave_dst->drawable, &pixregion); ++ DamageRegionAppend(&dirty->secondary_dst->drawable, &pixregion); + #ifdef HAS_DIRTYTRACKING_ROTATION + PixmapSyncDirtyHelper(dirty); + #else + PixmapSyncDirtyHelper(dirty, &pixregion); + #endif + +- DamageRegionProcessPending(&dirty->slave_dst->drawable); ++ DamageRegionProcessPending(&dirty->secondary_dst->drawable); + RegionUninit(&pixregion); + } + --_----------=_1660520148290870--