[Python-modules-commits] r21033 - in packages/django-reversion/trunk/debian (5 files)

fladi-guest at users.alioth.debian.org fladi-guest at users.alioth.debian.org
Tue Apr 3 10:44:15 UTC 2012


    Date: Tuesday, April 3, 2012 @ 10:44:14
  Author: fladi-guest
Revision: 21033

New upstream release.

Modified:
  packages/django-reversion/trunk/debian/changelog
  packages/django-reversion/trunk/debian/control
  packages/django-reversion/trunk/debian/copyright
  packages/django-reversion/trunk/debian/rules
Deleted:
  packages/django-reversion/trunk/debian/settings.py

Modified: packages/django-reversion/trunk/debian/changelog
===================================================================
--- packages/django-reversion/trunk/debian/changelog	2012-04-03 06:44:02 UTC (rev 21032)
+++ packages/django-reversion/trunk/debian/changelog	2012-04-03 10:44:14 UTC (rev 21033)
@@ -1,3 +1,15 @@
+django-reversion (1.6-1) UNRELEASED; urgency=low
+
+  * New upstream release.
+  * Bump Standards-Version to 3.9.3.
+  * Update years in d/copyright.
+  * Update DEP-5 URL to 1.0.
+  * Increase dependency on python-django to >= 1.4.
+  * Add python-django-south to B-D and Recommends.
+  * Drop our own test project and use the one shipped by upstream.
+
+ -- Michael Fladischer <FladischerMichael at fladi.at>  Tue, 03 Apr 2012 12:42:45 +0200
+
 django-reversion (1.5.1-1) unstable; urgency=low
 
   * New upstream release.

Modified: packages/django-reversion/trunk/debian/control
===================================================================
--- packages/django-reversion/trunk/debian/control	2012-04-03 06:44:02 UTC (rev 21032)
+++ packages/django-reversion/trunk/debian/control	2012-04-03 10:44:14 UTC (rev 21033)
@@ -5,9 +5,10 @@
 Uploaders: Michael Fladischer <FladischerMichael at fladi.at>
 Build-Depends: debhelper (>= 7.0.50~),
                python-all (>= 2.6.6-3~),
-               python-django (>= 1.3),
+               python-django (>= 1.4),
+               python-django-south,
                python-pybabel
-Standards-Version: 3.9.2
+Standards-Version: 3.9.3
 X-Python-Version: >= 2.5
 Homepage: https://code.google.com/p/django-reversion/
 Vcs-Svn: svn://svn.debian.org/python-modules/packages/django-reversion/trunk/
@@ -16,6 +17,7 @@
 Package: python-django-reversion
 Architecture: all
 Depends: python-django (>= 1.3), ${misc:Depends}, ${python:Depends}
+Recommends: python-django-south
 Description: Provides comprehensive version control facilities for Django
  Reversion is an extension to the Django web framework that provides
  comprehensive version control facilities.

Modified: packages/django-reversion/trunk/debian/copyright
===================================================================
--- packages/django-reversion/trunk/debian/copyright	2012-04-03 06:44:02 UTC (rev 21032)
+++ packages/django-reversion/trunk/debian/copyright	2012-04-03 10:44:14 UTC (rev 21033)
@@ -1,14 +1,14 @@
-Format: http://anonscm.debian.org/viewvc/dep/web/deps/dep5.mdwn?view=markup&pathrev=174
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
 Upstream-Name: django-reversion
 Upstream-Contact: David Hall <david at etianen.com>
 Source: https://code.google.com/p/django-reversion/downloads/list
 
 Files: *
-Copyright: 2009, David Hall <david at etianen.com>
+Copyright: 2009-2012, David Hall <david at etianen.com>
 License: BSD
 
 Files: debian/*
-Copyright: 2010, Michael Fladischer <FladischerMichael at fladi.at>
+Copyright: 2010-2012, Michael Fladischer <FladischerMichael at fladi.at>
 License: BSD
 
 License: BSD

Modified: packages/django-reversion/trunk/debian/rules
===================================================================
--- packages/django-reversion/trunk/debian/rules	2012-04-03 06:44:02 UTC (rev 21032)
+++ packages/django-reversion/trunk/debian/rules	2012-04-03 10:44:14 UTC (rev 21033)
@@ -5,14 +5,10 @@
 .PHONY: override_dh_auto_test
 override_dh_auto_test:
 ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
-	django-admin startproject testproject
-	cp debian/settings.py 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 ; \
+		PYTHONPATH=src $$python src/test_project/manage.py test --settings=test_project.settings; \
 	done
-	rm -rf testproject
 endif
 
 .PHONY: override_dh_auto_build

Deleted: packages/django-reversion/trunk/debian/settings.py
===================================================================
--- packages/django-reversion/trunk/debian/settings.py	2012-04-03 06:44:02 UTC (rev 21032)
+++ packages/django-reversion/trunk/debian/settings.py	2012-04-03 10:44:14 UTC (rev 21033)
@@ -1,15 +0,0 @@
-DATABASES = {
-    'default': {
-        'ENGINE': 'django.db.backends.sqlite3',
-        'NAME': 'testproject/test.db3'
-    }
-}
-INSTALLED_APPS = ["reversion",
-                  "django.contrib.auth",
-                  "django.contrib.contenttypes",
-                  "django.contrib.admin",
-                  "django.contrib.sites",
-                  "django.contrib.sessions",
-                  ]
-SITE_ID = 1
-ROOT_URLCONF = "testproject.urls"




More information about the Python-modules-commits mailing list