node-dequeue 1.0.5-2 source package in Ubuntu

Changelog

node-dequeue (1.0.5-2) unstable; urgency=medium

  [ Mike Gabriel ]
  * debian/control: Drop myself from Uploaders: field.

  [ Xavier Guimard ]
  * Bump debhelper compatibility level to 11
  * Declare compliance with policy 4.3.0
  * Change section to javascript
  * Change priority to optional
  * Update VCS fields to salsa
  * Update debian/copyright
  * Add myself to uploaders (Closes: #921357)
  * Add upstream/metadata
  * Add minimal test

 -- Xavier Guimard <email address hidden>  Tue, 05 Feb 2019 14:50:30 +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
Focal release universe misc

Builds

Disco: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
node-dequeue_1.0.5-2.dsc 2.0 KiB 2febc840778aaad1ce0f0e739e2d47ac1d97279cd64cb737115136f26dc5aaff
node-dequeue_1.0.5.orig.tar.gz 2.8 KiB 19ac999259091860cd94b72e0f8dcad263767975e562fa4f04f7377ec9ddca14
node-dequeue_1.0.5-2.debian.tar.xz 2.6 KiB 21434c6d946f281fedd6613013944c10874d91439b309405e7cbec97f678fa47

Available diffs

No changes file available.

Binary packages built by this source

node-dequeue: Simple Double Ended Queue Datastructure for Node.js

 Dequeue is implemented as a doubly linked circular list with a titular
 head node--an empty node to designate the beginning and the end of the
 circularly linked list.
 .
 It is a drop-in replacement for javascript-arrays-as-fifo.