Hi,

Attached is the diff for my apt-listchanges 2.59-0.4 NMU.

-- 
·O·  Pierre Habouzit
··O                                                [EMAIL PROTECTED]
OOO                                                http://www.madism.org
diff -Nru /tmp/wRDwCkVcX8/apt-listchanges-2.59/apt-listchanges 
/tmp/KqSdt5MP7q/apt-listchanges-2.59/apt-listchanges
--- /tmp/wRDwCkVcX8/apt-listchanges-2.59/apt-listchanges        2004-11-14 
02:34:08.000000000 +0100
+++ /tmp/KqSdt5MP7q/apt-listchanges-2.59/apt-listchanges        2006-08-03 
08:29:06.000000000 +0200
@@ -31,8 +31,7 @@
 import gettext
 import string
 import anydbm
-import DebianControlParser
-import apt_listchanges
+from apt_listchanges import apt_listchanges,DebianControlParser
 from socket import gethostname
 
 def main():
diff -Nru /tmp/wRDwCkVcX8/apt-listchanges-2.59/debian/changelog 
/tmp/KqSdt5MP7q/apt-listchanges-2.59/debian/changelog
--- /tmp/wRDwCkVcX8/apt-listchanges-2.59/debian/changelog       2006-07-02 
16:51:31.000000000 +0200
+++ /tmp/KqSdt5MP7q/apt-listchanges-2.59/debian/changelog       2006-08-03 
08:31:35.000000000 +0200
@@ -1,3 +1,12 @@
+apt-listchanges (2.59-0.4) unstable; urgency=low
+
+  * Non-maintainer upload with maintainer permission.
+  * Update package to the new Python policy (Closes: #380759).
+  * Bumping standards version to 3.7.2.
+  * Put all the modules into an apt_listchange semi-public module.
+
+ -- Pierre Habouzit <[EMAIL PROTECTED]>  Thu,  3 Aug 2006 08:31:17 +0200
+
 apt-listchanges (2.59-0.3) unstable; urgency=low
 
   * Non-maintainer upload.
diff -Nru /tmp/wRDwCkVcX8/apt-listchanges-2.59/debian/control 
/tmp/KqSdt5MP7q/apt-listchanges-2.59/debian/control
--- /tmp/wRDwCkVcX8/apt-listchanges-2.59/debian/control 2006-07-02 
16:50:44.000000000 +0200
+++ /tmp/KqSdt5MP7q/apt-listchanges-2.59/debian/control 2006-08-03 
08:33:15.000000000 +0200
@@ -2,13 +2,14 @@
 Section: utils
 Priority: optional
 Maintainer: Matt Zimmerman <[EMAIL PROTECTED]>
-Standards-Version: 3.2.1
-Build-Depends: debhelper (>= 4.1.16)
-Build-Depends-Indep: docbook-to-man, gettext, python (>= 2.1), po-debconf
+Standards-Version: 3.7.2
+Build-Depends: debhelper (>= 5)
+Build-Depends-Indep: docbook-to-man, gettext, python-dev, po-debconf, 
python-support
 
 Package: apt-listchanges
 Architecture: all
-Depends: python (>= 2.3), apt (>= 0.5.3), python-apt, debconf, ucf (>= 0.28), 
debianutils (>= 2.0.2)
+Depends: ${python:Depends}, apt (>= 0.5.3), python-apt, debconf, ucf (>= 
0.28), debianutils (>= 2.0.2)
+XB-Python-Version: ${python:Versions}
 Suggests: x-terminal-emulator, www-browser
 Description: Display change history from .deb archives
  apt-listchanges is a tool to show what has been changed in a new
diff -Nru /tmp/wRDwCkVcX8/apt-listchanges-2.59/debian/pycompat 
/tmp/KqSdt5MP7q/apt-listchanges-2.59/debian/pycompat
--- /tmp/wRDwCkVcX8/apt-listchanges-2.59/debian/pycompat        1970-01-01 
01:00:00.000000000 +0100
+++ /tmp/KqSdt5MP7q/apt-listchanges-2.59/debian/pycompat        2006-08-03 
08:25:55.000000000 +0200
@@ -0,0 +1 @@
+2
diff -Nru /tmp/wRDwCkVcX8/apt-listchanges-2.59/debian/pyversion 
/tmp/KqSdt5MP7q/apt-listchanges-2.59/debian/pyversion
--- /tmp/wRDwCkVcX8/apt-listchanges-2.59/debian/pyversion       1970-01-01 
01:00:00.000000000 +0100
+++ /tmp/KqSdt5MP7q/apt-listchanges-2.59/debian/pyversion       2006-08-03 
08:26:02.000000000 +0200
@@ -0,0 +1 @@
+2.1-
diff -Nru /tmp/wRDwCkVcX8/apt-listchanges-2.59/debian/rules 
/tmp/KqSdt5MP7q/apt-listchanges-2.59/debian/rules
--- /tmp/wRDwCkVcX8/apt-listchanges-2.59/debian/rules   2004-03-14 
00:28:26.000000000 +0100
+++ /tmp/KqSdt5MP7q/apt-listchanges-2.59/debian/rules   2006-08-03 
08:25:27.000000000 +0200
@@ -63,6 +63,8 @@
        dh_installchangelogs 
 #      dh_link
 #      dh_strip
+       dh_pysupport
+       dh_python
        dh_compress
        dh_fixperms
        # You may want to make some executables suid here.
diff -Nru /tmp/wRDwCkVcX8/apt-listchanges-2.59/__init__.py 
/tmp/KqSdt5MP7q/apt-listchanges-2.59/__init__.py
--- /tmp/wRDwCkVcX8/apt-listchanges-2.59/__init__.py    1970-01-01 
01:00:00.000000000 +0100
+++ /tmp/KqSdt5MP7q/apt-listchanges-2.59/__init__.py    2006-08-03 
08:28:28.000000000 +0200
@@ -0,0 +1,2 @@
+import DebianControlParser
+import apt_listchanges
diff -Nru /tmp/wRDwCkVcX8/apt-listchanges-2.59/Makefile 
/tmp/KqSdt5MP7q/apt-listchanges-2.59/Makefile
--- /tmp/wRDwCkVcX8/apt-listchanges-2.59/Makefile       2005-02-04 
18:13:59.000000000 +0100
+++ /tmp/KqSdt5MP7q/apt-listchanges-2.59/Makefile       2006-08-03 
08:32:54.000000000 +0200
@@ -1,3 +1,5 @@
+LIBDEST := $(DESTDIR)/usr/lib/$(shell pyversions 
-d)/site-packages/apt_listchanges
+
 all:
        docbook-to-man apt-listchanges.sgml > apt-listchanges.1
        docbook-to-man apt-listchanges.es.sgml > apt-listchanges.es.1
@@ -7,9 +9,8 @@
 install: all
        install -d $(DESTDIR)/usr/bin
        install -m 755 apt-listchanges $(DESTDIR)/usr/bin
-       install -d $(DESTDIR)/usr/lib/site-python
-       install -m 644 DebianControlParser.py apt_listchanges.py \
-               $(DESTDIR)/usr/lib/site-python
+       install -d $(LIBDEST)
+       install -m 644 DebianControlParser.py apt_listchanges.py __init__.py 
$(LIBDEST)
        install -d $(DESTDIR)/etc/apt/apt.conf.d
        install -m 644 debian/apt.conf \
                $(DESTDIR)/etc/apt/apt.conf.d/20listchanges

Attachment: signature.asc
Description: Digital signature

Reply via email to