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 2017/03/20 03:13:21 UTC

svn commit: r1787684 - in /lucene/pylucene/trunk/jcc: helpers3/linux.py jcc3/patches/

Author: vajda
Date: Mon Mar 20 03:13:21 2017
New Revision: 1787684

URL: http://svn.apache.org/viewvc?rev=1787684&view=rev
Log:
removed old linux setuptools patch files

Removed:
    lucene/pylucene/trunk/jcc/jcc3/patches/
Modified:
    lucene/pylucene/trunk/jcc/helpers3/linux.py

Modified: lucene/pylucene/trunk/jcc/helpers3/linux.py
URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/helpers3/linux.py?rev=1787684&r1=1787683&r2=1787684&view=diff
==============================================================================
--- lucene/pylucene/trunk/jcc/helpers3/linux.py (original)
+++ lucene/pylucene/trunk/jcc/helpers3/linux.py Mon Mar 20 03:13:21 2017
@@ -18,37 +18,6 @@ from setuptools.command import build_ext
 from setuptools.extension import Library as _Library
 
 
-def patch_st_dir(patch_version, st_egg, jccdir):
-    return '''
-
-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
-
-See %s/INSTALL for more information about shared mode.
-''' %(patch_version, st_egg, jccdir, patch_version, jccdir)
-
-
-def patch_st_zip(patch_version, st_egg, jccdir):
-    return '''
-
-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.
-
-    mkdir tmp
-    cd tmp
-    unzip -q %s
-    patch -Nup0 < %s/jcc/patches/patch.43.%s
-    sudo zip %s -f
-    cd ..
-    rm -rf tmp
-
-See %s/INSTALL for more information about shared mode.
-''' %(patch_version, st_egg, jccdir, patch_version, st_egg, jccdir)
-
-
-
 def patch_setuptools(with_setuptools):
 
     try: