7391367
# Note that the path could itself be a python file, or a directory
7391367
7391367
# Python's compile_all module only works on directories, and requires a max
7391367
# recursion depth
7391367
438faf7
# Note that the py_byte_compile macro should work for python2 as well
438faf7
# Which unfortunately makes the definition more complicated than it should be
438faf7
# The condition should be reversed once /usr/bin/python is python3!
438faf7
7391367
%py_byte_compile()\
438faf7
py2_byte_compile () {\
438faf7
    python_binary="%1"\
438faf7
    bytecode_compilation_path="%2"\
438faf7
    find $bytecode_compilation_path -type f -a -name "*.py" -print0 | xargs -0 $python_binary -c 'import py_compile, sys; [py_compile.compile(f, dfile=f.partition("$RPM_BUILD_ROOT")[2]) for f in sys.argv[1:]]' || :\
438faf7
    find $bytecode_compilation_path -type f -a -name "*.py" -print0 | xargs -0 $python_binary -O -c 'import py_compile, sys; [py_compile.compile(f, dfile=f.partition("$RPM_BUILD_ROOT")[2]) for f in sys.argv[1:]]' || :\
438faf7
}\
438faf7
\
438faf7
py3_byte_compile () {\
438faf7
    python_binary="%1"\
438faf7
    bytecode_compilation_path="%2"\
438faf7
    find $bytecode_compilation_path -type f -a -name "*.py" -print0 | xargs -0 $python_binary -O -c 'import py_compile, sys; [py_compile.compile(f, dfile=f.partition("$RPM_BUILD_ROOT")[2], optimize=opt) for opt in range(2) for f in sys.argv[1:]]' || :\
438faf7
}\
438faf7
\
438faf7
[[ "%1" == *python3* ]] || py2_byte_compile "%1" "%2" && py3_byte_compile "%1" "%2" \
7391367
%{nil}