Building PyLucene on Windows

2010-03-09 Thread Thomas Koch
Makefile completely? I'm not that familiar with ANT but know it has been developed to provide platform independant built processes - and it includes shell-tasks for anything that is not java... (I know this could be some work, just wanted to know if this question has been raised before or if this is a

RE: Access to Google Code project : PyLucene-Win32

2010-03-30 Thread Thomas Koch
; Co. KG Endenicher Allee 35 53121 Bonn Germany http://www.orbiteam.de > -Original Message- > From: Charles [mailto:peac...@gmail.com] > Sent: Tuesday, March 30, 2010 1:00 PM > To: Thomas Koch > Subject: Re: Access to Google Code project : PyLucene-Win32 > > On Tue

Building Apache PyLucene 2.9.3 / 3.0.2 on Windows

2010-07-09 Thread Thomas Koch
Hi, trying to build Apache PyLucene 2.9.3 / 3.0.2 on Windows (Win32, Python 2.6, Java 1.6, ant 1.8.0) fails for me with an error during "make" of PyLucene. Could build JCC2.6 before with no problem. Should be noted that I've built PyLucene 2.4 before (same machine) with no problems (with Jc

Re: Building Apache PyLucene 2.9.3 / 3.0.2 on Windows

2010-07-10 Thread Thomas Koch
Thanks for the speedy response - that solved this problem: in PyLucene 2.9.3 / Makefile JCCFLAGS?=--no-generics --reserved IGNORE in PyLucene 3.0.2 / Makefile JCCFLAGS?=--reserved IGNORE regards Thomas -- Am 10.07.2010, 00:24 Uhr, schrieb Andi Vajda : It is most likely that IGNORE is being de

PyLucene binaries for Python 2.6 and Windows platform

2010-07-12 Thread Thomas Koch
Dear all, I uploaded latest JCC and PyLucene (2.9.3/3.0.2) for Python 2.6 and Windows platform to http://code.google.com/p/pylucene-win32-binary/downloads/list best regards Thomas -- OrbiTeam Software GmbH & Co. KG Endenicher Allee 35 53121 Bonn Germany http://www.orbiteam.de

RE: API changes between 2.9.2 and 2.9.3

2010-07-21 Thread Thomas Koch
> ... > I realize that PyLucene doesn't make that easy because it doesn't warn > about deprecated API use. > [Thomas Koch] Well this is a general drawback in Python as interpreted language I guess - wrong interfaces are only detected at runtime and are thus harder to test (u

failure of some PyLucene tests on windows OS

2011-04-14 Thread Thomas Koch
Hi, I've observed some tests failing on my windows build of PyLucene. Tested with PyLucene 2.9(.2) and PyLucene 3.1(.0) (latest) with Python 2.6. The problem is with test_PyLucene.py and test_PythonDirectory.py and looks like some file lock issue. The test fixture tries to cleanup the created in

RE: failure of some PyLucene tests on windows OS

2011-04-14 Thread Thomas Koch
homas > -Original Message- > From: Thomas Koch [mailto:k...@orbiteam.de] > Sent: Thursday, April 14, 2011 10:13 AM > To: pylucene-dev@lucene.apache.org > Subject: failure of some PyLucene tests on windows OS > > Hi, > I've observed some tests failing on my window

RE: failure of some PyLucene tests on windows OS

2011-04-14 Thread Thomas Koch
> Well, sure, not running the code that breaks solves the problem. But can you > then run the tests multiple times ? > [Thomas Koch] note that previously closeStore() was not called, but now when calling it the test_PyLucene runs OK. And yes I can run tests several times- on PyLuce

RE: failure of some PyLucene tests on windows OS

2011-04-15 Thread Thomas Koch
> I'd expect anyone running on Windows to see these test failures. > > Andi.. > So what do you think about this issue - can we ignore this or claim it's a windows bug or hope that 'just' the test code is wrong? I'd suggest to at least apply the mentioned fix (i.e. uncomment the close call in t

RE: Need help building JCC on windows

2011-05-19 Thread Thomas Koch
Dear Baseer, I've never tried with Mingw32 but succeeded in a built with the Microsoft Visual Studio (Express 9.0) on Win7/32bit. Eggs are available for download at http://code.google.com/p/pylucene-win32-binary/downloads/list If you're only looking for JCC - version 2.6 is available for download.

RE: [VOTE] Release PyLucene 3.3 (rc2)

2011-07-22 Thread Thomas Koch
> the PyLucene/PyICU integration, which is not indispensable. > > Andi.. > > On Thu, 21 Jul 2011, Thomas Koch wrote: > > > I've just tried to build PyLucene 3.3 on win32 and failed. > > This may be unrelated to V3.3 though as I tried the build process with minG

RE: JCC crash when building

2011-09-08 Thread Thomas Koch
Petrus, not sure if that helps, but I recently had a similar issue with JCC and MinGW on Windows: I was able to build (and install) JCC, but the final "python -m jcc.__main__ xyz.jar" (when building PyLucene) did fail - the python.exe crashed! I couldn't figure out what the problem is and finally

PyLucene 3.4 EGGs for Windows

2011-09-28 Thread Thomas Koch
FYI: PyLucene 3.4 EGGs for Windows (Python 2.6 and 2.7) are available now on pylucene-extra: http://code.google.com/a/apache-extras.org/p/pylucene-extra/ of course JCC 2.11 EGGs are available too. regards Thomas

SynonymAnalyzer(s) in PyLucene34

2011-10-27 Thread Thomas Koch
Hi, while I was playing with the SynonymAnalyzer stuff (pylucene-3.4 samples) I discovered that the wordnet example is broken due to an outdated wordnet database: The SynonymAnalyzerTest works fine, but the SynonymAnalyzerViewer fails with: ...lucene.JavaError: org.apache.lucene.index.IndexFormatTo

AW: [VOTE] Release PyLucene 3.5.0 rc3

2011-12-09 Thread Thomas Koch
> Please vote on rc3 +1 I was able to build JCC 2.12 and PyLucene 3.5.0(3) on win32 with py2.7 using - Java JDK 1.6.0_06 - Visual Studio 9.0 make tests reveals the typical windows issues (os.unlink in cleanup/closeStore causing WindowsError). I've seen similar thinks happening in other contex

Setting Stopword Set in PyLucene (or using Set in general)

2012-02-01 Thread Thomas Koch
b= lucene.StopAnalyzer(v,s) Traceback (most recent call last): File "", line 1, in lucene.InvalidArgsError: (, '__init__', (, set(['die', 'der', 'das']))) s = lucene.Set(['der','die','das']) Traceback (most rec

AW: Setting Stopword Set in PyLucene (or using Set in general)

2012-02-03 Thread Thomas Koch
> Arrays.asList converts java arrays to java lists, and you can pass a python > sequence to it. From there, all of the collection constructors can be passed > other collections. > Thanks, Aric - that helped a lot. Will also look at the hints Andi send earlier this day. Regards, Thomas

AW: AW: Setting Stopword Set in PyLucene (or using Set in general)

2012-02-22 Thread Thomas Koch
implemented in Java is called PythonSet whereas the one implemented in Python - and wraps the Java pendant - is called JavaSet, but that's just a comment and depends on the point of view) > -Ursprüngliche Nachricht- > Von: Andi Vajda [mailto:va...@apache.org] > Gesendet: Mittwoch, 1

AW: AW: Setting Stopword Set in PyLucene (or using Set in general)

2012-02-22 Thread Thomas Koch
> Attached is a patch against > http://svn.apache.org/repos/asf/lucene/pylucene/branches/pylucene_3_5/ > (revision 1292224) > Should be attached NOW ,-) regards Thomas

AW: AW: PyLucene use JCC shared object by default

2012-04-23 Thread Thomas Koch
tation! Sorry for the confusion ,-) best regards Thomas -- OrbiTeam Software GmbH & Co. KG, Germany http://www.orbiteam.de > -Ursprüngliche Nachricht- > Von: Andi Vajda [mailto:va...@apache.org] > Gesendet: Mittwoch, 18. April 2012 20:37 > An: pylucene-dev@lucene.apache.org > Betreff

AW: Building PyLucene on Windows

2012-04-30 Thread Thomas Koch
Jeremy, (and Chris) note that there are some pre-built binaries of PyLucene/JCC available for Windows and other platforms in the pylucene extras project: http://code.google.com/a/apache-extras.org/p/pylucene-extra/ Anyway, I can shortly describe my setup for the build process : I am currently us

AW: JCC initVM crash

2012-04-30 Thread Thomas Koch
Java JCC site-package I built: > > INCLUDES=[u'C:\\Program Files (x86)\\Java\\jdk1.6.0_25/include', > u'C:\\Program Files (x86)\\Java\\jdk1.6.0_25/include/win32'] > CFLAGS=['-fno-strict-aliasing', '-Wno-write-strings'] DEBUG_CFLAGS=['-O0'

Re: AW: AW: PyLucene use JCC shared object by default

2012-04-30 Thread Thomas Koch
Sorry about that - you can find it here http://db.tt/nhiCrgGU Regards Thomas -- Am 30.04.2012 um 19:31 schrieb Andi Vajda : > > On Mon, 30 Apr 2012, Thomas Koch wrote: > >> Dear Andi, I again had a look at the patch I submitted recently and would >> like to get back to it

AW: AW: AW: AW: PyLucene use JCC shared object by default

2012-05-03 Thread Thomas Koch
ests in 0.031s FAILED (failures=4) > -Ursprüngliche Nachricht- > Von: Andi Vajda [mailto:va...@apache.org] > Gesendet: Donnerstag, 3. Mai 2012 01:00 > An: pylucene-dev@lucene.apache.org > Betreff: Re: AW: AW: AW: PyLucene use JCC shared object by default > > > Hi Thom

AW: AW: AW: AW: AW: PyLucene use JCC shared object by default

2012-05-04 Thread Thomas Koch
> > As far as I understand > > elem0 = jArray[0] -> yields python object > > > > elem0 = arrayList.get(0) -> yields wrapped Java object > > > > Not sure if that's intended. In that case the test should be fixed ,-) > > If the array is an array of object, then objects you get, including instances o

AW: [VOTE] Release PyLucene 3.6.0

2012-05-06 Thread Thomas Koch
-3.6.0\lucene\build.xml ivy-bootstrap: [mkdir] Created dir: C:\Users\Thomas Koch\.ant\lib [echo] installing ivy 2.2.0 to C:\Users\Thomas Koch\.ant\lib [get] Getting: http://repo1.maven.org/maven2/org/apache/ivy/ivy/2.2.0/ivy-2.2.0.jar [get] To: C:\Users\Thomas Koch\.ant\lib\ivy-2.2

[Why] some PyLucene tests fail on Windows

2012-05-08 Thread Thomas Koch
There's a known issue with some PyLucene tests that fail on Windows - reported/discussed before - see http://mail-archives.apache.org/mod_mbox/lucene-pylucene-dev/201104.mbox/<00 0d01cbfa7b$c60ca530$5225ef90$@de> While some tests have been fixed, some others still show errors / fail on windows, c

PyLucene3.6 windows binaries

2012-05-23 Thread Thomas Koch
PyLucene 3.6.0 for Python 2.6/2.7 is now available as pre-compiled binary for windows (32bit) from the pylucene-extra site at http://code.google.com/a/apache-extras.org/p/pylucene-extra Note: pylucene-extra is not an official Apache project, but rather an attempt to lower the entry barrier to PyLu

AW: DLL load failed: The specified module could not be found. from jcc import _jcc

2012-08-16 Thread Thomas Koch
Dear Carlos, haven't used mod_wsgi so far, but remember there was a patch submitted to the list related to mod_wsgi : > Von: Patrick J. McNerthney [mailto:pmcnerth...@ncircle.com] > Gesendet: Freitag, 6. Juli 2012 05:40 > An: pylucene-dev@lucene.apache.org > Betreff: Supporting mod_wsgi python sub

AW: PyLucene 3.6 build on MacOS and PyLucene website

2012-08-23 Thread Thomas Koch
> > If anyone wants to help, here is link with a video on how to make > > edits and submit them > > (http://www.apache.org/dev/cmsref.html#non-committer) > > Contributions would be much appreciated. > > Andi.. > I want to have a look at the process and see how I can help, but can't promise anyt

AW: DLL load failed: The specified module could not be found. from jcc import _jcc

2012-08-24 Thread Thomas Koch
ince I am on Windows XP > which I understand doesn't support WSGIDaemonProcess would allow a > separate process to run. > > Is there anyone else at pylucene that might be able to help? Or maybe > point me to the patch that was proposed to see if that fixes the problem? &g

AW: Pylucene release

2012-11-14 Thread Thomas Koch
Hi Andi, I still wanted to check the API changes related to 4.0 and could then help with porting the example code (and/or unit tests). I hope there are more people interested in helping to port PyLucene (or at least the 'related' Python code) to the Lucene 4.0 level... How can we best proceed? I a

Re: [VOTE] Release PyLucene 3.6.2

2012-12-30 Thread Thomas Koch
Hi, build succeeded on MacOS 10.8.2 with Python 2.7.2 and java 1.6.0_37. (=> +1) I'm currently at home (xmas break) and don't have access to my Windows-build-environment, but can test on Win7 next week too. regards Thomas -- Am 26.12.2012 um 03:56 schrieb Andi Vajda : > > The PyLucene 3.6.2-1

AW: [VOTE] Release PyLucene 3.6.2

2013-01-02 Thread Thomas Koch
Update: I was also able to build JCC2.15/PyLucene3.6.2 on Win7(32 bit) with Python 2.7.2, Java 1.6 and MSVC9.0 Regards, Thomas -Ursprüngliche Nachricht- Von: Thomas Koch [mailto:k...@orbiteam.de] Gesendet: Sonntag, 30. Dezember 2012 15:22 An: pylucene developers Betreff: Re: [VOTE

Re: [VOTE] Release PyLucene 3.6.2

2013-01-03 Thread Thomas Koch
Reading http://pypi.python.org/simple/ >> No local packages or download links found for lucene==3.6.2 >> error: Could not find suitable distribution for >> Requirement.parse('lucene==3.6.2') >> make: *** [install] Error 1 >> >> Looks like this is the same thing Ro

AW: [VOTE] Release PyLucene 3.6.2

2013-01-03 Thread Thomas Koch
ly to be bugs. --%<-- Found here: https://developer.apple.com/library/mac/#documentation/Darwin/Conceptual/64b itPorting/building/building.html regards Thomas > -Ursprüngliche Nachricht- > Von: Thomas Koch [mailto:k...@orbiteam.de] > Gesendet: Donnerstag, 3. Januar 2013

RE: [ANNOUNCE] Apache PyLucene 3.6.2

2013-01-07 Thread Thomas Koch
Windows builds (eggs for win32) of PyLucene 3.6.2 are available at http://code.google.com/a/apache-extras.org/p/pylucene-extra/downloads/list Note: pylucene-extra is a separate project that provides pre-built eggs for PyLucene and JCC. Currently only Windows 32bit and Py26/27 are actively support

Re: FacetExample.py

2013-02-11 Thread Thomas Koch
Hi Andi, first please excuse I didn't get back to you regarding the tests - I did start with it but then got stuck and distracted from other tasks popping up. No excuse - I just failed to deliver what I promised. > ... > Would you please port it to the new 4.x API so that it can be included wit

Re: FacetExample.py

2013-02-12 Thread Thomas Koch
Hi Andi, Thanks to your hints I was now able to build PyLucene4.1 and got further with the FacetExample.py - The imports should be OK now and most of the required changes are done I guess. However I now reached another problem: I need to instantiate the class 'FacetsCollector' but get an error

Re: FacetExample.py

2013-02-13 Thread Thomas Koch
https://dl.dropbox.com/u/4384120/FacetExample.py Or as patch to svn: https://dl.dropbox.com/u/4384120/FacetExample_patch_20130213.txt Thanks again for your help. regards, Thomas -- Am 12.02.2013 um 22:36 schrieb Andi Vajda : > > Hi Thomas, > > On Tue, 12 Feb 2013, Thomas Koch wrote:

Re: FacetExample.py

2013-04-08 Thread Thomas Koch
samples/FacetExample.py simple > > you get this error: > > AttributeError: type object 'FacetIndexingParams' has no attribute > 'ALL_PARENTS' > > Could you please look into this, make FacetExample.py work again ? > > Thanks ! > > Andi.. >

AW: [VOTE] Release PyLucene 4.2.1

2013-04-17 Thread Thomas Koch
Hi Andi, sorry, but -1 for Windows build: OK: I was able to build JCC 1.16 with Python27 on Win32 (Win7). Fail: I could not build PyLucene 4.2.1 with Python27 and Java 1.6. After having upgraded from my old ant 1.8.0 to ant 1.9.0 (make now requires ant 1.8.2) I could also run make (the ivy-target

AW: [VOTE] Release PyLucene 4.2.1-1

2013-04-18 Thread Thomas Koch
Andi, I now get a different error while compiling __init__.cpp: org/apache/lucene/util/automaton/CompiledAutomaton$AUTOMATON_TYPE.h(42) : error C2059: Syntaxfehler: 'Zeichenfolge' org/apache/lucene/util/automaton/CompiledAutomaton$AUTOMATON_TYPE.h(42) : error C2238: Unerwartete(s) Token vor ';' T

AW: AW: [VOTE] Release PyLucene 4.2.1-1

2013-04-19 Thread Thomas Koch
o in summary: if you add the PREFIX to reserved words it will build and run on windows. Regards, Thomas -Ursprüngliche Nachricht- Von: Andi Vajda [mailto:va...@apache.org] Gesendet: Donnerstag, 18. April 2013 19:09 An: pylucene-dev@lucene.apache.org Betreff: Re: AW: [VOTE] Release PyLuc

AW: AW: AW: [VOTE] Release PyLucene 4.2.1-1

2013-04-22 Thread Thomas Koch
> Thanks again. A trick - on Windows - might be to rename the testrepo dir to > testrepo. and move to the next test. And clean them all > up at the end. Or create a testrepos directory tree where each > testrepo. is going to be created and remove the whole tree at > the end. Sure, that's similar t

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 : > > It looks like the time has finally come for a PyLucene 4.x

Re: Introduction to PyLucene Community and some doubts

2013-06-11 Thread Thomas Koch
Hi, I suggest you have a look at Apache TIKA: http://tika.apache.org You can easily call a "java -jar tika.jar" command via python tools like os.popen and convert files in various formats to text. There's even a python wrapper based on JCC but I'm not sure if that's still maintained: http://red

Re: jcc/sources/functions.cpp:20:23: error: arpa/inet.h: No such file or directory

2013-06-11 Thread Thomas Koch
Samantha, you may want to try a per-built binary of JCC for windows: there are version for win32 and py26 and py27 available here: http://code.google.com/a/apache-extras.org/p/pylucene-extra/downloads/list These eggs were built using Python, Java, ant and MSVC (Microsoft Visual Studio 9.0) - plu

Future of pylucene-extra

2013-06-11 Thread Thomas Koch
Hi, the pylucene-extra project started some time ago with the goal to provide pre-built PyLucene and JCC eggs on several OS/Python/Java combos [1]. In fact we collected 32 eggs since June 2011 - including versions for Windows and Mac OSX. Now that Google announced their EOL support for Downloads

PyLucene@Mac AWT issue (blocker) on Mac OSX

2013-06-20 Thread Thomas Koch
Hi, I just came across a strange issue on my Macbook where I built PyLucene3.6.2 a while ago and am using it since then (i.e. today) without any problems: as of today I always get an error message java.lang.InternalError: Can't start the AWT because Java was started on the first thread. Make

Re: PyLucene@Mac AWT issue (blocker) on Mac OSX

2013-06-21 Thread Thomas Koch
Am 20.06.2013 um 18:40 schrieb Andi Vajda : > If you don't need AWT, try passing vmargs=['-Djava.awt.headless=true'] to > initVM(), like jcc itself does (see jcc's cpp.py vmargs initial value): > > lucene.initVM(vmargs=['-Djava.awt.headless=true']) > > Andi.. > > Thanks, that saved my day!

Re: [VOTE] Release PyLucene 4.3.1-1

2013-06-30 Thread Thomas Koch
Hi, I could build pylucene-4.3.1-1 on Mac OS-X (Darwin Kernel Version 12.4.0) with - Python 2.7.2 - GCC 4.2.1 - java version "1.6.0_51" all tests pass. It should be noted however that the samples won't work on my Mac without adding vmargs=['-Djava.awt.headless=true'] to lucene.initVM() As this

Re: [VOTE] Release PyLucene 4.4.0-1

2013-08-18 Thread Thomas Koch
I could build JCC 2.17 and PyLucene 4.4.0 und Mac OS X 10.8.4 (64-bit only - Python 2.7, Java 1.6). All tests did pass and samples work like expected. +1 regards Thomas -- Am 17.08.2013 um 16:52 schrieb Andi Vajda : > > The PyLucene 4.4.0-1 release tracking the recent release of Apache Luce

Re: [VOTE] Release PyLucene 4.4.0-1

2013-08-18 Thread Thomas Koch
Hi, must be something wrong with your build chain setup - I also use MacOS 10.8 and Python 2.7 Are you using the Apple "builtin" Python or did you install your one? Do you have Xcode installed and did you choose to enable the "command line tools" (Xcode/Preferences/Downloads/Components)? Note:

Re: [VOTE] Release PyLucene 4.7.1-1

2014-04-09 Thread Thomas Koch
./lib/clang/5.1/lib/darwin/libclang_rt.osx.a ld: internal error: atom not found in symbolIndex(__ZN7JNIEnv_13CallIntMethodEP8_jobjectP10_jmethodIDz) for architecture x86_64 clang: error: linker command failed with exit code 1 (use -v to see invocation) This is Max OS X 10.9.2 with XCode version 5

Re: [VOTE] Release PyLucene 4.7.1-1

2014-04-10 Thread Thomas Koch
Am 09.04.2014 um 22:35 schrieb Andi Vajda : > I think all of these were covered last week on this list, or was it off list ? > Hi, yes - sorry, just missed that discussion - it’s here: http://mail-archives.apache.org/mod_mbox/lucene-pylucene-dev/201403.mbox/date > Anyway: > - you must use the

Re: [VOTE] Release PyLucene 4.7.2-1

2014-04-16 Thread Thomas Koch
Hi , I was able to build PyLucene 4.7.2-1 (incl. JCC 2.19) from source on MacOS-X and „make test“ passes without failures. also tested the samples IndexFiles.py and SearchFiles.py but the FacetExample.py unfortunately fails now: samples$ python FacetExample.py Traceback (most recent call last)

AW: release votes

2014-04-24 Thread Thomas Koch
Hi Andi, I don't agree that it is unimportant to make PyLucene releases. Without a ready-to-run software package the hurdles to use PyLucene are raised. It is already not quite simple (for beginners) to install PyLucene on the various platforms. Having a packaged release that is tested by some use

Re: PyLucene 4.8.0 - samples/FacetExample.py appears broken

2014-05-30 Thread Thomas Koch
Hello Ed, yes this is a 'known issue‘ - I contributed the FacetExample based on PyLucene 3.6.x. Meanwhile Lucene Facet API has changed and I shall adapt the example. regards, Thomas -- Am 30.05.2014 um 18:09 schrieb Eduard Rozenberg : > Hello, > > I’m getting an error running this sample, I b

Re: PyLucene 4.8.0 - samples/FacetExample.py appears broken

2014-06-02 Thread Thomas Koch
Am 30.05.2014 um 23:08 schrieb Andi Vajda : > Thanks Thomas ! > Once you do that maybe it's time to make a 4.8.1 release too. > Let me know when you're ready with a fix. TLDR; fix is available: I've now revised the FacetExample.py to use the new API - it's tested to work with pylucene-4.8.0-1 T

Re: Install two version of lucene.

2014-10-22 Thread Thomas Koch
Hi Caba, you probably have both ‚installed‘ - i.e. both versions are copied into your global python’s site-packages directory, but only one is enabled by the installer (pip or easy-install). The ‚active‘ packages are added to the python sys.path - this is typically done in a file ‚easy-install.

AW: Having trouble importing PyLucene packages

2015-09-16 Thread Thomas Koch
Dear Blaž Štempelj, as far as I understand your posting on StackOverflow this is more an Eclipse/PyDev question than a PyLucene issue - right? So this is probably the wrong channel... Stated in other words: - does your python script run and can find/import lucene when started within a shell

Current state of PyLucene

2015-11-15 Thread Thomas Koch
ucene, including a standalone server based on CherryPy. https://pypi.python.org/pypi/lupyne <https://pypi.python.org/pypi/lupyne> best regards Thomas Koch — OrbiTeam Software www.orbiteam.de <http://www.orbiteam.de/>

AW: Current state of PyLucene

2015-11-17 Thread Thomas Koch
> > On Nov 15, 2015, at 22:54, Jeff Breidenbach wrote: > > > > I don't understand this. Lucene is the dominant open source search > > software, and Python continues to gain popularity. > > Why is there a decline in interest? > > Dunno. The PMC lives in Java land and doesn't pay much attention. An

Re: [VOTE] Release PyLucene 4.10.4-1

2015-11-21 Thread Thomas Koch
+1 for this release from a pylucene user. I managed to built & install PyLucene 4.10.4-1 release with Java version "1.8.0_66"(build 1.8.0_66-b17) on macosx-10.10 (intel) with Python 2.7.10 - 'make test' runs fine. For Mac users with installation issues here are some hints that may help: I did h

Re: Installing PyLucene

2017-01-04 Thread Thomas Koch
> NameError: global name 'WindowsError' is not defined > in > ERROR: test_FieldEnumeration (__main__.Test_PyLuceneWithFSStore) I've downloaded current version pylucene-6.2.0-src.tar.gz2016-09-18 09:04 30M and was able to build JCC and PyLucene on MacOS X10.11 (64-bit, Python 2.7.10 ,

Re: Installing PyLucene

2017-01-06 Thread Thomas Koch
> Am 04.01.2017 um 10:59 schrieb Petrus Hyvönen : > > Dear Thomas, > > I would be very interested in a python 3 port of JCC. I am not a very skilled > developer, looked at starting a development based on the old python-3 version > but it's beyond my current skills. > > I would be happy to hel

Re: Installing PyLucene

2017-01-06 Thread Thomas Koch
Dear Andi, I’ve just sent the link to the public gist with the patch to Petrus and this list. As mentioned by Oliver we’d be more than happy if a core developer of JCC/PyLucene could review the patch and decide what to do with it. It has been developed without intimate knowledge of JCC with the

Re: Installing PyLucene

2017-01-12 Thread Thomas Koch
and > windows, I saw no deviations in behavior of the library compared to v2.7. > This is by far not a very deep test suite, but very good news. > > With Best Regards > /Petrus > > > >> On 06 Jan 2017, at 10:07 , Thomas Koch > <mailto:k...@orbiteam.de>>

Re: Installing PyLucene

2017-01-12 Thread Thomas Koch
Dear Jan, thanks for your explanations. > PyLucene is driven by its own community, and user involvement and > contributions is a must. I’m quite familiar with community contributions - have already submitted code and feedback, tested Pylucene releases, did provide support to other users and vo

Re: Installing PyLucene

2017-01-12 Thread Thomas Koch
Dear Andi, many thanks for your review of the patch and helpful comments. As mentioned in my previous mail to the list I’m afraid to let you know that we currently cannot put more effort into this task. This may change in the future of course. However, with „funding“ my idea was to look for op