overhead! The SparseHash library contains several hash map
implementations, including implementations that optimize for space
or speed.
These hashtable implementations are similar in API to SGI's hash_map
class and the tr1 unordered_map class, but with different performance
characteristics. It's easy to replace hash_map or unordered_map by
sparse_hash_map or dense_hash_map in C++ code.
They also contain code to serialize and unserialize from disk.
This is a prerequisite of upcoming Clementine.
okay@ landry
JSON arrays will be mapped to QVariantList instances, while JSON's
objects will be mapped to QVariantMap.
This is prerequisite of Clementine and many KDE4 ports.
okay landry@
This is a implementation of the JSON specification according to RFC 4627. You
can think of it as a low fat alternative to XML, if you want to store data to
disk or transmit it over a network rather than use a verbose markup language.
ok jeremy@
to select(2) for MacOSX support. The select based implementation
was causing crashes under load for at least FreeBSD.
- Fix MulticastSocket.setInterface(). Report and fix from Oliver
Lehmann on bsd-port list.
new Boost. It's silly to have other ports depend on x11/kde4/automoc
since the latter isn't linked to builds, and x11/kde4 should contain KDE SC
only eventually anyway.
ok espie@
packages.
- Initial BSD patchset from FreeBSD openjdk6 port.
- New bootstrap method. Since ecj is not able to bootstrap openjdk6
without heavy patching, use a functional bootjdk to build.
- Add a target for building the bootjdk called build-bootjdk.
- Apply IcedTea AppletHole patches for icedtea-web support.
- Backport patch to serialize gconf client access which corrects
gconf/dbus related crashes. From Christian Schulte Upstream
CR 7188755.
- Reapply audio support from jakemsr@.
- Port change for CWM. Recognize CWM as a Non-Reparenting window
manager.
- Backport various openjdk7/bsd-port upstream fixes both specific
to OpenBSD and general.
Tested by landry@ espie@ and others.
bpython is a fancy interface to the Python interpreter
It has the following (special) features:
- In-line syntax highlighting.
- Readline-like autocomplete with suggestions displayed as you type.
- Expected parameter list for any Python function.
- "Rewind" function to pop the last line of code from memory and
re-evaluate.
[...]
ok aja@