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 0EEFE1F9FD for ; Wed, 24 Feb 2021 11:31:55 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 0/4] lei nntp:// Date: Wed, 24 Feb 2021 17:31:50 +0600 Message-Id: <20210224113154.686-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: lib/PublicInbox/ actually gets smaller with this series :> Some -watch progress messages are prefixed with "#" (TAP-style) instead of "I:", but they go to stderr, anyways. t/watch_nntp.t is replaced by t/uri_nntps.t Eric Wong (4): add PublicInbox::URInntps package lei : support NNTP sources watch: switch IMAP and NNTP fetch loops to NetReader net_reader: trim exports and remove unused uri_new MANIFEST | 4 +- lib/PublicInbox/LeiAuth.pm | 4 +- lib/PublicInbox/LeiConvert.pm | 14 +- lib/PublicInbox/LeiImport.pm | 12 +- lib/PublicInbox/NetReader.pm | 231 +++++++++++++++---- lib/PublicInbox/URInntps.pm | 17 ++ lib/PublicInbox/Watch.pm | 417 +++++++++------------------------- t/imapd.t | 2 +- t/lei-convert.t | 31 ++- t/lei-import-nntp.t | 30 +++ t/nntpd.t | 2 +- t/uri_nntps.t | 40 ++++ t/watch_nntp.t | 17 -- 13 files changed, 425 insertions(+), 396 deletions(-) create mode 100644 lib/PublicInbox/URInntps.pm create mode 100644 t/lei-import-nntp.t create mode 100644 t/uri_nntps.t delete mode 100644 t/watch_nntp.t