Bump to 1.0.0-2 to fix deps for Diablo
authorEd Page <eopage@byu.net>
Sat, 5 Jun 2010 22:04:56 +0000 (17:04 -0500)
committerEd Page <eopage@byu.net>
Sat, 5 Jun 2010 22:04:56 +0000 (17:04 -0500)
src/constants.py
support/builddeb.py
www/gonvert.deb

index b78eea1..ecaa541 100644 (file)
@@ -3,7 +3,7 @@ import os
 __pretty_app_name__ = "Gonvert"
 __app_name__ = "gonvert"
 __version__ = "1.0.0"
 __pretty_app_name__ = "Gonvert"
 __app_name__ = "gonvert"
 __version__ = "1.0.0"
-__build__ = 1
+__build__ = 2
 __app_magic__ = 0xdeadbeef
 _data_path_ = os.path.join(os.path.expanduser("~"), ".gonvert")
 _user_settings_ = "%s/settings.json" % _data_path_
 __app_magic__ = 0xdeadbeef
 _data_path_ = os.path.join(os.path.expanduser("~"), ".gonvert")
 _user_settings_ = "%s/settings.json" % _data_path_
index 0bd26f2..f607ab0 100755 (executable)
@@ -19,7 +19,6 @@ __email__ = "anthony@unihedron.com"
 __version__ = constants.__version__
 __build__ = constants.__build__
 __changelog__ = """
 __version__ = constants.__version__
 __build__ = constants.__build__
 __changelog__ = """
-1.0.0
 * Switched from GTK to QT in preparation for Meego, all previous features still present
 * Except removed the current form of search
 * Added a "Recent" window
 * Switched from GTK to QT in preparation for Meego, all previous features still present
 * Except removed the current form of search
 * Added a "Recent" window
@@ -77,9 +76,12 @@ def build_package(distribution):
        p.license = "gpl"
        p.depends = ", ".join([
                "python2.6 | python2.5",
        p.license = "gpl"
        p.depends = ", ".join([
                "python2.6 | python2.5",
-               "python-gtk2 | python2.5-gtk2",
-               "python-pyqt4 | python2.5-qt4",
        ])
        ])
+       p.depends += {
+               "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.recommends = ", ".join([
        ])
        p.section = {
        p.recommends = ", ".join([
        ])
        p.section = {
index dfdf55b..2216650 100644 (file)
Binary files a/www/gonvert.deb and b/www/gonvert.deb differ