Control: tags 804779 + patch
Control: tags 804779 + pending

Dear maintainer,

I've prepared an NMU for django-openid-auth (versioned as 0.5-2.2) but
I have not uploaded it yet. 

Regards.
diff -Nru django-openid-auth-0.5/debian/changelog django-openid-auth-0.5/debian/changelog
--- django-openid-auth-0.5/debian/changelog	2014-10-10 10:38:25.000000000 +0100
+++ django-openid-auth-0.5/debian/changelog	2015-11-11 14:01:02.000000000 +0000
@@ -1,3 +1,10 @@
+django-openid-auth (0.5-2.2) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Add initial migration for django1.8 support. (Closes: #804779)
+
+ -- Neil Williams <codeh...@debian.org>  Wed, 11 Nov 2015 14:01:01 +0000
+
 django-openid-auth (0.5-2.1) unstable; urgency=medium
 
   * Non-maintainer upload.
diff -Nru django-openid-auth-0.5/debian/patches/django1.8compat.patch django-openid-auth-0.5/debian/patches/django1.8compat.patch
--- django-openid-auth-0.5/debian/patches/django1.8compat.patch	1970-01-01 01:00:00.000000000 +0100
+++ django-openid-auth-0.5/debian/patches/django1.8compat.patch	2015-11-11 14:12:13.000000000 +0000
@@ -0,0 +1,93 @@
+Description: <short summary of the patch>
+ TODO: Put a short summary on the line above and replace this paragraph
+ with a longer explanation of this change. Complete the meta-information
+ with other relevant fields (see below for details). To make it easier, the
+ information below has been extracted from the changelog. Adjust it or drop
+ it.
+ .
+ django-openid-auth (0.5-2.2) unstable; urgency=medium
+ .
+   * Non-maintainer upload.
+   * Add initial migration for django1.8 support. (Closes: #804779)
+Author: Neil Williams <codeh...@debian.org>
+Bug-Debian: https://bugs.debian.org/804779
+
+---
+The information above should follow the Patch Tagging Guidelines, please
+checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
+are templates for supplementary fields that you might want to add:
+
+Origin: <vendor|upstream|other>, <url of original patch>
+Bug: <url in upstream bugtracker>
+Bug-Debian: https://bugs.debian.org/<bugnumber>
+Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
+Forwarded: <no|not-needed|url proving that it has been forwarded>
+Reviewed-By: <name and email of someone who approved the patch>
+Last-Update: <YYYY-MM-DD>
+
+--- django-openid-auth-0.5.orig/MANIFEST.in
++++ django-openid-auth-0.5/MANIFEST.in
+@@ -5,4 +5,5 @@ include README.txt
+ include TODO.txt
+ 
+ recursive-include django_openid_auth/templates *.html
++recursive-include django_openid_auth/migrations *.py
+ recursive-include example_consumer *.py
+--- /dev/null
++++ django-openid-auth-0.5/django_openid_auth/migrations/0001_initial.py
+@@ -0,0 +1,45 @@
++# -*- coding: utf-8 -*-
++from __future__ import unicode_literals
++
++from django.db import migrations, models
++from django.conf import settings
++
++
++class Migration(migrations.Migration):
++
++    dependencies = [
++        migrations.swappable_dependency(settings.AUTH_USER_MODEL),
++    ]
++
++    operations = [
++        migrations.CreateModel(
++            name='Association',
++            fields=[
++                ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),
++                ('server_url', models.TextField(max_length=2047)),
++                ('handle', models.CharField(max_length=255)),
++                ('secret', models.TextField(max_length=255)),
++                ('issued', models.IntegerField()),
++                ('lifetime', models.IntegerField()),
++                ('assoc_type', models.TextField(max_length=64)),
++            ],
++        ),
++        migrations.CreateModel(
++            name='Nonce',
++            fields=[
++                ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),
++                ('server_url', models.CharField(max_length=2047)),
++                ('timestamp', models.IntegerField()),
++                ('salt', models.CharField(max_length=40)),
++            ],
++        ),
++        migrations.CreateModel(
++            name='UserOpenID',
++            fields=[
++                ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),
++                ('claimed_id', models.TextField(unique=True, max_length=2047)),
++                ('display_id', models.TextField(max_length=2047)),
++                ('user', models.ForeignKey(to=settings.AUTH_USER_MODEL)),
++            ],
++        ),
++    ]
+--- django-openid-auth-0.5.orig/setup.py
++++ django-openid-auth-0.5/setup.py
+@@ -68,6 +68,7 @@ setup(
+         ],
+     packages=[
+         'django_openid_auth',
++        'django_openid_auth.migrations',
+         'django_openid_auth.management',
+         'django_openid_auth.management.commands',
+         'django_openid_auth.tests',
diff -Nru django-openid-auth-0.5/debian/patches/series django-openid-auth-0.5/debian/patches/series
--- django-openid-auth-0.5/debian/patches/series	2014-10-10 10:27:04.000000000 +0100
+++ django-openid-auth-0.5/debian/patches/series	2015-11-11 14:12:13.000000000 +0000
@@ -1,3 +1,4 @@
 django1.5compat.patch
 django1.6compat.patch
 django1.7compat.patch
+django1.8compat.patch
diff -Nru django-openid-auth-0.5/debian/rules django-openid-auth-0.5/debian/rules
--- django-openid-auth-0.5/debian/rules	2014-02-22 17:51:22.000000000 +0000
+++ django-openid-auth-0.5/debian/rules	2015-11-11 14:06:50.000000000 +0000
@@ -10,6 +10,10 @@
 	find -name "*.pyc" -o -name "*~" -delete
 	dh_auto_configure
 
+override_dh_auto_clean:
+	$(RM) MANIFEST
+	dh_auto_clean
+
 .PHONY: override_dh_auto_test
 override_dh_auto_test:
 ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
_______________________________________________
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team

Reply via email to