From owner-svn-ports-all@FreeBSD.ORG Sat Jul 12 04:25:17 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 88D46FC3; Sat, 12 Jul 2014 04:25:17 +0000 (UTC) Received: from mail-pa0-x22a.google.com (mail-pa0-x22a.google.com [IPv6:2607:f8b0:400e:c03::22a]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4AE822B54; Sat, 12 Jul 2014 04:25:17 +0000 (UTC) Received: by mail-pa0-f42.google.com with SMTP id lj1so2531138pab.29 for ; Fri, 11 Jul 2014 21:25:16 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:message-id:date:from:reply-to:user-agent:mime-version:to:cc :subject:references:in-reply-to:content-type :content-transfer-encoding; bh=9Ust+3p2nfnRkxbJW2nynvIBljB8z2VnNHM0IFEryy4=; b=LKk6CeL31MyxgLkjBMop0EU0MC76mkx46q3lUoU/d/cy8BkyRw4UQ6WjyhRRfnODKw noA1KmRpZrTirlbBLia+xu/37y9ChWxXysKNP/91i/nZiywkQVhdSryX27Z5LVBLfCCi WEUa95rSR89VXaavkJW8OpIMl2laeBwQPVYjW+G1LBxm91QB754XMnjM+mujQ4k36aVX yzmtxwVhX7vLhOWlmHgCIapYtJzvv/NKr/AIkDJkJLbaD1dn/TdlpGittwOfCLAlREe7 EkIwWxAs/TFXnd7TrfVnBUEvh0U9Zy9MQ3641lDwxWC7xinHSR0BqHYsuEoQO5obX1L1 eXtQ== X-Received: by 10.68.213.74 with SMTP id nq10mr3256888pbc.4.1405139116772; Fri, 11 Jul 2014 21:25:16 -0700 (PDT) Received: from [192.168.1.7] (ppp59-167-128-11.static.internode.on.net. [59.167.128.11]) by mx.google.com with ESMTPSA id o4sm5197823pdd.22.2014.07.11.21.25.14 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 11 Jul 2014 21:25:16 -0700 (PDT) Sender: Kubilay Kocak Message-ID: <53C0B89B.4030307@FreeBSD.org> Date: Sat, 12 Jul 2014 14:24:59 +1000 From: Kubilay Kocak Reply-To: koobs@FreeBSD.org User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:31.0) Gecko/20100101 Thunderbird/31.0 MIME-Version: 1.0 To: mva@freebsd.org Subject: Re: svn commit: r361429 - in head/devel: . py-omnijson References: <201407100850.s6A8oPAU054740@svn.freebsd.org> <20140710115509.Horde.IJjs3G4wdi8VhTC861np3Q3@webmail.df.eu> In-Reply-To: <20140710115509.Horde.IJjs3G4wdi8VhTC861np3Q3@webmail.df.eu> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 12 Jul 2014 04:25:17 -0000 On 10/07/2014 7:55 PM, Marcus von Appen wrote: > > Kubilay Kocak : > >> Author: koobs >> Date: Thu Jul 10 08:50:24 2014 >> New Revision: 361429 >> URL: http://svnweb.freebsd.org/changeset/ports/361429 >> QAT: https://qat.redports.org/buildarchive/r361429/ >> >> Log: >> [NEW] devel/py-omnijson: Wraps the best Python JSON installed >> >> Wraps the best JSON installed, falling back on an internal simplejson. >> >> Features: >> >> * Loads whichever is the fastest JSON module installed >> * Falls back on built in pure-python simplejson, just in case. >> * Proper API (loads(), dumps()) >> * Verndorizable >> * Supports Python 2.5-3.2 out of the box > > Is USE_PYTHON=yes correct then? Or shouldn't that be USE_PYTHON= -3.2? > > Cheers > Marcus > > I'm assuming the trove classifiers are out of date, but in case they're not, created: https://github.com/kennethreitz/omnijson/issues/6 I'm also going to run the three unit tests under 3.4 myself to check