From owner-svn-ports-head@FreeBSD.ORG Mon Mar 23 08:42:59 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 148CB4C1; Mon, 23 Mar 2015 08:42:59 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DA22662C; Mon, 23 Mar 2015 08:42:58 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2N8gwiu042692; Mon, 23 Mar 2015 08:42:58 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2N8gwxi042691; Mon, 23 Mar 2015 08:42:58 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201503230842.t2N8gwxi042691@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Mon, 23 Mar 2015 08:42:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r381985 - head/devel/matreshka/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 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, 23 Mar 2015 08:42:59 -0000 Author: marino Date: Mon Mar 23 08:42:57 2015 New Revision: 381985 URL: https://svnweb.freebsd.org/changeset/ports/381985 QAT: https://qat.redports.org/buildarchive/r381985/ Log: devel/matreshka: Add small patch to enable support on gcc5-aux Added: head/devel/matreshka/files/patch-limited-fix.diff (contents, props changed) Added: head/devel/matreshka/files/patch-limited-fix.diff ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/matreshka/files/patch-limited-fix.diff Mon Mar 23 08:42:57 2015 (r381985) @@ -0,0 +1,36 @@ +Changes required to build on gcc5-aux + +--- source/xml/sax/xml-sax-input_sources-streams-sockets.ads.orig 2011-07-22 20:16:17 UTC ++++ source/xml/sax/xml-sax-input_sources-streams-sockets.ads +@@ -63,7 +63,7 @@ package XML.SAX.Input_Sources.Streams.So + + private + +- type Socket_Input_Source is new Stream_Input_Source with record ++ type Socket_Input_Source is limited new Stream_Input_Source with record + Socket : GNAT.Sockets.Socket_Type; + end record; + +--- source/xml/sax/xml/xml-sax-simple_readers.ads.orig 2012-10-08 15:25:42 UTC ++++ source/xml/sax/xml/xml-sax-simple_readers.ads +@@ -303,7 +303,7 @@ private + type Simple_Shared_Locator is tagged; + type Simple_Shared_Locator_Access is access all Simple_Shared_Locator'Class; + +- type SAX_Simple_Reader is new Ada.Finalization.Limited_Controlled ++ type SAX_Simple_Reader is limited new Ada.Finalization.Limited_Controlled + and XML.SAX.Readers.SAX_Reader with + record + -- Handlers +--- source/league/league-environment_variables.ads.orig 2012-08-13 07:41:05 UTC ++++ source/league/league-environment_variables.ads +@@ -50,8 +50,7 @@ with League.Strings; + package League.Environment_Variables is + + type Environment_Variable_Set is tagged private +- with Iterator_Element => League.Strings.Universal_String, +- Constant_Indexing => Value; ++ with Iterator_Element => League.Strings.Universal_String; + + procedure Clear (Self : in out Environment_Variable_Set'Class); +