jquery-throttle-debounce 1.1+dfsg.1-2 source package in Ubuntu

Changelog

jquery-throttle-debounce (1.1+dfsg.1-2) unstable; urgency=medium

  * The “Rahaf Mohammed Alqunun” release.
  * Update publication years for Debian packaging in copyright notices.
  * Update my email address for Debian work.
  * Use the current HTTPS URL for copyright format declaration.
  * Declare current URL for Debian packaging VCS.
  * Move the package to new “Section: javascript”.
  * Declare conformance to “Standards-Version: 4.6.0”.
  * Declare Debhelper compatibility level 13.
  * debian/compat:
    * Remove obsolete configuration file.
  * Remove ‘get-orig-source’ and ‘get-packaged-orig-source’ targets.
    These are no longer mentioned in Debian Policy 4.1.4 and later.
  * Specify settings for EditorConfig in this project.
  * Update package source documentation for standard packaging tools.
  * Specify current URL for Debian packaging source repository.
  * Use UScan features to better specify upstream source URLs.
  * Specify version of GPL license text referenced by upstream grant.
  * Specify the package build system does not require root privilege.
  * Record upstream metadata in DEP-12 document.
  * Install upstream example documents.
  * Build-Depends on command-line tool (not library) UglifyJS package.
    Closes: bug#979886. Thanks to Jonas Smedegaard for the explanation.
  * Install upstream Read Me document.

 -- Ben Finney <email address hidden>  Sat, 12 Feb 2022 17:20:18 +1100

Upload details

Uploaded by:
Ben Finney
Uploaded to:
Sid
Original maintainer:
Ben Finney
Architectures:
all
Section:
misc
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
jquery-throttle-debounce_1.1+dfsg.1-2.dsc 2.0 KiB 21e266ad41092ffc19d43998382669547e8dc26d891fb62c1189370233563817
jquery-throttle-debounce_1.1+dfsg.1.orig.tar.gz 16.6 KiB 8e8e935ca82eb33d0ca1956a989bd5c0a789c9715ee700aeba80c4dc952a8665
jquery-throttle-debounce_1.1+dfsg.1-2.debian.tar.xz 6.0 KiB 8196ac4b6d2c390af978cae3ccd5b967c9adcd30bdd533d2eb888684c74d7c58

Available diffs

No changes file available.

Binary packages built by this source

libjs-jquery-throttle-debounce: library of rate-limit wrappers for functions

 jQuery throttle / debounce allows you to rate-limit your functions in
 multiple useful ways:
 .
  * Passing a ‘delay’ and ‘callback’ to ‘$.throttle’ returns a new
    function that will execute no more than once every ‘delay’
    milliseconds.
  * Passing a ‘delay’ and ‘callback’ to ‘$.debounce’ returns a new
    function that will execute only once, coalescing multiple
    sequential calls into a single execution at either the very
    beginning or end.
 .
 jQuery isn’t actually required for this library, because nothing
 internal uses any jQuery methods or properties. jQuery is just used
 as a namespace under which these methods can exist.
 .
 This package installs the runtime library.