From 1d906ce50620ceac47963cdcb74453204f284bcb Mon Sep 17 00:00:00 2001 From: epage Date: Sat, 24 Oct 2009 19:53:49 +0000 Subject: [PATCH] version bump git-svn-id: file:///svnroot/gc-dialer/trunk@565 c39d3808-3fe2-4d86-a59f-b7f623ee9f21 --- Makefile | 2 ++ src/constants.py | 2 +- support/builddeb.py | 4 ---- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 9721ca8..db5f961 100644 --- a/Makefile +++ b/Makefile @@ -39,6 +39,7 @@ test: $(OBJ) package: $(OBJ) rm -Rf $(BUILD_PATH) + mkdir -p $(BUILD_PATH)/generic cp $(SOURCE_PATH)/constants.py $(BUILD_PATH)/generic cp $(SOURCE_PATH)/$(PROJECT_NAME).py $(BUILD_PATH)/generic @@ -52,6 +53,7 @@ package: $(OBJ) cp support/builddeb.py $(BUILD_PATH)/generic cp support/py2deb.py $(BUILD_PATH)/generic cp support/fake_py2deb.py $(BUILD_PATH)/generic + mkdir -p $(BUILD_PATH)/chinook cp -R $(BUILD_PATH)/generic/* $(BUILD_PATH)/chinook cd $(BUILD_PATH)/chinook ; python builddeb.py chinook diff --git a/src/constants.py b/src/constants.py index e7dd80a..da323ef 100644 --- a/src/constants.py +++ b/src/constants.py @@ -3,7 +3,7 @@ import os __pretty_app_name__ = "DialCentral" __app_name__ = "dialcentral" __version__ = "1.0.8" -__build__ = 1 +__build__ = 2 __app_magic__ = 0xdeadbeef _data_path_ = os.path.join(os.path.expanduser("~"), ".dialcentral") _user_settings_ = "%s/settings.ini" % _data_path_ diff --git a/support/builddeb.py b/support/builddeb.py index 0045f7a..842c30c 100755 --- a/support/builddeb.py +++ b/support/builddeb.py @@ -1,9 +1,5 @@ #!/usr/bin/python2.5 -""" -@bug In update desrcription stuff -""" - import os import sys -- 1.7.9.5