X-Git-Url: http://git.maemo.org/git/?p=gonvert;a=blobdiff_plain;f=support%2Fbuilddeb.py;h=b378630b45f258d9a49275e9a45d8f9978289d6a;hp=4402c2e5d2a89edbe4851775d1fafd7a75565004;hb=ff7c2f291fca8ec9c793875f5d3b8083c0feb0c8;hpb=bb8e13c683c105ddf66e22ca36ba243999f7d629 diff --git a/support/builddeb.py b/support/builddeb.py index 4402c2e..b378630 100755 --- a/support/builddeb.py +++ b/support/builddeb.py @@ -19,8 +19,16 @@ __email__ = "anthony@unihedron.com" __version__ = constants.__version__ __build__ = constants.__build__ __changelog__ = """ +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 +* Bug fix: Can directly enter numbers after selecting category * Bug fix: font of the category button was inconsistent +* Bug fix: Improved up/down arrow keys 0.9.0 * Added Radioactivity and Radiation dose categories. @@ -177,7 +185,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" @@ -240,16 +248,28 @@ def build_package(distribution): p["/usr/share/icons/hicolor/64x64/hildon"] = ["data-pixmaps-gonvert.png|gonvert.png"] p["/usr/share/icons/hicolor/scalable/hildon"] = ["data-pixmaps-gonvert.png|gonvert.png"] - print p - print p.generate( - version="%s-%s" % (__version__, __build__), - changelog=__changelog__, - build=True, - tar=True, - changes=True, - dsc=True, - ) - print "Building for %s finished" % distribution + if distribution == "debian": + print p + print p.generate( + version="%s-%s" % (__version__, __build__), + changelog=__changelog__, + build=True, + tar=False, + changes=False, + dsc=False, + ) + print "Building for %s finished" % distribution + else: + print p + print p.generate( + version="%s-%s" % (__version__, __build__), + changelog=__changelog__, + build=False, + tar=True, + changes=True, + dsc=True, + ) + print "Building for %s finished" % distribution if __name__ == "__main__":