Received: by mail.netbsd.org (Postfix, from userid 605) id D015984D0D; Wed, 22 Sep 2021 05:59:27 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 146E384CE1 for ; Wed, 22 Sep 2021 05:59:27 +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 MpXR-LGzoYro for ; Wed, 22 Sep 2021 05:59: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 88DFB84C13 for ; Wed, 22 Sep 2021 05:59:26 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 81ECFFA97; Wed, 22 Sep 2021 05:59:26 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_163229036689360" MIME-Version: 1.0 Date: Wed, 22 Sep 2021 05:59:26 +0000 From: "Makoto Fujiwara" Subject: CVS commit: pkgsrc/cross/avr-binutils To: pkgsrc-changes@NetBSD.org Reply-To: mef@netbsd.org X-Mailer: log_accum Message-Id: <20210922055926.81ECFFA97@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_163229036689360 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: mef Date: Wed Sep 22 05:59:26 UTC 2021 Modified Files: pkgsrc/cross/avr-binutils: Makefile PLIST Log Message: (cross/avr-binutils) emulator/simulavr wants diagnostics.h To generate a diff of this commit: cvs rdiff -u -r1.33 -r1.34 pkgsrc/cross/avr-binutils/Makefile cvs rdiff -u -r1.12 -r1.13 pkgsrc/cross/avr-binutils/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_163229036689360 Content-Disposition: inline Content-Length: 1513 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/cross/avr-binutils/Makefile diff -u pkgsrc/cross/avr-binutils/Makefile:1.33 pkgsrc/cross/avr-binutils/Makefile:1.34 --- pkgsrc/cross/avr-binutils/Makefile:1.33 Wed Sep 22 02:35:40 2021 +++ pkgsrc/cross/avr-binutils/Makefile Wed Sep 22 05:59:26 2021 @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.33 2021/09/22 02:35:40 mef Exp $ +# $NetBSD: Makefile,v 1.34 2021/09/22 05:59:26 mef Exp $ DISTNAME= binutils-2.37 PKGNAME= ${DISTNAME:S/^/avr-/} -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= cross MASTER_SITES= ${MASTER_SITE_GNU:=binutils/} EXTRACT_SUFX= .tar.bz2 @@ -62,7 +62,7 @@ post-install: ) # emulators/simulavr wants following header files (cd ${WRKSRC}/include; \ - for f in ansidecl.h symcat.h; do \ + for f in ansidecl.h symcat.h diagnostics.h ; do \ ${INSTALL_DATA} $$f ${DESTDIR}${PREFIX}/avr/include; \ done; \ ) Index: pkgsrc/cross/avr-binutils/PLIST diff -u pkgsrc/cross/avr-binutils/PLIST:1.12 pkgsrc/cross/avr-binutils/PLIST:1.13 --- pkgsrc/cross/avr-binutils/PLIST:1.12 Wed Sep 22 02:35:40 2021 +++ pkgsrc/cross/avr-binutils/PLIST Wed Sep 22 05:59:26 2021 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.12 2021/09/22 02:35:40 mef Exp $ +@comment $NetBSD: PLIST,v 1.13 2021/09/22 05:59:26 mef Exp $ avr/bin/ar avr/bin/as avr/bin/ld @@ -11,6 +11,7 @@ avr/bin/readelf avr/bin/strip avr/include/ansidecl.h avr/include/bfd.h +avr/include/diagnostics.h avr/include/symcat.h avr/lib/bfd-plugins/libdep.so avr/lib/ldscripts/avr1.x --_----------=_163229036689360--