X-Git-Url: http://git.maemo.org/git/?a=blobdiff_plain;f=support%2Fbuilddeb.py;h=c910be1887e1d02d5db4689436922111906f9579;hb=85d5f8746e18790899054632c5aa6ed3ef87bffc;hp=94a8ff75d1a677fddba7a50ac5ef5d1faff78b75;hpb=5c954320fa6a71a5e159cfd54590d47b0ec130f8;p=gc-dialer diff --git a/support/builddeb.py b/support/builddeb.py index 94a8ff7..c910be1 100755 --- a/support/builddeb.py +++ b/support/builddeb.py @@ -1,16 +1,136 @@ #!/usr/bin/python2.5 -from py2deb import * +""" +@bug In update desrcription stuff +""" +import os +import sys -__appname__ = "dialcentral" -__description__ = "Simple interface to Google's GrandCentral(tm) service" +try: + import py2deb +except ImportError: + import fake_py2deb as py2deb + +import constants + + +__appname__ = constants.__app_name__ +__description__ = "Touch screen enhanced interface to the GoogleVoice/GrandCentral phone service" __author__ = "Ed Page" __email__ = "eopage@byu.net" -__version__ = "0.9.1" -__build__ = 0 -__changelog__ = '''\ -0.9.1 - "" +__version__ = constants.__version__ +__build__ = constants.__build__ +__changelog__ = """ +1.0.6 +* Fremantle Prep: Simplified menus in prep for no menu or the Fremantle App Menu +* Fremantle Prep: Implemented a work around for https://bugs.maemo.org/show_bug.cgi?id=4957 +* Fremantle Prep: Switched to touch selectors for notification time, callback number, and contact addressbook +* Fremantle Prep: Making various widgets pannable rather than scrollable +* Fremantle Prep: CTRL-V added for paste for Dialpad +* Fremantle Prep: CTRL-Enter added for fullscreen +* UI Tweak: Phone selection and SMS Message dialogs now highlight the last message and are easier to scroll +* UI Tweak: Tweaked sizes of stuff on recent tab +* UI Tweak: Added notifcations for various things like login and dialing +* UI Tweak: Switch to accounts tab when logging in and callback is blank as a sublte hint to configure it +* UI Tweak: Switch to accounts tab on failed login to remind the user they are not logged in +* Packaging: Disables notifications on uninstall +* Packaging: Including a vastly improved py2deb for better packages (icons on package, etc) +* Debugging: Adding seperator between dialcentral launches in log +* Bug Fix: Made startup more error resistant +* Bug Fix: some dependencies for Diablo +* Bug Fix: Error on refreshing tabs when not logged in +* Bug Fix: #4471 Notification Checkbox Won't Stay Checked (hour roll over error) +* Bug Fix: Phone numbers in voicemails wouldn't appear +* Bug Fix: category for Fremantle/Diablo +* Bug Fix: needing to manually create "~/.dialcentral" due to earlier logging changes +* Bug Fix: dependencies for fremantle +* Bug Fix: Issues when trying to stack error messages +* Bug Fix: Python2.6 deprecates some stuff I did +* Bug Fix: On refreshing the Accounts tab, the callback number resets to the number from startup + +1.0.5 +* Contacts Tab remembers the last address book viewed on restart +* Applied some suggested changes for being more thumb friendly +* Messaging Dialog auto-scrolls to bottom +* Removed GrandCentral support +* Numbers can now be entered immediately, before login +* Bug Fix: Not clearing the entered number on sending an SMS +* Bug Fix: Disabling SMS button when logged off +* Bug Fix: Trying to make SMS and phone selection dialogs more readable +* Bug Fix: Adding some more thumb scrollbars + +1.0.4 +* "Back" button and tabs now visually indicate when they've entered a "hold" state +* Fixed the duplicate title on Maemo +* Removing some device connection observer code due to high bug to low benefit ratio +* Notification support +* Fixed a bug from 1.0.3 where once you refreshed a tab by holding on it, every tab would then be forced to refresh + +1.0.3 +* Holding down a tab for a second will now force a refresh +* Fixed a bug dealing with overzealously refreshing the contacts tab +* Finding some undescriptive errors and made them more descriptive +* Swapped the order GrandCentral and GoogleVoice appear in login window +* Fixed the "Recent" and "Message" tabs, google changed things on me again + +1.0.2 +* Random bug fixes +* Random performance improvements + +1.0.1 +* Fixed a voicemail transcripts due to a GoogleVoice change + +1.0.0 +* Added names to the recent tab for GoogleVoice + +0.9.9 +* SMS From Dialpad +* Display of names for messages tab +* Condensed messages/recent's date column + +0.9.8 + * Added columns to recent view and messages view to help seperate messages + * Attempted refreshing session on dial/sms send + * Fixed a GC Bug + * Minor bug fixes as usual + +0.9.7 + * Switched to Force Refresh for when wanting to check for more messages + * Removed timeouts that forced refreshes on various tabs + * Added support for a settings file, fairly primitive right now + * Fixed Maemo Support + * Lots of major and minor bug fixes + +0.9.6 + * Experimenting with the tabs being on the side + * Now the phone selector is used always, even if there is just one phone number + * Added a Messages Tab, which displays SMS and Voicemail messages + * Added option to send SMS messages + +0.9.5 + * Fixed a login issue due to Google changing their webpage + +0.9.4 - "" + * Misc Bug fixes and experiments + +0.9.3 - "" + * Removed the much disliked contact source ID + * Added saving of callback number when using GoogleVoice + * Got proper formatting on things ("&" rather than "&") + * Misc Bug fixes + +0.9.2 - "Two heads are better than one" + * Adding of UI to switch between GC and GV + * Minimized flashing the dial button between grayed out and not on startup + * Bug fixes + +0.9.1 - "Get your hands off that" + * GoogleVoice Support, what a pain + * More flexible CSV support. It now checks the header row for what column name/number are in + * Experimenting with faster startup by caching PYC files with the package + * Fixing of some bad error handling + * More debug output for when people run into issues 0.9.0 - "Slick as snot" * Caching of contacts @@ -36,51 +156,99 @@ __changelog__ = '''\ * Hold down back to clear number * Standard about dialog * many more smaller fixes -''' +""" -__postinstall__ = '''#!/bin/sh +__postinstall__ = """#!/bin/sh -e -gtk-update-icon-cache /usr/share/icons/hicolor -''' +gtk-update-icon-cache -f /usr/share/icons/hicolor +""" +__preremove__ = """#!/bin/sh -e -if __name__ == "__main__": +python /usr/lib/dialcentral/alarm_handler.py -d || true +""" + + +def find_files(path): + for root, dirs, files in os.walk(path): + for file in files: + if file.startswith("src-"): + fileParts = file.split("-") + unused, relPathParts, newName = fileParts[0], fileParts[1:-1], fileParts[-1] + assert unused == "src" + relPath = os.sep.join(relPathParts) + yield relPath, file, newName + + +def unflatten_files(files): + d = {} + for relPath, oldName, newName in files: + if relPath not in d: + d[relPath] = [] + d[relPath].append((oldName, newName)) + return d + + +def build_package(distribution): try: os.chdir(os.path.dirname(sys.argv[0])) except: pass - p = Py2deb(__appname__) + py2deb.Py2deb.SECTIONS = py2deb.SECTIONS_BY_POLICY[distribution] + p = py2deb.Py2deb(__appname__) p.description = __description__ + p.upgradeDescription = __changelog__.split("\n\n", 1)[0] p.author = __author__ p.mail = __email__ p.license = "lgpl" - p.depends = "python2.5, python2.5-gtk2" - # p.section = "user/utilities" - p.section = "user/communication" + 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([ + ]) + p.section = { + "debian": "comm", + "chinook": "communication", + "diablo": "user/network", + "fremantle": "user/network", + "mer": "user/network", + }[distribution] p.arch = "all" p.urgency = "low" - p.distribution = "chinook diablo" - p.repository = "extras-devel" + p.distribution = "chinook diablo fremantle mer debian" + p.repository = "extras" p.changelog = __changelog__ p.postinstall = __postinstall__ - p.icon="26x26-dialcentral.png" + p.preremove = __preremove__ + p.icon = { + "debian": "26x26-dialcentral.png", + "chinook": "26x26-dialcentral.png", + "diablo": "26x26-dialcentral.png", + "fremantle": "64x64-dialcentral.png", # Fremantle natively uses 48x48 + "mer": "64x64-dialcentral.png", + }[distribution] p["/usr/bin"] = [ "dialcentral.py" ] - p["/usr/lib/dialcentral"] = [ - "__init__.py", - "dialer.py", - "dialcentral.glade", - "browser_emu.py", - "file_backend.py", - "evo_backend.py", - "gc_backend.py", - "gv_backend.py", - "gc_views.py", - "gv_views.py", - "null_views.py", - "gtk_toolbox.py" - ] + for relPath, files in unflatten_files(find_files(".")).iteritems(): + fullPath = "/usr/lib/dialcentral" + if relPath: + fullPath += os.sep+relPath + p[fullPath] = list( + "|".join((oldName, newName)) + for (oldName, newName) in files + ) p["/usr/share/applications/hildon"] = ["dialcentral.desktop"] p["/usr/share/icons/hicolor/26x26/hildon"] = ["26x26-dialcentral.png|dialcentral.png"] p["/usr/share/icons/hicolor/64x64/hildon"] = ["64x64-dialcentral.png|dialcentral.png"] @@ -88,6 +256,27 @@ if __name__ == "__main__": print p print p.generate( - __version__, __build__, changelog=__changelog__, - tar=True, dsc=True, changes=True, build=False, src=True + version="%s-%s" % (__version__, __build__), + changelog=__changelog__, + build=False, + tar=True, + changes=True, + dsc=True, ) + print "Building for %s finished" % distribution + + +if __name__ == "__main__": + if len(sys.argv) > 1: + try: + import optparse + except ImportError: + optparse = None + + if optparse is not None: + parser = optparse.OptionParser() + (commandOptions, commandArgs) = parser.parse_args() + else: + commandArgs = None + commandArgs = ["diablo"] + build_package(commandArgs[0])