You are viewing a plain text version of this content. The canonical link for it is here.
Posted to pylucene-commits@lucene.apache.org by va...@apache.org on 2011/06/06 22:55:41 UTC

svn commit: r1132766 - in /lucene/pylucene/branches/pylucene_3_2: CHANGES Makefile

Author: vajda
Date: Mon Jun  6 20:55:40 2011
New Revision: 1132766

URL: http://svn.apache.org/viewvc?rev=1132766&view=rev
Log:
preparing version 3.2

Modified:
    lucene/pylucene/branches/pylucene_3_2/CHANGES
    lucene/pylucene/branches/pylucene_3_2/Makefile

Modified: lucene/pylucene/branches/pylucene_3_2/CHANGES
URL: http://svn.apache.org/viewvc/lucene/pylucene/branches/pylucene_3_2/CHANGES?rev=1132766&r1=1132765&r2=1132766&view=diff
==============================================================================
--- lucene/pylucene/branches/pylucene_3_2/CHANGES (original)
+++ lucene/pylucene/branches/pylucene_3_2/CHANGES Mon Jun  6 20:55:40 2011
@@ -1,18 +1,9 @@
 
-Version 3.0.0 ->
-----------------
- - improved support for building on Windows with mingw32
- - added wininst target to Makefile
- - added port of ICUNormalizer2Filter using C++ ICU's Normalizer2 via PyICU
- - added port of ICUFoldingFilter using C++ ICU's Normalizer2 via PyICU
- - added port of ICUTransformFilter using C++ ICU's Transliterator via PyICU
- - PyLucene built with JCC 2.6
- - fixed "Lucene in Action" samples left over on old API
- - improved support for adding optional contrib modules
- - added --package java.util.regex to wrap constructors on PatternAnalyzer
- - fixed mansearch.py sample to reflect API changes
+Version 3.1.0 -> 3.2.0
+----------------------
+ - using Lucene 3.2 sources
+ - PyLucene built with JCC 2.9
  - rearranged Lucene source checkout tree to reflect new constraints
- - 
 
 Version 2.9.0 -> 3.0.0
 ----------------------

Modified: lucene/pylucene/branches/pylucene_3_2/Makefile
URL: http://svn.apache.org/viewvc/lucene/pylucene/branches/pylucene_3_2/Makefile?rev=1132766&r1=1132765&r2=1132766&view=diff
==============================================================================
--- lucene/pylucene/branches/pylucene_3_2/Makefile (original)
+++ lucene/pylucene/branches/pylucene_3_2/Makefile Mon Jun  6 20:55:40 2011
@@ -15,10 +15,10 @@
 # site-packages directory.
 #
 
-VERSION=3.x-0
+VERSION=3.2.0-1
 LUCENE_SVN_VER=HEAD
-LUCENE_VER=3.x
-LUCENE_SVN=http://svn.apache.org/repos/asf/lucene/dev/branches/branch_3x
+LUCENE_VER=3.2
+LUCENE_SVN=http://svn.apache.org/repos/asf/lucene/dev/tags/lucene_solr_3_2
 PYLUCENE:=$(shell pwd)
 LUCENE_SRC=lucene-java-$(LUCENE_VER)
 LUCENE=$(LUCENE_SRC)/lucene
@@ -186,7 +186,6 @@ default: all
 $(LUCENE_SRC):
 	mkdir -p $(LUCENE_SRC)
 	svn $(SVNOP) -r $(LUCENE_SVN_VER) $(LUCENE_SVN)/lucene $(LUCENE_SRC)/lucene
-	svn $(SVNOP) -r $(LUCENE_SVN_VER) $(LUCENE_SVN)/common-build.xml $(LUCENE_SRC)/common-build.xml
 
 sources: $(LUCENE_SRC)