homebrew-core/Formula/shiboken.rb
Samuel John 030793c988 Improve python tests for brew bots
Allow `build.with?` and similar methods to be used during the test
phase. The BuildOptions (`build`) are initialized with the
`Tab.used_options` unless explicitly overwritten on the command line.

So basically `build.with?` works in `def install` and in `test do` as
one would naively expect. (For the test, gramatically it should be
`built.with?` but who cares)

If a formula was installed `--with-python`, now the tests are also
run `--with-python`. This enables us to use the `python do ... end` in
a meaningful manner.

Using `python do ... end` blocks for the tests, because the bot.brew.sh has
system python per default and we need to set the PYTHONPATH for the test.
Potentially to different values for Python 2.x and 3.x.
2013-09-05 15:26:57 +02:00

56 lines
2 KiB
Ruby

require 'formula'
class Shiboken < Formula
homepage 'http://www.pyside.org/docs/shiboken'
url 'https://download.qt-project.org/official_releases/pyside/shiboken-1.2.0.tar.bz2'
mirror 'https://distfiles.macports.org/py-shiboken/shiboken-1.2.0.tar.bz2'
sha1 '03866dbdfa34078b2d9d35f4b6d83aa65e292e3f'
head 'git://gitorious.org/pyside/shiboken.git'
depends_on 'cmake' => :build
depends_on :python => :recommended
depends_on :python3 => :optional
depends_on 'qt'
def install
# This block will be run for each python (2.x and 3.x if requested)!
python do
# As of 1.1.1 the install fails unless you do an out of tree build and put
# the source dir last in the args.
mkdir "macbuild#{python.if3then3}" do
args = std_cmake_args
# Building the tests also runs them.
args << "-DBUILD_TESTS=ON"
# For Xcode-only systems, the headers of system's python are inside of Xcode:
args << "-DPYTHON#{python.if3then3}_INCLUDE_DIR='#{python.incdir}'"
# Cmake picks up the system's python dylib, even if we have a brewed one:
args << "-DPYTHON#{python.if3then3}_LIBRARY='#{python.libdir}/lib#{python.xy}.dylib'"
args << "-DUSE_PYTHON3=ON" if python3
args << '..'
system 'cmake', *args
system "make install"
# To support 2.x and 3.x in parallel, we have to rename shiboken.pc at first
mv lib/'pkgconfig/shiboken.pc', lib/"pkgconfig/shiboken-py#{python.version.major}.pc"
end
end
# Rename shiboken-py2.pc back to the default shiboken.pc
mv lib/'pkgconfig/shiboken-py2.pc', lib/'pkgconfig/shiboken.pc' if python2
end
def caveats
if python3
<<-EOS.undent
If you build software that uses the pkgconfig file, and you want
shiboken with Python 3.x support: Please, instead of 'shiboken.pc', use:
#{HOMEBREW_PREFIX}/lib/pkgconfig/shiboken-py3.pc
EOS
end
end
test do
python do
system python, "-c", "import shiboken"
end
end
end