Received: by mail.netbsd.org (Postfix, from userid 605) id 0AC1584D99; Thu, 25 Jan 2018 10:44:01 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8A39484D8E for ; Thu, 25 Jan 2018 10:44:00 +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 y7PYMnzOjTug for ; Thu, 25 Jan 2018 10:43:59 +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 ACB6384D84 for ; Thu, 25 Jan 2018 10:43:59 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A7C88FBDE; Thu, 25 Jan 2018 10:43:59 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1516877039209740" MIME-Version: 1.0 Date: Thu, 25 Jan 2018 10:43:59 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/textproc/hunspell To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20180125104359.A7C88FBDE@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. --_----------=_1516877039209740 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Thu Jan 25 10:43:59 UTC 2018 Modified Files: pkgsrc/textproc/hunspell: distinfo Added Files: pkgsrc/textproc/hunspell/patches: patch-src_tools_hunspell.cxx Log Message: hunspell: Fix clang -Wreserved-user-defined-literal error. To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 pkgsrc/textproc/hunspell/distinfo cvs rdiff -u -r0 -r1.1 \ pkgsrc/textproc/hunspell/patches/patch-src_tools_hunspell.cxx Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1516877039209740 Content-Disposition: inline Content-Length: 1841 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/hunspell/distinfo diff -u pkgsrc/textproc/hunspell/distinfo:1.8 pkgsrc/textproc/hunspell/distinfo:1.9 --- pkgsrc/textproc/hunspell/distinfo:1.8 Wed Nov 4 01:59:32 2015 +++ pkgsrc/textproc/hunspell/distinfo Thu Jan 25 10:43:59 2018 @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.8 2015/11/04 01:59:32 agc Exp $ +$NetBSD: distinfo,v 1.9 2018/01/25 10:43:59 jperkin Exp $ SHA1 (hunspell-1.3.3.tar.gz) = 219b20f305d6690f666ff3864a16e4674908a553 RMD160 (hunspell-1.3.3.tar.gz) = 6e45fdf0c602f0694f414b0cb33de34a5bf95683 @@ -7,3 +7,4 @@ Size (hunspell-1.3.3.tar.gz) = 986081 by SHA1 (patch-aa) = b03a51d88bd57786f4a0ac01a3b760b4d8ba385a SHA1 (patch-ab) = 01ff90fc2ebf1049d791a0669ddcc3f5495729c0 SHA1 (patch-ac) = 27cad6078b55bce7144f462ddebac9887392c93b +SHA1 (patch-src_tools_hunspell.cxx) = c5fd2ec5c56ee62c1547fbbd69aee760c6002960 Added files: Index: pkgsrc/textproc/hunspell/patches/patch-src_tools_hunspell.cxx diff -u /dev/null pkgsrc/textproc/hunspell/patches/patch-src_tools_hunspell.cxx:1.1 --- /dev/null Thu Jan 25 10:43:59 2018 +++ pkgsrc/textproc/hunspell/patches/patch-src_tools_hunspell.cxx Thu Jan 25 10:43:59 2018 @@ -0,0 +1,15 @@ +$NetBSD: patch-src_tools_hunspell.cxx,v 1.1 2018/01/25 10:43:59 jperkin Exp $ + +C++11 requires a space between literal and identifier + +--- src/tools/hunspell.cxx.orig 2018-01-24 18:44:15.895346290 +0000 ++++ src/tools/hunspell.cxx +@@ -17,7 +17,7 @@ + #define HUNSPELL_VERSION VERSION + #define INPUTLEN 50 + +-#define HUNSPELL_PIPE_HEADING "@(#) International Ispell Version 3.2.06 (but really Hunspell "VERSION")\n" ++#define HUNSPELL_PIPE_HEADING "@(#) International Ispell Version 3.2.06 (but really Hunspell " VERSION ")\n" + #define HUNSPELL_HEADING "Hunspell " + #define ODF_EXT "odt|ott|odp|otp|odg|otg|ods|ots" + #define ENTITY_APOS "'" --_----------=_1516877039209740--