summaryrefslogtreecommitdiff
path: root/converters/py-simplejson
AgeCommit message (Collapse)AuthorFilesLines
2009-08-20Update simplejson to 2.0.9 and add do-test rule.epg3-8/+14
The only changelog appears to be the blog: http://bob.pythonmac.org/archives/category/python/simplejson/ All optimizations and bug-fixes, as far as I can tell.
2009-06-14Remove @dirrm entries from PLISTsjoerg1-4/+1
2009-03-05Remove PYBINMODULE. All it did was mark some packages as not availablejoerg1-2/+1
on some platforms that lacked shared library support in the past. The list hasn't been maintained at all and the gain is very limited, so just get rid of it.
2009-02-17Fix native_libs.txt issue. Bump revision.joerg2-3/+3
2009-02-11pkgsrc@ => pkgsrc-users@.obache1-2/+2
2008-09-12EGG_NAME now defaults to ${DISTNAME} so don't set it here.epg1-2/+1
2008-09-11Use egg.mk instead of manually infer egg name and add destdir support.mjl2-12/+13
Thanks to Eric Gillespie epg@ for the patch.
2008-09-10Enable c language for building sped up library version.mjl1-2/+2
2008-09-10Correct package name.mjl1-1/+2
2008-09-10Import py-simplejson 1.9.2mjl4-0/+109
simplejson is a simple, fast, extensible JSON encoder/decoder for Python simplejson is compatible with Python 2.3 and later with no external dependencies. It covers the full JSON specification for both encoding and decoding, with unicode support. By default, encoding is done in an encoding neutral fashion (plain ASCII with \uXXXX escapes for unicode characters). The encoder may be subclassed to provide serialization in any kind of situation, without any special support by the objects to be serialized (somewhat like pickle). The decoder can handle incoming JSON strings of any specified encoding (UTF-8 by default).