Bug 2429732 - F44FailsToInstall: vsomeip3
Summary: F44FailsToInstall: vsomeip3
Keywords:
Status: CLOSED RAWHIDE
Alias: None
Product: Fedora
Classification: Fedora
Component: vsomeip3
Version: rawhide
Hardware: Unspecified
OS: Unspecified
unspecified
unspecified
Target Milestone: ---
Assignee: Stephen John Smoogen
QA Contact:
URL:
Whiteboard:
Depends On:
Blocks: F44FailsToInstall, RAWHIDEFailsToInstall 2429148
TreeView+ depends on / blocked
 
Reported: 2026-01-14 19:09 UTC by Fedora Fails To Install
Modified: 2026-01-22 19:40 UTC (History)
2 users (show)

Fixed In Version:
Clone Of:
Environment:
Last Closed: 2026-01-22 19:40:28 UTC
Type: ---
Embargoed:


Attachments (Terms of Use)


Links
System ID Private Priority Status Summary Last Updated
GNU Compiler Collection 122197 0 P2 NEW [16 Regression] predictively devirtualization vs middle-end warnings since r16-4000 2026-01-22 15:17:03 UTC

Description Fedora Fails To Install 2026-01-14 19:09:51 UTC
Hello,

Please note that this comment was generated automatically by https://pagure.io/releng/blob/main/f/scripts/ftbfs-fti/follow-policy.py
If you feel that this output has mistakes, please open an issue at https://pagure.io/releng/

Your package (vsomeip3) Fails To Install in Fedora 44:

can't install vsomeip3:
  - nothing provides libboost_filesystem.so.1.83.0()(64bit) needed by vsomeip3-3.5.11-6.fc44.x86_64
  - nothing provides libboost_thread.so.1.83.0()(64bit) needed by vsomeip3-3.5.11-6.fc44.x86_64
  
If you know about this problem and are planning on fixing it, please acknowledge so by setting the bug status to ASSIGNED. If you don't have time to maintain this package, consider orphaning it, so maintainers of dependent packages realize the problem.


If you don't react accordingly to the policy for FTBFS/FTI bugs (https://docs.fedoraproject.org/en-US/fesco/Fails_to_build_from_source_Fails_to_install/), your package may be orphaned in 8+ weeks.


P.S. The data was generated solely from koji buildroot, so it might be newer than the latest compose or the content on mirrors. To reproduce, use the koji/local repo only, e.g. in mock:

    $ mock -r fedora-44-x86_64 --config-opts mirrored=False install vsomeip3


P.P.S. If this bug has been reported in the middle of upgrading multiple dependent packages, please consider using side tags: https://docs.fedoraproject.org/en-US/fesco/Updates_Policy/#updating-inter-dependent-packages

Thanks!

Comment 1 Jonathan Wakely 2026-01-15 01:35:21 UTC
FTBFS in rawhide, due to -Werror

vsomeip-3.5.11/implementation/endpoints/src/local_tcp_client_endpoint_impl.cpp:215:44: error: ‘boost::asio::detail::wrapped_handler<boost::asio::io_context::strand, Handler, boost::asio::detail::is_continuation_if_running> boost::asio::io_context::strand::wrap(Handler) [with Handler = std::_Bind<void (vsomeip_v3::client_endpoint_impl<boost::asio::ip::tcp>::*(std::shared_ptr<vsomeip_v3::client_endpoint_impl<boost::asio::ip::tcp> >, std::_Placeholder<1>))(const boost::system::error_code&)>]’ is deprecated: Use boost::asio::bind_executor() [-Werror=deprecated-declarations]

Comment 2 Fedora Fails To Install 2026-01-22 11:22:39 UTC
Hello,

Please note that this comment was generated automatically by https://pagure.io/releng/blob/main/f/scripts/ftbfs-fti/follow-policy.py
If you feel that this output has mistakes, please open an issue at https://pagure.io/releng/

This package fails to install and maintainers are advised to take one of the following actions:

 - Fix this bug and close this bugzilla once the update makes it to the repository.
   (The same script that posted this comment will eventually close this bugzilla
   when the fixed package reaches the repository, so you don't have to worry about it.)

or

 - Move this bug to ASSIGNED if you plan on fixing this, but simply haven't done so yet.

or

 - Orphan the package if you no longer plan to maintain it.


If you do not take one of these actions, the process at https://docs.fedoraproject.org/en-US/fesco/Fails_to_build_from_source_Fails_to_install/#_package_removal_for_long_standing_ftbfs_and_fti_bugs will continue.
This package may be orphaned in 7+ weeks.
This is the first reminder (step 3) from the policy.

Don't hesitate to ask for help on https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org/ if you are unsure how to fix this bug.

Comment 3 Stephen John Smoogen 2026-01-22 12:46:38 UTC
Taking ticket. Not sure how to fix yet.

Comment 4 Jonathan Wakely 2026-01-22 12:54:33 UTC
The simplest hack would be to just add this before the error line:

// boost::asio::io_context::strand::wrap is deprecated
// and should be replaced with boost::asio::bind_executor
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"

That would only kick the can down the road, because Boost.Asio will remove the deprecated API eventually. But that would be a problem for another day.

Comment 5 Jonathan Wakely 2026-01-22 14:52:55 UTC
Sigh, it's not that simple. After fixing a whole bunch of boost::asio deprecation warnings, it fails with this -Werror=array-bounds warning, due to a false positive regression in gcc-16:

/usr/include/c++/16/bits/shared_ptr_base.h:670:45: error: array subscript ‘std::_Sp_counted_ptr_inplace<vsomeip::message_impl, std::allocator<void>, __gnu_cxx::_S_atomic>[0]’ is partly outside array bounds of ‘unsigned char [48]’ [-Werror=array-bounds=]
  670 |       ~_Sp_counted_ptr_inplace() noexcept { }
      |                                             ^


THIS IS WHY YOU DON'T USE -Werror IN RPM BUILDS

I created https://src.fedoraproject.org/rpms/vsomeip3/pull-request/5 for the boost stuff I found so far.

Comment 6 Jonathan Wakely 2026-01-22 14:54:12 UTC
(In reply to Jonathan Wakely from comment #4)
> The simplest hack would be to just add this before the error line:
> 
> // boost::asio::io_context::strand::wrap is deprecated
> // and should be replaced with boost::asio::bind_executor
> #pragma GCC diagnostic ignored "-Wdeprecated-declarations"

The pull request I created uses warning instead of ignored, as that means the warnings aren't completely suppressed, just no longer make fatal by -Werror

Comment 7 Jonathan Wakely 2026-01-22 15:09:38 UTC
OK that was the last failure, so I patched around the the -Warray-bounds warning too.

The pull request on pagure should allow this to build now.

Comment 8 Stephen John Smoogen 2026-01-22 15:12:12 UTC
I thought I turned that off in the Makefiles previously but I think that patch died at some point. I think the `-Werror` comes from the automobile safety market they are in. I am a version behind upstream so will see if this is still broken ( I expect so.. I keep dealing with others who are JUST moving from Ubuntu2016 to 2018 ). 

Thank you for the patches. I was going to start working on these myself so I really appreciate it.

Comment 9 Jonathan Wakely 2026-01-22 15:17:03 UTC
(In reply to Jonathan Wakely from comment #5)
> Sigh, it's not that simple. After fixing a whole bunch of boost::asio
> deprecation warnings, it fails with this -Werror=array-bounds warning, due
> to a false positive regression in gcc-16:
> 
> /usr/include/c++/16/bits/shared_ptr_base.h:670:45: error: array subscript
> ‘std::_Sp_counted_ptr_inplace<vsomeip::message_impl, std::allocator<void>,
> __gnu_cxx::_S_atomic>[0]’ is partly outside array bounds of ‘unsigned char
> [48]’ [-Werror=array-bounds=]
>   670 |       ~_Sp_counted_ptr_inplace() noexcept { }
>       |                                             ^


I think that warning is https://gcc.gnu.org/PR122197

Comment 10 Stephen John Smoogen 2026-01-22 19:40:28 UTC
I have built https://koji.fedoraproject.org/koji/taskinfo?taskID=141448501 which incorporates the fixes.


Note You need to log in before you can comment on or make changes to this bug.