Hello,
I have a package under review[0], that I realized had python scripting
support disabled, so I enabled it. Before that, it built fine in
rawhide on all arches[1].
After enabling it (which involves python obviously and at least sip)
the build failed only on armv7hl[2], because a file that is generated
during the %build stage was not found:
src/PythonScripting.cpp:65:10: fatal error: sipAPIscidavis.h: No such
file or directory
Antonio Trande told me that I should disable parallel building on ARM,
so I modified my build section from
%build
[…]
make %{?_smp_mflags}
to
%build
[…]
%ifarch %{arm}
make -j1
%else
%make_build
%endif
Even though the output is a bit different now, the builds still
fail[3] with the same error. Is this something I can fix in my spec
file or with a patch, should this be taken upstream, or is there some
other problem with my armv7hl dependencies?
These are the package's requirements:
BuildRequires: desktop-file-utils
BuildRequires: doxygen
BuildRequires: gsl-devel
BuildRequires: muParser-devel
BuildRequires: PyQt4-devel
BuildRequires: python2-devel
BuildRequires: qt-assistant-adp-devel
BuildRequires: qt-devel
BuildRequires: qwt5-qt4-devel
BuildRequires: qwtplot3d-qt4-devel
BuildRequires: sip-devel
BuildRequires: zlib-devel
Requires: PyQt4
Can anyone shed some light?
0. https://bugzilla.redhat.com/show_bug.cgi?id=1490054
1. https://koji.fedoraproject.org/koji/taskinfo?taskID=21806163
2. https://koji.fedoraproject.org/koji/taskinfo?taskID=21822435
3. https://koji.fedoraproject.org/koji/taskinfo?taskID=21826998
_______________________________________________
devel mailing list -- [email protected]
To unsubscribe send an email to [email protected]