More .deb work
[quicknote] / support / builddeb.py
index cefd602..0b375dc 100755 (executable)
@@ -21,9 +21,17 @@ __email__ = "n800@axique.net"
 __version__ = constants.__version__
 __build__ = constants.__build__
 __changelog__ = """
+0.7.9
+ * UI Tweak: Removed "New Note..." due to weirdness and duplicated behavior
+ * Bugfix: Move To Category
+
 0.7.8
  * Spell checking
  * Fixing the application title
+ * Fremantle Support
+ * Ctrl+i and Ctrl+o to zoom in/out the interface
+ * Ctrl+enter to fullscreen app
+ * Ctrl+l to copy to clipboard the application debug log
 
 0.7.7
  * Slight modifications to the note history and SQL dialogs
@@ -94,10 +102,10 @@ def build_package(distribution):
        p.prettyName = constants.__pretty_app_name__
        p.description = __description__
        p.bugTracker = "https://bugs.maemo.org/enter_bug.cgi?product=quicknote"
-       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"
+       p.license = "gpl"
        p.depends = ", ".join([
                "python2.6 | python2.5",
                "python-gtk2 | python2.5-gtk2",
@@ -112,7 +120,7 @@ def build_package(distribution):
                "mer": maemoSpecificDepends + ", python-glade2",
        }[distribution]
        p.section = {
-               "debian": "accessories",
+               "debian": "editors",
                "chinook": "accessories",
                "diablo": "user/office",
                "fremantle": "user/office",
@@ -159,7 +167,7 @@ def build_package(distribution):
        print p.generate(
                version="%s-%s" % (__version__, __build__),
                changelog=__changelog__,
-               build=False,
+               build=True,
                tar=True,
                changes=True,
                dsc=True,