use newly installed python for byte compiling (#787498) the macros.pybytecompile way
Signed-off-by: Thomas Spura <thomas.spura@gmail.com>
This commit is contained in:
parent
e6314e68e1
commit
ae2fc1c043
14
python3.spec
14
python3.spec
@ -917,10 +917,16 @@ iconv -f iso8859-1 -t utf-8 %{buildroot}/%{pylibdir}/Demo/rpc/README > README.co
|
|||||||
|
|
||||||
# Do bytecompilation with the newly installed interpreter.
|
# Do bytecompilation with the newly installed interpreter.
|
||||||
# This is similar to the script in macros.pybytecompile
|
# This is similar to the script in macros.pybytecompile
|
||||||
|
# compile *.pyo
|
||||||
find %{buildroot} -type f -a -name "*.py" -print0 | \
|
find %{buildroot} -type f -a -name "*.py" -print0 | \
|
||||||
LD_LIBRARY_PATH="%{buildroot}/%{dynload_dir}/:%{buildroot}/%{_libdir}" \
|
LD_LIBRARY_PATH="%{buildroot}%{dynload_dir}/:%{buildroot}%{_libdir}" \
|
||||||
PYTHONPATH="%{buildroot}/%{_libdir}python%{pybasever} %{buildroot}/%{_libdir}python%{pybasever}/site-packages" \
|
PYTHONPATH="%{buildroot}%{_libdir}python%{pybasever} %{buildroot}/%{_libdir}python%{pybasever}/site-packages" \
|
||||||
xargs -0 %{buildroot}%{_bindir}/python%{pybasever} -O -c 'import py_compile, sys; [py_compile.compile(f, dfile=f.partition("%{buildroot}")[2]) for f in sys.argv[1:]]' || :
|
xargs -0 %{buildroot}%{_bindir}/python%{pybasever} -O -c 'import py_compile, sys; [py_compile.compile(f, dfile=f.partition("%{buildroot}")[2]) for f in sys.argv[1:]]' || :
|
||||||
|
# compile *.pyc
|
||||||
|
find %{buildroot} -type f -a -name "*.py" -print0 | \
|
||||||
|
LD_LIBRARY_PATH="%{buildroot}%{dynload_dir}/:%{buildroot}%{_libdir}" \
|
||||||
|
PYTHONPATH="%{buildroot}%{_libdir}python%{pybasever} %{buildroot}/%{_libdir}python%{pybasever}/site-packages" \
|
||||||
|
xargs -0 %{buildroot}%{_bindir}/python%{pybasever} -O -c 'import py_compile, sys; [py_compile.compile(f, dfile=f.partition("%{buildroot}")[2], optimize=0) for f in sys.argv[1:]]' || :
|
||||||
|
|
||||||
# Fixup permissions for shared libraries from non-standard 555 to standard 755:
|
# Fixup permissions for shared libraries from non-standard 555 to standard 755:
|
||||||
find %{buildroot} \
|
find %{buildroot} \
|
||||||
@ -1404,8 +1410,8 @@ rm -fr %{buildroot}
|
|||||||
# ======================================================
|
# ======================================================
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Mon Feb 6 2012 Thomas Spura <tomspur@fedoraproject.org> - 3.2.2-13
|
* Thu Feb 9 2012 Thomas Spura <tomspur@fedoraproject.org> - 3.2.2-13
|
||||||
- use newly installed python for byte compiling (#787498)
|
- use newly installed python for byte compiling (now for real)
|
||||||
|
|
||||||
* Sun Feb 5 2012 Thomas Spura <tomspur@fedoraproject.org> - 3.2.2-12
|
* Sun Feb 5 2012 Thomas Spura <tomspur@fedoraproject.org> - 3.2.2-12
|
||||||
- use newly installed python for byte compiling (#787498)
|
- use newly installed python for byte compiling (#787498)
|
||||||
|
Loading…
Reference in New Issue
Block a user