Hi,
Attached is the diff for my mnemosyne 1.0-2.1 NMU.
--
Adeodato Simó dato at net.com.org.es
Debian Developer adeodato at debian.org
If there is a sin against life, it consists perhaps not so much in
despairing of life as in hoping for another life and in eluding the
implacable grandeur of this life.
-- Albert Camus
diff -u mnemosyne-1.0/debian/changelog mnemosyne-1.0/debian/changelog
--- mnemosyne-1.0/debian/changelog
+++ mnemosyne-1.0/debian/changelog
@@ -1,3 +1,12 @@
+mnemosyne (1.0-2.1) unstable; urgency=high
+
+ * Non-maintainer upload.
+ * Make installable with python 2.5. (Closes: #468607)
+ * Add patch from Ubuntu to make the app work without python-xml installed
+ (as per the previous upload). Thanks! (Closes: #476527)
+
+ -- Adeodato Simó <[EMAIL PROTECTED]> Sun, 27 Apr 2008 12:05:54 +0200
+
mnemosyne (1.0-2) unstable; urgency=low
* Dropped dependency on pyhon-xml (closes: #468607)
reverted:
--- mnemosyne-1.0/debian/pyversions
+++ mnemosyne-1.0.orig/debian/pyversions
@@ -1 +0,0 @@
-2.4
only in patch2:
unchanged:
--- mnemosyne-1.0.orig/mnemosyne/core/mnemosyne_core.py
+++ mnemosyne-1.0/mnemosyne/core/mnemosyne_core.py
@@ -1420,9 +1420,9 @@
##############################################################################
from xml.sax import saxutils, make_parser
-from xml.sax.handler import feature_namespaces
+from xml.sax.handler import feature_namespaces, ContentHandler
-class XML_Importer(saxutils.DefaultHandler):
+class XML_Importer(ContentHandler):
def __init__(self, default_cat=None, reset_learning_data=False):
self.reading, self.text = {}, {}
@@ -1557,7 +1557,7 @@
#
##############################################################################
-class memaid_XML_Importer(saxutils.DefaultHandler):
+class memaid_XML_Importer(ContentHandler):
def __init__(self, default_cat=None, reset_learning_data=False):
self.reading, self.text = {}, {}