Removing Mer support
[gc-dialer] / support / builddeb.py
index 0973f94..f9e1a27 100755 (executable)
@@ -30,6 +30,59 @@ __email__ = "eopage@byu.net"
 __version__ = constants.__version__
 __build__ = constants.__build__
 __changelog__ = """
+1.1.8
+* Bugfix: Error when parsing time when the user's locale didn't match googles
+1.1.7
+* Adjusting how numbers are normalized
+1.1.6
+* Added back in separate call/sms buttons
+1.1.5
+* Bugfix from 1.1.2: Was not displaying errors in SMS window
+1.1.4
+* Bugfix from 1.1.0: Scroll to bottom when removing a recipient
+* Bugfix from 1.1.3: Maemo 5 fix was incomplete
+1.1.3
+* Broadcast SMS: Increased the spacing between contacts
+* SMS: Added Ctrl+h shortcut to hide the window for adding more recipients to the SMS
+* Bugfix from 1.1.0: In "Messages" if "Texts" was selected, you saw nothing
+* Bugfix from 1.1.0: Issues with SMS window on Maemo
+* Bugfix from 1.1.0: Maemo 5 SMS dialog is not working
+1.1.2
+* Broadcast SMS: Added names to the rows
+* Broadcast SMS: Disabled changing number when there weren't numbers to change to
+* SMS: Reformatted the SMS window a tad
+* SMS: Added a proper non-modal error box to the SMS window
+* Bugfix from 1.1.0: hildonizing the SMS Entry Window
+* Bugfix from 1.1.0: Race condition in creating SMS Entry Window
+1.1.1
+* SMS: Added icons to the SMS window buttons
+* SMS: When selecting a number in the history tab, the call history is now shown in the SMS window
+* Bugfix from 1.1.0: "Letters Left:" is now "Letters:"
+* Bugfix from 1.1.0: When looking for alt numbers, there were issues
+1.1.0
+* Dialpad: Support for "+" in numbers, including on Dialpad by holding "0".  I'm hoping this makes both international and Gizmo users happier
+* SMS: Added support for multi-part SMS messages (just like the GV site)
+* SMS: Switching the sms entry dialog to a window with some key combos
+* Broadcast SMS: Added it
+* Contacts: Unofficial support for importing of contacts files through Ctrl+i
+* Bugfixes carried over from TOR work
+
+1.0.10
+* Renamed Recent to History
+* Sped up GV contacts
+* Remember if fullscreen (Ctrl+enter) in settings
+* Added Ctrl+w and Ctrl+q to quit
+* Added a filter for the Call History
+* Error logging for notifications
+* Bugfix: Messages tab not showing all of a message in Fremantle
+* Bugfix: When selecting a message, the wrong message is displayed in the Send SMS dialog
+* Bugfix: Removing some false positives for notification
+
+1.0.9
+* Added .deb packages for generic linux
+* UI Tweak: Added an app menu
+* Bug Fix: "Unable to Complete Calls Out" due to google.com/voice/m issues
+
 1.0.8
 * Sped up login time by delay loading contact list
 * Sped up login when you do not have a cookie file (first launch)
@@ -208,6 +261,7 @@ __changelog__ = """
 __postinstall__ = """#!/bin/sh -e
 
 gtk-update-icon-cache -f /usr/share/icons/hicolor
+rm -f ~/.dialcentral/notifier.log
 rm -f ~/.dialcentral/dialcentral.log
 """
 
@@ -248,7 +302,7 @@ def build_package(distribution):
        p.prettyName = constants.__pretty_app_name__
        p.description = __description__
        p.bugTracker = "https://bugs.maemo.org/enter_bug.cgi?product=Dialcentral"
-       #p.upgradeDescription = __changelog__.split("\n\n", 1)[0]
+       p.upgradeDescription = __changelog__.split("\n\n", 1)[0]
        p.author = __author__
        p.mail = __email__
        p.license = "lgpl"
@@ -261,33 +315,27 @@ def build_package(distribution):
        maemoSpecificDepends = ", python-osso | python2.5-osso, python-hildon | python2.5-hildon"
        p.depends += {
                "debian": ", python-glade2",
-               "chinook": maemoSpecificDepends,
-               "diablo": maemoSpecificDepends,
+               "diablo": maemoSpecificDepends + ", python2.5-conic",
                "fremantle": maemoSpecificDepends + ", python-glade2, python-alarm",
-               "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 fremantle mer debian"
+       p.distribution = "diablo fremantle debian"
        p.repository = "extras"
        p.changelog = __changelog__
        p.postinstall = __postinstall__
        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" ]
        for relPath, files in unflatten_files(find_files(".")).iteritems():
@@ -303,16 +351,28 @@ def build_package(distribution):
        p["/usr/share/icons/hicolor/64x64/hildon"] = ["64x64-dialcentral.png|dialcentral.png"]
        p["/usr/share/icons/hicolor/scalable/hildon"] = ["scale-dialcentral.png|dialcentral.png"]
 
-       print p
-       print p.generate(
-               version="%s-%s" % (__version__, __build__),
-               changelog=__changelog__,
-               build=True,
-               tar=True,
-               changes=True,
-               dsc=True,
-       )
-       print "Building for %s finished" % distribution
+       if distribution == "debian":
+               print p
+               print p.generate(
+                       version="%s-%s" % (__version__, __build__),
+                       changelog=__changelog__,
+                       build=True,
+                       tar=False,
+                       changes=False,
+                       dsc=False,
+               )
+               print "Building for %s finished" % distribution
+       else:
+               print p
+               print p.generate(
+                       version="%s-%s" % (__version__, __build__),
+                       changelog=__changelog__,
+                       build=False,
+                       tar=True,
+                       changes=True,
+                       dsc=True,
+               )
+               print "Building for %s finished" % distribution
 
 
 if __name__ == "__main__":