Created attachment 668837 [details] emerge --info the build fails just after installation to the sandbox env in a clean up step this seems to affect both net-wireless/gnuradio-3.8.1.0-r2 and net-wireless/gnuradio-3.8.2.0 * Fixing shebang in /usr/lib64/python3.6/site-packages/gnuradio/qtgui/util.py. * Fixing shebang in /usr/lib64/python3.6/site-packages/gnuradio/uhd/uhd_siggen_base.py. * Fixing shebang in /usr/lib64/python3.6/site-packages/gnuradio/uhd/uhd_app.py. * Fixing shebang in /usr/lib64/python3.6/site-packages/gnuradio/plot_fft_base.py. * Fixing shebang in /usr/lib64/python3.6/site-packages/gnuradio/plot_psd_base.py. * Fixing shebang in /usr/lib64/python3.6/site-packages/gnuradio/vocoder/cvsd.py. ... find: ‘/var/tmp/portage/net-wireless/gnuradio-3.8.1.0-r2/image/usr/lib’: No such file or directory * ERROR: net-wireless/gnuradio-3.8.1.0-r2::gentoo failed (install phase): * (no error message) * * Call stack: * ebuild.sh, line 125: Called src_install * environment, line 3659: Called die * The specific snippet of code: * find "${ED}"/usr/lib -name "*.py[co]" -exec rm {} \; || die; * /usr/lib doesn't seem to be used at all and thus the clean up fails find: ‘/var/tmp/portage/net-wireless/gnuradio-3.8.2.0/image/usr/lib’: No such file or directory * ERROR: net-wireless/gnuradio-3.8.2.0::gentoo failed (install phase): * (no error message) * * Call stack: * ebuild.sh, line 125: Called src_install * environment, line 3658: Called die * The specific snippet of code: * find "${ED}"/usr/lib -name "*.py[co]" -exec rm {} \; || die;
as a workaround --- gnuradio-3.8.2.0-r1.ebuild 2020-10-27 16:06:33.727861022 -0700 +++ /usr/portage/net-wireless/gnuradio/gnuradio-3.8.2.0.ebuild 2020-09-21 12:09:18.000000000 -0700 @@ -202,7 +202,7 @@ python_fix_shebang "${ED}" # Remove incorrectly byte-compiled Python files and replace - find "${ED}"/usr/lib* -name "*.py[co]" -exec rm {} \; || die + find "${ED}"/usr/lib -name "*.py[co]" -exec rm {} \; || die python_optimize } this minor change allowed 3.8.2.0 to be installed without any issues
Created attachment 669032 [details] build.log.gz Adding build log
I can't replicate in either 17.0 or 17.1 profiles. please reopen if I didn't fix it.