From 0cf30bfe0de4e49b2b5840a690cfcf348d48fe64 Mon Sep 17 00:00:00 2001 From: Jere Malinen Date: Sun, 13 Jun 2010 12:53:51 +0300 Subject: [PATCH] Improved description (and changed build). build changed from 1 to 4 because there were attempts to remove /etc/event.d/netstoryd when uninstalling, but apparently that isn't properly possible. --- buid_netstory.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/buid_netstory.py b/buid_netstory.py index 7120979..b559be6 100644 --- a/buid_netstory.py +++ b/buid_netstory.py @@ -18,8 +18,9 @@ if __name__ == "__main__": pass print p=py2deb.Py2deb("netstory") #This is the package name and MUST be in lowercase! (using e.g. "mClock" fails miserably...) - p.description="This utility consists of two parts: "\ - "a daemon that records network data counters in background and "\ + p.description="Record and view your home network data counter periodically.\n"\ + "This utility consists of two parts:\n"\ + "a daemon that records network data counters in background and\n"\ "an GUI application to view hourly, daily, weekly and monthly net traffics." p.author="Jere Malinen" p.mail="jeremmalinen@gmail.com" @@ -46,9 +47,9 @@ if __name__ == "__main__": rm -f /opt/netstory/*.pyc /opt/netstory/*.pyo """ #Set here your pre remove script version = "0.1.0" #Version of your software, e.g. "1.2.0" or "0.8.2" - 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. + build = "4" #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. #Text with changelog information to be displayed in the package "Details" tab of the Maemo Application Manager - changeloginformation = "Initial release." + changeloginformation = 'Removed "manual" post remove of /etc/event.d/netstoryd.' 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 #Thanks to DareTheHair from talk.maemo.org for this snippet that recursively builds the file list for root, dirs, files in os.walk(dir_name): -- 1.7.9.5