Received: by mail.netbsd.org (Postfix, from userid 605) id B0497855A0; Wed, 22 Nov 2017 19:16:21 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 37FC98559D for ; Wed, 22 Nov 2017 19:16:21 +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 DjcOLJYIUgNJ for ; Wed, 22 Nov 2017 19:16:20 +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 B8E5C84D37 for ; Wed, 22 Nov 2017 19:16:20 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id B4211FB40; Wed, 22 Nov 2017 19:16:20 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1511378180106660" MIME-Version: 1.0 Date: Wed, 22 Nov 2017 19:16:20 +0000 From: "Benny Siegert" Subject: CVS commit: pkgsrc/lang To: pkgsrc-changes@NetBSD.org Reply-To: bsiegert@netbsd.org X-Mailer: log_accum Message-Id: <20171122191620.B4211FB40@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1511378180106660 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: bsiegert Date: Wed Nov 22 19:16:20 UTC 2017 Modified Files: pkgsrc/lang/python27: Makefile pkgsrc/lang/python34: Makefile pkgsrc/lang/python35: Makefile Log Message: ChromeOS support for the older Python versions. To generate a diff of this commit: cvs rdiff -u -r1.72 -r1.73 pkgsrc/lang/python27/Makefile cvs rdiff -u -r1.21 -r1.22 pkgsrc/lang/python34/Makefile cvs rdiff -u -r1.10 -r1.11 pkgsrc/lang/python35/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1511378180106660 Content-Disposition: inline Content-Length: 1903 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/python27/Makefile diff -u pkgsrc/lang/python27/Makefile:1.72 pkgsrc/lang/python27/Makefile:1.73 --- pkgsrc/lang/python27/Makefile:1.72 Sun Sep 17 09:54:52 2017 +++ pkgsrc/lang/python27/Makefile Wed Nov 22 19:16:20 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.72 2017/09/17 09:54:52 adam Exp $ +# $NetBSD: Makefile,v 1.73 2017/11/22 19:16:20 bsiegert Exp $ .include "dist.mk" @@ -115,7 +115,7 @@ PLIST.nis= yes . endif .else PLIST.dll= yes -. if ${OPSYS} == "MirBSD" +. if ${OPSYS} == "MirBSD" || "${OS_VARIANT}" == "chromeos" # neither nis nor no-nis . elif ${OPSYS} != "NetBSD" || exists(/usr/bin/ypcat) PLIST.nis= yes Index: pkgsrc/lang/python34/Makefile diff -u pkgsrc/lang/python34/Makefile:1.21 pkgsrc/lang/python34/Makefile:1.22 --- pkgsrc/lang/python34/Makefile:1.21 Sun Sep 3 08:53:10 2017 +++ pkgsrc/lang/python34/Makefile Wed Nov 22 19:16:20 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.21 2017/09/03 08:53:10 wiz Exp $ +# $NetBSD: Makefile,v 1.22 2017/11/22 19:16:20 bsiegert Exp $ .include "dist.mk" @@ -87,7 +87,9 @@ PLIST.nis= yes .else PLIST.dll= yes . if ${OPSYS} != "NetBSD" || exists(/usr/bin/ypcat) +. if "${OS_VARIANT}" != "chromeos" PLIST.nis= yes +. endif . else PLIST.no-nis= yes . endif Index: pkgsrc/lang/python35/Makefile diff -u pkgsrc/lang/python35/Makefile:1.10 pkgsrc/lang/python35/Makefile:1.11 --- pkgsrc/lang/python35/Makefile:1.10 Sun Sep 3 08:53:10 2017 +++ pkgsrc/lang/python35/Makefile Wed Nov 22 19:16:20 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.10 2017/09/03 08:53:10 wiz Exp $ +# $NetBSD: Makefile,v 1.11 2017/11/22 19:16:20 bsiegert Exp $ .include "dist.mk" @@ -87,7 +87,9 @@ PLIST.nis= yes .else PLIST.dll= yes . if ${OPSYS} != "NetBSD" || exists(/usr/bin/ypcat) +. if "${OS_VARIANT}" != "chromeos" PLIST.nis= yes +. endif . else PLIST.no-nis= yes . endif --_----------=_1511378180106660--