frr-6 and frr-7 ebuilds fail with the following error:
OSError: [Errno 2] No such file or directory: '/var/tmp/portage/net-misc/frr-7.0/files/systemd/no.service'
Issue appears to be in src_install() function with usage of usex. Per ebuild(5):
usex <USE flag> [true output] [false output] [true suffix] [false suffix]
If USE flag is set, echo [true output][true suffix] (defaults to "yes"), otherwise echo [false output][false suffix] (defaults to "no").
Since there is no false output provided, it defaults to "no". Suggest using empty string in false argument as workaround - $(usex bgp bgpd ""), etc.
frr-6 and frr-7 ebuilds fail with the following error:
OSError: [Errno 2] No such file or directory: '/var/tmp/portage/net-misc/frr-7.0/files/systemd/no.service'
Issue appears to be in
src_install()
function with usage ofusex
. Per ebuild(5):Since there is no false output provided, it defaults to "no". Suggest using empty string in false argument as workaround -
$(usex bgp bgpd "")
, etc.