Gentoo Archives: gentoo-user

From: Alexander Kapshuk <alexander.kapshuk@×××××.com>
To: Gentoo mailing list <gentoo-user@l.g.o>
Subject: Re: [gentoo-user] perl-cleaner lerfovers
Date: Sat, 14 Feb 2015 16:09:12
Message-Id: CAJ1xhMVPQ7pjn8O-p5gHGsWGXDaAUb9nvhwrE_rf-7+vLXJcvA@mail.gmail.com
In Reply to: Re: [gentoo-user] perl-cleaner lerfovers by Alan McKinnon
1 On Sat, Feb 14, 2015 at 6:04 PM, Alan McKinnon <alan.mckinnon@×××××.com>
2 wrote:
3
4 > On 14/02/2015 17:42, Alexander Kapshuk wrote:
5 > > On Sat, Feb 14, 2015 at 5:24 PM, Alan McKinnon <alan.mckinnon@×××××.com
6 > > <mailto:alan.mckinnon@×××××.com>> wrote:
7 > >
8 > > On 14/02/2015 13:13, Alexander Kapshuk wrote:
9 > > > 'perl-cleaner --all' generated the following output.
10 > > >
11 > > > * Finding left over modules and header
12 > > >
13 > > > * The following files remain. These were either installed by hand
14 > > > * or edited. This script cannot deal with them.
15 > > >
16 > > > /usr/lib/perl5/vendor_perl/5.16.3/XML/SAX/ParserDetails.ini
17 > > > /usr/lib/perl5/vendor_perl/5.18.2/XML/SAX/ParserDetails.ini
18 > > > /usr/lib/perl5/5.12.4/i686-linux/Encode/ConfigLocal.pm
19 > > >
20 > > > What's the recommended way to go about this?
21 > >
22 > >
23 > > That happens when something other than portage created of changed the
24 > > listed files.
25 > >
26 > > Installing stuff from CPAN will do it, I get it a lot with -emul
27 > > packages. Anything that even touches the files will trigger that
28 > > warning.
29 > >
30 > > To fully deal with them:
31 > >
32 > > 1. Check you have neither perl-5.16.3 or perl-5.18.2 installed. If
33 > so,
34 > > those 3 artifacts will never be used by anything
35 > > 2. Check that you have xml-sax and encode installed for your latest
36 > > installed perl.
37 > > 3. Delete the stuff perl-cleaner is moaning about
38 > >
39 > >
40 > >
41 > >
42 > > #2 is the important one
43 > >
44 > >
45 > > --
46 > > Alan McKinnon
47 > > alan.mckinnon@×××××.com <mailto:alan.mckinnon@×××××.com>
48 > >
49 > >
50 > >
51 > > Understood. Thanks.
52 > >
53 > > equery -q l dev-lang/perl
54 > > dev-lang/perl-5.20.1-r4
55 > >
56 > > equery -q l '*XML-SAX*'
57 > > dev-perl/XML-SAX-0.990.0-r1
58 > > dev-perl/XML-SAX-Base-1.80.0-r1
59 > >
60 > > equery -q l '*[Ee]ncode*'
61 > > dev-perl/Encode-Locale-1.30.0-r1
62 > > virtual/perl-Encode-2.600.0
63 > >
64 > > I take it it is safe to remove the perl files left over.
65 > >
66 >
67 >
68 > Yes
69 >
70 >
71 >
72 > --
73 > Alan McKinnon
74 > alan.mckinnon@×××××.com
75 >
76 >
77 > Thanks a lot.