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

RFS: reportbug-ng (closes RC #496544)



Dear all,

I need sponsorship for a NMU that closes RC bug #496544 of the native package
reportbug-ng. Do I have to ask for a release freeze, or would that be the
sponsor?

This NMU fixes the breakage of bug-triage (#496536; potentially other as well).

I attach the patch with the changes (all of which are required for fixing the
RC bug).

http://www.cs.man.ac.uk/~zanikols/deb/reportbug-ng_1.1+nmu1.dsc

Cheers,
Serafeim

diff -r -u reportbug-ng-1.1.orig/debian/changelog reportbug-ng-1.1+nmu1/debian/changelog
--- reportbug-ng-1.1.orig/debian/changelog	2008-07-28 11:38:35.000000000 +0100
+++ reportbug-ng-1.1+nmu1/debian/changelog	2008-08-26 20:35:51.000000000 +0100
@@ -1,3 +1,10 @@
+reportbug-ng (1.1+nmu1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Don't pollute python sys.path with private modules (Closes: #496544).
+
+ -- Serafeim Zanikolas <serzan@hellug.gr>  Tue, 26 Aug 2008 20:27:57 +0100
+
 reportbug-ng (1.1) unstable; urgency=low
 
   * Added settings window which allows to chose the default MUA, the colors
diff -r -u reportbug-ng-1.1.orig/src/Makefile reportbug-ng-1.1+nmu1/src/Makefile
--- reportbug-ng-1.1.orig/src/Makefile	2008-07-28 11:38:35.000000000 +0100
+++ reportbug-ng-1.1+nmu1/src/Makefile	2008-08-26 20:27:22.000000000 +0100
@@ -10,8 +10,8 @@
 	    $(MAKE) install -C $$i; \
 	done
 
-	mkdir -p $(DESTDIR)/usr/share/python-support/reportbug-ng
-	cp *.py $(DESTDIR)/usr/share/python-support/reportbug-ng/
+	mkdir -p $(DESTDIR)/usr/share/python-support/reportbug-ng/reportbug_ng/
+	cp *.py $(DESTDIR)/usr/share/python-support/reportbug-ng/reportbug_ng/
 
 	mkdir -p $(DESTDIR)/usr/bin
 	cp reportbug-ng $(DESTDIR)/usr/bin/reportbug-ng
diff -r -u reportbug-ng-1.1.orig/src/reportbug-ng reportbug-ng-1.1+nmu1/src/reportbug-ng
--- reportbug-ng-1.1.orig/src/reportbug-ng	2008-07-28 11:38:36.000000000 +0100
+++ reportbug-ng-1.1+nmu1/src/reportbug-ng	2008-08-26 20:45:34.000000000 +0100
@@ -24,7 +24,7 @@
 import logging
 from optparse import OptionParser
 from PyQt4 import QtCore, QtGui
-from rnggui import RngGui
+from reportbug_ng.rnggui import RngGui
 
 if __name__ == "__main__":
     # Get Options
diff -r -u reportbug-ng-1.1.orig/src/rnggui.py reportbug-ng-1.1+nmu1/src/rnggui.py
--- reportbug-ng-1.1.orig/src/rnggui.py	2008-07-28 11:38:36.000000000 +0100
+++ reportbug-ng-1.1+nmu1/src/rnggui.py	2008-08-26 20:37:20.000000000 +0100
@@ -21,11 +21,11 @@
 
 from PyQt4 import QtCore, QtGui
 
-from ui import mainwindow
-from ui import submitdialog
-import rnghelpers as rng
+from reportbug_ng.ui import mainwindow
+from reportbug_ng.ui import submitdialog
+import reportbug_ng.rnghelpers as rng
 import debianbts as bts
-from rngsettings import RngSettings
+from reportbug_ng.rngsettings import RngSettings
 
 
 class RngGui(QtGui.QMainWindow, mainwindow.Ui_MainWindow):
diff -r -u reportbug-ng-1.1.orig/src/rngsettings.py reportbug-ng-1.1+nmu1/src/rngsettings.py
--- reportbug-ng-1.1.orig/src/rngsettings.py	2008-07-28 11:38:36.000000000 +0100
+++ reportbug-ng-1.1+nmu1/src/rngsettings.py	2008-08-26 20:37:50.000000000 +0100
@@ -19,9 +19,9 @@
 
 from PyQt4 import QtCore, QtGui
 
-from ui import settings
-import rnghelpers as rng
-from rnghelpers import Settings
+from reportbug_ng.ui import settings
+import reportbug_ng.rnghelpers as rng
+from reportbug_ng.rnghelpers import Settings
 
 class RngSettings(QtGui.QDialog, settings.Ui_Dialog):
     
diff -r -u reportbug-ng-1.1.orig/src/ui/Makefile reportbug-ng-1.1+nmu1/src/ui/Makefile
--- reportbug-ng-1.1.orig/src/ui/Makefile	2008-07-28 11:38:36.000000000 +0100
+++ reportbug-ng-1.1+nmu1/src/ui/Makefile	2008-08-26 20:43:41.000000000 +0100
@@ -22,8 +22,8 @@
 	$(PYUIC) $< -o $@
 
 install:
-	mkdir -p $(DESTDIR)/usr/share/python-support/reportbug-ng/ui
-	cp -r *.py $(DESTDIR)/usr/share/python-support/reportbug-ng/ui/
+	mkdir -p $(DESTDIR)/usr/share/python-support/reportbug-ng/reportbug_ng/ui
+	cp -r *.py $(DESTDIR)/usr/share/python-support/reportbug-ng/reportbug_ng/ui/
 
 clean:
 	rm -f $(GUI_CLASSES) $(RCCS) $(PYRCCS)

Reply to: