From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS54825 139.178.80.0/21 X-Spam-Status: No, score=-4.0 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,RCVD_IN_DNSWL_HI, SPF_HELO_NONE,SPF_PASS,T_SCC_BODY_TEXT_LINE shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by dcvr.yhbt.net (Postfix) with ESMTPS id DE3631F4D7 for ; Tue, 3 May 2022 11:16:37 +0000 (UTC) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 05EC2615BF for ; Tue, 3 May 2022 11:16:37 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 6A9CFC385A9 for ; Tue, 3 May 2022 11:16:36 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1651576596; bh=hM5NTXcXJD5a19u5PgSY6BofoxAv1O6rU9/qDJZMR9w=; h=From:Date:Subject:To:From; b=sPRdilmcdRpCsBwFUHDMJPnXhVMgUhL1m7IUmbbKgkD72JiMd1mnnklzzPRIzwbuW K6VkAGeq0Dz8S63hs9q+CxvAJZArSnFCtUAWsJ8H2hmoTp6vXM4dJvCt3LUtFyfyfA QdR4I+/bGTJcGzJC8T9Vcv4o0s0Ev/q8uT5eXYM2vaUxONDi24OaZ2TdolQd2VxhZV 6gBuptSy9pVjhTdluaLDHc6eth4LscdTl6I2uAWNAIYyXFtAC0UpkxCE53HGO/c2XS rB/G5ALUJ/2eP3q7xMsVEh9nmeBKy84GPMtUGW+NJ3IJJgr2LeVDhF7fqDBKv+FvKT OzQsw8yFDNhEA== Received: by mail-qk1-f179.google.com with SMTP id a76so5710515qkg.12 for ; Tue, 03 May 2022 04:16:36 -0700 (PDT) X-Gm-Message-State: AOAM533MdwXyJc/UTi4gT9OzQUgquqWFQtVTQCh2I+wnXwgNmZ0+sF82 /Nlzv99XJUAt9VgG4175O1YxJf/qHPtbqW1y2C0= X-Google-Smtp-Source: ABdhPJynSA4GNLXWh5O3v3Ig5eU6xgnsLAuyK0zsm8tdP77lS8/26f6FECiUhvx0fcSGCuLPtIwpYl9RDNN95qH8kCg= X-Received: by 2002:a05:620a:666:b0:69f:bbd4:b9af with SMTP id a6-20020a05620a066600b0069fbbd4b9afmr11635347qkh.11.1651576595307; Tue, 03 May 2022 04:16:35 -0700 (PDT) MIME-Version: 1.0 From: Filipe Manana Date: Tue, 3 May 2022 12:15:59 +0100 X-Gmail-Original-Message-ID: Message-ID: Subject: Trouble running lei To: meta@public-inbox.org Content-Type: text/plain; charset="UTF-8" List-Id: Hello, I tried both 'master' branch and tag v1.8.0, I did the documented build steps: $ git clone https://public-inbox.org/public-inbox.git/ $ cd public-inbox $ perl Makefile.PL $ make $ echo $? # success, prints 0 $ cd certs $ /usr/bin/perl ./create-certs.perl $ cd .. $ make test (...) All tests successful. Files=157, Tests=6785, 491 wallclock secs ( 0.77 usr 0.13 sys + 39.65 cusr 14.90 csys = 55.45 CPU) Result: PASS $ make symlink-install $HOME/bin is included in my $PATH, but when I run 'lei', I get an error: $ lei q -o ~/Mail/overlay -I https://lore.kernel.org/all -t 'dfn:fs/btrfs/* AND rt:3.month.ago..' Attempt to reload PublicInbox/LeiXSearch.pm aborted. Compilation failed in require at /home/fdmanana/git/hub/public-inbox/lib/PublicInbox/LeiQuery.pm line 74. This is on a Ubuntu 20.04.3 LTS distro. I have it working on a Debian SID box without any problems (it was set up several months ago). Any ideas about what's wrong? Thank you.