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,AWL,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 5D9D71F670 for ; Sat, 16 Oct 2021 01:01:03 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 00/16] some yak-shaving and annoyance fixes Date: Sat, 16 Oct 2021 01:00:51 +0000 Message-Id: <20211016010103.30825-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: Hopefully having less code will make bug-hunting easier and and more robust in the future at handling failures and unexpected interrupts (e.g. Ctrl-C). There's a lot of YAGNI elimination and more to come. Eric Wong (12): smsg: add ->oidbin method dir_idle: do not add watches in ->new imapd+nntpd: drop timer-based expiration httpd: move pipeline logic into event_step lei: golf PATH2CFG cleanup lei: always keep cwd fd {3} for ->fchdir lei: more eval guards for die on failure extindex: prune invalid alternate entries on --gc lei_overview: die rather than lei->fail lei_to_mail: quiet down abort messages inbox + search: use 5.10.1 and do some golfing httpd/async: switch to level-triggered epoll Documentation/technical/ds.txt | 3 +- lib/PublicInbox/DS.pm | 37 +------------------ lib/PublicInbox/Daemon.pm | 8 ++--- lib/PublicInbox/DirIdle.pm | 8 +---- lib/PublicInbox/ExtSearch.pm | 2 +- lib/PublicInbox/ExtSearchIdx.pm | 19 +++++----- lib/PublicInbox/HTTP.pm | 64 +++++++++------------------------ lib/PublicInbox/HTTPD/Async.pm | 16 +++------ lib/PublicInbox/IMAP.pm | 17 +++------ lib/PublicInbox/Import.pm | 2 +- lib/PublicInbox/Inbox.pm | 11 +++--- lib/PublicInbox/LEI.pm | 29 +++++++-------- lib/PublicInbox/LeiLcat.pm | 21 +++++------ lib/PublicInbox/LeiOverview.pm | 24 ++++++------- lib/PublicInbox/LeiQuery.pm | 24 ++++++------- lib/PublicInbox/LeiToMail.pm | 1 + lib/PublicInbox/LeiXSearch.pm | 9 ++--- lib/PublicInbox/MultiGit.pm | 6 +++- lib/PublicInbox/NNTP.pm | 12 ++----- lib/PublicInbox/OverIdx.pm | 3 +- lib/PublicInbox/Qspawn.pm | 1 - lib/PublicInbox/Search.pm | 7 ++-- lib/PublicInbox/Smsg.pm | 6 ++-- lib/PublicInbox/Watch.pm | 3 +- t/dir_idle.t | 3 +- 25 files changed, 118 insertions(+), 218 deletions(-)