We've recently upgraded CMake from 2.8+ to 3.5+ (different versions on 
different platforms).  In so doing, our CMake invocation of CPack to create 
RPMs now fails and I'm hoping someone can help.  I have a spec file and I want 
to run rpmbuild -bb, but I can't figure out how to do it.

We have been using a custom spec file all along, but I found information 
indicating that doing so is (now?) considered a hack and that everything should 
be possible merely by setting CPACK_* variables.  Unfortunately, that's not the 
case.  With the following %files entries, CPackRPM.cmake chokes:

%defattr(-, %{user}, %{group}, 0755)
%dir %{destination}
%dir %{versioned}
%dir %{foo}
%{foo}/*.sh
%attr(555, %{user}, %{group}) %{foo}/a
%dir %{bar}
%attr(544, %{user}, %{group}) %{bar}/b
%attr(444, %{user}, %{group}) %{bar}/*common
%{bar}/lib

The result is that my attempt to port to the all-variable approach failed, so 
I'm setting CPACK_RPM_USER_BINARY_SPECFILE to refer to my spec file as before.  
Unfortunately, when I do so, CPackRPM.cmake doesn't set RPMBUILD_FLAGS, and 
that leads to rpmbuild doing nothing useful.  The issue is in the following 
code:

    # We should generate a USER spec file template:
    #  - either because the user asked for it : 
CPACK_RPM_GENERATE_USER_BINARY_SPECFILE_TEMPLATE
    #  - or the user did not provide one : NOT CPACK_RPM_USER_BINARY_SPECFILE
    if(CPACK_RPM_GENERATE_USER_BINARY_SPECFILE_TEMPLATE OR NOT 
CPACK_RPM_USER_BINARY_SPECFILE)
      set(RPMBUILD_FLAGS "-bb")

I tried just setting RPMBUILD_FLAGS to -bb in my CMakeLists.txt, where I 
include CPack, but that isn't propagated to CPackRPM.cmake.  I tried adding a 
custom target that invoked "${CMAKE_CPACK_COMMAND} -D RPMBUILD_FLAGS=-bb", but 
that didn't work either.

If the regex processing of the %files content were more robust, I wouldn't trip 
over the RPMBUILD_FLAGS issue, but either CPACK_RPM_USER_BINARY_SPECFILE is 
supported or it isn't, and since it is currently, it should be possible for me 
to set RPMBUILD_FLAGS.

Ideas?

___
Rob


________________________________

IMPORTANT: The information contained in this email and/or its attachments is 
confidential. If you are not the intended recipient, please notify the sender 
immediately by reply and immediately delete this message and all its 
attachments. Any review, use, reproduction, disclosure or dissemination of this 
message or any attachment by an unintended recipient is strictly prohibited. 
Neither this message nor any attachment is intended as or should be construed 
as an offer, solicitation or recommendation to buy or sell any security or 
other financial instrument. Neither the sender, his or her employer nor any of 
their respective affiliates makes any warranties as to the completeness or 
accuracy of any of the information contained herein or that this message or any 
of its attachments is free of viruses.
-- 

Powered by www.kitware.com

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Kitware offers various services to support the CMake community. For more 
information on each offering, please visit:

CMake Support: http://cmake.org/cmake/help/support.html
CMake Consulting: http://cmake.org/cmake/help/consulting.html
CMake Training Courses: http://cmake.org/cmake/help/training.html

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Follow this link to subscribe/unsubscribe:
https://cmake.org/mailman/listinfo/cmake

Reply via email to