On Wed, 24 Mar 2010, Grant Ingersoll wrote:

Does PyLucene not have it's own Commits address? Should we set one up? If so, I can configure these to go to that list. comm...@l.a.o is generally reserved for TLP commits.

Not that I know of - I normally don't follow commits lists - but we do advertise one on PyLucene's site [1]. I think that at least for consistency's sake, there should be one. I agree with you, it should be distinct from comm...@l.a.o.

Maybe there is one for PyLucene already, actually, but it's not hooked up to pylucene svn commits correctly ?

Andi..

[1] http://lucene.apache.org/pylucene/resources/mailing_lists.html



-Grant

Begin forwarded message:

From: va...@apache.org
Date: March 24, 2010 12:44:03 PM EDT
To: comm...@lucene.apache.org
Subject: svn commit: r927116 - /lucene/pylucene/trunk/Makefile
Reply-To: d...@lucene.apache.org

Author: vajda
Date: Wed Mar 24 16:44:03 2010
New Revision: 927116

URL: http://svn.apache.org/viewvc?rev=927116&view=rev
Log:
added MINGW BUILD_TEST case (Bill Janssen)

Modified:
   lucene/pylucene/trunk/Makefile

Modified: lucene/pylucene/trunk/Makefile
URL: 
http://svn.apache.org/viewvc/lucene/pylucene/trunk/Makefile?rev=927116&r1=927115&r2=927116&view=diff
==============================================================================
--- lucene/pylucene/trunk/Makefile (original)
+++ lucene/pylucene/trunk/Makefile Wed Mar 24 16:44:03 2010
@@ -131,7 +131,7 @@ LUCENE=lucene-java-$(LUCENE_VER)
#

ifeq ($(DEBUG),1)
-DEBUG_OPT=--debug
+  DEBUG_OPT=--debug
endif

DEFINES=-DPYLUCENE_VER="\"$(VERSION)\"" -DLUCENE_VER="\"$(LUCENE_VER)\""
@@ -245,11 +245,15 @@ clean:
realclean:
        rm -rf $(LUCENE) build samples/LuceneInAction/index

-
+OS=$(shell uname)
BUILD_TEST:=$(PYLUCENE)/build/test

-ifeq ($(findstring CYGWIN,$(shell uname)),CYGWIN)
-BUILD_TEST:=`cygpath -aw $(BUILD_TEST)`
+ifeq ($(findstring CYGWIN,$(OS)),CYGWIN)
+  BUILD_TEST:=`cygpath -aw $(BUILD_TEST)`
+else
+  ifeq ($(findstring MINGW,$(OS)),MINGW)
+    BUILD_TEST:=`$(PYTHON) -c "import os, sys; print 
os.path.normpath(sys.argv[1]).replace(chr(92), chr(92)*2)" $(BUILD_TEST)`
+  endif
endif

install-test:



--------------------------
Grant Ingersoll
http://www.lucidimagination.com/

Search the Lucene ecosystem using Solr/Lucene: 
http://www.lucidimagination.com/search


Reply via email to