[Python-modules-commits] [trollius-redis] 03/04: Initial release of trollius-redis-0.1.4.

Sergio Durigan Junior sergiodj-guest at moszumanska.debian.org
Fri Aug 5 21:28:31 UTC 2016


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

sergiodj-guest pushed a commit to branch master
in repository trollius-redis.

commit 585af876f37ab7575362aac5d2d9ffb600b84754
Author: Sergio Durigan Junior <sergiodj at sergiodj.net>
Date:   Fri Aug 5 17:21:44 2016 -0400

    Initial release of trollius-redis-0.1.4.
    
    Closes: #833475
---
 debian/.git-dpm                    | 13 +++++---
 debian/README.source               | 13 ++++++++
 debian/changelog                   |  5 +++
 debian/compat                      |  1 +
 debian/control                     | 64 ++++++++++++++++++++++++++++++++++++++
 debian/copyright                   | 40 ++++++++++++++++++++++++
 debian/python-trollius-redis.docs  |  1 +
 debian/python3-trollius-redis.docs |  1 +
 debian/rules                       |  6 ++++
 debian/watch                       |  3 ++
 10 files changed, 142 insertions(+), 5 deletions(-)

diff --git a/debian/.git-dpm b/debian/.git-dpm
index 50cc822..5d8cb8c 100644
--- a/debian/.git-dpm
+++ b/debian/.git-dpm
@@ -1,8 +1,11 @@
 # see git-dpm(1) from git-dpm package
-37b8caa63f787ca818dc0a570cf081fc4d04d7d1
-37b8caa63f787ca818dc0a570cf081fc4d04d7d1
-37b8caa63f787ca818dc0a570cf081fc4d04d7d1
-37b8caa63f787ca818dc0a570cf081fc4d04d7d1
-trollius-redis_0.1.4.orig.tar.gz
+f2f9e6c5e95d6b0007bfaf791fd58b092fe3b084
+f2f9e6c5e95d6b0007bfaf791fd58b092fe3b084
+f2f9e6c5e95d6b0007bfaf791fd58b092fe3b084
+f2f9e6c5e95d6b0007bfaf791fd58b092fe3b084
+trollius_redis_0.1.4.orig.tar.gz
 039d6ae2ec59d4ec8f3b02252a139bc8f22c2328
 32125
+debianTag="debian/%e%v"
+patchedTag="patched/%e%v"
+upstreamTag="upstream/%e%u"
diff --git a/debian/README.source b/debian/README.source
new file mode 100644
index 0000000..8ccae01
--- /dev/null
+++ b/debian/README.source
@@ -0,0 +1,13 @@
+trollius-redis for Debian
+------------------------
+
+Unfortunately, upstream just provides the package through PyPi, which
+means that we end up not having access to several files from the
+original git repository.  For example, we don't have tests,
+documentation, and the LICENSE/AUTHORS files.  I could pull the
+software directly from github, but upstream does not tag the releases.
+I contacted upstream and asked he to provide tags.  Once he does that,
+I'll upgrade the package.
+
+ -- Sergio Durigan Junior <sergiodj at sergiodj.net>  Fri, 05 Aug 2016 13:17:45 -0400
+
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..7be1cfd
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+trollius-redis (0.1.4-1) unstable; urgency=medium
+
+  * Initial release of trollius-redis 0.1.4. (Closes: #833475)
+
+ -- Sergio Durigan Junior <sergiodj at sergiodj.net>  Fri, 05 Aug 2016 17:11:19 -0400
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..6a108c7
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,64 @@
+Source: trollius-redis
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Sergio Durigan Junior <sergiodj at sergiodj.net>
+Build-Depends:
+ debhelper (>=9),
+ dh-python,
+ python-all (>= 2.6.6-3~),
+ python-setuptools,
+ python-trollius,
+ python3-all,
+ python3-setuptools,
+ python3-trollius,
+Standards-Version: 3.9.8
+Homepage: https://github.com/benjolitz/trollius-redis/
+X-Python-Version: >= 2.6
+X-Python3-Version: >= 3.2
+Vcs-Git: https://anonscm.debian.org/git/python-modules/packages/trollius-redis.git
+Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/trollius-redis.git
+
+Package: python-trollius-redis
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}
+Description: Redis client for Python Trollius (Python 2)
+ Completely asynchronous, non-blocking client for a Redis server. It
+ depends on trollius (asyncio compatible for PEP 3156). It supports
+ Python 2 and 3 Trollius-using developers.
+ .
+ Features
+ .
+  * Works for the trollius asyncio-compatible (PEP3156) event loop
+  * No dependencies except trollius
+  * Connection pooling
+  * Automatic conversion from unicode (Python) to bytes (inside Redis.)
+  * Bytes and str protocols.
+  * Completely tested
+  * Blocking calls and transactions supported
+  * Streaming of some multi bulk replies
+ * Pubsub support
+ .
+ This package installs the library for Python 2.
+
+Package: python3-trollius-redis
+Architecture: all
+Depends: ${misc:Depends}, ${python3:Depends}
+Description: Redis client for Python Trollius (Python 3)
+ Completely asynchronous, non-blocking client for a Redis server. It
+ depends on trollius (asyncio compatible for PEP 3156). It supports
+ Python 2 and 3 Trollius-using developers.
+ .
+ Features
+ .
+  * Works for the trollius asyncio-compatible (PEP3156) event loop
+  * No dependencies except trollius
+  * Connection pooling
+  * Automatic conversion from unicode (Python) to bytes (inside Redis.)
+  * Bytes and str protocols.
+  * Completely tested
+  * Blocking calls and transactions supported
+  * Streaming of some multi bulk replies
+  * Pubsub support
+ .
+ This package installs the library for Python 3.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..b310ccb
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,40 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: trollius_redis
+Source: https://github.com/benjolitz/trollius-redis/
+
+Files: *
+Copyright: Ben Jolitz <ben.jolitz+trollius_redis at gmail.com>
+License: BSD-2-clause
+
+Files: debian/*
+Copyright: 2016 Sergio Durigan Junior <sergiodj at sergiodj.net>
+License: BSD-2-clause
+
+License: BSD-2-clause
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are
+ met:
+ .
+ 1. Redistributions of source code must retain the above copyright
+    notice, this list of conditions and the following disclaimer.
+ 2. Redistributions in binary form must reproduce the above copyright
+    notice, this list of conditions and the following disclaimer in the
+    documentation and/or other materials provided with the
+    distribution.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ .
+ The views and conclusions contained in the software and documentation
+ are those of the authors and should not be interpreted as representing
+ official policies, either expressed or implied, of the FreeBSD
+ Project.
diff --git a/debian/python-trollius-redis.docs b/debian/python-trollius-redis.docs
new file mode 100644
index 0000000..a1320b1
--- /dev/null
+++ b/debian/python-trollius-redis.docs
@@ -0,0 +1 @@
+README.rst
diff --git a/debian/python3-trollius-redis.docs b/debian/python3-trollius-redis.docs
new file mode 120000
index 0000000..be347ed
--- /dev/null
+++ b/debian/python3-trollius-redis.docs
@@ -0,0 +1 @@
+python-trollius-redis.docs
\ No newline at end of file
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..d134938
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,6 @@
+#!/usr/bin/make -f
+
+export PYBUILD_NAME = trollius-redis
+
+%:
+	dh $@ --with python2,python3 --buildsystem=pybuild
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..2227822
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=4
+opts="uversionmangle=s/(rc|a|b|c)/~$1/, filenamemangle=s/trollius_redis-(\d[\d.]+.*)/trollius-redis-$1/" \
+https://pypi.debian.net/trollius_redis/trollius_redis-(.+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))

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



More information about the Python-modules-commits mailing list