[Python-modules-commits] [django-simple-redis-admin] 03/06: Initial release. (Closes: #844379)

Scott Kitterman kitterman at moszumanska.debian.org
Tue Nov 15 05:04:07 UTC 2016


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

kitterman pushed a commit to branch master
in repository django-simple-redis-admin.

commit 868885c148c5cf5d73640362272609d1e4430e39
Author: Scott Kitterman <scott at kitterman.com>
Date:   Mon Nov 14 23:53:26 2016 -0500

    Initial release. (Closes: #844379)
---
 debian/.git-dpm                        |  3 +++
 debian/changelog                       |  5 ++++
 debian/clean                           |  1 +
 debian/compat                          |  1 +
 debian/control                         | 46 ++++++++++++++++++++++++++++++++++
 debian/copyright                       | 35 ++++++++++++++++++++++++++
 debian/gbp.conf                        |  2 ++
 debian/python-django-redis-admin.docs  |  1 +
 debian/python3-django-redis-admin.docs |  1 +
 debian/rules                           |  9 +++++++
 debian/watch                           |  2 ++
 11 files changed, 106 insertions(+)

diff --git a/debian/.git-dpm b/debian/.git-dpm
index a8a4cf3..b8a0ecf 100644
--- a/debian/.git-dpm
+++ b/debian/.git-dpm
@@ -6,3 +6,6 @@ a4f05b8303ed4eed7280bfae65cd7dcde66bf7c9
 django-simple-redis-admin_1.4.0.orig.tar.gz
 301063dbd99ca04c08d578260d7e43ca68912019
 5751
+debianTag="debian/%e%v"
+patchedTag="patched/%e%v"
+upstreamTag="upstream/%e%u"
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..08b273c
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+django-simple-redis-admin (1.4.0-1) unstable; urgency=medium
+
+  * Initial release. (Closes: #844379)
+
+ -- Scott Kitterman <scott at kitterman.com>  Mon, 14 Nov 2016 22:06:07 -0500
diff --git a/debian/clean b/debian/clean
new file mode 100644
index 0000000..6b342db
--- /dev/null
+++ b/debian/clean
@@ -0,0 +1 @@
+django_simple_redis_admin.egg-info/SOURCES.txt
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..50b8a4f
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,46 @@
+Source: django-simple-redis-admin
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Scott Kitterman <scott at kitterman.com>
+Build-Depends:
+ debhelper (>= 9~),
+ dh-python,
+ python-all,
+ python-setuptools,
+ python3-all,
+ python3-setuptools
+Standards-Version: 3.9.8
+Homepage: https://github.com/nicholasserra/django-simple-redis-admin
+Vcs-Git: https://anonscm.debian.org/git/python-modules/packages/django-simple-redis-admin.git
+Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/django-simple-redis-admin.git
+
+Package: python-django-redis-admin
+Architecture: all
+Depends:
+ ${misc:Depends},
+ ${python:Depends}
+Description: Django admin panel add-on to view/delete Redis keys (Python 2)
+ `django-simple-redis-admin` is an addition to your Django admin panel that
+ allows you to view and delete your Redis keys.
+ .
+ This package does not use models, so no database tables need to be created.
+ Just add to INSTALLED_APPS and go.  Users must have is_superuser == True to
+ view the Redis admin. No django admin logs are created with this package.
+ .
+ This is the Python 2 version of the package.
+
+Package: python3-django-redis-admin
+Architecture: all
+Depends:
+ ${misc:Depends},
+ ${python3:Depends}
+Description: Django admin panel add-on to view/delete Redis keys (Python 3)
+ `django-simple-redis-admin` is an addition to your Django admin panel that
+ allows you to view and delete your Redis keys.
+ .
+ This package does not use models, so no database tables need to be created.
+ Just add to INSTALLED_APPS and go.  Users must have is_superuser == True to
+ view the Redis admin. No django admin logs are created with this package.
+ .
+ This is the Python 3 version of the package.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..865ea8e
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,35 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: Django Simple Redis Admin
+Upstream-Contact: Nicholas Serra
+Source: https://pypi.python.org/pypi/django-simple-redis-admin
+
+Files: *
+Copyright: Copyright (c) 2012,2014,2016, Nicholas Serra
+License: BSD-2-clause
+
+Files: debian/*
+Copyright: 2016 Scott Kitterman <scott at kitterman.com>
+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:
+ .
+ * Redistributions of source code must retain the above copyright notice, this
+   list of conditions and the following disclaimer.
+ .
+ * 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 HOLDER 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.
+
diff --git a/debian/gbp.conf b/debian/gbp.conf
new file mode 100644
index 0000000..cec628c
--- /dev/null
+++ b/debian/gbp.conf
@@ -0,0 +1,2 @@
+[DEFAULT]
+pristine-tar = True
diff --git a/debian/python-django-redis-admin.docs b/debian/python-django-redis-admin.docs
new file mode 100644
index 0000000..b43bf86
--- /dev/null
+++ b/debian/python-django-redis-admin.docs
@@ -0,0 +1 @@
+README.md
diff --git a/debian/python3-django-redis-admin.docs b/debian/python3-django-redis-admin.docs
new file mode 100644
index 0000000..b43bf86
--- /dev/null
+++ b/debian/python3-django-redis-admin.docs
@@ -0,0 +1 @@
+README.md
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..7e4d3d5
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,9 @@
+#!/usr/bin/make -f
+
+export PYBUILD_NAME=django-redis-admin
+
+%:
+	dh $@ --with python2,python3 --buildsystem=pybuild
+
+override_dh_auto_test:
+	# Tests needs django configured, let's not for now.
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..5dbbacb
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://pypi.debian.net/django-simple-redis-admin/django-simple-redis-admin-([0-9][0-9\.\-]*).tar.gz

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



More information about the Python-modules-commits mailing list