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: 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 477161F8C8 for ; Sat, 25 Sep 2021 08:49:45 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 0/3] lei *-external: split off into separate files Date: Sat, 25 Sep 2021 08:49:42 +0000 Message-Id: <20210925084945.15899-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: Some of the early parts of lei predated the current autoloading using lazy_cb. None of these commands are expected to be frequently used, so wasting memory on them is unnecessary. Eric Wong (3): lei forget-external: split into separate file lei add-external: split into separate file lei ls-external: split into separate file MANIFEST | 3 + lib/PublicInbox/LeiAddExternal.pm | 72 ++++++++++++++ lib/PublicInbox/LeiExternal.pm | 140 +-------------------------- lib/PublicInbox/LeiForgetExternal.pm | 46 +++++++++ lib/PublicInbox/LeiLsExternal.pm | 32 ++++++ lib/PublicInbox/LeiMirror.pm | 3 +- lib/PublicInbox/LeiQuery.pm | 6 +- 7 files changed, 161 insertions(+), 141 deletions(-) create mode 100644 lib/PublicInbox/LeiAddExternal.pm create mode 100644 lib/PublicInbox/LeiForgetExternal.pm create mode 100644 lib/PublicInbox/LeiLsExternal.pm