Return-Path: X-Original-To: apmail-lucene-pylucene-dev-archive@minotaur.apache.org Delivered-To: apmail-lucene-pylucene-dev-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 7D461DAA3 for ; Mon, 8 Oct 2012 01:06:51 +0000 (UTC) Received: (qmail 98868 invoked by uid 500); 8 Oct 2012 01:06:51 -0000 Delivered-To: apmail-lucene-pylucene-dev-archive@lucene.apache.org Received: (qmail 98809 invoked by uid 500); 8 Oct 2012 01:06:50 -0000 Mailing-List: contact pylucene-dev-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: pylucene-dev@lucene.apache.org Delivered-To: mailing list pylucene-dev@lucene.apache.org Received: (qmail 98798 invoked by uid 99); 8 Oct 2012 01:06:50 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 08 Oct 2012 01:06:50 +0000 X-ASF-Spam-Status: No, hits=0.7 required=5.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [50.0.193.30] (HELO ovaltofu.org) (50.0.193.30) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 08 Oct 2012 01:06:44 +0000 Received: from [192.168.0.2] ([192.168.0.2]) (authenticated bits=0) by ovaltofu.org (8.14.4/8.14.4) with ESMTP id q9816Fqq009444 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Sun, 7 Oct 2012 18:06:17 -0700 (PDT) Date: Sun, 7 Oct 2012 18:08:06 -0700 (PDT) From: Andi Vajda X-X-Sender: vajda@yuzu.local Reply-To: Andi Vajda To: pylucene-dev@lucene.apache.org Subject: Re: JCC linux patch In-Reply-To: Message-ID: References: <80508E23-9CCE-414C-BCE4-D4828066DB9E@apache.org> User-Agent: Alpine 2.01 (OSX 1266 2009-07-14) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Hi Caleb, On Tue, 2 Oct 2012, Caleb Burns wrote: > On Tue, Oct 2, 2012 at 1:04 AM, Andi Vajda wrote: >> >> Great. Now, in order to get the patch to me, you need to either: >> - open a bug in JIRA and attach it there (PYLUCENE project) >> - or send it to me directly > > I opened a bug on JIRA for PyLucene and added the patch: > https://issues.apache.org/jira/browse/PYLUCENE-24 > >> If you send patches to the list, they get eaten by the list processor. >> Sorry. > > I didn't realize attachments were filtered. I took a look at your patch. A couple of questions: - In jcc/helpers/linux.py, you seem to be getting rid of the 0.6.15 setuptools case. How is that version handled now ? I remember adding this case last May since it's a version out there in the wild and patching it failed as it needs the 0.6c7 patch. Am I reading this correctly that you're assuming 0.6.15 to be compatible with 0.6.1 distribute ? - You have a line of new code in linux.py that says: + if build_ext.use_stubs or os.name == 'nt': How can os.name be 'nt' when linux.py is being run ? Andi..