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 E72727A16A for ; Wed, 10 May 2017 15:02:30 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 8FC0F84E04; Wed, 10 May 2017 15:02:30 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 203D884DA8 for ; Wed, 10 May 2017 15:02:30 +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 RaNiS8CG0Xlo for ; Wed, 10 May 2017 15:02:29 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id A535884D8C for ; Wed, 10 May 2017 15:02:29 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 9FF00FBE4; Wed, 10 May 2017 15:02:29 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_149442854959600" MIME-Version: 1.0 Date: Wed, 10 May 2017 15:02:29 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/lang/gcc7 To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20170510150229.9FF00FBE4@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. --_----------=_149442854959600 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Wed May 10 15:02:29 UTC 2017 Modified Files: pkgsrc/lang/gcc7: Makefile options.mk Log Message: Remove leftovers from the gcc-java option which were bringing in more dependencies than required and causing the build to fail due to being unable to find zlib. Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/lang/gcc7/Makefile cvs rdiff -u -r1.1 -r1.2 pkgsrc/lang/gcc7/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_149442854959600 Content-Disposition: inline Content-Length: 1545 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.2 pkgsrc/lang/gcc7/Makefile:1.3 --- pkgsrc/lang/gcc7/Makefile:1.2 Thu May 4 17:38:23 2017 +++ pkgsrc/lang/gcc7/Makefile Wed May 10 15:02:29 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2017/05/04 17:38:23 maya Exp $ +# $NetBSD: Makefile,v 1.3 2017/05/10 15:02:29 jperkin Exp $ GCC_PKGNAME= gcc7 .include "version.mk" @@ -8,7 +8,7 @@ PKGNAME= ${GCC_PKGNAME}-${GCC7S_DIST_VER ## 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= 1 +PKGREVISION= 2 CATEGORIES= lang MASTER_SITES= ${MASTER_SITE_GNU:=gcc/gcc-${GCC7S_DIST_VERSION}/} EXTRACT_SUFX= .tar.bz2 Index: pkgsrc/lang/gcc7/options.mk diff -u pkgsrc/lang/gcc7/options.mk:1.1 pkgsrc/lang/gcc7/options.mk:1.2 --- pkgsrc/lang/gcc7/options.mk:1.1 Wed May 3 00:21:03 2017 +++ pkgsrc/lang/gcc7/options.mk Wed May 10 15:02:29 2017 @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.1 2017/05/03 00:21:03 maya Exp $ +# $NetBSD: options.mk,v 1.2 2017/05/10 15:02:29 jperkin Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.${GCC_PKGNAME} PKG_SUPPORTED_OPTIONS= nls gcc-inplace-math gcc-c++ gcc-fortran \ @@ -107,12 +107,6 @@ LANGS+= obj-c++ LANGS+= objc .endif -USE_TOOLS+= unzip zip:run gmake:run -CONFIGURE_ARGS+= --with-system-zlib - -.include "../../devel/zlib/buildlink3.mk" -.include "../../lang/python/application.mk" - .if !empty(PKG_OPTIONS:Mgcc-go) LANGS+= go .endif --_----------=_149442854959600--