Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id DF0807A2FC for ; Thu, 29 Dec 2016 22:21:14 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 9010985699; Thu, 29 Dec 2016 22:21:14 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 21498855FA for ; Thu, 29 Dec 2016 22:21:14 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id aRUFhO2-2zlf for ; Thu, 29 Dec 2016 22:21:13 +0000 (UTC) Received: from cvs.NetBSD.org (unknown [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 7DC7285593 for ; Thu, 29 Dec 2016 22:21:13 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 74242FBA6; Thu, 29 Dec 2016 22:21:13 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1483050073161080" MIME-Version: 1.0 Date: Thu, 29 Dec 2016 22:21:13 +0000 From: "Maya Rashish" Subject: CVS commit: pkgsrc/mk/compiler To: pkgsrc-changes@NetBSD.org Reply-To: maya@netbsd.org X-Mailer: log_accum Message-Id: <20161229222113.74242FBA6@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_1483050073161080 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: maya Date: Thu Dec 29 22:21:13 UTC 2016 Modified Files: pkgsrc/mk/compiler: gcc.mk Log Message: Make GCC_REQD+= 4.5 to 4.8 resolve to 4.8 (dropping the possibility to match for 4.5, 4.6, 4.7, which will soon be dropped). This commit is the functional change. Cleanup will be done in separate commits. To generate a diff of this commit: cvs rdiff -u -r1.171 -r1.172 pkgsrc/mk/compiler/gcc.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1483050073161080 Content-Disposition: inline Content-Length: 1076 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/mk/compiler/gcc.mk diff -u pkgsrc/mk/compiler/gcc.mk:1.171 pkgsrc/mk/compiler/gcc.mk:1.172 --- pkgsrc/mk/compiler/gcc.mk:1.171 Fri Nov 25 20:36:49 2016 +++ pkgsrc/mk/compiler/gcc.mk Thu Dec 29 22:21:13 2016 @@ -1,4 +1,4 @@ -# $NetBSD: gcc.mk,v 1.171 2016/11/25 20:36:49 marino Exp $ +# $NetBSD: gcc.mk,v 1.172 2016/12/29 22:21:13 maya Exp $ # # This is the compiler definition for the GNU Compiler Collection. # @@ -123,17 +123,8 @@ _GCC34_PATTERNS= 3.[4-9] 3.[4-9].* 3.[1- # _GCC44_PATTERNS matches N s.t. 4.4 <= N < 4.5. _GCC44_PATTERNS= 4.4 4.4.* -# _GCC45_PATTERNS matches N s.t. 4.5 <= N < 4.6. -_GCC45_PATTERNS= 4.5 4.5.* - -# _GCC46_PATTERNS matches N s.t. 4.6 <= N < 4.7. -_GCC46_PATTERNS= 4.6 4.6.* - -# _GCC47_PATTERNS matches N s.t. 4.7 <= N < 4.8. -_GCC47_PATTERNS= 4.7 4.7.* - -# _GCC48_PATTERNS matches N s.t. 4.8 <= N < 4.9. -_GCC48_PATTERNS= 4.8 4.8.* +# _GCC48_PATTERNS matches N s.t. 4.5 <= N < 4.9. +_GCC48_PATTERNS= 4.[5678] 4.[5678].* # _GCC49_PATTERNS matches N s.t. 4.9 <= N < 4.10. _GCC49_PATTERNS= 4.9 4.9.* --_----------=_1483050073161080--