From owner-svn-ports-head@freebsd.org Tue Dec 19 18:20:22 2017 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 25D6DE958B0; Tue, 19 Dec 2017 18:20:22 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 F1C3D635C7; Tue, 19 Dec 2017 18:20:21 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vBJIKLjO044958; Tue, 19 Dec 2017 18:20:21 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBJIKKkp044951; Tue, 19 Dec 2017 18:20:20 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201712191820.vBJIKKkp044951@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Tue, 19 Dec 2017 18:20:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r456744 - in head: games/aquaria games/aquaria/files multimedia/libmediainfo sysutils/fusefs-encfs textproc/tinyxml2 X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head: games/aquaria games/aquaria/files multimedia/libmediainfo sysutils/fusefs-encfs textproc/tinyxml2 X-SVN-Commit-Revision: 456744 X-SVN-Commit-Repository: ports 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.25 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: Tue, 19 Dec 2017 18:20:22 -0000 Author: sunpoet Date: Tue Dec 19 18:20:20 2017 New Revision: 456744 URL: https://svnweb.freebsd.org/changeset/ports/456744 Log: Update textproc/tinyxml2 to 6.0.0 - Bump PORTREVISION of dependent ports for shlib change Changes: https://github.com/leethomason/tinyxml2/commits/master Added: head/games/aquaria/files/patch-Aquaria-Continuity.cpp (contents, props changed) head/games/aquaria/files/patch-Aquaria-DSQ.cpp (contents, props changed) Modified: head/games/aquaria/Makefile head/multimedia/libmediainfo/Makefile head/sysutils/fusefs-encfs/Makefile head/textproc/tinyxml2/Makefile head/textproc/tinyxml2/distinfo Modified: head/games/aquaria/Makefile ============================================================================== --- head/games/aquaria/Makefile Tue Dec 19 18:06:29 2017 (r456743) +++ head/games/aquaria/Makefile Tue Dec 19 18:20:20 2017 (r456744) @@ -4,7 +4,7 @@ PORTNAME= aquaria DISTVERSIONPREFIX= OSE-v DISTVERSION= 1.002-22 DISTVERSIONSUFFIX= -g84366ad -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= games MAINTAINER= jbeich@FreeBSD.org Added: head/games/aquaria/files/patch-Aquaria-Continuity.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/aquaria/files/patch-Aquaria-Continuity.cpp Tue Dec 19 18:20:20 2017 (r456744) @@ -0,0 +1,11 @@ +--- Aquaria/Continuity.cpp.orig 2016-06-19 23:56:27 UTC ++++ Aquaria/Continuity.cpp +@@ -2737,7 +2737,7 @@ void Continuity::loadFileData(int slot, + } + if (doc.Parse(buf, size) != XML_SUCCESS) + { +- errorLog("Failed to load save data: " + teh_file + " -- Error: " + doc.GetErrorStr1()); ++ errorLog("Failed to load save data: " + teh_file + " -- Error: " + doc.ErrorStr()); + return; + } + } Added: head/games/aquaria/files/patch-Aquaria-DSQ.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/aquaria/files/patch-Aquaria-DSQ.cpp Tue Dec 19 18:20:20 2017 (r456744) @@ -0,0 +1,11 @@ +--- Aquaria/DSQ.cpp.orig 2017-12-19 15:08:56 UTC ++++ Aquaria/DSQ.cpp +@@ -2079,7 +2079,7 @@ void DSQ::loadModsCallback(const std::st + if(!Mod::loadModXML(&d, name)) + { + std::ostringstream os; +- os << "Failed to load mod xml: " << filename << " -- Error: " << d.GetErrorStr1(); ++ os << "Failed to load mod xml: " << filename << " -- Error: " << d.ErrorStr(); + dsq->debugLog(os.str()); + return; + } Modified: head/multimedia/libmediainfo/Makefile ============================================================================== --- head/multimedia/libmediainfo/Makefile Tue Dec 19 18:06:29 2017 (r456743) +++ head/multimedia/libmediainfo/Makefile Tue Dec 19 18:20:20 2017 (r456744) @@ -3,6 +3,7 @@ PORTNAME= libmediainfo PORTVERSION= 17.10 +PORTREVISION= 1 CATEGORIES= multimedia MASTER_SITES= https://mediaarea.net/download/binary/mediainfo/${PORTVERSION}/ \ LOCAL/sunpoet Modified: head/sysutils/fusefs-encfs/Makefile ============================================================================== --- head/sysutils/fusefs-encfs/Makefile Tue Dec 19 18:06:29 2017 (r456743) +++ head/sysutils/fusefs-encfs/Makefile Tue Dec 19 18:20:20 2017 (r456744) @@ -3,8 +3,8 @@ PORTNAME= encfs PORTVERSION= 1.9.2 -PORTREVISION= 1 DISTVERSIONPREFIX= v +PORTREVISION= 2 CATEGORIES= sysutils PKGNAMEPREFIX= fusefs- Modified: head/textproc/tinyxml2/Makefile ============================================================================== --- head/textproc/tinyxml2/Makefile Tue Dec 19 18:06:29 2017 (r456743) +++ head/textproc/tinyxml2/Makefile Tue Dec 19 18:20:20 2017 (r456744) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= tinyxml2 -PORTVERSION= 5.0.1 +PORTVERSION= 6.0.0 PORTEPOCH= 1 CATEGORIES= textproc Modified: head/textproc/tinyxml2/distinfo ============================================================================== --- head/textproc/tinyxml2/distinfo Tue Dec 19 18:06:29 2017 (r456743) +++ head/textproc/tinyxml2/distinfo Tue Dec 19 18:20:20 2017 (r456744) @@ -1,3 +1,3 @@ -TIMESTAMP = 1498574190 -SHA256 (leethomason-tinyxml2-5.0.1_GH0.tar.gz) = cd33f70a856b681506e3650f9f5f5e5e6c7232da7fa3cfc4e8f56fe7b77dd735 -SIZE (leethomason-tinyxml2-5.0.1_GH0.tar.gz) = 349622 +TIMESTAMP = 1513198732 +SHA256 (leethomason-tinyxml2-6.0.0_GH0.tar.gz) = 9444ba6322267110b4aca61cbe37d5dcab040344b5c97d0b36c119aa61319b0f +SIZE (leethomason-tinyxml2-6.0.0_GH0.tar.gz) = 576612