[Python-modules-commits] r13003 - in packages/django-permissions/trunk (10 files)
fladi-guest at users.alioth.debian.org
fladi-guest at users.alioth.debian.org
Tue May 18 17:25:06 UTC 2010
Date: Tuesday, May 18, 2010 @ 17:24:59
Author: fladi-guest
Revision: 13003
Initial packaging of django-permissions.
Added:
packages/django-permissions/trunk/debian/
packages/django-permissions/trunk/debian/changelog
packages/django-permissions/trunk/debian/compat
packages/django-permissions/trunk/debian/control
packages/django-permissions/trunk/debian/copyright
packages/django-permissions/trunk/debian/docs
packages/django-permissions/trunk/debian/rules
packages/django-permissions/trunk/debian/source/
packages/django-permissions/trunk/debian/source/format
packages/django-permissions/trunk/debian/watch
Property changes on: packages/django-permissions/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
+ 1
Added: packages/django-permissions/trunk/debian/changelog
===================================================================
--- packages/django-permissions/trunk/debian/changelog (rev 0)
+++ packages/django-permissions/trunk/debian/changelog 2010-05-18 17:24:59 UTC (rev 13003)
@@ -0,0 +1,5 @@
+django-permissions (1.0b2-1) UNRELEASED; urgency=low
+
+ * Initial release (Closes: #582140)
+
+ -- Fladischer Michael <FladischerMichael at fladi.at> Tue, 18 May 2010 18:49:14 +0200
Added: packages/django-permissions/trunk/debian/compat
===================================================================
--- packages/django-permissions/trunk/debian/compat (rev 0)
+++ packages/django-permissions/trunk/debian/compat 2010-05-18 17:24:59 UTC (rev 13003)
@@ -0,0 +1 @@
+7
Added: packages/django-permissions/trunk/debian/control
===================================================================
--- packages/django-permissions/trunk/debian/control (rev 0)
+++ packages/django-permissions/trunk/debian/control 2010-05-18 17:24:59 UTC (rev 13003)
@@ -0,0 +1,18 @@
+Source: django-permissions
+Section: python
+Priority: optional
+Maintainer: Fladischer Michael <FladischerMichael at fladi.at>
+Build-Depends: debhelper (>= 7.0.50~), python-all (>= 2.5), python-support,
+ python-setuptools, python-django
+Standards-Version: 3.8.4
+Homepage: http://pypi.python.org/pypi/django-permissions/
+Vcs-Svn: svn://svn.debian.org/python-modules/packages/django-permissions/trunk/
+Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/django-permissions/trunk/
+
+Package: python-django-permissions
+Architecture: all
+Depends: ${python:Depends}, ${misc:Depends}, python-django
+Description: generic per-object permissions for Django
+ A generic framework for per-object permissions for Django. Permissions can be
+ granted to roles (and only to roles) in order to allow something to users or
+ groups which have these roles.
Added: packages/django-permissions/trunk/debian/copyright
===================================================================
--- packages/django-permissions/trunk/debian/copyright (rev 0)
+++ packages/django-permissions/trunk/debian/copyright 2010-05-18 17:24:59 UTC (rev 13003)
@@ -0,0 +1,49 @@
+This work was packaged for Debian by:
+
+ Fladischer Michael <FladischerMichael at fladi.at> on Thu, 29 Apr 2010 14:03:04 +0200
+
+It was downloaded from:
+
+ http://pypi.python.org/pypi/django-permissions/
+
+Upstream Authors:
+
+ Kai Diefenbach <kai.diefenbach at iqpp.de>
+
+Copyright:
+
+ Copyright (C) 2010, Kai Diefenbach - iqplusplus
+ Copyright (C) 2010, Jannis Leidel
+
+License:
+
+ 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 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.
+
+The Debian packaging is:
+
+ Copyright (C) 2010 Fladischer Michael <FladischerMichael at fladi.at>
+
+and is licensed under the same terms.
Added: packages/django-permissions/trunk/debian/docs
===================================================================
--- packages/django-permissions/trunk/debian/docs (rev 0)
+++ packages/django-permissions/trunk/debian/docs 2010-05-18 17:24:59 UTC (rev 13003)
@@ -0,0 +1,2 @@
+README.txt
+README.txt
Added: packages/django-permissions/trunk/debian/rules
===================================================================
--- packages/django-permissions/trunk/debian/rules (rev 0)
+++ packages/django-permissions/trunk/debian/rules 2010-05-18 17:24:59 UTC (rev 13003)
@@ -0,0 +1,27 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+%:
+ dh $@
+
+override_dh_auto_test:
+ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
+ django-admin startproject testproject
+ echo 'DATABASE_ENGINE = "sqlite3"' > testproject/settings.py
+ echo 'DATABASE_NAME = "testproject/test.db3"' >> testproject/settings.py
+ echo 'INSTALLED_APPS = ["permissions","django.contrib.auth","django.contrib.contenttypes","django.contrib.admin","django.contrib.sites","django.contrib.flatpages","django.contrib.sessions"]' >> testproject/settings.py
+ echo 'MIDDLEWARE_CLASSES = ["django.contrib.flatpages.middleware.FlatpageFallbackMiddleware"]' >> testproject/settings.py
+ echo 'SITE_ID = 1' >> testproject/settings.py
+ echo 'ROOT_URLCONF = "testproject.urls"' >> testproject/settings.py
+ PYTHONPATH=".:src" django-admin syncdb --settings=testproject.settings --noinput
+ set -e; \
+ for python in $(shell pyversions -r); do \
+ PYTHONPATH="." $$python testproject/manage.py test --settings=testproject.settings permissions ; \
+ done
+ rm -rf testproject
+endif
+
+
Property changes on: packages/django-permissions/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
+ *
Added: packages/django-permissions/trunk/debian/source/format
===================================================================
--- packages/django-permissions/trunk/debian/source/format (rev 0)
+++ packages/django-permissions/trunk/debian/source/format 2010-05-18 17:24:59 UTC (rev 13003)
@@ -0,0 +1 @@
+3.0 (quilt)
Added: packages/django-permissions/trunk/debian/watch
===================================================================
--- packages/django-permissions/trunk/debian/watch (rev 0)
+++ packages/django-permissions/trunk/debian/watch 2010-05-18 17:24:59 UTC (rev 13003)
@@ -0,0 +1,2 @@
+version=3
+http://pypi.python.org/packages/source/d/django-permissions/django-permissions-(.*)\.tar\.gz
More information about the Python-modules-commits
mailing list