Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id 3CE321A923A for ; Mon, 6 Dec 2021 12:43:53 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 53C4485040; Mon, 6 Dec 2021 12:43:52 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8C5D38503D for ; Mon, 6 Dec 2021 12:43:51 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id MdcK9eHOznZX for ; Mon, 6 Dec 2021 12:43:51 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id ECF1D84CEF for ; Mon, 6 Dec 2021 12:43:50 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id DF8B5FAEC; Mon, 6 Dec 2021 12:43:50 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1638794630102720" MIME-Version: 1.0 Date: Mon, 6 Dec 2021 12:43:50 +0000 From: "Amitai Schleier" Subject: CVS commit: pkgsrc/devel/p5-Algorithm-Backoff To: pkgsrc-changes@NetBSD.org Reply-To: schmonz@netbsd.org X-Mailer: log_accum Message-Id: <20211206124350.DF8B5FAEC@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1638794630102720 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: schmonz Date: Mon Dec 6 12:43:50 UTC 2021 Added Files: pkgsrc/devel/p5-Algorithm-Backoff: DESCR Makefile distinfo Log Message: Add p5-Algorithm-Backoff, several classes that implement various backoff strategies for setting delay between retry attempts: - Algorithm::Backoff::Constant - Algorithm::Backoff::Exponential - Algorithm::Backoff::Fibonacci - Algorithm::Backoff::LILD - Algorithm::Backoff::LIMD - Algorithm::Backoff::MILD - Algorithm::Backoff::MIMD To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 pkgsrc/devel/p5-Algorithm-Backoff/DESCR \ pkgsrc/devel/p5-Algorithm-Backoff/Makefile \ pkgsrc/devel/p5-Algorithm-Backoff/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1638794630102720 Content-Disposition: inline Content-Length: 2085 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Added files: Index: pkgsrc/devel/p5-Algorithm-Backoff/DESCR diff -u /dev/null pkgsrc/devel/p5-Algorithm-Backoff/DESCR:1.1 --- /dev/null Mon Dec 6 12:43:50 2021 +++ pkgsrc/devel/p5-Algorithm-Backoff/DESCR Mon Dec 6 12:43:50 2021 @@ -0,0 +1,10 @@ +This distribution provides several classes that implement various +backoff strategies for setting delay between retry attempts: + +- Algorithm::Backoff::Constant +- Algorithm::Backoff::Exponential +- Algorithm::Backoff::Fibonacci +- Algorithm::Backoff::LILD +- Algorithm::Backoff::LIMD +- Algorithm::Backoff::MILD +- Algorithm::Backoff::MIMD Index: pkgsrc/devel/p5-Algorithm-Backoff/Makefile diff -u /dev/null pkgsrc/devel/p5-Algorithm-Backoff/Makefile:1.1 --- /dev/null Mon Dec 6 12:43:50 2021 +++ pkgsrc/devel/p5-Algorithm-Backoff/Makefile Mon Dec 6 12:43:50 2021 @@ -0,0 +1,19 @@ +# $NetBSD: Makefile,v 1.1 2021/12/06 12:43:50 schmonz Exp $ + +DISTNAME= Algorithm-Backoff-0.009 +PKGNAME= p5-${DISTNAME} +CATEGORIES= devel perl5 +MASTER_SITES= https://cpan.metacpan.org/authors/id/P/PE/PERLANCAR/ + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= https://metacpan.org/release/Algorithm-Backoff +COMMENT= Various backoff strategies for retry +LICENSE= ${PERL5_LICENSE} + +PERL5_PACKLIST= auto/Algorithm/Backoff/.packlist +USE_LANGUAGES= # none + +TEST_DEPENDS+= p5-Test-Number-Delta-[0-9]*:../../math/p5-Test-Number-Delta + +.include "../../lang/perl5/module.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/p5-Algorithm-Backoff/distinfo diff -u /dev/null pkgsrc/devel/p5-Algorithm-Backoff/distinfo:1.1 --- /dev/null Mon Dec 6 12:43:50 2021 +++ pkgsrc/devel/p5-Algorithm-Backoff/distinfo Mon Dec 6 12:43:50 2021 @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1 2021/12/06 12:43:50 schmonz Exp $ + +BLAKE2s (Algorithm-Backoff-0.009.tar.gz) = 12abab8f4c6d04f93797d1aa3f2004839fba1c00bccbbb62f740b91bc6612f37 +SHA512 (Algorithm-Backoff-0.009.tar.gz) = e3764518941d11f6dcd0b69aa6206bf382a7ad00ad77eee96493ae237ffd0a6a54b1796e8947974a112fe5fcf6b148fc60c9d1cf8b073ee9b4a22e44640bccfc +Size (Algorithm-Backoff-0.009.tar.gz) = 23444 bytes --_----------=_1638794630102720--