X-Git-Url: http://git.maemo.org/git/?p=gonvert;a=blobdiff_plain;f=support%2Fbuilddeb.py;h=4a680eb8defd0a90af5c89c10746ff5664604bad;hp=3d0658534693378b7b5b911380c63304e64b1761;hb=14b1911b6cdedba89540bf27397ba5341d1f0322;hpb=e98f2a42a0007992fd7484d80a5d3eb398312826 diff --git a/support/builddeb.py b/support/builddeb.py index 3d06585..4a680eb 100755 --- a/support/builddeb.py +++ b/support/builddeb.py @@ -19,6 +19,14 @@ __email__ = "anthony@unihedron.com" __version__ = constants.__version__ __build__ = constants.__build__ __changelog__ = """ +0.9.3 +* Rotation support through Ctrl+o +* Switching from scrollbar to panning + +0.9.2 +* Added search toggle to the menu +* Maemo 5: Added sorting to the app menu + 0.9.1 * Added support for creating generic .deb files * Added an apothecary unit @@ -181,7 +189,7 @@ def build_package(distribution): p.prettyName = constants.__pretty_app_name__ p.description = __description__ p.bugTracker = "https://bugs.maemo.org/enter_bug.cgi?product=Gonvert" - #p.upgradeDescription = __changelog__.split("\n\n", 1)[0] + p.upgradeDescription = __changelog__.split("\n\n", 1)[0] p.author = __author__ p.mail = __email__ p.license = "gpl" @@ -194,33 +202,27 @@ def build_package(distribution): 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.recommends = ", ".join([ ]) p.section = { "debian": "science", - "chinook": "other", "diablo": "user/science", "fremantle": "user/science", - "mer": "user/science", }[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.preremove = __preremove__ p.icon = { "debian": "data-pixmaps-gonvert.png", - "chinook": "data-pixmaps-gonvert.png", "diablo": "data-pixmaps-gonvert.png", "fremantle": "data-pixmaps-gonvert.png", # Fremantle natively uses 48x48 - "mer": "data-pixmaps-gonvert.png", }[distribution] p["/usr/bin"] = [ "gonvert.py" ] for relPath, files in unflatten_files(find_files("src", ".")).iteritems():