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 2018/06/07 18:26:15 UTC

svn commit: r1833137 - in /lucene/pylucene/trunk/jcc: CHANGES INSTALL helpers2/linux.py helpers3/linux.py

Author: vajda
Date: Thu Jun  7 18:26:14 2018
New Revision: 1833137

URL: http://svn.apache.org/viewvc?rev=1833137&view=rev
Log:
nil

Modified:
    lucene/pylucene/trunk/jcc/CHANGES
    lucene/pylucene/trunk/jcc/INSTALL
    lucene/pylucene/trunk/jcc/helpers2/linux.py
    lucene/pylucene/trunk/jcc/helpers3/linux.py

Modified: lucene/pylucene/trunk/jcc/CHANGES
URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/CHANGES?rev=1833137&r1=1833136&r2=1833137&view=diff
==============================================================================
--- lucene/pylucene/trunk/jcc/CHANGES (original)
+++ lucene/pylucene/trunk/jcc/CHANGES Thu Jun  7 18:26:14 2018
@@ -1,3 +1,8 @@
+Version 3.1 ->
+------------------
+ - added missing 'const' breaking build with Python 3.7 (Aric Coady)
+ -
+
 Version 3.0 -> 3.1
 ------------------
  - fixed bug PYLUCENE-36 (Paulo Villegas)

Modified: lucene/pylucene/trunk/jcc/INSTALL
URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/INSTALL?rev=1833137&r1=1833136&r2=1833137&view=diff
==============================================================================
--- lucene/pylucene/trunk/jcc/INSTALL (original)
+++ lucene/pylucene/trunk/jcc/INSTALL Thu Jun  7 18:26:14 2018
@@ -1,3 +1,2 @@
 
-Please see doc/jcc/documentation/install.html or
-http://lucene.apache.org/pylucene/jcc/install.html
+Please see http://lucene.apache.org/pylucene/jcc/install.html

Modified: lucene/pylucene/trunk/jcc/helpers2/linux.py
URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/helpers2/linux.py?rev=1833137&r1=1833136&r2=1833137&view=diff
==============================================================================
--- lucene/pylucene/trunk/jcc/helpers2/linux.py (original)
+++ lucene/pylucene/trunk/jcc/helpers2/linux.py Thu Jun  7 18:26:14 2018
@@ -24,7 +24,7 @@ def patch_st_dir(patch_version, st_egg,
 Shared mode is disabled, setuptools patch.43.%s must be applied to enable it
 or the NO_SHARED environment variable must be set to turn off this error.
 
-    sudo patch -d %s -Nup0 < %s/jcc/patches/patch.43.%s
+    sudo patch -d %s -Nup0 < %s/jcc2/patches/patch.43.%s
 
 See %s/INSTALL for more information about shared mode.
 ''' %(patch_version, st_egg, jccdir, patch_version, jccdir)
@@ -39,7 +39,7 @@ or the NO_SHARED environment variable mu
     mkdir tmp
     cd tmp
     unzip -q %s
-    patch -Nup0 < %s/jcc/patches/patch.43.%s
+    patch -Nup0 < %s/jcc2/patches/patch.43.%s
     sudo zip %s -f
     cd ..
     rm -rf tmp
@@ -53,7 +53,7 @@ def patch_setuptools(with_setuptools):
 
     try:
         from setuptools.command.build_ext import sh_link_shared_object
-        enable_shared = True  # jcc/patches/patch.43 was applied
+        enable_shared = True  # jcc2/patches/patch.43 was applied
     except ImportError:
         jccdir = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
         st_egg = os.path.dirname(setuptools.__path__[0])

Modified: lucene/pylucene/trunk/jcc/helpers3/linux.py
URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/helpers3/linux.py?rev=1833137&r1=1833136&r2=1833137&view=diff
==============================================================================
--- lucene/pylucene/trunk/jcc/helpers3/linux.py (original)
+++ lucene/pylucene/trunk/jcc/helpers3/linux.py Thu Jun  7 18:26:14 2018
@@ -22,7 +22,7 @@ def patch_setuptools(with_setuptools):
 
     try:
         from setuptools.command.build_ext import sh_link_shared_object
-        enable_shared = True  # jcc/patches/patch.43 was applied
+        enable_shared = True  # jcc2/patches/patch.43 was applied
     except ImportError:
         # patch build_ext so that it doesn't mess with a Library's extension
         from setuptools.command.build_ext import build_ext as _build_ext