[Python-modules-commits] [python-django-rules] 03/03: Initial release (Closes: #862513).

Michael Fladischer fladi at moszumanska.debian.org
Mon May 15 08:57:04 UTC 2017


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

fladi pushed a commit to branch master
in repository python-django-rules.

commit c05c659bdcf1f3b4d370e34c0858396eb91987b6
Author: Michael Fladischer <FladischerMichael at fladi.at>
Date:   Sat May 13 22:41:58 2017 +0200

    Initial release (Closes: #862513).
---
 debian/changelog                 |  5 ++++
 debian/clean                     |  5 ++++
 debian/compat                    |  1 +
 debian/control                   | 26 ++++++++++++++++
 debian/copyright                 | 64 ++++++++++++++++++++++++++++++++++++++++
 debian/python3-django-rules.docs |  1 +
 debian/rules                     |  9 ++++++
 debian/watch                     |  4 +++
 8 files changed, 115 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..fbeb5ae
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+python-django-rules (1.2.1-1) unstable; urgency=low
+
+  * Initial release (Closes: #862513).
+
+ -- Michael Fladischer <fladi at debian.org>  Sat, 13 May 2017 21:52:03 +0200
diff --git a/debian/clean b/debian/clean
new file mode 100644
index 0000000..28cc88c
--- /dev/null
+++ b/debian/clean
@@ -0,0 +1,5 @@
+rules.egg-info/PKG-INFO
+rules.egg-info/SOURCES.txt
+rules.egg-info/dependency_links.txt
+rules.egg-info/not-zip-safe
+rules.egg-info/top_level.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..3783e99
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,26 @@
+Source: python-django-rules
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Michael Fladischer <fladi at debian.org>
+Build-Depends: debhelper (>= 9),
+               dh-python,
+               python3-all,
+               python3-setuptools
+Standards-Version: 3.9.8
+X-Python3-Version: >= 3.3
+Homepage: https://github.com/dfunckt/django-rules
+Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/python-django-rules.git
+Vcs-Git: https://anonscm.debian.org/git/python-modules/packages/python-django-rules.git
+
+Package: python3-django-rules
+Architecture: all
+Depends: ${misc:Depends},
+         ${python3:Depends}
+Description: object-level permissions for Django (Python3 version)
+ rules is a tiny but powerful app providing object-level permissions to Django,
+ without requiring a database. At its core, it is a generic framework for
+ building rule-based systems, similar to decision trees. It can also be used as
+ a standalone library in other contexts and frameworks.
+ .
+ This package contains the Python 3 version of the library.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..2d98f50
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,64 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: python-django-rules
+Upstream-Contact: Akis Kesoglou <akiskesoglou at gmail.com>
+Source: https://github.com/dfunckt/django-rules
+
+Files: *
+Copyright: 2014, Akis Kesoglou <akiskesoglou at gmail.com>
+License: Expat
+
+Files: rules/compat/access_mixins.py
+Copyright: Django Software Foundation and individual contributors
+License: BSD-3-clause
+
+Files: debian/*
+Copyright: 2017, Michael Fladischer <fladi at debian.org>
+License: Expat
+
+License: Expat
+ Permission is hereby granted, free of charge, to any person
+ obtaining a copy of this software and associated documentation
+ files (the "Software"), to deal in the Software without
+ restriction, including without limitation the rights to use,
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the
+ Software is furnished to do so, subject to the following
+ conditions:
+ .
+ The above copyright notice and this permission notice shall be
+ included in all copies or substantial portions of the Software.
+ .
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+ OTHER DEALINGS IN THE SOFTWARE.
+
+License: BSD-3-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.
+ .
+     3. Neither the name of Django nor the names of its contributors may be used
+        to endorse or promote products derived from this software without
+        specific prior written permission.
+ .
+ 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.
diff --git a/debian/python3-django-rules.docs b/debian/python3-django-rules.docs
new file mode 100644
index 0000000..a1320b1
--- /dev/null
+++ b/debian/python3-django-rules.docs
@@ -0,0 +1 @@
+README.rst
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..0050036
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,9 @@
+#!/usr/bin/make -f
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+export PYBUILD_NAME=django-rules
+
+%:
+	dh $@ --with python3 --buildsystem=pybuild
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..70272c1
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,4 @@
+version=3
+opts=filenamemangle=s/.*\/v([\d\.]+.*)$/python-django-rules-$1/ \
+https://github.com/dfunckt/django-rules/releases \
+/dfunckt/django-rules/archive/v([\d\.]+)\.tar\.gz

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



More information about the Python-modules-commits mailing list