diff options
author | Bernard Normier <bernard@zeroc.com> | 2019-10-29 14:11:27 -0400 |
---|---|---|
committer | Joe George <joe@zeroc.com> | 2021-02-01 16:46:20 -0500 |
commit | 9f22d436c536c18df0e3c434162048490c80191f (patch) | |
tree | da5257cb9435bcdbe3614e4f758e36244cac5ed0 /scripts/IcePatch2Util.py | |
parent | Fixed doxygen warnings and updated configs. (diff) | |
download | ice-9f22d436c536c18df0e3c434162048490c80191f.tar.bz2 ice-9f22d436c536c18df0e3c434162048490c80191f.tar.xz ice-9f22d436c536c18df0e3c434162048490c80191f.zip |
Remove IcePatch2 (#602)
Removed IcePatch2 and the corresponding distrib and patching features in IceGrid and IceGridGUI.
Diffstat (limited to 'scripts/IcePatch2Util.py')
-rw-r--r-- | scripts/IcePatch2Util.py | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/scripts/IcePatch2Util.py b/scripts/IcePatch2Util.py deleted file mode 100644 index 6b12ecccc76..00000000000 --- a/scripts/IcePatch2Util.py +++ /dev/null @@ -1,29 +0,0 @@ -# -# Copyright (c) ZeroC, Inc. All rights reserved. -# - -from Util import * - -class IcePatch2Calc(ProcessFromBinDir, ProcessIsReleaseOnly, Process): - - def __init__(self, *args, **kargs): - Process.__init__(self, exe="icepatch2calc", mapping=Mapping.getByName("cpp"), *args, **kargs) - - def getExe(self, current): - return self.exe + "_32" if current.config.buildPlatform == "ppc" else self.exe - -class IcePatch2Client(ProcessFromBinDir, ProcessIsReleaseOnly, Process): - - def __init__(self, *args, **kargs): - Process.__init__(self, exe="icepatch2client", mapping=Mapping.getByName("cpp"), *args, **kargs) - - def getExe(self, current): - return self.exe + "_32" if current.config.buildPlatform == "ppc" else self.exe - -class IcePatch2Server(ProcessFromBinDir, ProcessIsReleaseOnly, Process): - - def __init__(self, *args, **kargs): - Process.__init__(self, exe="icepatch2server", mapping=Mapping.getByName("cpp"), *args, **kargs) - - def getExe(self, current): - return self.exe + "_32" if current.config.buildPlatform == "ppc" else self.exe |