Re: [VOTE] Release PyLucene 4.3.0-1

2013-05-14 Thread Robert Muir
+1

On Mon, May 6, 2013 at 8:27 PM, Andi Vajda va...@apache.org wrote:

 It looks like the time has finally come for a PyLucene 4.x release !

 The PyLucene 4.3.0-1 release tracking the recent release of Apache Lucene
 4.3.0 is ready.

 A release candidate is available from:
 http://people.apache.org/~vajda/staging_area/

 A list of changes in this release can be seen at:
 http://svn.apache.org/repos/asf/lucene/pylucene/branches/pylucene_4_3/CHANGES

 PyLucene 4.3.0 is built with JCC 2.16 included in these release artifacts:
 http://svn.apache.org/repos/asf/lucene/pylucene/trunk/jcc/CHANGES

 A list of Lucene Java changes can be seen at:
 http://svn.apache.org/repos/asf/lucene/dev/tags/lucene_solr_4_3_0/lucene/CHANGES.txt

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

 Thanks !

 Andi..

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

 pps: here is my +1


Re: [VOTE] Release PyLucene 4.3.0-1

2013-05-13 Thread Andi Vajda


On Sun, 12 May 2013, Andi Vajda wrote:


On May 12, 2013, at 22:21, Barry Wark ba...@physion.us wrote:


On Mon, May 13, 2013 at 1:06 AM, Andi Vajda va...@apache.org wrote:


On May 12, 2013, at 21:04, Barry Wark ba...@physion.us wrote:


Hi all,

I'm new to the pylucene-dev list, so please forgive me if I'm stepping out of 
line in the voting process.

We're using sucesfully JCC 2.15 to generate a wrapper for our Java API. JCC 
2.16 from SVN HEAD produces the following error (output log attached) when 
using the new --use_full_names option. Python 2.7, OS X 10.8:

build/_ovation/com/__init__.cpp:15:14: error: use of undeclared identifier
  'getJavaModule'
module = getJavaModule(module, , com);
 ^
build/_ovation/com/__init__.cpp:22:14: error: use of undeclared identifier
  'getJavaModule'
module = getJavaModule(module, , com);


You might be mixing in headers from an old version here...


I'm back at my computer and checked where getJavaModule() is declared and 
it's declared up there in the same __init__.cpp file, just below initVM(), 
line 7. The function itself, is defined in jcc.cpp.


The compiler error you're encountering is rather unexpected...
Did you change anything else other than upgrading to trunk's 2.16 version ?

Andi..



Hi Andi,

This was run in a virtualenv with no previous JCC installation. The system 
python site-packages does not have JCC either (we always use a virtualenv to 
build our wrapper, installing JCC at build time).

How can I confirm that we don't have headers from an older JCC?


Look for where this function is defined and see why it's not picked up.
(I'm not at my computer right now to verify that this is the right hypothese)

Andi..



Cheers,
Barry




Andi..


 ^
2 errors generated.
error: command 'clang' failed with exit status 1


The generated _ovation/__init__.cpp and _ovation/com/__init__.cpp are also 
attached.

Cheers,
Barry


On Mon, May 6, 2013 at 8:27 PM, Andi Vajda va...@apache.org wrote:


It looks like the time has finally come for a PyLucene 4.x release !

The PyLucene 4.3.0-1 release tracking the recent release of Apache Lucene 4.3.0 
is ready.

A release candidate is available from:
http://people.apache.org/~vajda/staging_area/

A list of changes in this release can be seen at:
http://svn.apache.org/repos/asf/lucene/pylucene/branches/pylucene_4_3/CHANGES

PyLucene 4.3.0 is built with JCC 2.16 included in these release artifacts:
http://svn.apache.org/repos/asf/lucene/pylucene/trunk/jcc/CHANGES

A list of Lucene Java changes can be seen at:
http://svn.apache.org/repos/asf/lucene/dev/tags/lucene_solr_4_3_0/lucene/CHANGES.txt

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

Thanks !

Andi..

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

pps: here is my +1


jcc_2.16_osx_10.8_py2.7.out.txt
__init__.cpp
__init__.cpp






Re: [VOTE] Release PyLucene 4.3.0-1

2013-05-13 Thread Thomas Koch
I was able to build PyLucene 4.3.0-1 on Mac OS X ( Darwin Kernel Version 
12.3.0) with Python 2.7.2.

All tests did pass.

 import lucene
 lucene.VERSION
'4.3.0'
 

regards,
Thomas

Am 07.05.2013 um 02:27 schrieb Andi Vajda va...@apache.org:

 
 It looks like the time has finally come for a PyLucene 4.x release !
 
 The PyLucene 4.3.0-1 release tracking the recent release of Apache Lucene 
 4.3.0 is ready.
 
 A release candidate is available from:
 http://people.apache.org/~vajda/staging_area/
 
 A list of changes in this release can be seen at:
 http://svn.apache.org/repos/asf/lucene/pylucene/branches/pylucene_4_3/CHANGES
 
 PyLucene 4.3.0 is built with JCC 2.16 included in these release artifacts:
 http://svn.apache.org/repos/asf/lucene/pylucene/trunk/jcc/CHANGES
 
 A list of Lucene Java changes can be seen at:
 http://svn.apache.org/repos/asf/lucene/dev/tags/lucene_solr_4_3_0/lucene/CHANGES.txt
 
 Please vote to release these artifacts as PyLucene 4.3.0-1.
 
 Thanks !
 
 Andi..
 
 ps: the KEYS file for PyLucene release signing is at:
 http://svn.apache.org/repos/asf/lucene/pylucene/dist/KEYS
 http://people.apache.org/~vajda/staging_area/KEYS
 
 pps: here is my +1



Re: [VOTE] Release PyLucene 4.3.0-1

2013-05-12 Thread Barry Wark
Hi all,

I'm new to the pylucene-dev list, so please forgive me if I'm stepping out
of line in the voting process.

We're using sucesfully JCC 2.15 to generate a wrapper for our Java API. JCC
2.16 from SVN HEAD produces the following error (output log attached) when
using the new --use_full_names option. Python 2.7, OS X 10.8:

build/_ovation/com/__init__.cpp:15:14: error: use of undeclared identifier
  'getJavaModule'
module = getJavaModule(module, , com);
 ^
build/_ovation/com/__init__.cpp:22:14: error: use of undeclared identifier
  'getJavaModule'
module = getJavaModule(module, , com);
 ^
2 errors generated.
error: command 'clang' failed with exit status 1


The generated _ovation/__init__.cpp and _ovation/com/__init__.cpp are also
attached.

Cheers,
Barry


On Mon, May 6, 2013 at 8:27 PM, Andi Vajda va...@apache.org wrote:


 It looks like the time has finally come for a PyLucene 4.x release !

 The PyLucene 4.3.0-1 release tracking the recent release of Apache Lucene
 4.3.0 is ready.

 A release candidate is available from:
 http://people.apache.org/~**vajda/staging_area/http://people.apache.org/~vajda/staging_area/

 A list of changes in this release can be seen at:
 http://svn.apache.org/repos/**asf/lucene/pylucene/branches/**
 pylucene_4_3/CHANGEShttp://svn.apache.org/repos/asf/lucene/pylucene/branches/pylucene_4_3/CHANGES

 PyLucene 4.3.0 is built with JCC 2.16 included in these release artifacts:
 http://svn.apache.org/repos/**asf/lucene/pylucene/trunk/jcc/**CHANGEShttp://svn.apache.org/repos/asf/lucene/pylucene/trunk/jcc/CHANGES

 A list of Lucene Java changes can be seen at:
 http://svn.apache.org/repos/**asf/lucene/dev/tags/lucene_**
 solr_4_3_0/lucene/CHANGES.txthttp://svn.apache.org/repos/asf/lucene/dev/tags/lucene_solr_4_3_0/lucene/CHANGES.txt

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

 Thanks !

 Andi..

 ps: the KEYS file for PyLucene release signing is at:
 http://svn.apache.org/repos/**asf/lucene/pylucene/dist/KEYShttp://svn.apache.org/repos/asf/lucene/pylucene/dist/KEYS
 http://people.apache.org/~**vajda/staging_area/KEYShttp://people.apache.org/~vajda/staging_area/KEYS

 pps: here is my +1

setup args = {'ext_modules': [setuptools.extension.Extension instance at 
0x10996b908], 'name': 'ovation', 'package_data': {'ovation': 
['joda-time-1.6.2.jar', 'cloud-file-cache-2.0-SNAPSHOT.jar', 
'ovation-api-2.0-SNAPSHOT.jar', 'ovation-core-2.0-SNAPSHOT.jar', 
'ovation-couch-2.0-SNAPSHOT.jar', 'ovation-logging-2.0-SNAPSHOT.jar', 
'ovation-query-2.0-SNAPSHOT.jar', 'ovation-test-utils-2.0-SNAPSHOT.jar', 
'aopalliance-1.0.jar', 'c3p0-0.9.1.2.jar', 'cal10n-api-0.7.4.jar', 
'clj-time-0.4.4.jar', 'jackson-annotations-2.1.1.jar', 
'jackson-core-2.1.2.jar', 'jackson-databind-2.1.2.jar', 
'jackson-datatype-joda-2.1.2.jar', 'gson-2.2.jar', 'guava-13.0.1.jar', 
'guice-3.0.jar', 'guice-assistedinject-3.0.jar', 'protobuf-java-2.4.1.jar', 
'h2-1.3.170.jar', 'java-xmlbuilder-0.4.jar', 'je-4.0.92.jar', 'jconsole.jar', 
'jconsole.jar', 'jna-3.0.9.jar', 'commons-codec-1.7.jar', 
'commons-httpclient-3.1.jar', 'commons-io-2.4.jar', 'commons-lang-2.6.jar', 
'commons-logging-1.1.1.jar', 'netcdf-4.3.16.jar', 'udunits-4.3.16.jar', 
'jsr250-api-1.0.jar', 'javax.inject-1.jar', 'jsr311-api-1.1.1.jar', 
'korma-0.3.0-RC5.jar', 'lobos-1.0.0-beta1.jar', 'log4j-1.2.17.jar', 
'jcip-annotations-1.0.jar', 'ehcache-core-2.6.2.jar', 'rocoto-6.1.jar', 
'commons-compress-1.0.jar', 'commons-exec-1.1.jar', 'httpclient-4.2.1.jar', 
'httpclient-cache-4.1.2.jar', 'httpcore-4.2.1.jar', 'log4j-api-2.0-beta5.jar', 
'log4j-core-2.0-beta5.jar', 'log4j-slf4j-impl-2.0-beta5.jar', 
'bcprov-jdk16-1.46.jar', 'clojure-1.5.0.jar', 'java.jdbc-0.2.2.jar', 
'tools.macro-0.1.1.jar', 'jackson-core-asl-1.9.7.jar', 
'jackson-mapper-asl-1.9.7.jar', 'org.ektorp-1.3.0.jar', 
'jclouds-allblobstore-1.5.7.jar', 'jclouds-blobstore-1.5.7.jar', 
'jclouds-core-1.5.7.jar', 'atmos-1.5.7.jar', 'cloudfiles-1.5.7.jar', 
'filesystem-1.5.7.jar', 'openstack-keystone-1.5.7.jar', 's3-1.5.7.jar', 
'swift-1.5.7.jar', 'walrus-1.5.7.jar', 'aws-common-1.5.7.jar', 
'azure-common-1.5.7.jar', 'openstack-common-1.5.7.jar', 'aws-s3-1.5.7.jar', 
'azureblob-1.5.7.jar', 'cloudfiles-uk-1.5.7.jar', 'cloudfiles-us-1.5.7.jar', 
'cloudonestorage-1.5.7.jar', 'eucalyptus-partnercloud-s3-1.5.7.jar', 
'hpcloud-objectstorage-1.5.7.jar', 'ninefold-storage-1.5.7.jar', 
'synaptic-storage-1.5.7.jar', 'jdom-1.1.jar', 'quartz-2.1.1.jar', 
'jcl-over-slf4j-1.6.4.jar', 'slf4j-api-1.7.5.jar', 'slf4j-ext-1.7.2.jar', 
'osx-keychain-java-1.0.jar']}, 'version': '2.0-SNAPSHOT', 'zip_safe': False, 
'script_args': ['build_ext', 'bdist_egg'], 'packages': ['ovation'], 
'package_dir': {'ovation': 'build/ovation'}}
running build_ext
building 'ovation._ovation' extension
clang -fno-strict-aliasing -fno-common -dynamic -g -Os -pipe -fno-common 
-fno-strict-aliasing -fwrapv -mno-fused-madd -DENABLE_DTRACE -DMACOSX -DNDEBUG 
-Wall -Wstrict-prototypes 

Re: [VOTE] Release PyLucene 4.3.0-1

2013-05-12 Thread Andi Vajda

On May 12, 2013, at 21:04, Barry Wark ba...@physion.us wrote:

 Hi all,
 
 I'm new to the pylucene-dev list, so please forgive me if I'm stepping out of 
 line in the voting process. 
 
 We're using sucesfully JCC 2.15 to generate a wrapper for our Java API. JCC 
 2.16 from SVN HEAD produces the following error (output log attached) when 
 using the new --use_full_names option. Python 2.7, OS X 10.8:
 
 build/_ovation/com/__init__.cpp:15:14: error: use of undeclared identifier
   'getJavaModule'
 module = getJavaModule(module, , com);
  ^
 build/_ovation/com/__init__.cpp:22:14: error: use of undeclared identifier
   'getJavaModule'
 module = getJavaModule(module, , com);

You might be mixing in headers from an old version here...

Andi..

  ^
 2 errors generated.
 error: command 'clang' failed with exit status 1
 
 
 The generated _ovation/__init__.cpp and _ovation/com/__init__.cpp are also 
 attached.
 
 Cheers,
 Barry
 
 
 On Mon, May 6, 2013 at 8:27 PM, Andi Vajda va...@apache.org wrote:
 
 It looks like the time has finally come for a PyLucene 4.x release !
 
 The PyLucene 4.3.0-1 release tracking the recent release of Apache Lucene 
 4.3.0 is ready.
 
 A release candidate is available from:
 http://people.apache.org/~vajda/staging_area/
 
 A list of changes in this release can be seen at:
 http://svn.apache.org/repos/asf/lucene/pylucene/branches/pylucene_4_3/CHANGES
 
 PyLucene 4.3.0 is built with JCC 2.16 included in these release artifacts:
 http://svn.apache.org/repos/asf/lucene/pylucene/trunk/jcc/CHANGES
 
 A list of Lucene Java changes can be seen at:
 http://svn.apache.org/repos/asf/lucene/dev/tags/lucene_solr_4_3_0/lucene/CHANGES.txt
 
 Please vote to release these artifacts as PyLucene 4.3.0-1.
 
 Thanks !
 
 Andi..
 
 ps: the KEYS file for PyLucene release signing is at:
 http://svn.apache.org/repos/asf/lucene/pylucene/dist/KEYS
 http://people.apache.org/~vajda/staging_area/KEYS
 
 pps: here is my +1
 
 jcc_2.16_osx_10.8_py2.7.out.txt
 __init__.cpp
 __init__.cpp


[VOTE] Release PyLucene 4.3.0-1

2013-05-06 Thread Andi Vajda


It looks like the time has finally come for a PyLucene 4.x release !

The PyLucene 4.3.0-1 release tracking the recent release of Apache Lucene 
4.3.0 is ready.


A release candidate is available from:
http://people.apache.org/~vajda/staging_area/

A list of changes in this release can be seen at:
http://svn.apache.org/repos/asf/lucene/pylucene/branches/pylucene_4_3/CHANGES

PyLucene 4.3.0 is built with JCC 2.16 included in these release artifacts:
http://svn.apache.org/repos/asf/lucene/pylucene/trunk/jcc/CHANGES

A list of Lucene Java changes can be seen at:
http://svn.apache.org/repos/asf/lucene/dev/tags/lucene_solr_4_3_0/lucene/CHANGES.txt

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

Thanks !

Andi..

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

pps: here is my +1