From: Ed Page Date: Sat, 5 Jun 2010 22:04:56 +0000 (-0500) Subject: Bump to 1.0.0-2 to fix deps for Diablo X-Git-Url: http://git.maemo.org/git/?p=gonvert;a=commitdiff_plain;h=63f3e7b7b6f4d5efadf3f8e3efc126b057404ce8;ds=sidebyside Bump to 1.0.0-2 to fix deps for Diablo --- diff --git a/src/constants.py b/src/constants.py index b78eea1..ecaa541 100644 --- a/src/constants.py +++ b/src/constants.py @@ -3,7 +3,7 @@ import os __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_ diff --git a/support/builddeb.py b/support/builddeb.py index 0bd26f2..f607ab0 100755 --- a/support/builddeb.py +++ b/support/builddeb.py @@ -19,7 +19,6 @@ __email__ = "anthony@unihedron.com" __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 @@ -77,9 +76,12 @@ def build_package(distribution): 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 = { diff --git a/www/gonvert.deb b/www/gonvert.deb index dfdf55b..2216650 100644 Binary files a/www/gonvert.deb and b/www/gonvert.deb differ