pylucene: migrate to boneyard.
This commit is contained in:
parent
7dcf583554
commit
6357c06b3b
2 changed files with 1 additions and 36 deletions
|
@ -1,36 +0,0 @@
|
|||
class Pylucene < Formula
|
||||
desc "Python extension for accessing Java Lucene"
|
||||
homepage "https://lucene.apache.org/pylucene/index.html"
|
||||
url "https://www.apache.org/dyn/closer.cgi?path=lucene/pylucene/pylucene-4.10.1-1-src.tar.gz"
|
||||
sha256 "63c946d3470ffc2e1a5025b93282235991c46f02c01034de482d7ecada073286"
|
||||
|
||||
option "with-shared", "build jcc as a shared library"
|
||||
|
||||
depends_on :ant => :build
|
||||
depends_on :java => "1.7"
|
||||
depends_on :python
|
||||
|
||||
def install
|
||||
ENV.prepend_create_path "PYTHONPATH", lib/"python2.7/site-packages"
|
||||
jcc = "JCC=python -m jcc --arch #{MacOS.preferred_arch}"
|
||||
opt = "INSTALL_OPT=--prefix #{prefix}"
|
||||
if build.with? "shared"
|
||||
jcc << " --shared"
|
||||
opoo "shared option requires python to be built with the same compiler: #{ENV.compiler}"
|
||||
else
|
||||
opt << " --use-distutils" # setuptools only required with shared
|
||||
ENV["NO_SHARED"] = "1"
|
||||
end
|
||||
|
||||
cd "jcc" do
|
||||
system "python", "setup.py", "install", "--prefix=#{prefix}", "--single-version-externally-managed", "--record=install.txt"
|
||||
end
|
||||
ENV.deparallelize # the jars must be built serially
|
||||
system "make", "all", "install", opt, jcc, "ANT=ant", "PYTHON=python", "NUM_FILES=8"
|
||||
end
|
||||
|
||||
test do
|
||||
ENV.prepend_path "PYTHONPATH", HOMEBREW_PREFIX/"lib/python2.7/site-packages"
|
||||
system "python", "-c", "import lucene; assert lucene.initVM()"
|
||||
end
|
||||
end
|
|
@ -197,6 +197,7 @@
|
|||
"prooftree": "homebrew/gui",
|
||||
"pulse": "homebrew/boneyard",
|
||||
"pyenv-pip-rehash": "homebrew/boneyard",
|
||||
"pylucene": "homebrew/boneyard",
|
||||
"pyxplot": "homebrew/x11",
|
||||
"qfits": "homebrew/boneyard",
|
||||
"qi": "homebrew/boneyard",
|
||||
|
|
Loading…
Reference in a new issue