summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@debian.org>2022-10-22 10:22:38 +0100
committerJelmer Vernooij <jelmer@debian.org>2022-10-22 10:22:38 +0100
commit3e8d0c044b31930fee034fb31331cce48c00eaa3 (patch)
tree805c74bff41501c2e508ac4855601c546a2ea6ce
parentc372bb5ac247c9e8e3ce001ad8fcacddf47e4578 (diff)
parent09893830d19f6f7e96aa89808a2daad83f91dbf4 (diff)
libalgorithm-backoff-perl (0.009-3) unstable; urgency=medium
[ Debian Janitor ] * Apply multi-arch hints. + libalgorithm-backoff-perl: Add Multi-Arch: foreign. [dgit import unpatched libalgorithm-backoff-perl 0.009-3]
-rw-r--r--debian/changelog19
-rw-r--r--debian/control35
-rw-r--r--debian/copyright28
-rwxr-xr-xdebian/rules4
-rw-r--r--debian/source/format1
-rw-r--r--debian/upstream/metadata5
-rw-r--r--debian/watch2
7 files changed, 94 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..6d3cbe5
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,19 @@
+libalgorithm-backoff-perl (0.009-3) unstable; urgency=medium
+
+ [ Debian Janitor ]
+ * Apply multi-arch hints. + libalgorithm-backoff-perl: Add Multi-Arch: foreign.
+
+ -- Jelmer Vernooij <jelmer@debian.org> Sat, 22 Oct 2022 10:22:38 +0100
+
+libalgorithm-backoff-perl (0.009-2) unstable; urgency=medium
+
+ * Team upload
+ * No-changes source-only upload to enable testing migration
+
+ -- Damyan Ivanov <dmn@debian.org> Sat, 11 Dec 2021 21:20:25 +0000
+
+libalgorithm-backoff-perl (0.009-1) unstable; urgency=low
+
+ * Initial release (closes: #1001230).
+
+ -- gregor herrmann <gregoa@debian.org> Mon, 06 Dec 2021 20:17:17 +0100
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..8ba185a
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,35 @@
+Source: libalgorithm-backoff-perl
+Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
+Uploaders: gregor herrmann <gregoa@debian.org>
+Section: perl
+Testsuite: autopkgtest-pkg-perl
+Priority: optional
+Build-Depends: debhelper-compat (= 13)
+Build-Depends-Indep: libtest-exception-perl <!nocheck>,
+ libtest-number-delta-perl <!nocheck>,
+ libtest-simple-perl <!nocheck>,
+ perl
+Standards-Version: 4.6.0
+Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libalgorithm-backoff-perl
+Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libalgorithm-backoff-perl.git
+Homepage: https://metacpan.org/release/Algorithm-Backoff
+Rules-Requires-Root: no
+
+Package: libalgorithm-backoff-perl
+Architecture: all
+Depends: ${misc:Depends},
+ ${perl:Depends}
+Multi-Arch: foreign
+Description: modules providing various backoff strategies for retry
+ This package provides several classes that implement various backoff
+ strategies for setting delay between retry attempts.
+ .
+ Included modules:
+ .
+ Algorithm::Backoff::Constant - Backoff using a constant delay
+ Algorithm::Backoff::Exponential - Backoff exponentially
+ Algorithm::Backoff::Fibonacci - Backoff using Fibonacci sequence
+ Algorithm::Backoff::LILD - Linear Increment, Linear Decrement
+ Algorithm::Backoff::LIMD - Linear Increment, Multiplicative Decrement
+ Algorithm::Backoff::MILD - Multiplicative Increment, Linear Decrement
+ Algorithm::Backoff::MIMD - Multiplicative Increment, Multiplicative Decrement
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..f452637
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,28 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Source: https://metacpan.org/release/Algorithm-Backoff
+Upstream-Contact: perlancar <perlancar@cpan.org>
+Upstream-Name: Algorithm-Backoff
+
+Files: *
+Copyright: 2019, perlancar <perlancar@cpan.org>
+License: Artistic or GPL-1+
+
+Files: debian/*
+Copyright: 2021, gregor herrmann <gregoa@debian.org>
+License: Artistic or GPL-1+
+
+License: Artistic
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the Artistic License, which comes with Perl.
+ .
+ On Debian systems, the complete text of the Artistic License can be
+ found in `/usr/share/common-licenses/Artistic'.
+
+License: GPL-1+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 1, or (at your option)
+ any later version.
+ .
+ On Debian systems, the complete text of version 1 of the GNU General
+ Public License can be found in `/usr/share/common-licenses/GPL-1'.
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..2d33f6a
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,4 @@
+#!/usr/bin/make -f
+
+%:
+ dh $@
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/debian/upstream/metadata b/debian/upstream/metadata
new file mode 100644
index 0000000..6a11dad
--- /dev/null
+++ b/debian/upstream/metadata
@@ -0,0 +1,5 @@
+---
+Archive: CPAN
+Bug-Database: https://rt.cpan.org/Public/Dist/Display.html?Name=Algorithm-Backoff
+Repository: https://github.com/perlancar/perl-Algorithm-Backoff.git
+Repository-Browse: https://github.com/perlancar/perl-Algorithm-Backoff
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..3a34130
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=4
+https://metacpan.org/release/Algorithm-Backoff .*/Algorithm-Backoff-v?@ANY_VERSION@@ARCHIVE_EXT@$