PageRenderTime 77ms CodeModel.GetById 13ms RepoModel.GetById 2ms app.codeStats 0ms

/Library/Formula/pypy3.rb

https://bitbucket.org/JoshHagins/homebrew
Ruby | 137 lines | 96 code | 21 blank | 20 comment | 0 complexity | b56d0ce7b6354c3fb870a71011416593 MD5 | raw file
  1. require "formula"
  2. class Pypy3 < Formula
  3. homepage "http://pypy.org/"
  4. url "https://bitbucket.org/pypy/pypy/downloads/pypy3-2.4.0-src.tar.bz2"
  5. sha1 "438572443ae6f54eb6122d807f104787c5247e01"
  6. bottle do
  7. cellar :any
  8. revision 5
  9. sha1 "5913e695ae9324959515fa1308764d52155d2a64" => :yosemite
  10. sha1 "f71603e7c10af67fd5c756c821e9985416eec4da" => :mavericks
  11. sha1 "e9bf22ef9f4ab158ffce6ddc6f51728ced7cfaac" => :mountain_lion
  12. end
  13. depends_on :arch => :x86_64
  14. depends_on "pkg-config" => :build
  15. depends_on "openssl"
  16. resource "setuptools" do
  17. url "https://pypi.python.org/packages/source/s/setuptools/setuptools-9.1.tar.gz"
  18. sha1 "b068a670c84df7b961730c6a0d00cd06c7b767f0"
  19. end
  20. resource "pip" do
  21. url "https://pypi.python.org/packages/source/p/pip/pip-6.0.3.tar.gz"
  22. sha1 "67d4affd83ee2f3514ac1386bee59f10f672517c"
  23. end
  24. # https://bugs.launchpad.net/ubuntu/+source/gcc-4.2/+bug/187391
  25. fails_with :gcc
  26. def install
  27. # Having PYTHONPATH set can cause the build to fail if another
  28. # Python is present, e.g. a Homebrew-provided Python 2.x
  29. # See https://github.com/Homebrew/homebrew/issues/24364
  30. ENV["PYTHONPATH"] = ""
  31. ENV["PYPY_USESSION_DIR"] = buildpath
  32. Dir.chdir "pypy/goal" do
  33. system "python", buildpath/"rpython/bin/rpython",
  34. "-Ojit", "--shared", "--cc", ENV.cc, "--translation-verbose",
  35. "--make-jobs", ENV.make_jobs, "targetpypystandalone.py"
  36. system "install_name_tool", "-change", "libpypy-c.dylib", libexec/"lib/libpypy3-c.dylib", "pypy-c"
  37. system "install_name_tool", "-id", opt_libexec/"lib/libpypy3-c.dylib", "libpypy-c.dylib"
  38. (libexec/"bin").install "pypy-c" => "pypy"
  39. (libexec/"lib").install "libpypy-c.dylib" => "libpypy3-c.dylib"
  40. end
  41. (libexec/"lib-python").install "lib-python/3"
  42. libexec.install %w[include lib_pypy]
  43. # The PyPy binary install instructions suggest installing somewhere
  44. # (like /opt) and symlinking in binaries as needed. Specifically,
  45. # we want to avoid putting PyPy's Python.h somewhere that configure
  46. # scripts will find it.
  47. bin.install_symlink libexec/"bin/pypy" => "pypy3"
  48. lib.install_symlink libexec/"lib/libpypy3-c.dylib"
  49. %w[setuptools pip].each do |r|
  50. (libexec/r).install resource(r)
  51. end
  52. end
  53. def post_install
  54. # Precompile cffi extensions in lib_pypy
  55. # list from create_cffi_import_libraries in pypy/tool/release/package.py
  56. %w[_sqlite3 _curses syslog gdbm _tkinter].each do |module_name|
  57. quiet_system bin/"pypy3", "-c", "import #{module_name}"
  58. end
  59. # Post-install, fix up the site-packages and install-scripts folders
  60. # so that user-installed Python software survives minor updates, such
  61. # as going from 1.7.0 to 1.7.1.
  62. # Create a site-packages in the prefix.
  63. prefix_site_packages.mkpath
  64. # Symlink the prefix site-packages into the cellar.
  65. libexec.install_symlink prefix_site_packages
  66. # Tell distutils-based installers where to put scripts
  67. scripts_folder.mkpath
  68. (distutils+"distutils.cfg").atomic_write <<-EOF.undent
  69. [install]
  70. install-scripts=#{scripts_folder}
  71. EOF
  72. %w[setuptools pip].each do |pkg|
  73. (libexec/pkg).cd do
  74. system bin/"pypy3", "-s", "setup.py", "install", "--force", "--verbose"
  75. end
  76. end
  77. # Symlinks to easy_install_pypy3 and pip_pypy3
  78. bin.install_symlink scripts_folder/"easy_install" => "easy_install_pypy3"
  79. bin.install_symlink scripts_folder/"pip" => "pip_pypy3"
  80. # post_install happens after linking
  81. %w[easy_install_pypy3 pip_pypy3].each{ |e| (HOMEBREW_PREFIX/"bin").install_symlink bin/e }
  82. end
  83. def caveats; <<-EOS.undent
  84. A "distutils.cfg" has been written to:
  85. #{distutils}
  86. specifying the install-scripts folder as:
  87. #{scripts_folder}
  88. If you install Python packages via "pypy3 setup.py install", easy_install_pypy3,
  89. or pip_pypy3, any provided scripts will go into the install-scripts folder
  90. above, so you may want to add it to your PATH *after* #{HOMEBREW_PREFIX}/bin
  91. so you don't overwrite tools from CPython.
  92. Setuptools and pip have been installed, so you can use easy_install_pypy3 and
  93. pip_pypy3.
  94. To update setuptools and pip between pypy3 releases, run:
  95. #{scripts_folder}/pip install --upgrade setuptools pip
  96. See: https://github.com/Homebrew/homebrew/blob/master/share/doc/homebrew/Homebrew-and-Python.md
  97. EOS
  98. end
  99. # The HOMEBREW_PREFIX location of site-packages
  100. def prefix_site_packages
  101. HOMEBREW_PREFIX+"lib/pypy3/site-packages"
  102. end
  103. # Where setuptools will install executable scripts
  104. def scripts_folder
  105. HOMEBREW_PREFIX+"share/pypy3"
  106. end
  107. # The Cellar location of distutils
  108. def distutils
  109. libexec+"lib-python/3/distutils"
  110. end
  111. end