Received: by mail.netbsd.org (Postfix, from userid 605) id 75C1B84D74; Thu, 9 Mar 2023 16:44:27 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id A37BE84D22 for ; Thu, 9 Mar 2023 16:44:26 +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 SKDUWwK7Uys7 for ; Thu, 9 Mar 2023 16:44:26 +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 F366984D13 for ; Thu, 9 Mar 2023 16:44:25 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id E716FFA90; Thu, 9 Mar 2023 16:44:25 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1678380265204010" MIME-Version: 1.0 Date: Thu, 9 Mar 2023 16:44:25 +0000 From: "Greg Troxel" Subject: CVS commit: pkgsrc/sysutils/xenstoretools To: pkgsrc-changes@NetBSD.org Reply-To: gdt@netbsd.org X-Mailer: log_accum Message-Id: <20230309164425.E716FFA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1678380265204010 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gdt Date: Thu Mar 9 16:44:25 UTC 2023 Modified Files: pkgsrc/sysutils/xenstoretools: Makefile Log Message: sysutils/xenstoretools: Allow on NetBSD 10 Actually, allow on 10-19 :-). (At this point "NetBSD 5 and up" is just "NetBSD", but it feels safer to add a 1 to the regexp than to rototill more seriously.) To generate a diff of this commit: cvs rdiff -u -r1.24 -r1.25 pkgsrc/sysutils/xenstoretools/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1678380265204010 Content-Disposition: inline Content-Length: 792 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/sysutils/xenstoretools/Makefile diff -u pkgsrc/sysutils/xenstoretools/Makefile:1.24 pkgsrc/sysutils/xenstoretools/Makefile:1.25 --- pkgsrc/sysutils/xenstoretools/Makefile:1.24 Tue Jul 5 15:56:33 2022 +++ pkgsrc/sysutils/xenstoretools/Makefile Thu Mar 9 16:44:25 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.24 2022/07/05 15:56:33 bouyer Exp $ +# $NetBSD: Makefile,v 1.25 2023/03/09 16:44:25 gdt Exp $ # # VERSION is set in xentool415/version.mk @@ -44,7 +44,7 @@ PKG_SYSCONFSUBDIR= xen BUILD_DEFS+= VARBASE ONLY_FOR_PLATFORM= Linux-2.6*-i386 Linux-2.6*-x86_64 -ONLY_FOR_PLATFORM+= NetBSD-[5-9].*-x86_64 NetBSD-[5-9].*-i386 +ONLY_FOR_PLATFORM+= NetBSD-[15-9]*-x86_64 NetBSD-[15-9]*-i386 CONFLICTS+= libxen-[0-9]* CONFLICTS+= xentools20-[0-9]* --_----------=_1678380265204010--