1 # Copyright (C) 2021 all contributors <meta@public-inbox.org>
2 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
4 # Undocumented hidden command somebody might discover if they're
5 # frustrated and need to report a bug. There's no manpage and
6 # it won't show up in tab completions or help.
7 package PublicInbox::LeiSucks;
13 use PublicInbox::Config;
16 my ($lei, @argv) = @_;
17 $lei->start_pager if -t $lei->{1};
18 my ($os, undef, $rel, undef, $mac)= POSIX::uname();
19 if ($mac eq 'x86_64' && $Config{ptrsize} == 4) {
20 $mac .= $Config{cppsymbols} =~ /\b__ILP32__=1\b/ ?
23 eval { require PublicInbox };
24 my $pi_ver = eval('$PublicInbox::VERSION') // '(???)';
25 my @out = ("lei $pi_ver\n",
26 "perl $Config{version} / $os $rel / $mac ".
27 "ptrsize=$Config{ptrsize}\n");
28 chomp(my $gv = `git --version` || "git missing");
29 $gv =~ s/ version / /;
30 my $json = ref(PublicInbox::Config->json);
31 $json .= ' ' . eval('$'.$json.'::VERSION') if $json;
32 $json ||= '(no JSON)';
33 push @out, "$gv / $json\n";
34 if (eval { require PublicInbox::Over }) {
36 (eval('$DBD::SQLite::sqlite_version') // '(undef)') .
37 ', DBI '.(eval('$DBI::VERSION') // '(undef)') .
39 (eval('$DBD::SQLite::VERSION') // '(undef)')."\n";
41 push @out, "Unable to load DBI / DBD::SQLite: $@\n";
43 if (eval { require PublicInbox::Search } &&
44 PublicInbox::Search::load_xapian()) {
47 $PublicInbox::Search::Xap->can($_)->();
48 } qw(major_version minor_version revision)) .
49 ", bindings: $PublicInbox::Search::Xap";
50 my $xs_ver = eval '$'."$PublicInbox::Search::Xap".'::VERSION';
51 push @out, $xs_ver ? " $xs_ver\n" : " SWIG\n";
53 push @out, "Xapian not available: $@\n";
55 my $dig = Digest::SHA->new(1);
56 push @out, "public-inbox blob OIDs of loaded features:\n";
57 for my $m (grep(m{^PublicInbox/}, sort keys %INC)) {
58 my $f = $INC{$m} // next; # lazy require failed (missing dep)
59 $dig->add('blob '.(-s $f)."\0");
61 push @out, ' '.$dig->hexdigest.' '.$m."\n";
64 Let us know how it sucks! Please include the above and any other
65 relevant information when sending plain-text mail to us at:
66 meta@public-inbox.org -- archives: https://public-inbox.org/meta/