Fixed bugtracker URL.
[netstory] / buid_netstory.py
index 7120979..13f10ff 100644 (file)
@@ -18,8 +18,9 @@ if __name__ == "__main__":
         pass\r
     print\r
     p=py2deb.Py2deb("netstory")   #This is the package name and MUST be in lowercase! (using e.g. "mClock" fails miserably...)\r
-    p.description="This utility consists of two parts: "\\r
-                  "a daemon that records network data counters in background and "\\r
+    p.description="Record and view your home network data counter periodically.\n"\\r
+                  "This utility consists of two parts:\n"\\r
+                  "a daemon that records network data counters in background and\n"\\r
                   "an GUI application to view hourly, daily, weekly and monthly net traffics."\r
     p.author="Jere Malinen"\r
     p.mail="jeremmalinen@gmail.com"\r
@@ -32,7 +33,7 @@ if __name__ == "__main__":
     p.urgency="low"           #not used in maemo onl for deb os\r
     p.distribution="fremantle"\r
     p.repository="extras-devel"\r
-    p.xsbc_bugtracker="http://bugs.maemo.org"\r
+    p.xsbc_bugtracker="https://garage.maemo.org/tracker/?atid=5917&group_id=1670&func=browse"\r
     p.postinstall="""#!/bin/sh\r
         chmod +x /opt/netstory/netstory.py /opt/netstory/netstoryd.py  || echo "Warning: chmod failed. The package might not work properly"\r
         start netstoryd || echo "Warning: Starting the netstory daemon failed. The package might not work properly."\r
@@ -46,9 +47,9 @@ if __name__ == "__main__":
         rm -f /opt/netstory/*.pyc /opt/netstory/*.pyo\r
         """ #Set here your pre remove script\r
     version = "0.1.0"         #Version of your software, e.g. "1.2.0" or "0.8.2"\r
-    build = "1"              #Build number, e.g. "1" for the first build of this version of your software. Increment for later re-builds of the same version of your software.\r
+    build = "5"              #Build number, e.g. "1" for the first build of this version of your software. Increment for later re-builds of the same version of your software.\r
                            #Text with changelog information to be displayed in the package "Details" tab of the Maemo Application Manager\r
-    changeloginformation = "Initial release." \r
+    changeloginformation = 'Fixed bugtracker URL.'\r
     dir_name = "src"          #Name of the subfolder containing your package source files (e.g. usr\share\icons\hicolor\scalable\myappicon.svg, usr\lib\myapp\somelib.py). We suggest to leave it named src in all projects and will refer to that in the wiki article on maemo.org\r
     #Thanks to DareTheHair from talk.maemo.org for this snippet that recursively builds the file list \r
     for root, dirs, files in os.walk(dir_name):\r