Hi, Attached is the diff for my python-bibtex 1.2.2-3.1 NMU.
diff -u python-bibtex-1.2.2/debian/changelog python-bibtex-1.2.2/debian/changelog --- python-bibtex-1.2.2/debian/changelog +++ python-bibtex-1.2.2/debian/changelog @@ -1,3 +1,12 @@ +python-bibtex (1.2.2-3.1) unstable; urgency=low + + * Non-maintainer upload. + * Apply patch from + http://arch.pybliographer.org/archzoom.cgi/[EMAIL PROTECTED]/python-bibtex--stable--1.2--patch-31/bibtexmodule.c.diff?diff + to fix FTBFS with python 2.5 (Closes: #433254). + + -- Pierre Habouzit <[EMAIL PROTECTED]> Fri, 20 Jul 2007 10:50:28 +0200 + python-bibtex (1.2.2-3) unstable; urgency=low * Update for Python policy transition. (Closes: #373513) only in patch2: unchanged: --- python-bibtex-1.2.2.orig/bibtexmodule.c +++ python-bibtex-1.2.2/bibtexmodule.c @@ -44,7 +44,7 @@ /* Destructor of BibtexFile */ static void bibtex_py_close (PyBibtexSource_Object * self) { bibtex_source_destroy (self->obj, TRUE); - PyMem_DEL (self); + PyObject_DEL (self); } /* Destructor of BibtexEntry */ @@ -53,7 +53,7 @@ { bibtex_field_destroy (self->obj, TRUE); - PyMem_DEL (self); + PyObject_DEL (self); } static char PyBibtexSource_Type__doc__[] = "This is the type of a BibTeX source";
pgpD4EiGD2Re9.pgp
Description: PGP signature

