From owner-svn-ports-head@FreeBSD.ORG Mon Dec 9 10:21:57 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1A5EC369; Mon, 9 Dec 2013 10:21:57 +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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 056B71A00; Mon, 9 Dec 2013 10:21:57 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rB9ALu1X042402; Mon, 9 Dec 2013 10:21:56 GMT (envelope-from gahr@svn.freebsd.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id rB9ALu9s042398; Mon, 9 Dec 2013 10:21:56 GMT (envelope-from gahr@svn.freebsd.org) Message-Id: <201312091021.rB9ALu9s042398@svn.freebsd.org> From: Pietro Cerutti Date: Mon, 9 Dec 2013 10:21:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r335961 - in head/x11-toolkits/fox17: . 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.17 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, 09 Dec 2013 10:21:57 -0000 Author: gahr Date: Mon Dec 9 10:21:55 2013 New Revision: 335961 URL: http://svnweb.freebsd.org/changeset/ports/335961 Log: - Update to 1.7.44 Changes: * Updated FXJSON JavaScript Object Notation I/O class:- removed limits to token size in both input and output operations (formerly limited to buffersize). * Minor changes to FXVariant:- added some missing API's, removed toChar() as its useless. Added has() to determine if key is present in case FXVariant is a map. * Simplified FXFile and other FXIO subclasses a bit to remove redundant implementations. * Added FXIOBuffer, an FXIO device that serializes to/from a memory buffer. * FXRanged, FXRangef: now check intersect() results a bit differently. * Ray to FXSpheref, FXSphered intersection test changed to allow origin inside sphere possibility. * Fixed small bug in wc2nc(). * Possible buffer overrun in FXDir fixed. * Added class FXStringMap. * Changed some API's in FXDictionary. Added erase() API to allow removal of slot already located. This is faster, and needed for successful subclassing. * FXStat problem fixed on Windows. Deleted: head/x11-toolkits/fox17/files/patch-warnings Modified: head/x11-toolkits/fox17/Makefile head/x11-toolkits/fox17/distinfo head/x11-toolkits/fox17/files/patch-bugs head/x11-toolkits/fox17/pkg-plist Modified: head/x11-toolkits/fox17/Makefile ============================================================================== --- head/x11-toolkits/fox17/Makefile Mon Dec 9 10:15:14 2013 (r335960) +++ head/x11-toolkits/fox17/Makefile Mon Dec 9 10:21:55 2013 (r335961) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= fox -PORTVERSION= 1.7.43 +PORTVERSION= 1.7.44 CATEGORIES= x11-toolkits MASTER_SITES= http://ftp.fox-toolkit.org/pub/ \ ftp://ftp.fox-toolkit.org/pub/ Modified: head/x11-toolkits/fox17/distinfo ============================================================================== --- head/x11-toolkits/fox17/distinfo Mon Dec 9 10:15:14 2013 (r335960) +++ head/x11-toolkits/fox17/distinfo Mon Dec 9 10:21:55 2013 (r335961) @@ -1,2 +1,2 @@ -SHA256 (fox-1.7.43.tar.gz) = 6d3c41c431d01179866b114f24cd749a9aef8ef8dab1dec4f657895107eb70ee -SIZE (fox-1.7.43.tar.gz) = 5077930 +SHA256 (fox-1.7.44.tar.gz) = 1fbead78847d2a2c6ae8a18a5317713f2ef36d4ebeddacf5d097b915e4728b4c +SIZE (fox-1.7.44.tar.gz) = 5251615 Modified: head/x11-toolkits/fox17/files/patch-bugs ============================================================================== --- head/x11-toolkits/fox17/files/patch-bugs Mon Dec 9 10:15:14 2013 (r335960) +++ head/x11-toolkits/fox17/files/patch-bugs Mon Dec 9 10:21:55 2013 (r335961) @@ -1,14 +1,3 @@ ---- adie/FindInFiles.cpp.orig 2013-09-18 16:55:45.000000000 +0200 -+++ adie/FindInFiles.cpp 2013-09-18 16:57:42.000000000 +0200 -@@ -434,7 +434,7 @@ - - // File list double clicked - long FindInFiles::onCmdFileDblClicked(FXObject*,FXSelector,void* ptr){ -- FXint index=(FXint)(FXival)ptr; -+ index=(FXint)(FXival)ptr; - return 1; - } - --- tests/parallel.cpp.orig 2013-09-18 16:31:08.000000000 +0200 +++ tests/parallel.cpp 2013-09-18 16:55:25.000000000 +0200 @@ -146,6 +145,7 @@ Modified: head/x11-toolkits/fox17/pkg-plist ============================================================================== --- head/x11-toolkits/fox17/pkg-plist Mon Dec 9 10:15:14 2013 (r335960) +++ head/x11-toolkits/fox17/pkg-plist Mon Dec 9 10:21:55 2013 (r335961) @@ -164,6 +164,7 @@ include/fox-%%MAJORVER%%/FXICOImage.h include/fox-%%MAJORVER%%/FXIFFIcon.h include/fox-%%MAJORVER%%/FXIFFImage.h include/fox-%%MAJORVER%%/FXIO.h +include/fox-%%MAJORVER%%/FXIOBuffer.h include/fox-%%MAJORVER%%/FXIODevice.h include/fox-%%MAJORVER%%/FXIcon.h include/fox-%%MAJORVER%%/FXIconDict.h @@ -288,6 +289,7 @@ include/fox-%%MAJORVER%%/FXStatusLine.h include/fox-%%MAJORVER%%/FXStream.h include/fox-%%MAJORVER%%/FXString.h include/fox-%%MAJORVER%%/FXStringDict.h +include/fox-%%MAJORVER%%/FXStringMap.h include/fox-%%MAJORVER%%/FXSwitcher.h include/fox-%%MAJORVER%%/FXSystem.h include/fox-%%MAJORVER%%/FXTGAIcon.h