[Python-modules-commits] r19227 - in packages/python-django-piston/tags (9 files)

svedrin-guest at users.alioth.debian.org svedrin-guest at users.alioth.debian.org
Sat Nov 12 13:32:29 UTC 2011


    Date: Saturday, November 12, 2011 @ 13:32:27
  Author: svedrin-guest
Revision: 19227

[svn-buildpackage] Tagging python-django-piston 0.2.3-1

Added:
  packages/python-django-piston/tags/0.2.3-1/
  packages/python-django-piston/tags/0.2.3-1/debian/changelog
    (from rev 19224, packages/python-django-piston/trunk/debian/changelog)
  packages/python-django-piston/tags/0.2.3-1/debian/patches/01-fix-oauth-import.diff
    (from rev 19226, packages/python-django-piston/trunk/debian/patches/01-fix-oauth-import.diff)
  packages/python-django-piston/tags/0.2.3-1/debian/patches/series
    (from rev 19224, packages/python-django-piston/trunk/debian/patches/series)
Deleted:
  packages/python-django-piston/tags/0.2.3-1/debian/changelog
  packages/python-django-piston/tags/0.2.3-1/debian/patches/01-fix-oauth-import.diff
  packages/python-django-piston/tags/0.2.3-1/debian/patches/02-fix-yaml-load.diff
  packages/python-django-piston/tags/0.2.3-1/debian/patches/03-fix-pickle-load.diff
  packages/python-django-piston/tags/0.2.3-1/debian/patches/series

Deleted: packages/python-django-piston/tags/0.2.3-1/debian/changelog
===================================================================
--- packages/python-django-piston/trunk/debian/changelog	2011-11-12 10:59:39 UTC (rev 19223)
+++ packages/python-django-piston/tags/0.2.3-1/debian/changelog	2011-11-12 13:32:27 UTC (rev 19227)
@@ -1,26 +0,0 @@
-python-django-piston (0.2.3-1) unstable; urgency=low
-
-  * New upstream release.
-
- -- Michael Ziegler <diese-addy at funzt-halt.net>  Sat, 12 Nov 2011 11:59:33 +0100
-
-python-django-piston (0.2.2-2) unstable; urgency=low
-
-  [ Michael Ziegler ]
-  * Bump Standards Version to 3.9.2.
-  * Remove reference to /usr/share/common-licenses/BSD and strip trailing
-    whitespace in copyright.
-  * Fix a copy-paste error in copyright.
-  * Fix a security issue in the YAML emitter.
-  * Disable the pickle loader due to security concerns (Closes: #646517).
-
-  [ Luca Falavigna ]
-  * Enable DM-Upload-Allowed field.
-
- -- Michael Ziegler <diese-addy at funzt-halt.net>  Tue, 01 Nov 2011 19:37:58 +0100
-
-python-django-piston (0.2.2-1) unstable; urgency=low
-
-  * Initial release (Closes: #570919)
-
- -- Michael Ziegler <diese-addy at funzt-halt.net>  Thu, 10 Jun 2010 10:40:58 +0200

Copied: packages/python-django-piston/tags/0.2.3-1/debian/changelog (from rev 19224, packages/python-django-piston/trunk/debian/changelog)
===================================================================
--- packages/python-django-piston/tags/0.2.3-1/debian/changelog	                        (rev 0)
+++ packages/python-django-piston/tags/0.2.3-1/debian/changelog	2011-11-12 13:32:27 UTC (rev 19227)
@@ -0,0 +1,28 @@
+python-django-piston (0.2.3-1) unstable; urgency=low
+
+  * New upstream release.
+  * Remove the security patches as they have been applied upstream.
+  * Adapt 01-fix-oauth-import.diff to reflect upstream changes.
+
+ -- Michael Ziegler <diese-addy at funzt-halt.net>  Sat, 12 Nov 2011 12:05:07 +0100
+
+python-django-piston (0.2.2-2) unstable; urgency=low
+
+  [ Michael Ziegler ]
+  * Bump Standards Version to 3.9.2.
+  * Remove reference to /usr/share/common-licenses/BSD and strip trailing
+    whitespace in copyright.
+  * Fix a copy-paste error in copyright.
+  * Fix a security issue in the YAML emitter.
+  * Disable the pickle loader due to security concerns (Closes: #646517).
+
+  [ Luca Falavigna ]
+  * Enable DM-Upload-Allowed field.
+
+ -- Michael Ziegler <diese-addy at funzt-halt.net>  Tue, 01 Nov 2011 19:37:58 +0100
+
+python-django-piston (0.2.2-1) unstable; urgency=low
+
+  * Initial release (Closes: #570919)
+
+ -- Michael Ziegler <diese-addy at funzt-halt.net>  Thu, 10 Jun 2010 10:40:58 +0200

Deleted: packages/python-django-piston/tags/0.2.3-1/debian/patches/01-fix-oauth-import.diff
===================================================================
--- packages/python-django-piston/trunk/debian/patches/01-fix-oauth-import.diff	2011-11-12 10:59:39 UTC (rev 19223)
+++ packages/python-django-piston/tags/0.2.3-1/debian/patches/01-fix-oauth-import.diff	2011-11-12 13:32:27 UTC (rev 19227)
@@ -1,25 +0,0 @@
-Description: Fix the oauth import to work correctly with the
- python-oauth Debian package.
-Forwarded: not-needed
-Author: Michael Ziegler <diese-addy at funzt-halt.net>
-
-Index: python-django-piston-0.2.2/piston/authentication.py
-===================================================================
---- python-django-piston-0.2.2.orig/piston/authentication.py	2010-02-25 19:40:29.000000000 +0100
-+++ python-django-piston-0.2.2/piston/authentication.py	2010-02-25 19:41:10.000000000 +0100
-@@ -1,4 +1,4 @@
--import oauth
-+from oauth import oauth
- from django.http import HttpResponse, HttpResponseRedirect
- from django.contrib.auth.models import User, AnonymousUser
- from django.contrib.auth.decorators import login_required
-Index: python-django-piston-0.2.2/piston/store.py
-===================================================================
---- python-django-piston-0.2.2.orig/piston/store.py	2010-02-25 19:40:29.000000000 +0100
-+++ python-django-piston-0.2.2/piston/store.py	2010-02-25 19:41:10.000000000 +0100
-@@ -1,4 +1,4 @@
--import oauth
-+from oauth import oauth
- 
- from models import Nonce, Token, Consumer
- 

Copied: packages/python-django-piston/tags/0.2.3-1/debian/patches/01-fix-oauth-import.diff (from rev 19226, packages/python-django-piston/trunk/debian/patches/01-fix-oauth-import.diff)
===================================================================
--- packages/python-django-piston/tags/0.2.3-1/debian/patches/01-fix-oauth-import.diff	                        (rev 0)
+++ packages/python-django-piston/tags/0.2.3-1/debian/patches/01-fix-oauth-import.diff	2011-11-12 13:32:27 UTC (rev 19227)
@@ -0,0 +1,27 @@
+Description: Fix the oauth import to work correctly with the
+ python-oauth Debian package.
+Forwarded: not-needed
+Author: Michael Ziegler <diese-addy at funzt-halt.net>
+
+Index: python-django-piston-0.2.3/piston/authentication.py
+===================================================================
+--- python-django-piston-0.2.3.orig/piston/authentication.py	2011-11-01 14:52:13.000000000 +0100
++++ python-django-piston-0.2.3/piston/authentication.py	2011-11-12 13:50:23.899726540 +0100
+@@ -1,6 +1,6 @@
+ import binascii
+ 
+-import oauth
++from oauth import oauth
+ from django.http import HttpResponse, HttpResponseRedirect
+ from django.contrib.auth.models import User, AnonymousUser
+ from django.contrib.auth.decorators import login_required
+Index: python-django-piston-0.2.3/piston/store.py
+===================================================================
+--- python-django-piston-0.2.3.orig/piston/store.py	2011-11-01 14:52:13.000000000 +0100
++++ python-django-piston-0.2.3/piston/store.py	2011-11-12 13:50:23.900726539 +0100
+@@ -1,4 +1,4 @@
+-import oauth
++from oauth import oauth
+ 
+ from models import Nonce, Token, Consumer
+ from models import generate_random, VERIFIER_SIZE

Deleted: packages/python-django-piston/tags/0.2.3-1/debian/patches/02-fix-yaml-load.diff
===================================================================
--- packages/python-django-piston/trunk/debian/patches/02-fix-yaml-load.diff	2011-11-12 10:59:39 UTC (rev 19223)
+++ packages/python-django-piston/tags/0.2.3-1/debian/patches/02-fix-yaml-load.diff	2011-11-12 13:32:27 UTC (rev 19227)
@@ -1,18 +0,0 @@
-Description: Fix a security bug in the YAML emitter.
- See https://bitbucket.org/jespern/django-piston/changeset/91bdaec89543
-Forwarded: not-needed
-Author: Michael Ziegler <diese-addy at funzt-halt.net>
-
-Index: python-django-piston-0.2.2/piston/emitters.py
-===================================================================
---- python-django-piston-0.2.2.orig/piston/emitters.py	2009-06-14 12:04:30.000000000 +0200
-+++ python-django-piston-0.2.2/piston/emitters.py	2011-11-01 19:19:34.526595345 +0100
-@@ -385,7 +385,7 @@
- 
- if yaml:  # Only register yaml if it was import successfully.
-     Emitter.register('yaml', YAMLEmitter, 'application/x-yaml; charset=utf-8')
--    Mimer.register(yaml.load, ('application/x-yaml',))
-+    Mimer.register(yaml.safe_load, ('application/x-yaml',))
- 
- class PickleEmitter(Emitter):
-     """

Deleted: packages/python-django-piston/tags/0.2.3-1/debian/patches/03-fix-pickle-load.diff
===================================================================
--- packages/python-django-piston/trunk/debian/patches/03-fix-pickle-load.diff	2011-11-12 10:59:39 UTC (rev 19223)
+++ packages/python-django-piston/tags/0.2.3-1/debian/patches/03-fix-pickle-load.diff	2011-11-12 13:32:27 UTC (rev 19227)
@@ -1,28 +0,0 @@
-Description: Fix a security bug in the pickle loader.
- See Bug Report #646517
-Forwarded: not-needed
-Author: Michael Ziegler <diese-addy at funzt-halt.net>
-
-Index: python-django-piston-0.2.2/piston/emitters.py
-===================================================================
---- python-django-piston-0.2.2.orig/piston/emitters.py	2011-11-02 18:16:16.685560613 +0100
-+++ python-django-piston-0.2.2/piston/emitters.py	2011-11-02 18:17:07.451559769 +0100
-@@ -395,7 +395,17 @@
-         return pickle.dumps(self.construct())
-         
- Emitter.register('pickle', PickleEmitter, 'application/python-pickle')
--Mimer.register(pickle.loads, ('application/python-pickle',))
-+
-+"""
-+WARNING: Accepting arbitrary pickled data is a huge security concern.
-+The unpickler has been disabled by default now, and if you want to use
-+it, please be aware of what implications it will have.
-+
-+Read more: http://nadiana.com/python-pickle-insecure
-+
-+Uncomment the line below to enable it. You're doing so at your own risk.
-+"""
-+#Mimer.register(pickle.loads, ('application/python-pickle',))
- 
- class DjangoEmitter(Emitter):
-     """

Deleted: packages/python-django-piston/tags/0.2.3-1/debian/patches/series
===================================================================
--- packages/python-django-piston/trunk/debian/patches/series	2011-11-12 10:59:39 UTC (rev 19223)
+++ packages/python-django-piston/tags/0.2.3-1/debian/patches/series	2011-11-12 13:32:27 UTC (rev 19227)
@@ -1,3 +0,0 @@
-01-fix-oauth-import.diff
-02-fix-yaml-load.diff
-03-fix-pickle-load.diff

Copied: packages/python-django-piston/tags/0.2.3-1/debian/patches/series (from rev 19224, packages/python-django-piston/trunk/debian/patches/series)
===================================================================
--- packages/python-django-piston/tags/0.2.3-1/debian/patches/series	                        (rev 0)
+++ packages/python-django-piston/tags/0.2.3-1/debian/patches/series	2011-11-12 13:32:27 UTC (rev 19227)
@@ -0,0 +1 @@
+01-fix-oauth-import.diff




More information about the Python-modules-commits mailing list