Login | Register For Free | Help
Search for: (Advanced)

Mailing List Archive: Lucene: General

[VOTE] Release PyLucene 2.9.0-1

 

 

Lucene general RSS feed   Index | Next | Previous | View Threaded


vajda at apache

Oct 7, 2009, 5:04 PM

Post #1 of 8 (241 views)
Permalink
[VOTE] Release PyLucene 2.9.0-1

With the recent release of Java Lucene 2.9.0, a PyLucene 2.9.0-1 release
closely tracking it is ready.

Release candidate 1 of PyLucene 2.9.0-1 is available from:

http://people.apache.org/~vajda/staging_area/

The list of changes is available from:

http://svn.apache.org/repos/asf/lucene/pylucene/branches/pylucene_2_9/CHANGES

Please vote to release these artifacts as PyLucene 2.9.0-1.

Thanks !

Andi..

ps: the KEYS file for PyLucene release signing is at:
http://svn.apache.org/repos/asf/lucene/pylucene/dist/KEYS


hossman_lucene at fucit

Oct 12, 2009, 9:19 PM

Post #2 of 8 (212 views)
Permalink
Re: [VOTE] Release PyLucene 2.9.0-1 [In reply to]

: Please vote to release these artifacts as PyLucene 2.9.0-1.

+1

7efc6e335d729e1df68ba5db83f6897a worked for me as advertised (after the
expected setup.py and makefile modifications) and all test passed.


-Hoss


vajda at apache

Oct 12, 2009, 9:56 PM

Post #3 of 8 (212 views)
Permalink
Re: [VOTE] Release PyLucene 2.9.0-1 [In reply to]

On Mon, 12 Oct 2009, Chris Hostetter wrote:

> : Please vote to release these artifacts as PyLucene 2.9.0-1.
>
> +1
>
> 7efc6e335d729e1df68ba5db83f6897a worked for me as advertised (after the
> expected setup.py and makefile modifications) and all test passed.

I was reminded that I didn't actually vote.
So here is my +1 !

Andi..


gsingers at apache

Oct 13, 2009, 5:25 AM

Post #4 of 8 (208 views)
Permalink
Re: [VOTE] Release PyLucene 2.9.0-1 [In reply to]

+1

On Oct 7, 2009, at 8:04 PM, Andi Vajda wrote:

>
> With the recent release of Java Lucene 2.9.0, a PyLucene 2.9.0-1
> release closely tracking it is ready.
>
> Release candidate 1 of PyLucene 2.9.0-1 is available from:
>
> http://people.apache.org/~vajda/staging_area/
>
> The list of changes is available from:
>
> http://svn.apache.org/repos/asf/lucene/pylucene/branches/pylucene_2_9/CHANGES
>
> Please vote to release these artifacts as PyLucene 2.9.0-1.
>
> Thanks !
>
> Andi..
>
> ps: the KEYS file for PyLucene release signing is at:
> http://svn.apache.org/repos/asf/lucene/pylucene/dist/KEYS


lucene at mikemccandless

Oct 13, 2009, 5:41 AM

Post #5 of 8 (209 views)
Permalink
Re: [VOTE] Release PyLucene 2.9.0-1 [In reply to]

On Wed, Oct 7, 2009 at 8:04 PM, Andi Vajda <vajda[at]apache.org> wrote:

> Please vote to release these artifacts as PyLucene 2.9.0-1.

+1

I walked through the "for the impatient" instructions and everything
just worked.

Then I ran my python script to index first 100K wikipedia docs; I
modified it to get an NRT reader at the end and run a few searches.

One question: how does one gain access to the public static constants
Version.LUCENE_XX from oal.Version?

Mike


vajda at apache

Oct 13, 2009, 11:28 AM

Post #6 of 8 (207 views)
Permalink
Re: [VOTE] Release PyLucene 2.9.0-1 [In reply to]

On Tue, 13 Oct 2009, Michael McCandless wrote:

> One question: how does one gain access to the public static constants
> Version.LUCENE_XX from oal.Version?

>>> import lucene
>>> lucene.initVM(lucene.CLASSPATH)
<jcc.JCCEnv object at 0x1004730d8>
>>> lucene.Version.LUCENE_CURRENT
<Version: LUCENE_CURRENT>
>>> lucene.Version.LUCENE_24
<Version: LUCENE_24>
>>> lucene.Version.LUCENE_CURRENT.onOrAfter(lucene.Version.LUCENE_29)
True

And there is also this one, the version of Lucene compiled into PyLucene:
>>> lucene.VERSION
'2.9.0'

Andi..


lucene at mikemccandless

Oct 13, 2009, 1:09 PM

Post #7 of 8 (203 views)
Permalink
Re: [VOTE] Release PyLucene 2.9.0-1 [In reply to]

OK thanks Andi. I was missing that initVM is needed even to populate
the statics, but that makes total sense.

Mike

On Tue, Oct 13, 2009 at 2:28 PM, Andi Vajda <vajda[at]apache.org> wrote:
>
> On Tue, 13 Oct 2009, Michael McCandless wrote:
>
>> One question: how does one gain access to the public static constants
>> Version.LUCENE_XX from oal.Version?
>
>  >>> import lucene
>  >>> lucene.initVM(lucene.CLASSPATH)
>  <jcc.JCCEnv object at 0x1004730d8>
>  >>> lucene.Version.LUCENE_CURRENT
>  <Version: LUCENE_CURRENT>
>  >>> lucene.Version.LUCENE_24
>  <Version: LUCENE_24>
>  >>> lucene.Version.LUCENE_CURRENT.onOrAfter(lucene.Version.LUCENE_29)
>  True
>
> And there is also this one, the version of Lucene compiled into PyLucene:
>  >>> lucene.VERSION
>  '2.9.0'
>
> Andi..
>


vajda at apache

Oct 13, 2009, 1:53 PM

Post #8 of 8 (202 views)
Permalink
Re: [VOTE] Release PyLucene 2.9.0-1 [In reply to]

On Wed, 7 Oct 2009, Andi Vajda wrote:

> With the recent release of Java Lucene 2.9.0, a PyLucene 2.9.0-1 release
> closely tracking it is ready.
>
> Release candidate 1 of PyLucene 2.9.0-1 is available from:
>
> http://people.apache.org/~vajda/staging_area/
>
> The list of changes is available from:
>
> http://svn.apache.org/repos/asf/lucene/pylucene/branches/pylucene_2_9/CHANGES
>
> Please vote to release these artifacts as PyLucene 2.9.0-1.
>
> Thanks !
>
> Andi..
>
> ps: the KEYS file for PyLucene release signing is at:
> http://svn.apache.org/repos/asf/lucene/pylucene/dist/KEYS

This vote has now passed with 5 +1, no -1.

Thanks to all that voted !

Andi..

Lucene general RSS feed   Index | Next | Previous | View Threaded
 
 


Interested in having your list archived? Contact lists@gossamer-threads.com
 
  Web Applications & Managed Hosting Powered by Gossamer Threads Inc.