Bumping to -8 because I forgot a comma in the dependency line which installed fine...
authorEd Page <eopage@byu.net>
Tue, 5 Jan 2010 04:11:21 +0000 (22:11 -0600)
committerEd Page <eopage@byu.net>
Tue, 5 Jan 2010 04:11:21 +0000 (22:11 -0600)
src/constants.py
support/builddeb.py

index cd22fc6..7a6f7fe 100644 (file)
@@ -3,7 +3,7 @@ import os
 __pretty_app_name__ = "Telepathy-TheOneRing"
 __app_name__ = "telepathy-theonering"
 __version__ = "0.1.0"
-__build__ = 7
+__build__ = 8
 __app_magic__ = 0xdeadbeef
 _data_path_ = os.path.join(os.path.expanduser("~"), ".telepathy-theonering")
 _user_settings_ = "%s/settings.ini" % _data_path_
index 4182869..a0f67a5 100755 (executable)
@@ -76,23 +76,23 @@ def build_package(distribution):
        p.author = __author__
        p.mail = __email__
        p.license = "lgpl"
-       p.depends = ", ".join([
-               "python (>= 2.5) | python2.5",
-               "python-dbus | python2.5-dbus",
-               "python-gobject | python2.5-gobject",
-               "python-telepathy | python2.5-telepathy",
-       ])
        p.section = {
                "debian": "comm",
                "diablo": "user/network",
                "fremantle": "user/network",
                "mer": "user/network",
        }[distribution]
+       p.depends = ", ".join([
+               "python (>= 2.5) | python2.5",
+               "python-dbus | python2.5-dbus",
+               "python-gobject | python2.5-gobject",
+               "python-telepathy | python2.5-telepathy",
+       ])
        p.depends += {
                "debian": "",
                "chinook": "",
-               "diablo": "account-plugin-haze",
-               "fremantle": "account-plugin-haze",
+               "diablo": ", account-plugin-haze",
+               "fremantle": ", account-plugin-haze",
                "mer": "",
        }[distribution]
        p.arch = "all"