From owner-svn-ports-head@freebsd.org Mon Dec 7 09:23:47 2015 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9EE809A051D; Mon, 7 Dec 2015 09:23:47 +0000 (UTC) (envelope-from koobs.freebsd@gmail.com) Received: from mail-pf0-x22d.google.com (mail-pf0-x22d.google.com [IPv6:2607:f8b0:400e:c00::22d]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7613A1AC9; Mon, 7 Dec 2015 09:23:47 +0000 (UTC) (envelope-from koobs.freebsd@gmail.com) Received: by pfu207 with SMTP id 207so62134588pfu.2; Mon, 07 Dec 2015 01:23:47 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:reply-to:subject:references:to:from:message-id:date :user-agent:mime-version:in-reply-to:content-type :content-transfer-encoding; bh=NfbASwsqtqtey+07g1W2Pfe+n3Yb6XZo57/aTxB7Ij8=; b=IMhPG0wCzGAcUxENGRdCWFA83cuiLqXO9yQ22UMaw4F7Hrc3LSQYuTe4CDaAO74kG4 +49Oa/a1+F9jsyzufjcVfUqrWJEz5YUkOMXGwn1a7vKDfUwS+GbMLvZjaBDmdBvtUedx C3PiIZgPmeYX0Ljl7jjPaxytyOR/yTN3O/UQ6/1DuF5BUHsMUQLS0M9nFWpttlyd09P7 +JvVyEgsmDovAD68jW83ALq27wwE42PMyqhsflks5ggrk/nBU63jfNRTDUTYpc0tbLn/ jLIQ0IGZMK5gVrpksulVO5h0SdVMjhkU5LeET3pi6jlixHZR5RtQvnczAdUhXrg3lqUC KXQQ== X-Received: by 10.98.74.221 with SMTP id c90mr41776448pfj.127.1449480227092; Mon, 07 Dec 2015 01:23:47 -0800 (PST) Received: from ?IPv6:2001:44b8:31ae:7b01::2? (2001-44b8-31ae-7b01-0000-0000-0000-0002.static.ipv6.internode.on.net. [2001:44b8:31ae:7b01::2]) by smtp.gmail.com with ESMTPSA id om8sm33263080pac.17.2015.12.07.01.23.44 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 07 Dec 2015 01:23:46 -0800 (PST) Sender: Kubilay Kocak Reply-To: koobs@FreeBSD.org Subject: Re: svn commit: r403189 - head/devel/avro-cpp/files References: <201512070916.tB79G0up074182@repo.freebsd.org> To: Pietro Cerutti , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org From: Kubilay Kocak Message-ID: <5665501B.1040709@FreeBSD.org> Date: Mon, 7 Dec 2015 20:23:39 +1100 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:42.0) Gecko/20100101 Thunderbird/42.0 MIME-Version: 1.0 In-Reply-To: <201512070916.tB79G0up074182@repo.freebsd.org> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Dec 2015 09:23:47 -0000 On 7/12/2015 8:16 PM, Pietro Cerutti wrote: > Author: gahr > Date: Mon Dec 7 09:16:00 2015 > New Revision: 403189 > URL: https://svnweb.freebsd.org/changeset/ports/403189 > > Log: > devel/avro-cpp - fix escaping of unicode characters > > PR: 204991 > Submitted by: gahr > Approved by: maintainer > Obtained from: https://issues.apache.org/jira/browse/AVRO-1191 > > Added: > head/devel/avro-cpp/files/patch-impl_json_JsonIO.hh (contents, props changed) > > Added: head/devel/avro-cpp/files/patch-impl_json_JsonIO.hh > ============================================================================== > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/devel/avro-cpp/files/patch-impl_json_JsonIO.hh Mon Dec 7 09:16:00 2015 (r403189) > @@ -0,0 +1,11 @@ > +--- impl/json/JsonIO.hh.orig 2015-12-02 18:53:55 UTC > ++++ impl/json/JsonIO.hh > +@@ -159,7 +159,7 @@ class AVRO_DECL JsonGenerator { > + > + void escapeCtl(char c) { > + out_.write('\\'); > +- out_.write('U'); > ++ out_.write('u'); // https://issues.apache.org/jira/browse/AVRO-1191 > + out_.write('0'); > + out_.write('0'); > + out_.write(toHex((static_cast(c)) / 16)); > Good MFH candidate?