diff options
author | Mark Spruiell <mes@zeroc.com> | 2006-06-16 21:22:54 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2006-06-16 21:22:54 +0000 |
commit | ee346852ae1d2b06b8c13133214b71a056d409ba (patch) | |
tree | f371a3b84e89154a6b3a1f9966ec6fdcf4a1c114 /cpp/fixVersion.py | |
parent | Permissions verifiers aren't required anymore to start the registry. (diff) | |
download | ice-ee346852ae1d2b06b8c13133214b71a056d409ba.tar.bz2 ice-ee346852ae1d2b06b8c13133214b71a056d409ba.tar.xz ice-ee346852ae1d2b06b8c13133214b71a056d409ba.zip |
adding CA scripts
Diffstat (limited to 'cpp/fixVersion.py')
-rwxr-xr-x | cpp/fixVersion.py | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/cpp/fixVersion.py b/cpp/fixVersion.py index 7124cccfd4f..eb3deab45d5 100755 --- a/cpp/fixVersion.py +++ b/cpp/fixVersion.py @@ -172,13 +172,22 @@ if not patchIceE: ice_home = findSourceTree("ice", os.path.join("include", "IceUtil", "Config.h")) if ice_home: fileMatchAndReplace(os.path.join(ice_home, "include", "IceUtil", "Config.h"), - [("ICE_STRING_VERSION \"([0-9]*\.[0-9]*\.[0-9]*)\"", version), \ - ("ICE_INT_VERSION ([0-9]*)", intVersion(version))]) + [("ICE_STRING_VERSION \"([0-9]*\.[0-9]*\.[0-9]*)\"", version), \ + ("ICE_INT_VERSION ([0-9]*)", intVersion(version))]) fileMatchAndReplace(os.path.join(ice_home, "config", "Make.rules"), - [("VERSION[\t\s]*= ([0-9]*\.[0-9]*\.[0-9]*)", version), + [("VERSION[\t\s]*= ([0-9]*\.[0-9]*\.[0-9]*)", version), ("SOVERSION[\t\s]*= ([0-9]*)", soVersion(version))]) - + + fileMatchAndReplace(os.path.join(ice_home, "src", "ca", "import.py"), + [("Ice-([0-9]*\.[0-9]*\.[0-9]*)", version)]) + fileMatchAndReplace(os.path.join(ice_home, "src", "ca", "initca.py"), + [("Ice-([0-9]*\.[0-9]*\.[0-9]*)", version)]) + fileMatchAndReplace(os.path.join(ice_home, "src", "ca", "req.py"), + [("Ice-([0-9]*\.[0-9]*\.[0-9]*)", version)]) + fileMatchAndReplace(os.path.join(ice_home, "src", "ca", "sign.py"), + [("Ice-([0-9]*\.[0-9]*\.[0-9]*)", version)]) + fileMatchAllAndReplace(os.path.join(ice_home, "src", "Freeze", "freeze.dsp"), [("freeze([0-9][0-9])d?\.((dll)|(pdb))", soVersion(version))]) fileMatchAllAndReplace(os.path.join(ice_home, "src", "Glacier2", "glacier2.dsp"), |