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 DA2EA7A2CE for ; Sun, 27 Nov 2016 22:17:23 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 86BAE855AB; Sun, 27 Nov 2016 22:17:23 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 15F1A85592 for ; Sun, 27 Nov 2016 22:17:23 +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 GxeV45CxajlP for ; Sun, 27 Nov 2016 22:17:22 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 933F084CEC for ; Sun, 27 Nov 2016 22:17:22 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 89B43FBA6; Sun, 27 Nov 2016 22:17:22 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1480285042152010" MIME-Version: 1.0 Date: Sun, 27 Nov 2016 22:17:22 +0000 From: "Kamil Rytarowski" Subject: CVS commit: pkgsrc/devel/kservice To: pkgsrc-changes@NetBSD.org Reply-To: kamil@netbsd.org X-Mailer: log_accum Message-Id: <20161127221722.89B43FBA6@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. --_----------=_1480285042152010 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: kamil Date: Sun Nov 27 22:17:22 UTC 2016 Modified Files: pkgsrc/devel/kservice: distinfo Added Files: pkgsrc/devel/kservice/patches: patch-__KDE__build_src_lex.c Log Message: Add new patch to fix "error: C++ style comments are not allowed in ISO C90" No functional change in the package. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/devel/kservice/distinfo cvs rdiff -u -r0 -r1.1 \ pkgsrc/devel/kservice/patches/patch-__KDE__build_src_lex.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1480285042152010 Content-Disposition: inline Content-Length: 2082 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/kservice/distinfo diff -u pkgsrc/devel/kservice/distinfo:1.2 pkgsrc/devel/kservice/distinfo:1.3 --- pkgsrc/devel/kservice/distinfo:1.2 Sun Aug 21 21:17:58 2016 +++ pkgsrc/devel/kservice/distinfo Sun Nov 27 22:17:22 2016 @@ -1,7 +1,8 @@ -$NetBSD: distinfo,v 1.2 2016/08/21 21:17:58 markd Exp $ +$NetBSD: distinfo,v 1.3 2016/11/27 22:17:22 kamil Exp $ SHA1 (kservice-5.25.0.tar.xz) = cdabee17256efb020b3f7ad6d678f881cbbe6483 RMD160 (kservice-5.25.0.tar.xz) = e4e8f46e96e434972def82ff187e6ed2d4924223 SHA512 (kservice-5.25.0.tar.xz) = 5ad213e4f91645dba34ac6cd937b888f07a339d61e94a82ad08b8a2ef387bb84672d52f06aa16ac0de2dcc7f5ac8a9ea3c3f0018529796bd5d29e8437a562b4e Size (kservice-5.25.0.tar.xz) = 245492 bytes +SHA1 (patch-__KDE__build_src_lex.c) = 37d177079e40fe21f0819b47aed4ec37964ef634 SHA1 (patch-src_CMakeLists.txt) = 5aba4175867e285af4f24de9aea19c859f7bdf55 Added files: Index: pkgsrc/devel/kservice/patches/patch-__KDE__build_src_lex.c diff -u /dev/null pkgsrc/devel/kservice/patches/patch-__KDE__build_src_lex.c:1.1 --- /dev/null Sun Nov 27 22:17:22 2016 +++ pkgsrc/devel/kservice/patches/patch-__KDE__build_src_lex.c Sun Nov 27 22:17:22 2016 @@ -0,0 +1,20 @@ +$NetBSD: patch-__KDE__build_src_lex.c,v 1.1 2016/11/27 22:17:22 kamil Exp $ + +Fix: error: C++ style comments are not allowed in ISO C90 + +--- _KDE_build/src/lex.c.orig 2016-11-27 22:10:29.983786387 +0000 ++++ _KDE_build/src/lex.c +@@ -1710,7 +1710,7 @@ static void kiotraderensure_buffer_stack + * scanner will even need a stack. We use 2 instead of 1 to avoid an + * immediate realloc on the next call. + */ +- num_to_alloc = 1; // After all that talk, this was set to 1 anyways... ++ num_to_alloc = 1; /* After all that talk, this was set to 1 anyways... */ + yyg->yy_buffer_stack = (struct yy_buffer_state**)kiotraderalloc + (num_to_alloc * sizeof(struct yy_buffer_state*) + , yyscanner); +@@ -2303,4 +2303,3 @@ int kiotraderwrap(yyscan_t _scanner ) + kiotrader_delete_buffer(YY_CURRENT_BUFFER,_scanner ); + return 1; + } +- --_----------=_1480285042152010--