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-Status: No, score=-4.0 required=3.0 tests=ALL_TRUSTED,BAYES_00 shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 013E71F9FC for ; Sun, 28 Mar 2021 09:01:24 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 00/12] lei blob and some yak-shaving Date: Sun, 28 Mar 2021 09:01:12 +0000 Message-Id: <20210328090124.3541-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: "lei blob" manages to work with HTTPS and HTTP .onion endpoints. Eric Wong (12): lei: simplify PktOp callers lei init: split out into separate file lei blob: dclose if already failed lei blob: support --no-mail switch lei blob: fail early if no git dirs lei blob: some extra tests lei help: show "NAME=VALUE" properly for -c lei blob: flesh out help text t/lei_store: ensure LeiSearch responds to ->isrch lei blob: add remote external support lei: drop coderepo placeholders, submodule TODO treewide: shorten temporary filename MANIFEST | 2 + lib/PublicInbox/LEI.pm | 67 +++++++--------------------- lib/PublicInbox/LeiBlob.pm | 47 +++++++++++++------- lib/PublicInbox/LeiConvert.pm | 4 +- lib/PublicInbox/LeiHelp.pm | 2 +- lib/PublicInbox/LeiImport.pm | 4 +- lib/PublicInbox/LeiInit.pm | 41 +++++++++++++++++ lib/PublicInbox/LeiMark.pm | 4 +- lib/PublicInbox/LeiMirror.pm | 4 +- lib/PublicInbox/LeiOverview.pm | 2 +- lib/PublicInbox/LeiP2q.pm | 4 +- lib/PublicInbox/LeiRemote.pm | 81 ++++++++++++++++++++++++++++++++++ lib/PublicInbox/LeiXSearch.pm | 8 ++-- lib/PublicInbox/Msgmap.pm | 2 +- lib/PublicInbox/PktOp.pm | 20 ++++++--- lib/PublicInbox/SolverGit.pm | 2 +- lib/PublicInbox/TestCommon.pm | 2 +- lib/PublicInbox/V2Writable.pm | 6 +-- lib/PublicInbox/Xapcmd.pm | 9 ++-- script/public-inbox-edit | 2 +- script/public-inbox-init | 2 +- scripts/ssoma-replay | 2 +- t/check-www-inbox.perl | 2 +- t/inbox.t | 2 +- t/lei_store.t | 1 + t/nodatacow.t | 2 +- t/solver_git.t | 40 +++++++++++++++-- 27 files changed, 254 insertions(+), 110 deletions(-) create mode 100644 lib/PublicInbox/LeiInit.pm create mode 100644 lib/PublicInbox/LeiRemote.pm