Changeset 297
- Timestamp:
- Feb 7, 2012, 9:28:57 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified rpm/trunk/scripts/warpin-conflicts.cmd ¶
r199 r297 13 13 * Author: Dmitriy Kuminov 14 14 * 15 * Version: 1.2 - 2012-02-08 16 * - Use WIC -p to get the Package version. This should solve infamous random 17 * errors when accessing the INI file directly from REXX. 15 18 * Version: 1.1 - 2011-09-08 16 19 * - Skip incomplete IDs (they will not match anything). … … 57 60 Main: procedure expose (Globals) 58 61 62 G.Args = strip(G.Args) 59 63 if (G.Args \== '') then do 60 64 ver = GetPkgVersion(G.Args) … … 105 109 parse var aPkgId v1'\'a1'\'p1 106 110 if (v1 == '' | a1 == '' | p1 == '') then return '' 111 ver = '' 107 112 WarpInDir = strip(SysIni('USER', 'WarpIN', 'Path'), 'T', '0'x) 108 113 if (WarpInDir \== '') then do 114 /* first, check if we have WIC that supports -p (1.0.16+) */ 115 wic_ver = '' 116 wic_exe = stream(WarpInDir'\WIC.EXE', 'C', 'QUERY EXISTS') 117 if (wic_exe \== '') then do 118 temp_dir = value('TMP',, 'OS2ENVIRONMENT') 119 if (temp_dir = '') then temp_dir = value('TEMP',, 'OS2ENVIRONMENT') 120 temp_file = SysTempFileName(temp_dir'\wic?????.tmp') 121 call SysSetExtLibPath WarpInDir';%BEGINLIBPATH%', 'B' 122 address 'cmd' wic_exe '-h 2>nul 1>'temp_file 123 if (rc == 0) then do 124 str = linein(temp_file) 125 call lineout temp_file 126 parse var str 'wic V'wic_ver . 127 if (wic_ver >= '1.0.16') then do 128 address 'cmd' wic_exe '-p "'aPkgId'" 2>nul 1>'temp_file 129 if (rc == 0) then do 130 str = linein(temp_file) 131 call lineout temp_file 132 parse var str v2'\'a2'\'p2'\'v2'='ver 133 end 134 else if (rc == -1 /* not found */) then rc = 0 135 end 136 else wic_ver = '' 137 end 138 call SysFileDelete temp_file 139 if (wic_ver \= '' & rc == 0) then return ver 140 if (rc == 5636) then do 141 say; say 'ERROR:'; say 142 say 'Failed to query the WarpIn database because the WarpIn application' 143 say 'is already running.'; say 144 say 'Please close the WarpIn application and try again.'; say 145 exit 5 146 end 147 else if (rc \= 0) then do 148 say; say 'ERROR:'; say 149 say 'Failed to access the WarpIn database. Executing the program'; say 150 say ' 'wic_exe; say 151 say 'failed with exit code 'rc'. Please make sure that the WarpIn' 152 say 'application is installed correctly and try again.'; say 153 exit 5 154 end 155 end 156 /* sad, but we failed with WIC and have to use the old unsatable method... */ 109 157 rc = SysFileTree(WarpInDir'\DATBAS_?.INI', 'inis', 'FO') 110 158 if (rc == 0) then do
Note:
See TracChangeset
for help on using the changeset viewer.