Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id 972A61A9239 for ; Sun, 2 Jan 2022 16:22:34 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id D8EEF84EF0; Sun, 2 Jan 2022 16:22:33 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 1CF5C84EED for ; Sun, 2 Jan 2022 16:22:33 +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 jgyyV5v3pQWM for ; Sun, 2 Jan 2022 16:22:32 +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 6865484CD8 for ; Sun, 2 Jan 2022 16:22:32 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 65AA3FAEC; Sun, 2 Jan 2022 16:22:32 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1641140552258080" MIME-Version: 1.0 Date: Sun, 2 Jan 2022 16:22:32 +0000 From: "Havard Eidnes" Subject: CVS commit: pkgsrc/emulators/compat90 To: pkgsrc-changes@NetBSD.org Reply-To: he@netbsd.org X-Mailer: log_accum Message-Id: <20220102162232.65AA3FAEC@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1641140552258080 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: he Date: Sun Jan 2 16:22:32 UTC 2022 Modified Files: pkgsrc/emulators/compat90: Makefile Log Message: Change the ONLY_FOR_PLATFORM pattern, so that it no longer matches against 9.0, 9.1, 9.2 or 9.x_STABLE, only 9.99.* and subsequent releses. The set of libraries this is compared against is what's in 9.99.92, but the binaries are from 9.0, of course. Bump PKGREVISION so that we pick up the changes from compat_netbsd/INSTALL.ELF, to protect against removal of base system symlinks, ref. PR#56597. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/emulators/compat90/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1641140552258080 Content-Disposition: inline Content-Length: 954 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/emulators/compat90/Makefile diff -u pkgsrc/emulators/compat90/Makefile:1.1 pkgsrc/emulators/compat90/Makefile:1.2 --- pkgsrc/emulators/compat90/Makefile:1.1 Sat Dec 18 01:01:33 2021 +++ pkgsrc/emulators/compat90/Makefile Sun Jan 2 16:22:32 2022 @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.1 2021/12/18 01:01:33 he Exp $ +# $NetBSD: Makefile,v 1.2 2022/01/02 16:22:32 he Exp $ COMPAT_PKG= compat90 # for compat_netbsd/Makefile.common NETBSD_VERSION= 9.0 +PKGREVISION= 1 HOMEPAGE= https://www.NetBSD.org/releases/formal-9/index.html COMMENT= Shared libraries for NetBSD 9.0 compatibility @@ -27,8 +28,7 @@ EMUL_PLATFORMS= netbsd-aarch64 \ # select ONLY_FOR_PLATFORM start by the osversion we diffed against -# add NetBSD-9.[1-9]*-* once 9.1 is out and we have compat91 -ONLY_FOR_PLATFORM= NetBSD-9.*-* NetBSD-[1-9][0-9].*-* +ONLY_FOR_PLATFORM= NetBSD-9.99.*-* NetBSD-[1-9][0-9].*-* CHECK_RELRO_SKIP= * --_----------=_1641140552258080--