Move experimental branch of gtk+3.0 to unstable

This commit is contained in:
Michael Biebl
2013-05-23 13:17:54 +00:00
25 changed files with 507 additions and 149 deletions

16
debian/tests/python3-gi vendored Normal file
View File

@ -0,0 +1,16 @@
#!/bin/sh
xvfb-run python3 <<EOF
from gi.repository import GLib, Gtk
def do_quit(user_data):
Gtk.main_quit()
dialog = Gtk.Dialog()
dialog.set_title('Test dialog')
dialog.add_button(Gtk.STOCK_OK, Gtk.ResponseType.ACCEPT)
dialog.show_all()
GLib.timeout_add_seconds(1, do_quit, None)
Gtk.main()
EOF