[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Unblock suggestion: m2crypto



Howdy again Debian Releasers,

http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=508124 is indicated as a lenny+sid RC bug. This is a duplicate of #484364 (by the time you see this, I will have merged them).

python-m2crypto 0.18.2-1 has a critical bug that it is missing an import. The attached debdiff fixes this and one other housekeeping issue. As it is a tiny patch, and it fixes a release-critical bug, I believe it is appropriate to be allowed to flow into Lenny.

I'm explicitly CC:ing the maintainer of python-m2crypto and my AM, so they both clearly know what I'm up to.

As always with my "unblock suggestions," I'm not the maintainer nor Debian-Release, so this is just a suggestion. But I do think it is the right course of action.

-- Asheesh.

--
Knock, knock!
	Who's there?
Sam and Janet.
	Sam and Janet who?
Sam and Janet Evening...
diff -u m2crypto-0.18.2/M2Crypto.egg-info/SOURCES.txt m2crypto-0.18.2/M2Crypto.egg-info/SOURCES.txt
--- m2crypto-0.18.2/M2Crypto.egg-info/SOURCES.txt
+++ m2crypto-0.18.2/M2Crypto.egg-info/SOURCES.txt
@@ -48 +48 @@
-SWIG/_m2crypto.i
+SWIG/_m2crypto.i
\ No newline at end of file
diff -u m2crypto-0.18.2/M2Crypto.egg-info/PKG-INFO m2crypto-0.18.2/M2Crypto.egg-info/PKG-INFO
--- m2crypto-0.18.2/M2Crypto.egg-info/PKG-INFO
+++ m2crypto-0.18.2/M2Crypto.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.0
 Name: M2Crypto
-Version: 0.17
+Version: 0.18.2
 Summary: M2Crypto: A Python crypto and SSL toolkit
 Home-page: http://wiki.osafoundation.org/bin/view/Projects/MeTooCrypto
 Author: Heikki Toivonen
diff -u m2crypto-0.18.2/debian/changelog m2crypto-0.18.2/debian/changelog
--- m2crypto-0.18.2/debian/changelog
+++ m2crypto-0.18.2/debian/changelog
@@ -1,3 +1,10 @@
+m2crypto (0.18.2-2) unstable; urgency=low
+
+  * Added "import inspect" to M2Crypto/m2urllib2.py 
+    (Closes: #493314, #484364, 477799) 
+
+ -- Dima Barsky <dima@debian.org>  Fri, 15 Aug 2008 22:04:14 +0100
+
 m2crypto (0.18.2-1) unstable; urgency=low
 
   * New upstream release (Closes: #440837)
diff -u m2crypto-0.18.2/debian/control m2crypto-0.18.2/debian/control
--- m2crypto-0.18.2/debian/control
+++ m2crypto-0.18.2/debian/control
@@ -3,7 +3,7 @@
 Priority: optional
 Maintainer: Dima Barsky <dima@debian.org>
 Build-Depends: debhelper (>= 5.0.37.2), python-all-dev (>= 2.3.5-11), python-support (>= 0.4), libssl-dev (>= 0.9.7), swig (>= 1.3.24), python-setuptools (>=0.6c5-3)
-Standards-Version: 3.7.2
+Standards-Version: 3.8.0
 
 Package: python-m2crypto
 Architecture: any
only in patch2:
unchanged:
--- m2crypto-0.18.2.orig/M2Crypto/m2urllib2.py
+++ m2crypto-0.18.2/M2Crypto/m2urllib2.py
@@ -13,6 +13,7 @@
 
 from urllib2 import *
 import urlparse
+import inspect
 
 import SSL
 import httpslib

Reply to: