You are viewing a plain text version of this content. The canonical link for it is here.
Posted to pylucene-dev@lucene.apache.org by Grant Ingersoll <gs...@apache.org> on 2010/03/24 18:04:07 UTC

Fwd: svn commit: r927116 - /lucene/pylucene/trunk/Makefile

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.  commits@l.a.o is generally reserved for TLP commits.


-Grant

Begin forwarded message:

> From: vajda@apache.org
> Date: March 24, 2010 12:44:03 PM EDT
> To: commits@lucene.apache.org
> Subject: svn commit: r927116 - /lucene/pylucene/trunk/Makefile
> Reply-To: dev@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


Re: svn commit: r927116 - /lucene/pylucene/trunk/Makefile

Posted by Grant Ingersoll <gs...@apache.org>.
On Mar 24, 2010, at 1:24 PM, Andi Vajda wrote:

> 
> 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.  commits@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 commits@l.a.o.
> 
> Maybe there is one for PyLucene already, actually, but it's not hooked up to pylucene svn commits correctly ?

I don't see it at: http://mail-archives.apache.org/mod_mbox/.  I'd ask Infra to set it up.  Once you do, then I can hook in the messages.

> 
> Andi..
> 
> [1] http://lucene.apache.org/pylucene/resources/mailing_lists.html
> 
>> 
>> 
>> -Grant
>> 
>> Begin forwarded message:
>> 
>>> From: vajda@apache.org
>>> Date: March 24, 2010 12:44:03 PM EDT
>>> To: commits@lucene.apache.org
>>> Subject: svn commit: r927116 - /lucene/pylucene/trunk/Makefile
>>> Reply-To: dev@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
>> 
>> 

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

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


Re: Fwd: svn commit: r927116 - /lucene/pylucene/trunk/Makefile

Posted by Andi Vajda <va...@apache.org>.
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.  commits@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 commits@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: vajda@apache.org
>> Date: March 24, 2010 12:44:03 PM EDT
>> To: commits@lucene.apache.org
>> Subject: svn commit: r927116 - /lucene/pylucene/trunk/Makefile
>> Reply-To: dev@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
>
>