Changeset 1287
- Timestamp:
- Nov 21, 2008, 3:08:11 PM (16 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/ReleaseEdit.cmd ¶
r1281 r1287 3 3 * 4 4 * ReleaseEdit: a program which will set the version number 5 * 5 * and the date and time of a FM/2 release 6 6 * 7 7 * Usage: 8 * ReleaseEdit <version> <filename>9 * 10 * 11 * 12 * and <filename> is ONE of the files (i.e. no wildcards)13 * 14 * 8 * ReleaseEdit <version> <relative-filename> 9 * 10 * where <version> is x.y.z 11 * 12 * and <relative-filename> is ONE of the files (i.e. no wildcards) 13 * which need a version number and/or date/time: 14 * *.def, file_id.diz, dll\version.h, warpin\fm2.wis 15 15 * 16 16 * Change log: 17 * 18 Nov 08 JBS Ticket 297: Various build improvements/corrections 18 * - Use SysTempFilename instead of hard-coded temp file name 19 * - Commented out support for changing version in FM2.WIS 17 * 18 Nov 08 JBS Ticket 297: Various build improvements/corrections 18 * - Use SysTempFilename instead of hard-coded temp file name 19 * - Removed support for changing version in FM2.WIS (not needed) 20 * 21 Nov 08 JBS Ticket 297: Various build improvements/corrections 21 * - Changed code for option description lines in DEF files. 22 * Instead of reading the current lines, they are recontructed 23 * scratch. The data for these lines is: 24 * - provided as a parameter (version/revision) 25 * - read from a repository file, option_descriptions.txt 26 * - all fields read from have default values 27 * - support for environment variables 28 * - edits length of all fields in option description 29 * - added support for changing copyright years in: 30 * - dll\copyright.c 31 * - dll\fm3res.rc 32 * - dll\fm3res.dlg (About box) 33 * - improved error handling: tmp file renamed back to deleted file 34 * - improved "usage" routine 20 35 * 21 36 */ … … 31 46 */ 32 47 48 /* 49 sed_separator: 50 - used only for SED edits of DEF file descriptions 51 - MUST be a character not found in ANY DEF file description! 52 - MUST be a character acceptable to SED as a separator 53 */ 54 sed_separator = '&' 55 56 /* Process parameters */ 33 57 parse arg ver file . 34 58 if ver = '' | file = '' then 35 call Usage 0/* and exit */59 call Usage /* and exit */ 36 60 else if stream(file, 'c', 'query exists') = '' then 37 call Usage 2 /* and exit */ 61 call Usage /* and exit */ 62 /* Set extension, if none set it to uppercase(file) */ 63 ext = substr(translate(file), lastpos('.', file) +1) 38 64 parse var ver major '.' minor '.' CSDLevel 39 65 if CSDlevel = '' then 40 66 CSDlevel = 0 67 68 /* Set fixed strings */ 69 globals = 'repository copyright_year_marker copyright_year_marker_len' 70 repository = 'option_descriptions.txt' 41 71 mkstr_makefile = 'DLL\INTERNAL\MAKEFILE' 42 72 warpin_makefile = 'WARPIN\MAKEFILE' 43 warpin_db_ver = (major + 0) || '\\' || (minor + 0) || '\\' || (CSDlevel + 0)44 warpin_makefile_ver = major || '-' || minor || '-' || CSDlevel45 ext = substr(translate(file), lastpos('.', file) +1) /* if no extension, ext <-- uppercase(file) */46 73 parse value date('s') with year 5 month 7 day 74 last_year = year - 1 75 76 /* Prepare temporary file */ 47 77 call RxFuncAdd 'SysTempFilename', 'REXXUTIL', 'SysTempFilename' 48 78 tmpfile = SysTempFilename('redittmp.???') … … 53 83 exit 1 54 84 end 55 'del' file 85 if wordpos(ext, 'C RC DLG') = 0 then 86 'del' file 87 88 /* Process the request */ 56 89 select 57 90 when ext = 'DEF' then 58 91 do 59 'sed -r -e "/Copyright/s/(Copyright.*20[0-9][0-9], )[0-9]*/\1' || year || '/g" -e "/desc/s/(SLAInc:).*(#@##1## )[0-9/]+ [0-9:]+/\1' || ver || '\2' || month || '\/' || day || '\/' || year right(major, 2, '0') || ':' || right(minor, 2, '0') || ':' || right(CSDlevel, 2, '0') || '/" ' || tmpfile || ' >' file 92 copyright_year_marker = 'copyright-year' 93 copyright_year_marker_len = length(copyright_year_marker) 94 95 vendor = GetFromRepository( 'vendor', 'The Netlabs FM/2 team', 31 ) 96 revision = ver 97 buildhost = GetFromRepository( 'buildhost', 'GKYBuild', 11 ) 98 asd_feature_id = GetFromRepository( 'asd_feature_id', '', 11 ) 99 language_code = GetFromRepository( 'language_code', 'EN', 4 ) 100 country_code = GetFromRepository( 'country_code', 'US', 4 ) 101 build = GetFromRepository( 'build', '0', 7 ) 102 processor_type = GetFromRepository( 'processor_type', 'U', 1 ) 103 fixpack_ver = GetFromRepository( 'fixpack_ver', '', 11 ) 104 description = GetFromRepository( 'desc.' || left(file, pos('.', file) - 1), '', 79 ) 105 call stream repository, 'c', 'close' 106 107 option_description = '@#' || vendor || ':' || revision || '#@##1## ' || , 108 month || '/' || day || '/' || year || ' ' || , /* or day month year? */ 109 right(major, 2, '0') || ':' || right(minor, 2, '0') || ':' || right(CSDlevel, 2, '0') || , 110 copies(' ', 6) || buildhost || ':' || asd_feature_id || ':' || , 111 language_code || ':' || country_code || ':' || build || ':' || , 112 processor_type || ':' || fixpack_ver || '@@' || description 113 do forever 114 p = pos(copyright_year_marker, option_description) 115 if p = 0 then 116 leave 117 else 118 if p = 1 then 119 option_description = year || substr(option_description, p + copyright_year_marker_len) 120 else 121 if p + copyright_year_marker_len >= length(option_description) then 122 option_description = left(option_description, p - 1) || year 123 else 124 option_description = left(option_description, p - 1) || year || substr(option_description, p + copyright_year_marker_len) 125 end 126 option_description = "option description '" || option_description || "'" 127 'sed -r -e "/option description/s' || sed_separator || '.*' || sed_separator || option_description || sed_separator || '" ' || tmpfile || ' >' file 128 end 129 when wordpos(ext, 'C RC DLG') > 0 then 130 do 131 signal off error 132 'grep -E "Copyright.*' || last_year || '[^,]" ' || file || ' >nul && del ' || file || ' && sed -r -e "/Copyright.*' || last_year || '[^,]/s/' || last_year || '/' || year || '/" ' || tmpfile || ' >' file 133 signal on error 60 134 end 61 135 when ext = 'H' then … … 73 147 when right(ext, length(warpin_makefile)) = warpin_makefile then 74 148 do 149 warpin_db_ver = (major + 0) || '\\' || (minor + 0) || '\\' || (CSDlevel + 0) 150 warpin_makefile_ver = major || '-' || minor || '-' || CSDlevel 75 151 'sed -r -e "/FM2_VER=-/s/(FM2_VER=-)[-0-9]+/\1' || warpin_makefile_ver || '/" ' || tmpfile || ' >' file 76 152 end 77 153 otherwise 78 nop 154 nop /* Or error message or usage info? */ 79 155 end 80 156 '@if exist' tmpfile 'del' tmpfile 81 157 return 82 158 159 /* Subroutines */ 160 GetFromRepository: procedure expose (globals) 161 parse arg value_name, value_default, max_value_len 162 /* Replace this with code for each DEF file */ 163 call SysFileSearch value_name || '=', repository, 'lines.' 164 if lines.0 = 0 then 165 if left(value_name, 5) = 'desc.' then 166 call MissingDescriptionInRepository value_name 167 else 168 value_value = value_default 169 else 170 do 171 n = lines.0 172 parse var lines.n . '=' value_value 173 end 174 value_value = strip(value_value) 175 if length(value_value) > 1 then 176 if left(value_value, 1) = '%' & right(value_value, 1) = '%' then 177 do 178 value_value = value(substr(value_value, 2, length(value_value) - 2),, 'OS2ENVIRONMENT') 179 if value_value = '' then 180 value_value = value_default 181 end 182 if pos(copyright_year_marker, value_value) > 0 then 183 value_len = length(value_value) - copyright_year_marker_len + 4 184 else 185 value_len = length(value_value) 186 if value_len > max_value_len then 187 do 188 say 189 say 'Error in length of data field!' 190 say ' Field name:' value_name 191 say ' Length :' value_len 192 say ' Max. len. :' max_value_len 193 say ' Field :' value_value 194 say ' Trunc''d :' left(value_value, max_value_len) 195 say 196 say 'This should be corrected in the repository:' repository 197 say 198 '@pause' 199 end 200 return value_value 201 83 202 Usage: 84 parse arg plus 85 say;say;say 86 lastline = sigl - (14 + plus) 87 do i = 1 to lastline 88 say sourceline(i) 89 end 90 exit 203 say;say;say 204 i = 1 205 do forever 206 srcline = sourceline(i) 207 if pos('CHANGE LOG', translate(srcline)) > 0 then 208 exit 209 say srcline 210 i = i + 1 211 end 91 212 92 213 /*=== Error() Report ERROR, FAILURE etc. and exit ===*/ … … 107 228 trace '?A' 108 229 say 'Exiting.' 230 'ren' tmpfile file 109 231 call 'SYSSLEEP' 2 110 232 exit 'CONDITION'('C') … … 119 241 signal ErrorExit 120 242 121 243 /* 244 * bldlevel string docs: 245 Format of BLDLEVEL string (Type III) 246 247 @#<Vendor>:<Revision>#@##1## DD.MM.YY hh:mm:ss <BuildHost>:<ASDFeatureID>:<LanguageCode>:<CountryCode>:<Build>:<Unknown>:<FixPackVer>@@<Description> 248 249 where 250 251 * DD.MM.YY is the build date in day/month/year, preceded by 1 space 252 * hh:mm:ss is the build time in hour/minute/second, preceded by 1 space 253 * <BuildHost> is machine on which build compiled, preceded by 8 spaces 254 * <ASDFeatureID> is identifier of ASD feature 255 * <LanguageCode> is code of language of component 256 * <CountryCode> is country code of component 257 * <Build> is build number 258 * <Unknown> is not known information (must be empty) 259 * <FixPackVer> is FixPack version (if distibuted as part of). 260 261 Note: If you leave build date and/or build time empty you still have to provide the same amount of spaces to replace build date/build time. 262 263 264 */ 265 266 -
TabularUnified trunk/ReleaseTool.cmd ¶
r1281 r1287 146 146 when action = 6 then 147 147 do /* Ensure the edits build */ 148 'set WARNALL=1' 148 149 'wmake -a all' 149 150 end … … 178 179 when action = 10 then 179 180 do /* Build for the release */ 180 'set FORTIFY=& set DEBUG=& wmake -a all' 181 'set FORTIFY=' 182 'set DEBUG=' 183 'wmake -a all' 181 184 end 182 185 when action = 11 then … … 349 352 version_filelist = version_filelist 'viewinfs.def vtree.def file_id.diz' 350 353 version_filelist = version_filelist 'warpin\makefile dll\internal\makefile' 354 version_filelist = version_filelist 'dll\copyright.c dll\fm3res.rc dll\fm3res.dlg' 351 355 return 352 356 … … 376 380 say '18. TRAC updates.' 377 381 say '19. Upload to distribution points and announce release.' 378 say '20. Set next version .'382 say '20. Set next version (no HISTORY or README update).' 379 383 say 380 384 call charout , 'Enter the number of your choice (''X'' to exit; ''0'' to open a command line): ' -
TabularUnified trunk/dll/fm3res.rc ¶
r1240 r1287 45 45 #include "fm3dll2.h" 46 46 #include "fm3dlg.h" 47 48 #define IDS_COPYRIGHT 1 47 49 48 50 ICON MAIN_FRAME ..\icons\FM3.ICO … … 2336 2338 } 2337 2339 2340 STRINGTABLE 2341 BEGIN 2342 IDS_COPYRIGHT, "Copyright (c) 1993, 1998 M. Kimes, " \ 2343 "Copyright (c) 2001, 2008 Steven Levine and Associates, Inc." \ 2344 "All rights reserved"; 2345 END 2346 2347 2338 2348 HELPTABLE ID_HELPTABLE 2339 2349 { -
TabularUnified trunk/makefile_post.mk ¶
r1285 r1287 16 16 # Executable specific paramters go in .def 17 17 18 $(BASE).exe: $(BASE).lrf $(BASE).obj $(BASE).res $(BASE).def .explicit18 $(BASE).exe: $(BASE).lrf $(BASE).obj $(BASE).res $(BASE).def dll\copyright.obj .explicit 19 19 $(LINK) @$(BASE).lrf @$(BASE).def 20 20 @echo. … … 27 27 @%append $^@ name $(BASE) 28 28 @%append $^@ file $(BASE).obj 29 @%append $^@ file dll\copyright.obj 29 30 !ifdef %EXCEPTQ 30 31 @%append $^@ file exceptq.lib
Note:
See TracChangeset
for help on using the changeset viewer.