node-pump 3.0.0-5 source package in Ubuntu

Changelog

node-pump (3.0.0-5) unstable; urgency=medium

  * Team upload

  [ Debian Janitor ]
  * Remove constraints unnecessary since stretch:
    + Build-Depends: Drop versioned constraint on node-once.
    + node-pump: Drop versioned constraint on node-once in Depends.

  [ Yadd ]
  * Bump debhelper compatibility level to 13
  * Modernize debian/watch
    * Fix GitHub tags regex
    * Fix filenamemangle
  * Use dh-sequence-nodejs instead of pkg-js-tools
  * Update standards version to 4.6.0, no changes needed.
  * Drop dependency to nodejs

 -- Yadd <email address hidden>  Tue, 16 Nov 2021 11:09:05 +0100

Upload details

Uploaded by:
Debian Javascript Maintainers
Uploaded to:
Sid
Original maintainer:
Debian Javascript Maintainers
Architectures:
all
Section:
javascript
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc
Jammy release universe misc

Builds

Jammy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
node-pump_3.0.0-5.dsc 2.0 KiB 0404972903000b84a88bc7379ffe69178ac55598abcf3914a0a1d5252e0ef878
node-pump_3.0.0.orig.tar.gz 3.3 KiB 5443a8ec244a73a31d0822e92a37acfae815e857ad7ea63e44248556e1878f14
node-pump_3.0.0-5.debian.tar.xz 3.6 KiB a0fc15e3e510432036b24d45d17ceff0829ce884ca079332fb028860b344dbcf

Available diffs

No changes file available.

Binary packages built by this source

node-pump: small node module that pipes streams together

 When using standard source.pipe(dest) source will not be destroyed if dest
 emits close or an error. You are also not able to provide a callback to tell
 when then pipe has finished. pump does these two things for you.
 .
 Node.js is an event-based server-side JavaScript engine.