r31505 - in /trunk/libschedule-ratelimiter-perl/debian: ./ changelog compat control copyright libschedule-ratelimiter-perl.docs rules watch

ryan52-guest at users.alioth.debian.org ryan52-guest at users.alioth.debian.org
Fri Mar 6 06:53:28 UTC 2009


Author: ryan52-guest
Date: Fri Mar  6 06:53:23 2009
New Revision: 31505

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=31505
Log:
[svn-inject] Applying Debian modifications to trunk

Added:
    trunk/libschedule-ratelimiter-perl/debian/
    trunk/libschedule-ratelimiter-perl/debian/changelog
    trunk/libschedule-ratelimiter-perl/debian/compat
    trunk/libschedule-ratelimiter-perl/debian/control
    trunk/libschedule-ratelimiter-perl/debian/copyright
    trunk/libschedule-ratelimiter-perl/debian/libschedule-ratelimiter-perl.docs
    trunk/libschedule-ratelimiter-perl/debian/rules   (with props)
    trunk/libschedule-ratelimiter-perl/debian/watch

Added: trunk/libschedule-ratelimiter-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libschedule-ratelimiter-perl/debian/changelog?rev=31505&op=file
==============================================================================
--- trunk/libschedule-ratelimiter-perl/debian/changelog (added)
+++ trunk/libschedule-ratelimiter-perl/debian/changelog Fri Mar  6 06:53:23 2009
@@ -1,0 +1,5 @@
+libschedule-ratelimiter-perl (0.01-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Ryan Niebur <ryanryan52 at gmail.com>  Thu, 5 Mar 2009 22:43:11 -0800

Added: trunk/libschedule-ratelimiter-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libschedule-ratelimiter-perl/debian/compat?rev=31505&op=file
==============================================================================
--- trunk/libschedule-ratelimiter-perl/debian/compat (added)
+++ trunk/libschedule-ratelimiter-perl/debian/compat Fri Mar  6 06:53:23 2009
@@ -1,0 +1,1 @@
+7

Added: trunk/libschedule-ratelimiter-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libschedule-ratelimiter-perl/debian/control?rev=31505&op=file
==============================================================================
--- trunk/libschedule-ratelimiter-perl/debian/control (added)
+++ trunk/libschedule-ratelimiter-perl/debian/control Fri Mar  6 06:53:23 2009
@@ -1,0 +1,32 @@
+Source: libschedule-ratelimiter-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 7)
+Build-Depends-Indep: perl (>= 5.6.0-12)
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Ryan Niebur <ryanryan52 at gmail.com>
+Standards-Version: 3.8.0
+Homepage: http://search.cpan.org/dist/Schedule-RateLimiter/
+Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libschedule-ratelimiter-perl/
+Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libschedule-ratelimiter-perl/
+
+Package: libschedule-ratelimiter-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}
+Description: Perl library to prevent events from happening too quickly
+ Schedule::RateLimiter provides a way to voluntarily restrict how many times a
+ given action may take place within a specified time frame. Such a tool may be
+ useful if you have written something which periodically polls some public
+ resource and want to ensure that you do not overburden that resource with too
+ many requests.
+ .
+ Initially, one might think that solving this problem would be as simple as
+ sleeping for the number of seconds divided by the number of iterations in
+ between each event. However, that would only be correct if the event took no
+ time at all.
+ .
+ If you know exactly how much time each event is going to take then you could
+ build an even more complicated one-liner such as this:
+ .
+ sleep( (seconds / iterations) - single_event_time )
+

Added: trunk/libschedule-ratelimiter-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libschedule-ratelimiter-perl/debian/copyright?rev=31505&op=file
==============================================================================
--- trunk/libschedule-ratelimiter-perl/debian/copyright (added)
+++ trunk/libschedule-ratelimiter-perl/debian/copyright Fri Mar  6 06:53:23 2009
@@ -1,0 +1,27 @@
+Format-Specification:
+    http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196
+Upstream-Maintainer: Daniel J. Wright, <wright at pair.com>
+Upstream-Source: http://search.cpan.org/dist/Schedule-RateLimiter/
+Upstream-Name: Schedule-RateLimiter
+
+Files: *
+Copyright: 2003 pair Networks, Inc
+License: Artistic | GPL-1+
+
+Files: debian/*
+Copyright: 2009, Ryan Niebur <ryanryan52 at gmail.com>
+License: Artistic | 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 GNU/Linux 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 GNU/Linux systems, the complete text of the GNU General
+    Public License can be found in `/usr/share/common-licenses/GPL'

Added: trunk/libschedule-ratelimiter-perl/debian/libschedule-ratelimiter-perl.docs
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libschedule-ratelimiter-perl/debian/libschedule-ratelimiter-perl.docs?rev=31505&op=file
==============================================================================
--- trunk/libschedule-ratelimiter-perl/debian/libschedule-ratelimiter-perl.docs (added)
+++ trunk/libschedule-ratelimiter-perl/debian/libschedule-ratelimiter-perl.docs Fri Mar  6 06:53:23 2009
@@ -1,0 +1,1 @@
+README

Added: trunk/libschedule-ratelimiter-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libschedule-ratelimiter-perl/debian/rules?rev=31505&op=file
==============================================================================
--- trunk/libschedule-ratelimiter-perl/debian/rules (added)
+++ trunk/libschedule-ratelimiter-perl/debian/rules Fri Mar  6 06:53:23 2009
@@ -1,0 +1,23 @@
+#!/usr/bin/make -f
+
+build: build-stamp
+build-stamp:
+	dh build
+	touch $@
+
+clean:
+	dh $@
+
+install: install-stamp
+install-stamp: build-stamp
+	dh install
+	touch $@
+
+binary-arch:
+
+binary-indep: install
+	dh $@
+
+binary: binary-arch binary-indep
+
+.PHONY: binary binary-arch binary-indep install clean build

Propchange: trunk/libschedule-ratelimiter-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libschedule-ratelimiter-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libschedule-ratelimiter-perl/debian/watch?rev=31505&op=file
==============================================================================
--- trunk/libschedule-ratelimiter-perl/debian/watch (added)
+++ trunk/libschedule-ratelimiter-perl/debian/watch Fri Mar  6 06:53:23 2009
@@ -1,0 +1,2 @@
+version=3
+http://search.cpan.org/dist/Schedule-RateLimiter/   .*/Schedule-RateLimiter-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$




More information about the Pkg-perl-cvs-commits mailing list