Updating from Dialcentral
[theonering] / support / builddeb.py
index aba0451..0ce60ea 100755 (executable)
@@ -1,9 +1,5 @@
 #!/usr/bin/python2.5
 
-"""
-@bug In update desrcription stuff
-"""
-
 import os
 import sys
 
@@ -16,7 +12,10 @@ import constants
 
 
 __appname__ = constants.__app_name__
-__description__ = "Google Voice Communication Plugin"
+__description__ = """Google Voice Communication Plugin
+.
+Homepage: http://theonering.garage.maemo.org
+"""
 __author__ = "Ed Page"
 __email__ = "eopage@byu.net"
 __version__ = constants.__version__
@@ -60,26 +59,18 @@ def build_package(distribution):
 
        py2deb.Py2deb.SECTIONS = py2deb.SECTIONS_BY_POLICY[distribution]
        p = py2deb.Py2deb(__appname__)
+       p.prettyName = constants.__pretty_app_name__
        p.description = __description__
+       p.bugTracker = "https://bugs.maemo.org/enter_bug.cgi?product=theonering"
        p.upgradeDescription = __changelog__.split("\n\n", 1)[0]
        p.author = __author__
        p.mail = __email__
        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",
-               "chinook": maemoSpecificDepends,
-               "diablo": maemoSpecificDepends,
-               "fremantle": maemoSpecificDepends + ", python-glade2",
-               "mer": maemoSpecificDepends + ", python-glade2",
-       }[distribution]
-       p.recommends = ", ".join([
+               "python (>= 2.5)",
+               "python-dbus",
+               "python-gobject",
+               "python-telepathy",
        ])
        p.section = {
                "debian": "comm",