[Bug 1166504] "Can't locate strict.pm: Permission denied" error message does not report concerned file path

2014-12-13 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1166504

Emmanuel Seyman  changed:

   What|Removed |Added

 Status|MODIFIED|CLOSED
 Resolution|--- |NOTABUG
Last Closed|2014-11-21 01:25:50 |2014-12-13 19:59:23



--- Comment #16 from Emmanuel Seyman  ---
(In reply to Doug Maxey from comment #15)
>
> Ok, turns out there was some junk older, like really older perl libs in
> /usr/local.

Given this, I'm closing this bug NOTABUG.

Emmanuel

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=3EnkQ12K4G&a=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1166504] "Can't locate strict.pm: Permission denied" error message does not report concerned file path

2014-12-13 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1166504



--- Comment #15 from Doug Maxey  ---
Ok, turns out there was some junk older, like really older perl libs in
/usr/local.

So, with the security enhancement, had to clobber those.  That, along with
adding 'use lib ...' all is good now.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=JMOFMHTvuX&a=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1166504] "Can't locate strict.pm: Permission denied" error message does not report concerned file path

2014-12-01 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1166504

Petr Pisar  changed:

   What|Removed |Added

 Status|ASSIGNED|MODIFIED
   Fixed In Version||perl-5.20.1-315.fc22



-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=80dYj2YNjO&a=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1166504] "Can't locate strict.pm: Permission denied" error message does not report concerned file path

2014-12-01 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1166504



--- Comment #14 from Petr Pisar  ---
Please discuss your concerns with the perl5 developers in the link I provided.
There is also reasoning for this change.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=kg5CwsBRpc&a=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1166504] "Can't locate strict.pm: Permission denied" error message does not report concerned file path

2014-12-01 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1166504



--- Comment #13 from Doug Maxey  ---
Well, yes, if the CORE stuff is being looked for.  The only things in my
PERL5LIB are my library stuff, no CORE.

Again, this is a major change in behavior in perl where @INC was previously
treated like PATH, where each element is examined, and the first with what is
needed is found.   It now acts completely different.

I can fix this by adding 'use lib' to EACH of my scripts.  But why break
everyone that has a valid PERL5LIB for extensions?

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=LQh0zaIOeI&a=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1166504] "Can't locate strict.pm: Permission denied" error message does not report concerned file path

2014-12-01 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1166504



--- Comment #12 from Petr Pisar  ---
(In reply to Doug Maxey from comment #11)
> The issue is not the quality of the error message, the issue is that there
> should be none.  I have some code with my PERL5LIB which has nothing to do
> with the CORE stuff.  There is a Pod/Usage.pm in the correct vendor
> location, with perm correct from root to the leaf.
> 
PERL5LIB can be used for CORE stuff too.

> Yet the DIE path is taken, regardless of whether or not the @INC path search
> is exhuasted.  It looks to be exiting early, and prevents all the scripts
> from running.  At least all that I have with the 'use Pod::Usage'.

No. This is intended behaviour. See
.

Does your PERL5LIB contains inaccessible directories?

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=eTJNvknLKe&a=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1166504] "Can't locate strict.pm: Permission denied" error message does not report concerned file path

2014-11-28 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1166504



--- Comment #11 from Doug Maxey  ---
Petr,

sorry for the delay, other life events have prevented me from following up.

The issue is not the quality of the error message, the issue is that there
should be none.  I have some code with my PERL5LIB which has nothing to do with
the CORE stuff.  There is a Pod/Usage.pm in the correct vendor location, with
perm correct from root to the leaf.

Yet the DIE path is taken, regardless of whether or not the @INC path search is
exhuasted.  It looks to be exiting early, and prevents all the scripts from
running.  At least all that I have with the 'use Pod::Usage'.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=gSSjK1olOO&a=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1166504] "Can't locate strict.pm: Permission denied" error message does not report concerned file path

2014-11-24 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1166504

Petr Pisar  changed:

   What|Removed |Added

 Attachment #959634|0   |1
is obsolete||



--- Comment #10 from Petr Pisar  ---
Created attachment 960619
  --> https://bugzilla.redhat.com/attachment.cgi?id=960619&action=edit
Upstream fix

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=rp5wEN9ETV&a=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1166504] "Can't locate strict.pm: Permission denied" error message does not report concerned file path

2014-11-24 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1166504

Petr Pisar  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
Summary|all scripts with 'use   |"Can't locate strict.pm:
   |Pod::Usage' broken  |Permission denied" error
   ||message does not report
   ||concerned file path



-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=YISVQWQgPA&a=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel