ruby-retryable 3.0.5-1 source package in Ubuntu

Changelog

ruby-retryable (3.0.5-1) unstable; urgency=medium

  * Team upload.
  * New upstream release.

  [ Debian Janitor ]
  * Use secure copyright file specification URI.
  * Use secure URI in debian/watch.
  * Use secure URI in Homepage field.
  * Bump debhelper from deprecated 9 to 13.
  * Set debhelper-compat version in Build-Depends.
  * Update Vcs-* headers from URL redirect.
  * Use canonical URL in Vcs-Git.
  * Set upstream metadata fields: Bug-Database, Bug-Submit.
  * Apply multi-arch hints.
    + ruby-retryable: Add :any qualifier for ruby dependency.
  * Update watch file format version to 4.
  * Remove constraints unnecessary since buster:
    + Build-Depends: Drop versioned constraint on ruby-rspec.

  [ Daniel Leidert ]
  * d/control: Add Rules-Requires-Root field.
    (Standards-Version): Bump to 4.6.0.
    (Depends): Remove interpreters and use ${ruby:Depends}.
  * d/copyright: Add Upstream-Contact field.
    (Copyright): Add team.
  * d/rules: Use gem installation layout and install upstream changelog.
  * d/watch: Update URL.
  * d/patches/0001-Don-t-require-retryable-with-absolute-path-and-don-t.patch:
    Drop patch not necessary anymore.
  * d/patches/Don-t-require-simplecov.patch: Add patch.
    - Drop usage of simplecov.
  * d/patches/series: Adjust patch list.
  * d/upstream/metadata: Add missing fields.

 -- Daniel Leidert <email address hidden>  Mon, 13 Dec 2021 14:56:56 +0100

Upload details

Uploaded by:
Debian Ruby Extras Maintainers
Uploaded to:
Sid
Original maintainer:
Debian Ruby Extras Maintainers
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
ruby-retryable_3.0.5-1.dsc 2.0 KiB 00e246e4f35cc2ac91ff8b53b1a93a724073430225468149f1d09209ec2b25ff
ruby-retryable_3.0.5.orig.tar.gz 9.7 KiB 39313fd40ffecacf78de779c41786a0c27c11f122866856107e0e82f12eb8653
ruby-retryable_3.0.5-1.debian.tar.xz 3.4 KiB e3d72e0e939c511f377ddb60f1dd3049ee6e421b935b41302025dbb71575e1f9

Available diffs

No changes file available.

Binary packages built by this source

ruby-retryable: module that allows one to retry a code block

 Runs a code block, and retries it when an exception occurs. It's great when
 working with flakey webservices (for example).
 .
 It's configured using four optional parameters :tries, :on, :sleep, :matching,
 :ensure, :exception_cb and runs the passed block. Should an exception occur,
 it'll retry for (n-1) times.
 .
 Should the number of retries be reached without success, the last exception
 will be raised.