starman 0.4016-1 source package in Ubuntu

Changelog

starman (0.4016-1) unstable; urgency=medium

  [ gregor herrmann ]
  * debian/watch: use uscan version 4.

  [ Debian Janitor ]
  * Remove constraints unnecessary since stretch:
    + Build-Depends-Indep: Drop versioned constraint on libnet-server-perl,
      libtest-tcp-perl.

  [ Yadd ]
  * Bump debhelper from old 12 to 13
  * Import upstream version 0.4016
  * Declare compliance with policy 4.6.1

 -- Yadd <email address hidden>  Fri, 16 Sep 2022 06:35:40 +0200

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
perl
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Mantic release universe perl
Lunar release universe perl

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
starman_0.4016-1.dsc 2.1 KiB 5c9d5d2616e29ce4bc49ed7e8229b12c5c9ee7cd4e1774a30c74493355f14761
starman_0.4016.orig.tar.gz 31.1 KiB 2b0c1f6116a31fab512b820cc46ad1255dd88fccc8ffc712034fe814867b9461
starman_0.4016-1.debian.tar.xz 3.9 KiB 6f1d40b48528413b9c39108e24fcaf2e1cce673a994d9c15d33f91b809d861a2

Available diffs

No changes file available.

Binary packages built by this source

starman: high-performance preforking PSGI/Plack web server

 Starman is a PSGI perl web server that has unique features such as:
  * High Performance - Uses the fast XS/C HTTP header parser
  * Preforking - Spawns workers preforked like most high performance UNIX
    servers do. Starman also reaps dead children and automatically restarts
    the worker pool.
  * Signals - Supports HUP for graceful restarts, and TTIN/TTOU to
    dynamically increase or decrease the number of worker processes.
  * Superdaemon aware - Supports Server::Starter for hot deploy and
    graceful restarts.
  * Multiple interfaces and UNIX Domain Socket support - Able to listen
    on multiple intefaces including UNIX sockets.
  * Small memory footprint - Preloading the applications with --preload-app
    command line option enables copy-on-write friendly memory management.
    Also, the minimum memory usage Starman requires for the master process
    is 7MB and children (workers) is less than 3.0MB.
  * PSGI compatible - Can run any PSGI applications and frameworks
  * HTTP/1.1 support - Supports chunked requests and responses, keep-alive
    and pipeline requests.