X-Git-Url: http://git.maemo.org/git/?p=quicknote;a=blobdiff_plain;f=support%2Fbuilddeb.py;h=9b64e84363cca083dda55c2161c1bd4878e3d19b;hp=10cf3cea7a505a936b8cf5f19fffe188bd47e1e8;hb=d52589b00b9fa5e55a0b8f8160b8e02fbc219334;hpb=923393a4a57f86de565090dad307eddd30e40e13 diff --git a/support/builddeb.py b/support/builddeb.py index 10cf3ce..9b64e84 100755 --- a/support/builddeb.py +++ b/support/builddeb.py @@ -21,54 +21,9 @@ __email__ = "n800@axique.net" __version__ = constants.__version__ __build__ = constants.__build__ __changelog__ = """ -0.7.10 - * Moved history to the (app)menu - * Moved search to Ctrl+f and (app)menu - * Switched category selection over to a touch selector entry, making it prettier and easier - * Ctrl+w/q to quit - -0.7.9 - * UI Tweak: Removed "New Note..." due to weirdness and duplicated behavior - * UI Tweak: Added App Menu to access some category functionality - * Bugfix: Move To Category - * Bugfix: Removed carriage return on Ctrl+Enter - * Added .deb package support - -0.7.8 - * Spell checking (Desktop only) - * Fixing the application title - * Fremantle Support - * Ctrl+i and Ctrl+o to zoom in/out the interface - * Ctrl+enter to fullscreen app - * Ctrl+l to copy to clipboard the application debug log - -0.7.7 - * Slight modifications to the note history and SQL dialogs - * On zoom, also hiding the history status and button - * Touched up the note list, making it ellipsize at the end rather than scroll - * Storing of zoom, wordwrap, and fullscreen settings - -0.7.6 - * Line-wrap - * Zoom - -0.7.4 - * fixed small bugs - * move category - -0.7.3 - * fixed small bugs - * move category - -0.7.2 - * improved sync, fixed a small bug - -0.7.1 - * improved sync - -0.7.0 - * Initial Release. -""" + * Small bugfix for launch + * Some code cleanup +""".strip() __postinstall__ = """#!/bin/sh -e @@ -119,34 +74,29 @@ def build_package(distribution): "python2.6 | python2.5", "python-gtk2 | python2.5-gtk2", "python-xml | python2.5-xml", + "python-dbus | python2.5-dbus", ]) maemoSpecificDepends = ", python-osso | python2.5-osso, python-hildon | python2.5-hildon" p.depends += { "debian": ", python-glade2", - "chinook": maemoSpecificDepends, "diablo": maemoSpecificDepends, "fremantle": maemoSpecificDepends + ", python-glade2", - "mer": maemoSpecificDepends + ", python-glade2", }[distribution] p.section = { "debian": "editors", - "chinook": "accessories", "diablo": "user/office", "fremantle": "user/office", - "mer": "user/office", }[distribution] p.arch = "all" p.urgency = "low" - p.distribution = "chinook diablo fremantle mer debian" + p.distribution = "diablo fremantle debian" p.repository = "extras" p.changelog = __changelog__ p.postinstall = __postinstall__ p.icon = { "debian": "26x26-quicknote.png", - "chinook": "26x26-quicknote.png", "diablo": "26x26-quicknote.png", "fremantle": "48x48-quicknote.png", # Fremantle natively uses 48x48 - "mer": "48x48-quicknote.png", }[distribution] p["/usr/bin"] = [ "quicknote.py" ] for relPath, files in unflatten_files(find_files(".", "locale")).iteritems():