* 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.
Mk/Uses/qmake.mk:
- Add support for out-of-source builds
- Add support for Qt 5 ports
- Respect WITH_DEBUG
Mk/bsd.qt.mk:
- Massive rework for Qt 5 ports
- Remove '-phonon' from global configure args, thus allow qt4-designer and
qt4-qtconfig to be built without Phonon support [1]
devel/qmake4:
- Improve mkspecs for gcc (mainly sync with linux version) and clang
devel/qt4-corelib:
- Convert to USES=iconv
- Remove ancient patch
devel/qt4-designer:
- Remove reference to WRKSRC from installed pkgconfig files [2]
- Don't build Qt Designer plugin for Phonon from outdated Qt sources.
Separate port for plugin will be committed later
devel/qt4-assistant-adp, devel/qt4-libqtassistantclient:
- Convert to USES=qmake
Clean up Qt4 ports:
- Update comments
- Update description; use common description
- Consistently use QT_INCDIR, QT_LIBDIR, etc.
- Use options helpers
- Convert to new LIB_DEPENDS syntax
- Update DESKTOP_ENTRIES to avoid conflicts with Qt 5 ports
- Rename/move several ports for unification with Qt 5 ports
PR: ports/184620 [1]
Reported by: Kevin Zheng <kevinz5000@gmail.com>
PR: ports/181141 [2]
Reported by: thierry
PR: ports/185101
Exp-run by: bdrewery
This is mostly solely avilla's work in area51, kudos to him! And a couple
commits from myself, so you know who's collecting pointyhats :)
Stagify, sort USES, use new lib_depend syntax.
Use USE_GNOME introspection now that it doesn't break the build.
Switch to to libtool less ltverhack.
Use new gtk-query-immodules --update-cache functionality.
Obtained from: GNOME devel repo (based on)
Update comment.
Use new LIB_DEPENDS syntax, use USES=pathfix.
Stagify.
Bump portrevision of all affected ports, and Update poppler* LIB_DEPENDS to
new syntax.
Remove patch to add -I/usr/local/include in freetype-config --cflags. If
ports need extra headers they should look for them, and not get them via
a side-effect.
Freetype had a header resuffle in 2.5.1, patch ports to use the new header
style.
Thanks go to bdrewery for the two exp-runs and rakuco for helping me with
some troublesome cmake ports.
PR: ports/184587
2013-12-18 x11-fonts/ppantsfonts: Broken for more than 6 month
2013-12-19 x11-toolkits/gtksourceview-sharp: Depends on expired devel/mono-tools
2013-11-18 devel/mono-tools: Broken for more than 6 month
2013-12-19 textproc/p5-XML-SAXDriver-Sablotron: Depends on expired textproc/p5-XML-Sablotron
2013-11-18 textproc/p5-XML-Sablotron: Broken for more than 6 month
2013-11-18 net/freeswitch-core: Broken for more than 6 month
2013-12-19 misc/freeswitch-pizzademo: Depends on expired net/freeswitch-core
2013-12-19 misc/freeswitch-scripts: Depends on expired net/freeswitch-core
2013-12-19 www/p5-HTML-Webmake: Depends on expired textproc/p5-XML-Sablotron
On some systems pygame.joystick does not import into python preventing some
documentation from being built, thus some missing files on install.
For documentation building prevent any attempt to import pygame.joystick as
a work-around.
If the old xorg stack is still needed, it is possible to add WITHOUT_NEW_XORG=
to /etc/make.conf to get the old version.
Update several xorg related ports, including:
x11/libxcb 1.9.1 -> 1.9.3
graphics/libdrm 2.4.46 -> 2.4.50
x11/pixman 0.30.2 -> 0.32.4
x11/xkeyboard-config 2.9 -> 2.10.1
x11-drivers/xf86-input-keyboard 1.7.0 -> 1.8.0
Fix dissapearing cursor in xf86-video-vmware [2]
Stagify all x11@-owned ports
Bump portrevisions for xf86-* ports due to xserver version change.
Fix fallout from updates where needed.
Thanks to: all testersi, bdrewery and the FreeBSD x11@ team
exp-run by: bdrewery [1]
PR: ports/184684 [1], ports/181385 [2]
Submitted by: Douglas Carmichael <dcarmich@dcarmichael.net> [2]
Approved by: portmgr (bdrewery), core (jhb) [0]
Setuptools is the preferred method to manage Python distributions after
many changes to the packaging ecosystem over the past couple of years.
Only ports using USE_PYDISTUTILS= yes are affected by this commit, ports using
USE_PYDISTUTILS= easy_install remains the same however this usage is now
deprecated and should be converted to USE_PYDISTUTILS= yes.
Some Python distributions do not work with setuptools out of the box because
they extend the install command from distutils and not setuptools, and
so they need to be patched accordingly.
pip (which leverages setuptools) works around the issue by using eggs, however
we want to get rid of those as well, as support for "flat" installation is
unavailable or has other issues associated with it.
This work allows us to unify how python packages are built, ensure that Python
distributions are installed consistently, reduces complexity for Python port
maintainers and paves the way for simplifying the Python ports framework in
the future.
With hat on: python
Reviewed by: koobs, antoine
Exp-run: bdrewery
Approved by: bdrewery (portmgr)
USE_GNOME=gnomehack ->USES=pathfix.
Stageify, use new LIB_DEPEND syntax, switch to libtool less ltverhack.
Merge new gtk-query-immodules handling from gtk30 ports in our dev repo [1]
Obtained from: FreeBSD gnome dev repo [1]
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.