Ubuntu cinepaint 0.21-2-0ubuntu3

Ubuntu Merge-o-Matic <mom-GeWIH/[email protected]>
Newsgroups gmane.comp.video.cinepaint.devel
Message-ID <[email protected]>
This e-mail has been sent due to an upload to Ubuntu that contains Ubuntu
changes.  It contains the difference between the new version and the
previous version of the same source package in Ubuntu.

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/

_______________________________________________
Cinepaint-developers mailing list
Cinepaint-developers-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
https://lists.sourceforge.net/lists/listinfo/cinepaint-developers
cinepaint_0.21-2-0ubuntu3_source.changes (text/plain, 1.2 KB)
Format: 1.7
Date: Thu,  8 Mar 2007 22:51:20 +0100
Source: cinepaint
Binary: libcinepaint-dev libcinepaint0 cinepaint-data cinepaint
Architecture: source
Version: 0.21-2-0ubuntu3
Distribution: feisty
Urgency: low
Maintainer: Ubuntu MOTU Developers <[email protected]>
Changed-By: Albin Tonnerre <[email protected]>
Description: 
 cinepaint  - motion picture image painting and retouching tool
 cinepaint-data - data files for CinePaint
 libcinepaint-dev - development library files for CinePaint
 libcinepaint0 - runtime library files for CinePaint
Changes: 
 cinepaint (0.21-2-0ubuntu3) feisty; urgency=low
 .
   * 02_fix-module-name-gtkcons.py.patch: fix wrong GTK modules names in
     plug-ins/pygimp/plug-ins/gtkcons.py (LP: #90480)
   * 03_fix-module-name-pdbbrowse.py.patch same as above, but in
     plug-ins/pygimp/plug-ins/pdbbrowse.py (LP: #90479)
Files: 
 c2c0f33b5b3562560f742cbd6732ac71 1062 graphics optional cinepaint_0.21-2-0ubuntu3.dsc
 a9211323fb3d459be1c8398cd64f7159 19218 graphics optional cinepaint_0.21-2-0ubuntu3.diff.gz
Original-Maintainer: Andrew Lau <[email protected]>
cinepaint_0.21-2-0ubuntu3.patch (text/plain, 11.4 KB)
diff -pruN 0.21-2-0ubuntu2/debian/changelog 0.21-2-0ubuntu3/debian/changelog
--- 0.21-2-0ubuntu2/debian/changelog	2007-05-02 13:59:48.000000000 +0100
+++ 0.21-2-0ubuntu3/debian/changelog	2007-05-02 13:59:47.000000000 +0100
@@ -1,3 +1,12 @@
+cinepaint (0.21-2-0ubuntu3) feisty; urgency=low
+
+  * 02_fix-module-name-gtkcons.py.patch: fix wrong GTK modules names in
+    plug-ins/pygimp/plug-ins/gtkcons.py (LP: #90480)
+  * 03_fix-module-name-pdbbrowse.py.patch same as above, but in
+    plug-ins/pygimp/plug-ins/pdbbrowse.py (LP: #90479)
+
+ -- Albin Tonnerre <[email protected]>  Thu,  8 Mar 2007 22:51:20 +0100
+
 cinepaint (0.21-2-0ubuntu2) feisty; urgency=low
 
   * patches/01_add-gimp-python-modules-path.patch: add correct path to import
diff -pruN 0.21-2-0ubuntu2/debian/patches/02_fix-module-name-gtkcons.py.patch 0.21-2-0ubuntu3/debian/patches/02_fix-module-name-gtkcons.py.patch
--- 0.21-2-0ubuntu2/debian/patches/02_fix-module-name-gtkcons.py.patch	1970-01-01 01:00:00.000000000 +0100
+++ 0.21-2-0ubuntu3/debian/patches/02_fix-module-name-gtkcons.py.patch	2007-05-02 13:59:47.000000000 +0100
@@ -0,0 +1,78 @@
+diff -Nur cinepaint-0.21-2/plug-ins/pygimp/plug-ins/gtkcons.py cinepaint-0.21-2.new/plug-ins/pygimp/plug-ins/gtkcons.py
+--- cinepaint-0.21-2/plug-ins/pygimp/plug-ins/gtkcons.py	2006-10-03 16:57:48.000000000 +0200
++++ cinepaint-0.21-2.new/plug-ins/pygimp/plug-ins/gtkcons.py	2007-03-08 22:47:02.000000000 +0100
+@@ -105,9 +105,9 @@
+ 	def tell(self):      raise IOError, (29, 'Illegal seek')
+ 	truncate = tell
+ 
+-class Console(GtkVBox):
++class Console(VBox):
+ 	def __init__(self, namespace={}, copyright='', quit_cb=None):
+-		GtkVBox.__init__(self, spacing=2)
++		VBox.__init__(self, spacing=2)
+ 		self.set_border_width(2)
+ 		self.copyright = copyright
+ 		#self.set_usize(475, 300)
+@@ -124,38 +124,38 @@
+ 		self.command = load_font(
+ 			"-*-helvetica-bold-r-normal-*-*-100-*-*-*-*-*-*")
+ 
+-		self.inp = GtkHBox()
++		self.inp = HBox()
+ 		self.pack_start(self.inp)
+ 		self.inp.show()
+ 
+-		self.text = GtkText()
++		self.text = Text()
+ 		self.text.set_editable(FALSE)
+ 		self.text.set_word_wrap(TRUE)
+ 		self.text.set_usize(500, 400)
+ 		self.inp.pack_start(self.text, padding=1)
+ 		self.text.show()
+ 
+-		self.vscroll = GtkVScrollbar(self.text.get_vadjustment())
++		self.vscroll = VScrollbar(self.text.get_vadjustment())
+ 		self.vscroll.set_update_policy(POLICY_AUTOMATIC)
+ 		self.inp.pack_end(self.vscroll, expand=FALSE)
+ 		self.vscroll.show()
+ 
+-		self.inputbox = GtkHBox(spacing=2)
++		self.inputbox = HBox(spacing=2)
+ 		self.pack_end(self.inputbox, expand=FALSE)
+ 		self.inputbox.show()
+ 
+-		self.prompt = GtkLabel(sys.ps1)
++		self.prompt = Label(sys.ps1)
+ 		self.prompt.set_padding(xp=2, yp=0)
+ 		self.prompt.set_usize(26, -1)
+ 		self.inputbox.pack_start(self.prompt, fill=FALSE, expand=FALSE)
+ 		self.prompt.show()
+ 
+-		self.closer = GtkButton("Close")
++		self.closer = Button("Close")
+ 		self.closer.connect("clicked", self.quit)
+ 		self.inputbox.pack_end(self.closer, fill=FALSE, expand=FALSE)
+ 		self.closer.show()
+ 
+-		self.line = GtkEntry()
++		self.line = Entry()
+ 		self.line.set_usize(400,-1)
+ 		self.line.connect("key_press_event", self.key_function)
+ 		self.inputbox.pack_start(self.line, padding=2)
+@@ -304,14 +304,14 @@
+ 		sys.stderr, self.stderr = self.stderr, sys.stderr
+ 
+ def gtk_console(ns, title='Python', copyright='', menu=None):
+-	win = GtkWindow()
++	win = Window()
+ 	win.set_usize(475, 300)
+ 	win.connect("destroy", mainquit)
+ 	win.connect("delete_event", mainquit)
+ 	win.set_title(title)
+ 	cons = Console(namespace=ns, copyright=copyright, quit_cb=mainquit)
+ 	if menu:
+-		box = GtkVBox()
++		box = VBox()
+ 		win.add(box)
+ 		box.show()
+ 		box.pack_start(menu, expand=FALSE)
diff -pruN 0.21-2-0ubuntu2/debian/patches/03_fix-module-name-pdbbrowse.py.patch 0.21-2-0ubuntu3/debian/patches/03_fix-module-name-pdbbrowse.py.patch
--- 0.21-2-0ubuntu2/debian/patches/03_fix-module-name-pdbbrowse.py.patch	1970-01-01 01:00:00.000000000 +0100
+++ 0.21-2-0ubuntu3/debian/patches/03_fix-module-name-pdbbrowse.py.patch	2007-05-02 13:59:47.000000000 +0100
@@ -0,0 +1,247 @@
+diff -Nur cinepaint-0.21-2/plug-ins/pygimp/plug-ins/pdbbrowse.py cinepaint-0.21-2.new/plug-ins/pygimp/plug-ins/pdbbrowse.py
+--- cinepaint-0.21-2/plug-ins/pygimp/plug-ins/pdbbrowse.py	2007-03-08 22:34:50.000000000 +0100
++++ cinepaint-0.21-2.new/plug-ins/pygimp/plug-ins/pdbbrowse.py	2007-03-08 22:48:19.000000000 +0100
+@@ -31,26 +31,26 @@
+ 	partypes[gimpenums.__dict__[i]] = i[4:]
+ del pars, i
+ 
+-class BrowseWin(gtk.GtkWindow):
++class BrowseWin(gtk.Window):
+ 	def __init__(self, ok_button=None):
+-		gtk.GtkWindow.__init__(self)
++		gtk.Window.__init__(self)
+ 		self.set_title("PDB Browser")
+ 
+-		vbox = gtk.GtkVBox(FALSE, 5)
++		vbox = gtk.VBox(FALSE, 5)
+ 		vbox.set_border_width(2)
+ 		self.add(vbox)
+ 		vbox.show()
+ 
+-		paned = gtk.GtkHPaned()
++		paned = gtk.HPaned()
+ 		vbox.pack_start(paned)
+ 		paned.show()
+ 
+-		listsw = gtk.GtkScrolledWindow()
++		listsw = gtk.ScrolledWindow()
+ 		listsw.set_policy(gtk.POLICY_AUTOMATIC, gtk.POLICY_AUTOMATIC)
+ 		paned.add1(listsw)
+ 		listsw.show()
+ 
+-		self.list = gtk.GtkCList(1)
++		self.list = gtk.CList(1)
+ 		self.list.set_column_auto_resize(0, TRUE)
+ 		self.list.set_selection_mode(gtk.SELECTION_BROWSE)
+ 		listsw.add(self.list)
+@@ -58,7 +58,7 @@
+ 		self.update_list()
+ 		self.list.connect("select_row", self.display)
+ 
+-		self.infosw = gtk.GtkScrolledWindow()
++		self.infosw = gtk.ScrolledWindow()
+ 		self.infosw.set_policy(gtk.POLICY_AUTOMATIC,
+ 				       gtk.POLICY_AUTOMATIC)
+ 		paned.add2(self.infosw)
+@@ -70,31 +70,31 @@
+ 		self.cmd = None
+ 		self.display(self.list, 0, -1, None)
+ 
+-		hbox = gtk.GtkHBox(FALSE, 5)
++		hbox = gtk.HBox(FALSE, 5)
+ 		vbox.pack_start(hbox, expand=FALSE)
+ 		hbox.show()
+ 
+-		entry = gtk.GtkEntry()
++		entry = gtk.Entry()
+ 		hbox.pack_start(entry, expand=FALSE)
+ 		entry.show()
+ 
+-		button = gtk.GtkButton("Search by Name")
++		button = gtk.Button("Search by Name")
+ 		button.connect("clicked", self.search_name, entry)
+ 		hbox.pack_start(button, expand=FALSE)
+ 		button.show()
+ 		
+-		button = gtk.GtkButton("Search by Blurb")
++		button = gtk.Button("Search by Blurb")
+ 		button.connect("clicked", self.search_blurb, entry)
+ 		hbox.pack_start(button, expand=FALSE)
+ 		button.show()
+ 
+-		button = gtk.GtkButton("Close")
++		button = gtk.Button("Close")
+ 		button.connect("clicked", self.destroy)
+ 		hbox.pack_end(button, expand=FALSE)
+ 		button.show()
+ 
+ 		if ok_button:
+-			button = gtk.GtkButton("OK")
++			button = gtk.Button("OK")
+ 			button.connect("clicked", ok_button, self)
+ 			hbox.pack_end(button, expand=FALSE)
+ 			button.show()
+@@ -115,15 +115,15 @@
+ 	
+ 	def display(self, clist, row, column, event):
+ 		proc = pdb[clist.get_text(row, 0)]
+-		self.info = gtk.GtkTable(1, 5, FALSE);
++		self.info = gtk.Table(1, 5, FALSE);
+ 		row = 0
+-		label = gtk.GtkLabel("Name:")
++		label = gtk.Label("Name:")
+ 		label.set_alignment(1.0, 0.5)
+ 		self.info.attach(label, 0,1, row,row+1,
+ 				 xoptions=gtk.FILL, yoptions=gtk.FILL)
+ 		label.show()
+ 
+-		label = gtk.GtkEntry()
++		label = gtk.Entry()
+ 		label.set_text(proc.proc_name)
+ 		label.set_editable(FALSE)
+ 		self.info.attach(label, 1,4, row,row+1,
+@@ -131,125 +131,125 @@
+ 		label.show()
+ 		row = row + 1
+ 
+-		label = gtk.GtkLabel("Blurb:")
++		label = gtk.Label("Blurb:")
+ 		label.set_alignment(1.0, 0.5)
+ 		self.info.attach(label, 0,1, row,row+1,
+ 				 xoptions=gtk.FILL, yoptions=gtk.FILL)
+ 		label.show()
+ 
+-		label = gtk.GtkLabel(proc.proc_blurb)
++		label = gtk.Label(proc.proc_blurb)
+ 		label.set_alignment(0.0, 0.5)
+ 		self.info.attach(label, 1,4, row,row+1,
+ 				 yoptions=gtk.FILL)
+ 		label.show()
+ 		row = row + 1
+ 
+-		label = gtk.GtkLabel("Copyright:")
++		label = gtk.Label("Copyright:")
+ 		label.set_alignment(1.0, 0.5)
+ 		self.info.attach(label, 0,1, row,row+1,
+ 				 xoptions=gtk.FILL, yoptions=gtk.FILL)
+ 		label.show()
+ 
+-		label = gtk.GtkLabel(proc.proc_date+", "+proc.proc_copyright)
++		label = gtk.Label(proc.proc_date+", "+proc.proc_copyright)
+ 		label.set_alignment(0.0, 0.5)
+ 		self.info.attach(label, 1,4, row,row+1,
+ 				 yoptions=gtk.FILL)
+ 		label.show()
+ 		row = row + 1
+ 
+-		label = gtk.GtkLabel("Author:")
++		label = gtk.Label("Author:")
+ 		label.set_alignment(1.0, 0.5)
+ 		self.info.attach(label, 0,1, row,row+1,
+ 				 xoptions=gtk.FILL, yoptions=gtk.FILL)
+ 		label.show()
+ 
+-		label = gtk.GtkLabel(proc.proc_author)
++		label = gtk.Label(proc.proc_author)
+ 		label.set_alignment(0.0, 0.5)
+ 		self.info.attach(label, 1,4, row,row+1,
+ 				 yoptions=gtk.FILL)
+ 		label.show()
+ 		row = row + 1
+ 
+-		hsep = gtk.GtkHSeparator()
++		hsep = gtk.HSeparator()
+ 		self.info.attach(hsep, 0,4, row,row+1,
+ 				 yoptions=gtk.FILL)
+ 		hsep.show()
+ 		row = row + 1
+ 
+ 		if len(proc.params) > 0:
+-			label = gtk.GtkLabel("In:")
++			label = gtk.Label("In:")
+ 			label.set_alignment(1.0, 0.5)
+ 			self.info.attach(label, 0,1, row,row+len(proc.params),
+ 					 xoptions=gtk.FILL, yoptions=gtk.FILL)
+ 			label.show()
+ 			for tp, name, desc in proc.params:
+-				label = gtk.GtkLabel(name)
++				label = gtk.Label(name)
+ 				label.set_alignment(0.0, 0.5)
+ 				self.info.attach(label, 1,2, row,row+1,
+ 						 xoptions=gtk.FILL,
+ 						 yoptions=gtk.FILL)
+ 				label.show()
+ 
+-				label = gtk.GtkLabel(partypes[tp])
++				label = gtk.Label(partypes[tp])
+ 				label.set_alignment(0.0, 0.5)
+ 				self.info.attach(label, 2,3, row,row+1,
+ 						 xoptions=gtk.FILL,
+ 						 yoptions=gtk.FILL)
+ 				label.show()
+ 
+-				label = gtk.GtkLabel(desc)
++				label = gtk.Label(desc)
+ 				label.set_alignment(0.0, 0.5)
+ 				self.info.attach(label, 3,4, row,row+1,
+ 						 yoptions=gtk.FILL)
+ 				label.show()
+ 				row = row + 1
+-			hsep = gtk.GtkHSeparator()
++			hsep = gtk.HSeparator()
+ 			self.info.attach(hsep, 0,4, row,row+1,
+ 					 yoptions=gtk.FILL)
+ 			hsep.show()
+ 			row = row + 1
+ 			
+ 		if len(proc.return_vals) > 0:
+-			label = gtk.GtkLabel("Out:")
++			label = gtk.Label("Out:")
+ 			label.set_alignment(1.0, 0.5)
+ 			self.info.attach(label, 0,1,
+ 					 row,row+len(proc.return_vals),
+ 					 xoptions=gtk.FILL, yoptions=gtk.FILL)
+ 			label.show()
+ 			for tp, name, desc in proc.return_vals:
+-				label = gtk.GtkLabel(name)
++				label = gtk.Label(name)
+ 				label.set_alignment(0.0, 0.5)
+ 				self.info.attach(label, 1,2, row,row+1,
+ 						 xoptions=gtk.FILL,
+ 						 yoptions=gtk.FILL)
+ 				label.show()
+ 
+-				label = gtk.GtkLabel(partypes[tp])
++				label = gtk.Label(partypes[tp])
+ 				label.set_alignment(0.0, 0.5)
+ 				self.info.attach(label, 2,3, row,row+1,
+ 						 xoptions=gtk.FILL,
+ 						 yoptions=gtk.FILL)
+ 				label.show()
+ 
+-				label = gtk.GtkLabel(desc)
++				label = gtk.Label(desc)
+ 				label.set_alignment(0.0, 0.5)
+ 				self.info.attach(label, 3,4, row,row+1,
+ 						 yoptions=gtk.FILL)
+ 				label.show()
+ 				row = row + 1
+-			hsep = gtk.GtkHSeparator()
++			hsep = gtk.HSeparator()
+ 			self.info.attach(hsep, 0,4, row,row+1,
+ 					 yoptions=gtk.FILL)
+ 			hsep.show()
+ 			row = row + 1
+ 		
+-		label = gtk.GtkLabel("Help:")
++		label = gtk.Label("Help:")
+ 		label.set_alignment(1.0, 0.5)
+ 		self.info.attach(label, 0,1, row,row+1,
+ 				 xoptions=gtk.FILL, yoptions=gtk.FILL)
+ 		label.show()
+ 
+-		label = gtk.GtkLabel(proc.proc_help)
++		label = gtk.Label(proc.proc_help)
+ 		label.set_alignment(0.0, 0.5)
+ 		label.set_justify(gtk.JUSTIFY_LEFT)
+ 		label.set_line_wrap(TRUE)
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.