churchyard / rpms / python36

Forked from rpms/python36 5 years ago
Clone
5026ae3
# Note that the path could itself be a python file, or a directory
5026ae3
5026ae3
# Python's compile_all module only works on directories, and requires a max
5026ae3
# recursion depth
5026ae3
5026ae3
%py_byte_compile()\
5026ae3
python_binary="%1"\
5026ae3
bytecode_compilation_path="%2"\
5026ae3
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:]]' || :\
5026ae3
%{nil}