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 44A811F8C8 for ; Sun, 3 Oct 2021 07:41:24 +0000 (UTC) From: Eric Wong To: mwrap-perl@80x24.org Subject: [PATCH 0/4] PSGI support Date: Sun, 3 Oct 2021 07:41:20 +0000 Message-Id: <20211003074124.12921-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: Patches 1/4 and 2/4 have been sitting around for ages, the PSGI frontend is finally running. I'm thinking we should just import dlmalloc instead of playing dlsym games... Eric Wong (4): support quiet accessor each: support passing user args to callback treewide: require Perl 5.12, doc+copyright updates add PSGI front-end .gitignore | 1 + MANIFEST | 2 + Makefile.PL | 15 +++- Mwrap.xs | 51 ++++++++++-- README | 22 +++--- examples/mwrap.psgi | 22 ++++++ lib/Devel/Mwrap.pm | 4 +- lib/Devel/Mwrap/PSGI.pm | 169 ++++++++++++++++++++++++++++++++++++++++ script/mwrap-perl | 4 +- t/mwrap.t | 39 +++++++--- 10 files changed, 294 insertions(+), 35 deletions(-) create mode 100644 examples/mwrap.psgi create mode 100644 lib/Devel/Mwrap/PSGI.pm