X-Git-Url: http://git.maemo.org/git/?p=gonvert;a=blobdiff_plain;f=support%2Fbuilddeb.py;h=34f9a0c7942a08792e4baf46f3f4305e1e0a9371;hp=84c17d3ee1943f8613f97ef826f82abea60b4faf;hb=9fe42c0fc8724b8a7e42cbb05ab9553117635c60;hpb=fa3f8c6b67ffeeede5fafd2ce63f47dec7dc6fa3 diff --git a/support/builddeb.py b/support/builddeb.py index 84c17d3..34f9a0c 100755 --- a/support/builddeb.py +++ b/support/builddeb.py @@ -3,32 +3,36 @@ import os import sys -try: - import py2deb -except ImportError: - import fake_py2deb as py2deb +import py2deb import constants __appname__ = constants.__app_name__ -__description__ = """REPLACEME -REPLACEME +__description__ = """Unit Conversions +A conversion utility that allows conversion between many units like CGS, Ancient, Imperial with many categories like length, mass, numbers, etc. All units converted values shown at once as you type . -Homepage: +Homepage: http://www.unihedron.com/projects/gonvert/index.php """ -__author__ = "Ed Page" -__email__ = "eopage@byu.net" +__author__ = "Anthony Tekatch" +__email__ = "anthony@unihedron.com" __version__ = constants.__version__ __build__ = constants.__build__ __changelog__ = """ -REPLACEME +* Switching Condensed View's output to be editable also +* Fixed scrolling on Maemo +* On the traditional view, fixed an issue setting a value on the unit being converted +* Increased the name column size in the traditional view """ __postinstall__ = """#!/bin/sh -e gtk-update-icon-cache -f /usr/share/icons/hicolor +rm -f ~/.gonvert/gonvert.log ~/.gonvert/selections.dat ~/.gonvert/window.dat +""" + +__preremove__ = """#!/bin/sh -e """ @@ -62,29 +66,25 @@ def build_package(distribution): p = py2deb.Py2deb(__appname__) p.prettyName = constants.__pretty_app_name__ p.description = __description__ - p.bugTracker = "" - p.upgradeDescription = __changelog__.split("\n\n", 1)[0] + p.bugTracker = "https://bugs.maemo.org/enter_bug.cgi?product=Gonvert" p.author = __author__ p.mail = __email__ - p.license = "lgpl" + p.license = "gpl" p.depends = ", ".join([ "python2.6 | python2.5", - "python-gtk2 | python2.5-gtk2", - "python-xml | python2.5-xml", - "python-dbus | python2.5-dbus", + "python-simplejson", ]) - maemoSpecificDepends = ", python-osso | python2.5-osso, python-hildon | python2.5-hildon" p.depends += { - "debian": ", python-glade2", - "diablo": maemoSpecificDepends + ", python2.5-conic", - "fremantle": maemoSpecificDepends + ", python-glade2, python-alarm", + "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 = { - "debian": "REPLACEME", - "diablo": "user/REPLACEME", - "fremantle": "user/REPLACEME", + "debian": "science", + "diablo": "user/science", + "fremantle": "user/science", }[distribution] p.arch = "all" p.urgency = "low" @@ -92,24 +92,33 @@ def build_package(distribution): p.repository = "extras" p.changelog = __changelog__ p.postinstall = __postinstall__ + p.preremove = __preremove__ p.icon = { - "debian": "REPLACEME", - "diablo": "REPLACEME", - "fremantle": "REPLACEME", # Fremantle natively uses 48x48 + "debian": "data-pixmaps-gonvert.png", + "diablo": "data-pixmaps-gonvert.png", + "fremantle": "data-pixmaps-gonvert.png", # Fremantle natively uses 48x48 }[distribution] - p["/usr/bin"] = [ "REPLACEME" ] - for relPath, files in unflatten_files(find_files(".")).iteritems(): - fullPath = "" + p["/opt/gonvert/bin"] = [ "gonvert.py" ] + for relPath, files in unflatten_files(find_files("src", ".")).iteritems(): + fullPath = "/opt/gonvert/lib" + if relPath: + fullPath += os.sep+relPath + p[fullPath] = list( + "|".join((oldName, newName)) + for (oldName, newName) in files + ) + for relPath, files in unflatten_files(find_files("data", ".")).iteritems(): + fullPath = "/opt/gonvert/share" if relPath: fullPath += os.sep+relPath p[fullPath] = list( "|".join((oldName, newName)) for (oldName, newName) in files ) - p["/usr/share/applications/hildon"] = ["REPLACEME.desktop"] - p["/usr/share/icons/hicolor/26x26/hildon"] = ["REPLACEME"] - p["/usr/share/icons/hicolor/64x64/hildon"] = ["REPLACEME"] - p["/usr/share/icons/hicolor/scalable/hildon"] = ["REPLACEME"] + p["/usr/share/applications/hildon"] = ["gonvert.desktop"] + p["/usr/share/icons/hicolor/26x26/hildon"] = ["data-pixmaps-gonvert.png|gonvert.png"] + p["/usr/share/icons/hicolor/64x64/hildon"] = ["data-pixmaps-gonvert.png|gonvert.png"] + p["/usr/share/icons/hicolor/scalable/hildon"] = ["data-pixmaps-gonvert.png|gonvert.png"] if distribution == "debian": print p