svn commit: r339150 - in head/x11-toolkits/fox17: . files

Pietro Cerutti gahr at FreeBSD.org
Wed Jan 8 15:29:33 UTC 2014


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


More information about the svn-ports-all mailing list