Adding support for building .deb
[gonvert] / support / builddeb.py
index 9b6f40d..4402c2e 100755 (executable)
@@ -14,17 +14,25 @@ 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.2.24
+0.9.1
+* Bug fix: font of the category button was inconsistent
+
+0.9.0
 * Added Radioactivity and Radiation dose categories.
+* Aligning the numbers by their decimal place
 * Added shortcuts for fullscreen
 * Switched to Find being brought up by CTRL+F
 * Added Find Previous and Find Next shortcuts (CTRL+P, CTRL+N)
+* Adjusted the sizing on various widgets
+* Removed unused UI features for polish
+* Bug fix: improved behavior when corner case values are inputted (like floats for base conversions)
 * Debugging: Added logging support
+* Marketting: Huge version bump to express a basic level of feature complete
 * Internal: Massive cleanup of code
 
 0.2.23  - Added UK currency category and other UK measurements thanks to Dale Hair
@@ -168,11 +176,11 @@ def build_package(distribution):
        p = py2deb.Py2deb(__appname__)
        p.prettyName = constants.__pretty_app_name__
        p.description = __description__
-       p.bugTracker = ""
-       p.upgradeDescription = __changelog__.split("\n\n", 1)[0]
+       p.bugTracker = "https://bugs.maemo.org/enter_bug.cgi?product=Gonvert"
+       #p.upgradeDescription = __changelog__.split("\n\n", 1)[0]
        p.author = __author__
        p.mail = __email__
-       p.license = "lgpl"
+       p.license = "gpl"
        p.depends = ", ".join([
                "python2.6 | python2.5",
                "python-gtk2 | python2.5-gtk2",
@@ -236,7 +244,7 @@ def build_package(distribution):
        print p.generate(
                version="%s-%s" % (__version__, __build__),
                changelog=__changelog__,
-               build=False,
+               build=True,
                tar=True,
                changes=True,
                dsc=True,