From 2dd56efa6314bf63e08dd8dedfefbe3c009b710d Mon Sep 17 00:00:00 2001 From: Nick Bolton Date: Mon, 20 Oct 2014 16:11:06 +0100 Subject: [PATCH 1/5] Test 3 --- test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test b/test index d8263ee9..e440e5c8 100644 --- a/test +++ b/test @@ -1 +1 @@ -2 \ No newline at end of file +3 \ No newline at end of file From 91423c9c978f632b83b2c23e49116dd507ee1cde Mon Sep 17 00:00:00 2001 From: Nick Bolton Date: Mon, 20 Oct 2014 17:45:17 +0100 Subject: [PATCH 2/5] ignored build files. --- .gitignore | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/.gitignore b/.gitignore index 4ede8306..05179290 100644 --- a/.gitignore +++ b/.gitignore @@ -17,3 +17,22 @@ #doxygen /doc/doxygen /doc/doxygen.cfg +/build +/ext/cryptopp562 +/ext/gmock-1.6.0 +/ext/gtest-1.6.0 +/lib +/src/gui/ui_SetupWizardBase.h +/src/gui/Makefile +/src/gui/Makefile.Debug +/src/gui/Makefile.Release +/src/gui/object_script.synergy.Debug +/src/gui/object_script.synergy.Release +/src/gui/ui_AboutDialogBase.h +/src/gui/ui_ActionDialogBase.h +/src/gui/ui_HotkeyDialogBase.h +/src/gui/ui_MainWindowBase.h +/src/gui/ui_ScreenSettingsDialogBase.h +/src/gui/ui_ServerConfigDialogBase.h +/src/gui/ui_SettingsDialogBase.h +/src/gui/tmp From ec3a9c3f1f30fd8d75ca171d1f17deae6e0b8063 Mon Sep 17 00:00:00 2001 From: Nick Bolton Date: Mon, 20 Oct 2014 17:46:11 +0100 Subject: [PATCH 3/5] added getGitRevision function to get current git revision. --- ext/toolchain/commands1.py | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/ext/toolchain/commands1.py b/ext/toolchain/commands1.py index ef492f2b..d245c55b 100644 --- a/ext/toolchain/commands1.py +++ b/ext/toolchain/commands1.py @@ -941,6 +941,24 @@ class InternalCommands: print self.find_revision() def find_revision(self): + return self.getGitRevision() + + def getGitRevision(self): + if sys.version_info < (2, 4): + raise Exception("Python 2.4 or greater required.") + else: + p = subprocess.Popen( + ["git", "log", "--pretty=format:%h", "-n", "1"], + stdout=subprocess.PIPE, stderr=subprocess.PIPE) + + stdout, stderr = p.communicate() + + if p.returncode != 0: + raise Exception('Could not get revision - git info failed with code: ' + str(p.returncode)) + + return stdout + + def find_revision_svn(self): if sys.version_info < (2, 4): stdout = commands.getoutput('svn info') else: @@ -1403,7 +1421,7 @@ class InternalCommands: def dist_name_rev(self, type): # find the version number (we're puting the rev in after this) pattern = '(.*\d+\.\d+\.\d+)(.*)' - replace = '\g<1>-r' + self.find_revision() + '\g<2>' + replace = '\g<1>-' + self.find_revision() + '\g<2>' return re.sub(pattern, replace, self.dist_name(type)) def dist_usage(self): From 3b3cec4040468f705712b10de06ff927dfb0216c Mon Sep 17 00:00:00 2001 From: Nick Bolton Date: Mon, 20 Oct 2014 19:06:25 +0100 Subject: [PATCH 4/5] changed svn export to git export --- ext/toolchain/commands1.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/toolchain/commands1.py b/ext/toolchain/commands1.py index d245c55b..6b18fcf0 100644 --- a/ext/toolchain/commands1.py +++ b/ext/toolchain/commands1.py @@ -1192,7 +1192,7 @@ class InternalCommands: shutil.rmtree(exportPath) print 'Exporting repository to: ' + exportPath - err = os.system('svn export . ' + exportPath) + err = os.system('git archive master | tar -x -C ' + exportPath) if err != 0: raise Exception('Repository export failed: ' + str(err)) From 8b4a3a8b920b2c7850c8a1657ef23559b29825f6 Mon Sep 17 00:00:00 2001 From: Nick Bolton Date: Mon, 20 Oct 2014 19:26:57 +0100 Subject: [PATCH 5/5] created dist src export path --- ext/toolchain/commands1.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ext/toolchain/commands1.py b/ext/toolchain/commands1.py index 6b18fcf0..0540bcb4 100644 --- a/ext/toolchain/commands1.py +++ b/ext/toolchain/commands1.py @@ -1192,6 +1192,7 @@ class InternalCommands: shutil.rmtree(exportPath) print 'Exporting repository to: ' + exportPath + os.mkdir(exportPath) err = os.system('git archive master | tar -x -C ' + exportPath) if err != 0: raise Exception('Repository export failed: ' + str(err))