X-Git-Url: http://git.maemo.org/git/?p=gonvert;a=blobdiff_plain;f=support%2Fbuilddeb.py;h=b378630b45f258d9a49275e9a45d8f9978289d6a;hp=32b7114c7ac89feb9ddbf6200344f9b2ac340876;hb=ff7c2f291fca8ec9c793875f5d3b8083c0feb0c8;hpb=14dbf647fbb0b4dfdd56a7a1ba60860e52e2808d diff --git a/support/builddeb.py b/support/builddeb.py index 32b7114..b378630 100755 --- a/support/builddeb.py +++ b/support/builddeb.py @@ -14,11 +14,22 @@ A conversion utility that allows conversion between many units like CGS, Ancient . Homepage: http://www.unihedron.com/projects/gonvert/index.php """ -__author__ = "Ed Page (Maemo Porter)" -__email__ = "eopage@byu.net" +__author__ = "Anthony Tekatch" +__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. * Aligning the numbers by their decimal place @@ -237,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=False, - 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__":