From 3488f9c8d3f25d0341df7993798a12cff2c20334 Mon Sep 17 00:00:00 2001 From: rzaitov Date: Wed, 6 Nov 2013 18:18:09 +0400 Subject: [PATCH 1/2] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D0=BB?= =?UTF-8?q?=20=D1=81=D0=BA=D1=80=D0=B8=D0=BF=D1=82=20=D1=81=D0=B1=D0=BE?= =?UTF-8?q?=D1=80=D0=BA=D0=B8=20=D0=BF=D1=80=D0=BE=D0=B5=D0=BA=D1=82=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/MANIFEST | 74 ++++++++++++++++++++++++++++++++++++++++++++++++ scripts/build | 3 ++ scripts/setup.py | 16 +++++++++++ 3 files changed, 93 insertions(+) create mode 100644 scripts/MANIFEST create mode 100644 scripts/build create mode 100644 scripts/setup.py diff --git a/scripts/MANIFEST b/scripts/MANIFEST new file mode 100644 index 0000000..dcf94dc --- /dev/null +++ b/scripts/MANIFEST @@ -0,0 +1,74 @@ +# file GENERATED by distutils, do NOT edit +setup.py +CommandBuilders/CleanBuildCommandBuilder.py +CommandBuilders/CopyCommandBuilder.py +CommandBuilders/CreateBackupCommandBuilder.py +CommandBuilders/DeleteBackupCommandBuilder.py +CommandBuilders/InstallProfileCommandBuilder.py +CommandBuilders/MakeDirsCommandBuilder.py +CommandBuilders/PatchCsprojCommandBuilder.py +CommandBuilders/PatchInfoplistCommandBuilder.py +CommandBuilders/RemoveProjectCommandBuilder.py +CommandBuilders/RestoreBackupCommandBuilder.py +CommandBuilders/ShCommandBuilder.py +CommandBuilders/TestflightCommandBuilder.py +CommandBuilders/__init__.py +Core/FileContentProvider.py +Core/StepsRunner.py +Core/__init__.py +Core/LineConveyor/CommentRemover.py +Core/LineConveyor/MacroResolver.py +Core/LineConveyor/Stripper.py +Core/LineConveyor/TextConveyorPreprocessor.py +Core/LineConveyor/TextInclude.py +Core/LineConveyor/__init__.py +commands/CopyCommand.py +commands/CreateBackupCommand.py +commands/DeleteBackupCommand.py +commands/MakeDirsCommand.py +commands/PatchCsprojCommand.py +commands/PatchInfoPlistCommand.py +commands/RemoveProjectCommand.py +commands/RestoreBackupCommand.py +commands/ShCommand.py +commands/TestflightCommand.py +commands/ValueProvider.py +commands/__init__.py +commands/CleanBuildCommands/BuildCommand.py +commands/CleanBuildCommands/CleanBuildCommandBase.py +commands/CleanBuildCommands/CleanCommand.py +commands/CleanBuildCommands/__init__.py +parser/CleanBuildParser.py +parser/InstallProfileParser.py +parser/LineParser.py +parser/MakeDirsParser.py +parser/ShParser.py +parser/TestflightParser.py +parser/__init__.py +parser/BackupParser/CreateBackupArguments.py +parser/BackupParser/CreateBackupParser.py +parser/BackupParser/DeleteBackupParser.py +parser/BackupParser/RestoreBackupParser.py +parser/BackupParser/__init__.py +parser/CopyParser/CopyArguments.py +parser/CopyParser/CopyLineParser.py +parser/CopyParser/__init__.py +parser/InsideParser/InsideRemoveParser.py +parser/InsideParser/InsideSetParser.py +parser/InsideParser/__init__.py +parser/SettingsParser/PathParser.py +parser/SettingsParser/SettingsLineParser.py +parser/SettingsParser/SettingsMerger.py +parser/SettingsParser/SettingsParser.py +parser/SettingsParser/__init__.py +utils/BuildConfigProvider.py +utils/CsprojPatcher.py +utils/IncludeProcessor.py +utils/InfoPlistPatcher.py +utils/MacroProcessor.py +utils/SlnPatcher.py +utils/TestflightPublisher.py +utils/__init__.py +utils/SettingsProvider/CmdArgsOverriderSettingsProvider.py +utils/SettingsProvider/FromFileSettingsProvider.py +utils/SettingsProvider/__init__.py diff --git a/scripts/build b/scripts/build new file mode 100644 index 0000000..0f3fb6d --- /dev/null +++ b/scripts/build @@ -0,0 +1,3 @@ +#!/usr/bin/env bash + +python setup.py sdist \ No newline at end of file diff --git a/scripts/setup.py b/scripts/setup.py new file mode 100644 index 0000000..f6454a4 --- /dev/null +++ b/scripts/setup.py @@ -0,0 +1,16 @@ +from distutils.core import setup + +setup( + name = 'TouchinBuild', + version = '0.0.10', + packages = ['Core', 'Core.LineConveyor', + 'utils', 'utils.SettingsProvider', + 'parser', 'parser.CopyParser', 'parser.BackupParser', 'parser.InsideParser', 'parser.SettingsParser', + 'commands', 'commands.CleanBuildCommands', + 'CommandBuilders'], + url = 'http://touchin.ru', + license = '', + author = 'Rustam Zaitov', + author_email = 'rustam.zaitov@touchin.ru', + description = 'Build tool for Touchin' +) From 8b02027bf2ffb7fd98adaba9bbbd51754d0e2b30 Mon Sep 17 00:00:00 2001 From: rzaitov Date: Wed, 6 Nov 2013 19:38:12 +0400 Subject: [PATCH 2/2] =?UTF-8?q?=D1=80=D0=B5=D0=B0=D0=BB=D0=B7=D0=BE=D0=B2?= =?UTF-8?q?=D0=B0=D0=BB=20=D1=81=D0=BE=D0=B7=D0=B4=D0=B0=D0=BD=D0=B8=D0=B5?= =?UTF-8?q?=20=D0=B0=D1=80=D1=85=D0=B8=D0=B2=D0=B0=20=D0=B4=D0=BB=D1=8F=20?= =?UTF-8?q?=D1=80=D0=B0=D1=81=D0=BF=D1=80=D0=BE=D1=81=D1=82=D1=80=D0=B0?= =?UTF-8?q?=D0=BD=D0=B5=D0=BD=D0=B8=D1=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/MANIFEST | 1 + scripts/README.txt | 1 + scripts/runbuild | 3 +++ scripts/setup.py | 13 ++++++------- 4 files changed, 11 insertions(+), 7 deletions(-) create mode 100644 scripts/README.txt create mode 100644 scripts/runbuild diff --git a/scripts/MANIFEST b/scripts/MANIFEST index dcf94dc..630d501 100644 --- a/scripts/MANIFEST +++ b/scripts/MANIFEST @@ -1,4 +1,5 @@ # file GENERATED by distutils, do NOT edit +README.txt setup.py CommandBuilders/CleanBuildCommandBuilder.py CommandBuilders/CopyCommandBuilder.py diff --git a/scripts/README.txt b/scripts/README.txt new file mode 100644 index 0000000..e666648 --- /dev/null +++ b/scripts/README.txt @@ -0,0 +1 @@ +see http://touchin.ru \ No newline at end of file diff --git a/scripts/runbuild b/scripts/runbuild new file mode 100644 index 0000000..0f3fb6d --- /dev/null +++ b/scripts/runbuild @@ -0,0 +1,3 @@ +#!/usr/bin/env bash + +python setup.py sdist \ No newline at end of file diff --git a/scripts/setup.py b/scripts/setup.py index f6454a4..c51cdf6 100644 --- a/scripts/setup.py +++ b/scripts/setup.py @@ -1,16 +1,15 @@ from distutils.core import setup -setup( - name = 'TouchinBuild', - version = '0.0.10', - packages = ['Core', 'Core.LineConveyor', +setup(name= 'TouchinBuild', + version= '0.0.10', + packages= ['Core', 'Core.LineConveyor', 'utils', 'utils.SettingsProvider', 'parser', 'parser.CopyParser', 'parser.BackupParser', 'parser.InsideParser', 'parser.SettingsParser', 'commands', 'commands.CleanBuildCommands', 'CommandBuilders'], url = 'http://touchin.ru', - license = '', + license = 'All rights reserved.', + description = 'Build tool for Touchin', author = 'Rustam Zaitov', - author_email = 'rustam.zaitov@touchin.ru', - description = 'Build tool for Touchin' + author_email = 'rustam.zaitov@touchin.ru' )