Bump to 1.0.4
[ejpi] / support / builddeb.py
index a35f965..a61c726 100755 (executable)
@@ -27,7 +27,10 @@ __email__ = "eopage@byu.net"
 __version__ = constants.__version__
 __build__ = constants.__build__
 __changelog__ = """
-* Port to Qt wtih misc fixes
+* Fixed and improved error reporting
+* Re-arranged trig and programmer keyboards to reduce keyboard swapping
+* Fixed issues with auto-scoll to latest item on startup
+* Reducing redraws on spurious rotations
 """.strip()
 
 
@@ -77,15 +80,11 @@ def build_package(distribution):
        p.license = "lgpl"
        p.depends = ", ".join([
                "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",
-               "diablo": maemoSpecificDepends,
-               "fremantle": maemoSpecificDepends + ", python-glade2",
+               "debian": ", python-qt4",
+               "diablo": ", python2.5-qt4-core, python2.5-qt4-gui",
+               "fremantle": ", python2.5-qt4-core, python2.5-qt4-gui, python2.5-qt4-maemo5",
        }[distribution]
        p.section = {
                "debian": "math",