[Python-modules-commits] [python-ratelimiter] 04/08: Initial packaging

chrysn chrysn-guest at moszumanska.debian.org
Mon Dec 11 08:15:06 UTC 2017


This is an automated email from the git hooks/post-receive script.

chrysn-guest pushed a commit to branch master
in repository python-ratelimiter.

commit a65e481ffa6a47d38122d67c775a3ad18a01a228
Author: chrysn <chrysn at fsfe.org>
Date:   Sun Dec 10 22:01:58 2017 +0100

    Initial packaging
---
 debian/changelog     |  2 +-
 debian/compat        |  1 +
 debian/control       | 19 +++++++++++++++++++
 debian/rules         |  7 +++++++
 debian/source/format |  1 +
 5 files changed, 29 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index 744ebe2..51116dc 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-ratelimiter (0) UNRELEASED; urgency=medium
+ratelimiter (1.2.0-1) UNRELEASED; urgency=medium
 
   * Initial release. (Closes: #880661)
 
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..f599e28
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+10
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..395ef3c
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,19 @@
+Source: ratelimiter
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Christian M. Amsüss <chrysn at fsfe.org>
+Build-Depends: debhelper (>= 10), python3, python3-pytest
+Standards-Version: 4.1.1
+Section: python
+Homepage: https://github.com/RazerM/ratelimiter
+Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/ratelimiter.git/
+Vcs-git: https://anonscm.debian.org/python-modules/packages/ratelimiter.git
+
+Package: python3-ratelimiter
+Architecture: any
+Depends: python3, ${shlibs:Depends}, ${misc:Depends}
+Description: simple Python library for limiting the rate of operations
+ This package provides the ratelimiter module, which ensures that an
+ operation will not be executed more than a given number of times on a
+ given period. This can prove useful when working with third parties APIs
+ which require for example a maximum of 10 requests per second.
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..f00dbc2
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,7 @@
+#!/usr/bin/make -f
+# See debhelper(7) (uncomment to enable)
+# output every command that modifies files on the build system.
+#export DH_VERBOSE = 1
+
+%:
+	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)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-ratelimiter.git



More information about the Python-modules-commits mailing list