On Sun, Dec 29, 2013 at 12:18:28PM +0100, frantisek holop wrote: > hmm, on Sat, Dec 28, 2013 at 11:54:28PM -0800, Martynas Venckus said that > > The diff looks good but I don't use this anymore, so could you remove > > me as maintainer and find someone to take care of testing/committing > > it? > > ok, i take over. attached the new version. > please test and commit. > > -f > -- > i'm here to question all your answers.
> Index: Makefile > =================================================================== > RCS file: /cvs/ports/devel/py-simplejson/Makefile,v > retrieving revision 1.19 > diff -u -p -r1.19 Makefile > --- Makefile 11 Mar 2013 10:50:26 -0000 1.19 > +++ Makefile 29 Dec 2013 11:16:55 -0000 > @@ -2,15 +2,14 @@ > > COMMENT = JSON encoder/decoder > > -MODPY_EGG_VERSION = 2.5.0 > +MODPY_EGG_VERSION = 3.3.1 simplejson is listed as a dependency for several ports, but are they using it? It has been bundled with Python since 2.6. Projects that still support Python 2.5 will typically do include some logic that tries to import the standard library first try: import json except ImportError: import simplejson as json