Received: by mail.netbsd.org (Postfix, from userid 605) id 65A3F84D51; Tue, 18 Jul 2017 18:19:36 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id EE67E84D4D for ; Tue, 18 Jul 2017 18:19:35 +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 ri4tbY-ibIc4 for ; Tue, 18 Jul 2017 18:19:35 +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 828EA84D49 for ; Tue, 18 Jul 2017 18:19:35 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 79318FACD; Tue, 18 Jul 2017 18:19:35 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1500401975297750" MIME-Version: 1.0 Date: Tue, 18 Jul 2017 18:19:35 +0000 From: "Brook Milligan" Subject: CVS commit: pkgsrc/lang/gcc7 To: pkgsrc-changes@NetBSD.org Reply-To: brook@netbsd.org X-Mailer: log_accum Message-Id: <20170718181935.79318FACD@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. --_----------=_1500401975297750 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: brook Date: Tue Jul 18 18:19:35 UTC 2017 Modified Files: pkgsrc/lang/gcc7: Makefile version.mk Log Message: Fix a typo (an extra S) in the make variable GCC7_DIST_VERSION. This makes it consistent with all other analogous variables, which are used in the process of selecting an appropriate version of gcc. To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 pkgsrc/lang/gcc7/Makefile cvs rdiff -u -r1.1 -r1.2 pkgsrc/lang/gcc7/version.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1500401975297750 Content-Disposition: inline Content-Length: 1391 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/gcc7/Makefile diff -u pkgsrc/lang/gcc7/Makefile:1.10 pkgsrc/lang/gcc7/Makefile:1.11 --- pkgsrc/lang/gcc7/Makefile:1.10 Sun Jul 9 05:30:41 2017 +++ pkgsrc/lang/gcc7/Makefile Tue Jul 18 18:19:35 2017 @@ -1,16 +1,16 @@ -# $NetBSD: Makefile,v 1.10 2017/07/09 05:30:41 maya Exp $ +# $NetBSD: Makefile,v 1.11 2017/07/18 18:19:35 brook Exp $ GCC_PKGNAME= gcc7 .include "version.mk" -DISTNAME= gcc-${GCC7S_DIST_VERSION} -PKGNAME= ${GCC_PKGNAME}-${GCC7S_DIST_VERSION} +DISTNAME= gcc-${GCC7_DIST_VERSION} +PKGNAME= ${GCC_PKGNAME}-${GCC7_DIST_VERSION} ## When bumping the PKGREVISION of this package the PKGREVISION of ## lang/gcc7-libs needs to be bump to be at least 1 more than the ## PKGREVISION of this package! PKGREVISION= 4 CATEGORIES= lang -MASTER_SITES= ${MASTER_SITE_GNU:=gcc/gcc-${GCC7S_DIST_VERSION}/} +MASTER_SITES= ${MASTER_SITE_GNU:=gcc/gcc-${GCC7_DIST_VERSION}/} EXTRACT_SUFX= .tar.bz2 MAINTAINER= maya@NetBSD.org Index: pkgsrc/lang/gcc7/version.mk diff -u pkgsrc/lang/gcc7/version.mk:1.1 pkgsrc/lang/gcc7/version.mk:1.2 --- pkgsrc/lang/gcc7/version.mk:1.1 Wed May 3 00:21:03 2017 +++ pkgsrc/lang/gcc7/version.mk Tue Jul 18 18:19:35 2017 @@ -1,2 +1,2 @@ -# $NetBSD: version.mk,v 1.1 2017/05/03 00:21:03 maya Exp $ -GCC7S_DIST_VERSION:=7.1.0 +# $NetBSD: version.mk,v 1.2 2017/07/18 18:19:35 brook Exp $ +GCC7_DIST_VERSION:=7.1.0 --_----------=_1500401975297750--