[Python-modules-commits] [django-organizations] 03/03: Initial release. (Closes: #843915)

Scott Kitterman kitterman at moszumanska.debian.org
Thu Nov 10 18:02:05 UTC 2016


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

kitterman pushed a commit to branch master
in repository django-organizations.

commit 694d77f904f3139f641fbff08ddacb7d3a7d24e4
Author: Scott Kitterman <scott at kitterman.com>
Date:   Thu Nov 10 13:01:21 2016 -0500

    Initial release. (Closes: #843915)
---
 debian/.git-dpm                          |  3 ++
 debian/changelog                         |  5 +++
 debian/compat                            |  1 +
 debian/control                           | 58 +++++++++++++++++++++++++++++
 debian/copyright                         | 64 ++++++++++++++++++++++++++++++++
 debian/gbp.conf                          |  2 +
 debian/python-django-organizations.docs  |  1 +
 debian/python3-django-organizations.docs |  1 +
 debian/rules                             | 13 +++++++
 debian/watch                             |  2 +
 10 files changed, 150 insertions(+)

diff --git a/debian/.git-dpm b/debian/.git-dpm
index 531c097..656ebd8 100644
--- a/debian/.git-dpm
+++ b/debian/.git-dpm
@@ -6,3 +6,6 @@ effb99a197ba11ca91c1c72cfc81176b379d4f85
 django-organizations_0.8.2.orig.tar.gz
 b86c796534f14f3cd7390587bbba05d94ab56193
 29198
+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..ce31464
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+django-organizations (0.8.2-1) unstable; urgency=medium
+
+  * Initial release. (Closes: #843915)
+
+ -- Scott Kitterman <scott at kitterman.com>  Thu, 10 Nov 2016 12:39:49 -0500
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..cf44dd1
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,58 @@
+Source: django-organizations
+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/bennylope/django-organizations/
+Vcs-Git: https://anonscm.debian.org/git/python-modules/packages/django-organizations.git
+Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/django-organizations.git
+
+Package: python-django-organizations
+Architecture: all
+Depends:
+ ${misc:Depends},
+ ${python:Depends}
+Description: Django groups and multi-user account management module (Python 2)
+ Django Organizations adds user-managed, multi-user groups to your Django
+ project. Use Django Organizations whether your site needs organizations that
+ function like social groups or multi-user account objects to provide account
+ and subscription functionality beyond the individual user.
+ .
+   * Works with your existing user model, whether
+  `  django.contrib.auth` or a custom model. No additional user
+     or authentication functionality required.
+   * Users can be belong to and own more than one organization (account, group)
+   * Invitation and registration functionality works out of the box for many
+     situations and can be extended as need to fit specific requirements.
+   * Start with the base models or use your own for greater customization.
+ .
+ This is the Python 2 version of the package.
+
+Package: python3-django-organizations
+Architecture: all
+Depends:
+ ${misc:Depends},
+ ${python3:Depends}
+Description: Django groups and multi-user account management module (Python 3)
+ Django Organizations adds user-managed, multi-user groups to your Django
+ project. Use Django Organizations whether your site needs organizations that
+ function like social groups or multi-user account objects to provide account
+ and subscription functionality beyond the individual user.
+ .
+   * Works with your existing user model, whether
+  `  django.contrib.auth` or a custom model. No additional user
+     or authentication functionality required.
+   * Users can be belong to and own more than one organization (account, group)
+   * Invitation and registration functionality works out of the box for many
+     situations and can be extended as need to fit specific requirements.
+   * Start with the base models or use your own for greater customization.
+ .
+ This is the Python 3 version of the package.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..fb3ed53
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,64 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: Django Organizations
+Upstream-Contact: Ben Lopatin <ben at wellfire.co>
+Source: https://pypi.python.org/pypi/django-organizations
+
+Files: *
+Copyright: Copyright (c) 2012-2016, Ben Lopatin and contributors
+License: BSD-2-clause
+
+Files: organizations/fields.py
+Copyright: Copyright (c) 2009-2015, Carl Meyer and contributors
+License: BSD-3-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.
+
+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:
+ .
+    * 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.
+    * Neither the name of the author nor the names of other
+      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/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-organizations.docs b/debian/python-django-organizations.docs
new file mode 100644
index 0000000..a1320b1
--- /dev/null
+++ b/debian/python-django-organizations.docs
@@ -0,0 +1 @@
+README.rst
diff --git a/debian/python3-django-organizations.docs b/debian/python3-django-organizations.docs
new file mode 100644
index 0000000..a1320b1
--- /dev/null
+++ b/debian/python3-django-organizations.docs
@@ -0,0 +1 @@
+README.rst
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..5c83296
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,13 @@
+#!/usr/bin/make -f
+
+export PYBUILD_NAME=django-organizations
+
+%:
+	dh $@ --with python2,python3 --buildsystem=pybuild
+
+override_dh_auto_clean:
+	dh_auto_clean
+	rm -rf build
+
+override_dh_auto_test:
+	# No tests to run, let's not try.
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..858e0ec
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://pypi.debian.net/django-organizations/django-organizations-([0-9][0-9\.\-]*).tar.gz

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



More information about the Python-modules-commits mailing list