BRP Python Bytecompile: Also detect Python files in /app/lib/pythonX.Y
This is needed for flatpaks. Alternatively, we could pass %{_prefix} as an argument to this script, but that could make things a tad more complicated. This solution is less general, but more pragmatic. See https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org/thread/4FBBB3C5E63VDNGUJRLLW27LPZ74SEJH/
This commit is contained in:
parent
f97705d6fd
commit
c0fba28f76
@ -119,7 +119,7 @@ fi
|
|||||||
export PYTHONHASHSEED=0
|
export PYTHONHASHSEED=0
|
||||||
|
|
||||||
shopt -s nullglob
|
shopt -s nullglob
|
||||||
for python_libdir in `find "$RPM_BUILD_ROOT" -type d|grep -E "/usr/lib(64)?/python[0-9]\.[0-9]+$"`;
|
for python_libdir in `find "$RPM_BUILD_ROOT" -type d|grep -E "/(usr|app)/lib(64)?/python[0-9]\.[0-9]+$"`;
|
||||||
do
|
do
|
||||||
python_binary=/usr/bin/$(basename $python_libdir)
|
python_binary=/usr/bin/$(basename $python_libdir)
|
||||||
real_libdir=${python_libdir/$RPM_BUILD_ROOT/}
|
real_libdir=${python_libdir/$RPM_BUILD_ROOT/}
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
Summary: Red Hat specific rpm configuration files
|
Summary: Red Hat specific rpm configuration files
|
||||||
Name: redhat-rpm-config
|
Name: redhat-rpm-config
|
||||||
Version: 177
|
Version: 178
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
# No version specified.
|
# No version specified.
|
||||||
License: GPL+
|
License: GPL+
|
||||||
@ -213,6 +213,9 @@ install -p -m 644 -t %{buildroot}%{_rpmluadir}/fedora/srpm forge.lua
|
|||||||
%{_rpmconfigdir}/macros.d/macros.kmp
|
%{_rpmconfigdir}/macros.d/macros.kmp
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Sun Nov 29 2020 Miro Hrončok <mhroncok@redhat.com> - 178-1
|
||||||
|
- BRP Python Bytecompile: Also detect Python files in /app/lib/pythonX.Y
|
||||||
|
|
||||||
* Tue Oct 27 2020 Tom Stellard <tstellar@redhat.com> - 177-1
|
* Tue Oct 27 2020 Tom Stellard <tstellar@redhat.com> - 177-1
|
||||||
- Add back -fcf-protection flag for x86_64
|
- Add back -fcf-protection flag for x86_64
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user