From owner-svn-ports-all@FreeBSD.ORG Wed Jan 8 15:29:33 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 468DE329; Wed, 8 Jan 2014 15:29:33 +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 324871472; Wed, 8 Jan 2014 15:29:33 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s08FTXXV035142; Wed, 8 Jan 2014 15:29:33 GMT (envelope-from gahr@svn.freebsd.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s08FTWgX035139; Wed, 8 Jan 2014 15:29:32 GMT (envelope-from gahr@svn.freebsd.org) Message-Id: <201401081529.s08FTWgX035139@svn.freebsd.org> From: Pietro Cerutti Date: Wed, 8 Jan 2014 15:29:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r339150 - 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-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Jan 2014 15:29:33 -0000 Author: gahr Date: Wed Jan 8 15:29:32 2014 New Revision: 339150 URL: http://svnweb.freebsd.org/changeset/ports/339150 Log: - Update to 1.7.45 * FXJSONFile class added. Base class FXJSON improved and generalized. * FXIO now tracks file position; new implementation of FXIO counts bytes read/written. * FXPipe API's added, should now be functional. * Renamed FXStringMap to FXStringDictionary for consistency. * Fixed a few problems in FXVariantMap, FXDictionary. * Fixed possible race in FXThreadPool::startWorker. * New FXThreadException class added; FXThreadException will cause graceful early termination of a thread when thrown inside of FXThread. * FXThread now interceps only FXException (and subclasses), rethrows other exceptions. This was necessary due to the way GNU C++ library performs thread exits. * Non FOX exceptions thrown inside FXThread are now rethrown; but attempts are made to maintain proper bookkeeping when unrolling the stack. * FXThreadPool tasks may throw exceptions. FXThreadPool now intercepts all FOX exceptions and updates bookkeeping when other exceptions are thrown. Note: tasks in FXThreadPool are executed by threads, but since sometimes the main thread is executing tasks in FXThreadPool also we can not allow tasks to throw FXThreadException. * Exceptions thrown inside FXWorker now terminate the worker, and reclaim worker's thread and memory. Before exceptions were all caught, making it impossible to pass return codes from worker execution. * Exceptions thrown in FXTaskGroup::Task correctly reclaim the FXTaskGroup::Task now, and will update completion count and notifications appropriately. * The exception philosophy in FOX is that the library only manages FXExceptions and their subclasses; other exceptions will be either uncaught or caught and rethrown after bookkeeping updates; thus programs should be careful throwing exceptions other than FXExceptions. Deleted: head/x11-toolkits/fox17/files/patch-bugs Modified: head/x11-toolkits/fox17/Makefile head/x11-toolkits/fox17/distinfo head/x11-toolkits/fox17/pkg-plist Modified: head/x11-toolkits/fox17/Makefile ============================================================================== --- head/x11-toolkits/fox17/Makefile Wed Jan 8 15:25:17 2014 (r339149) +++ head/x11-toolkits/fox17/Makefile Wed Jan 8 15:29:32 2014 (r339150) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= fox -PORTVERSION= 1.7.44 +PORTVERSION= 1.7.45 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 Wed Jan 8 15:25:17 2014 (r339149) +++ head/x11-toolkits/fox17/distinfo Wed Jan 8 15:29:32 2014 (r339150) @@ -1,2 +1,2 @@ -SHA256 (fox-1.7.44.tar.gz) = 1fbead78847d2a2c6ae8a18a5317713f2ef36d4ebeddacf5d097b915e4728b4c -SIZE (fox-1.7.44.tar.gz) = 5251615 +SHA256 (fox-1.7.45.tar.gz) = 78f2b5f609a52d21da08e693d45b8eeb9d4ceed52ad86e451ef4485f2375c829 +SIZE (fox-1.7.45.tar.gz) = 5254563 Modified: head/x11-toolkits/fox17/pkg-plist ============================================================================== --- head/x11-toolkits/fox17/pkg-plist Wed Jan 8 15:25:17 2014 (r339149) +++ head/x11-toolkits/fox17/pkg-plist Wed Jan 8 15:29:32 2014 (r339150) @@ -180,6 +180,7 @@ include/fox-%%MAJORVER%%/FXJP2Image.h include/fox-%%MAJORVER%%/FXJPGIcon.h include/fox-%%MAJORVER%%/FXJPGImage.h include/fox-%%MAJORVER%%/FXJSON.h +include/fox-%%MAJORVER%%/FXJSONFile.h include/fox-%%MAJORVER%%/FXKOI8RCodec.h include/fox-%%MAJORVER%%/FXKnob.h include/fox-%%MAJORVER%%/FXLFQueue.h @@ -289,7 +290,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%%/FXStringDictionary.h include/fox-%%MAJORVER%%/FXSwitcher.h include/fox-%%MAJORVER%%/FXSystem.h include/fox-%%MAJORVER%%/FXTGAIcon.h