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 B5D4B1F8C2 for ; Wed, 10 Feb 2021 07:07:49 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 0/6] more lei stuffs Date: Wed, 10 Feb 2021 07:07:43 +0000 Message-Id: <20210210070749.30391-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: IMAP and NNTP lei-import support are coming. Basically stuff in -watch, but IMAP will need to support flags (aka keywords) in IMAP. "lei ls-external" gains filtering + globbing support (still needs shell completion support) Eric Wong (6): lei *external: glob improvements, ls-external filtering lei_external: remove unnecessary Exporter use test_common: support lei-daemon only testing lei ls-external: support --local and --remote lei: note some TODO items (curl, externals) net_reader: new package split from -watch MANIFEST | 1 + lib/PublicInbox/LEI.pm | 4 +- lib/PublicInbox/LeiCurl.pm | 2 + lib/PublicInbox/LeiExternal.pm | 85 +++++++++---- lib/PublicInbox/NetReader.pm | 220 +++++++++++++++++++++++++++++++++ lib/PublicInbox/TestCommon.pm | 13 +- lib/PublicInbox/Watch.pm | 204 +----------------------------- t/lei-externals.t | 36 ++++-- t/lei_external.t | 20 ++- 9 files changed, 343 insertions(+), 242 deletions(-) create mode 100644 lib/PublicInbox/NetReader.pm