>>> Source prepared. >>> Configuring source in /var/tmp/portage/dev-libs/tvision-2.1.0_pre2-r4/work/tvision ... Can't locate miscperl.pl in @INC (@INC contains: /etc/perl /usr/local/lib64/perl5/5.26.1/x86_64-linux /usr/local/lib64/perl5/5.26.1 /usr/lib64/perl5/vendor_perl/5.26.1/x86_64-linux /usr/lib64/perl5/vendor_perl/5.26.1 /usr/local/lib64/perl5 /usr/lib64/perl5/vendor_perl /usr/lib64/perl5/5.26.1/x86_64-linux /usr/lib64/perl5/5.26.1) at config.pl line 8. * ERROR: dev-libs/tvision-2.1.0_pre2-r4::gentoo failed (configure phase): * (no error message) * ------------------------------------------------------------------- This is an unstable amd64 chroot image at a tinderbox (==build bot) name: 13.0-no-multilib_20171014-220851 ------------------------------------------------------------------- gcc-config -l: [1] x86_64-pc-linux-gnu-6.4.0 * Available Python interpreters, in order of preference: [1] python3.4 [2] python2.7 (fallback) [3] jython2.7 (fallback) Available Ruby profiles: [1] ruby22 (with Rubygems) * java-config: The following VMs are available for generation-2: *) IcedTea JDK 3.5.1 [icedtea-bin-8] 2) JamVM JDK 2.0.0 [jamvm] Available Java Virtual Machines: [1] icedtea-bin-8 system-vm [2] jamvm emerge -qpv dev-libs/tvision [ebuild N ] dev-libs/tvision-2.1.0_pre2-r4
Created attachment 499144 [details] emerge-info.txt
Created attachment 499146 [details] dev-libs:tvision-2.1.0_pre2-r4:20171018-192025.log
Created attachment 499148 [details] emerge-history.txt
Created attachment 499150 [details] environment
Created attachment 499152 [details] etc.portage.tbz2
Created attachment 499154 [details] logs.tbz2
Created attachment 499156 [details] temp.tbz2
This is: https://wiki.gentoo.org/wiki/Project:Perl/Dot-In-INC-Removal
Created attachment 503598 [details, diff] Patch to fix dot-in-INC issue This patch fixes the issue with dot in @INC for me. It follows the recommendations on the gentoo wiki by making the require explicitly import from the local directory: require "file.pl" -> require "./file.pl"
The bug has been closed via the following commit(s): https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=206f0333252feea61ad01bdceb927ac0a1ee6d60 commit 206f0333252feea61ad01bdceb927ac0a1ee6d60 Author: Bernd Waibel <waebbl@gmail.com> AuthorDate: 2017-11-11 15:49:08 +0000 Commit: Patrice Clement <monsieurp@gentoo.org> CommitDate: 2017-12-04 20:26:25 +0000 dev-libs/tvision: fix dot-in-INC issue. Closes: https://bugs.gentoo.org/634684 Closes: https://github.com/gentoo/gentoo/pull/6172 Package-Manager: Portage-2.3.13, Repoman-2.3.4 .../files/tvision-2.1.0_pre2-perl-INC.patch | 30 ++++++++++++++++++++++ dev-libs/tvision/tvision-2.1.0_pre2-r4.ebuild | 1 + 2 files changed, 31 insertions(+)
Alternatively, you could prepend the configure command with PERL5LIB="${S}"
(In reply to Peter Levine from comment #11) > Alternatively, you could prepend the configure command with PERL5LIB="${S}" I'd discourage that approach, as its likely to hide other real issues, and risk creating new ones. Falls under the category of "workaround", not "fix"