[Python-modules-commits] r12986 - in packages/django-reversion/trunk (11 files)

fladi-guest at users.alioth.debian.org fladi-guest at users.alioth.debian.org
Mon May 17 09:27:06 UTC 2010


    Date: Monday, May 17, 2010 @ 09:27:01
  Author: fladi-guest
Revision: 12986

Initial version of django-reversion package. Closes #581926. 

Added:
  packages/django-reversion/trunk/debian/
  packages/django-reversion/trunk/debian/changelog
  packages/django-reversion/trunk/debian/compat
  packages/django-reversion/trunk/debian/control
  packages/django-reversion/trunk/debian/copyright
  packages/django-reversion/trunk/debian/docs
  packages/django-reversion/trunk/debian/pyversion
  packages/django-reversion/trunk/debian/rules
  packages/django-reversion/trunk/debian/source/
  packages/django-reversion/trunk/debian/source/format
  packages/django-reversion/trunk/debian/watch


Property changes on: packages/django-reversion/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
   + 1

Added: packages/django-reversion/trunk/debian/changelog
===================================================================
--- packages/django-reversion/trunk/debian/changelog	                        (rev 0)
+++ packages/django-reversion/trunk/debian/changelog	2010-05-17 09:27:01 UTC (rev 12986)
@@ -0,0 +1,5 @@
+django-reversion (1.2.1-1) UNRELEASED; urgency=low
+
+  * Initial release (Closes: #581926)
+
+ -- Fladischer Michael <FladischerMichael at fladi.at>  Mon, 17 May 2010 10:53:38 +0200

Added: packages/django-reversion/trunk/debian/compat
===================================================================
--- packages/django-reversion/trunk/debian/compat	                        (rev 0)
+++ packages/django-reversion/trunk/debian/compat	2010-05-17 09:27:01 UTC (rev 12986)
@@ -0,0 +1 @@
+7

Added: packages/django-reversion/trunk/debian/control
===================================================================
--- packages/django-reversion/trunk/debian/control	                        (rev 0)
+++ packages/django-reversion/trunk/debian/control	2010-05-17 09:27:01 UTC (rev 12986)
@@ -0,0 +1,27 @@
+Source: django-reversion
+Section: python
+Priority: optional
+Maintainer: Fladischer Michael <FladischerMichael at fladi.at>
+Build-Depends: debhelper (>= 7.0.50~), python-all (>= 2.5), python-support, python-django (>= 1.1.1)
+Standards-Version: 3.8.4
+Homepage: https://code.google.com/p/django-reversion/
+Vcs-Svn: https://subversion.fladi.at/debian/django-reversion/trunk/
+Vcs-Browser: https://subversion.fladi.at/debian/django-reversion/trunk/
+
+Package: python-django-reversion
+Architecture: all
+Depends: ${python:Depends}, ${misc:Depends}, python-django (>= 1.1.1)
+Description: Provides comprehensive version control facilities for Django
+ Reversion is an extension to the Django web framework that provides 
+ comprehensive version control facilities. 
+ .
+ Features:
+  * Roll back to any point in a model's history - an unlimited undo facility!
+  * Recover deleted models - never lose data again!
+  * Admin integration for maximum usability.
+  * Group related changes into revisions that can be rolled back in a single 
+    transaction.
+  * Automatically save a new version whenever your model changes using Django's 
+    flexible signalling framework.
+  * Automate your revision management with easy-to-use middleware. 
+

Added: packages/django-reversion/trunk/debian/copyright
===================================================================
--- packages/django-reversion/trunk/debian/copyright	                        (rev 0)
+++ packages/django-reversion/trunk/debian/copyright	2010-05-17 09:27:01 UTC (rev 12986)
@@ -0,0 +1,41 @@
+This work was packaged for Debian by:
+
+    Fladischer Michael <FladischerMichael at fladi.at> on Sun, 14 Mar 2010 15:31:55 +0100
+
+It was downloaded from:
+
+    https://code.google.com/p/django-reversion/downloads/list
+
+Upstream Author:
+
+    David Hall <david at etianen.com>
+
+Copyright:
+
+   Copyright (C) 2009, David Hall 
+
+License:
+
+    Redistribution and use in source and binary forms, with or without
+    modification, are permitted under the terms of the BSD License.
+
+    THIS SOFTWARE IS PROVIDED BY THE REGENTS 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 REGENTS 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.
+
+On Debian systems, the complete text of the BSD License can be
+found in "/usr/share/common-licenses/BSD".
+
+The Debian packaging is:
+
+    Copyright (C) 2010 Fladischer Michael <FladischerMichael at fladi.at>
+
+and is licensed under the same terms.

Added: packages/django-reversion/trunk/debian/docs
===================================================================
--- packages/django-reversion/trunk/debian/docs	                        (rev 0)
+++ packages/django-reversion/trunk/debian/docs	2010-05-17 09:27:01 UTC (rev 12986)
@@ -0,0 +1 @@
+README

Added: packages/django-reversion/trunk/debian/pyversion
===================================================================
--- packages/django-reversion/trunk/debian/pyversion	                        (rev 0)
+++ packages/django-reversion/trunk/debian/pyversion	2010-05-17 09:27:01 UTC (rev 12986)
@@ -0,0 +1 @@
+2.5-

Added: packages/django-reversion/trunk/debian/rules
===================================================================
--- packages/django-reversion/trunk/debian/rules	                        (rev 0)
+++ packages/django-reversion/trunk/debian/rules	2010-05-17 09:27:01 UTC (rev 12986)
@@ -0,0 +1,21 @@
+#!/usr/bin/make -f
+%:
+	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 = ["reversion","django.contrib.auth","django.contrib.contenttypes","django.contrib.admin","django.contrib.sites","django.contrib.sessions"]' >> 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=".:src" $$python testproject/manage.py test --settings=testproject.settings reversion ; \
+	done
+	rm -rf testproject
+endif
+


Property changes on: packages/django-reversion/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: packages/django-reversion/trunk/debian/source/format
===================================================================
--- packages/django-reversion/trunk/debian/source/format	                        (rev 0)
+++ packages/django-reversion/trunk/debian/source/format	2010-05-17 09:27:01 UTC (rev 12986)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: packages/django-reversion/trunk/debian/watch
===================================================================
--- packages/django-reversion/trunk/debian/watch	                        (rev 0)
+++ packages/django-reversion/trunk/debian/watch	2010-05-17 09:27:01 UTC (rev 12986)
@@ -0,0 +1,6 @@
+version=3
+opts=\
+downloadurlmangle=s|.*[?]name=(.*?)&.*|http://django-reversion.googlecode.com/files/$1|,\
+filenamemangle=s|[^/]+[?]name=(.*?)&.*|$1| \
+http://code.google.com/p/django-reversion/downloads/detail[?]name=django-reversion-([0-9.]+).tar.gz&.*
+




More information about the Python-modules-commits mailing list