diff --git a/doap.rdf.erb b/doap.rdf.erb index 4c22c23cf30be6cc5c6d76a7c06b003fab7c9a59..d38146f368a0a539d44c313484f3356edf699717 100644 --- a/doap.rdf.erb +++ b/doap.rdf.erb @@ -78,7 +78,7 @@ <doap:Version> <doap:branch>fox16</doap:branch> <doap:created><%= Date.today %></doap:created> - <doap:revision><%= FXRUBY_VERSION %></doap:revision> + <doap:revision><%= PKG_VERSION %></doap:revision> </doap:Version> </doap:release> diff --git a/pre-config.rb.erb b/pre-config.rb.erb index 9bffd540f32c9cfd64ebe0cb919c9eabd82af9f2..0fd088b992d5ba5dea9b8d6112e1c0aaa4cf356d 100755 --- a/pre-config.rb.erb +++ b/pre-config.rb.erb @@ -95,7 +95,7 @@ if expecting_stable_fox_release if (instMinor != thisMinor) puts "" puts " ********************************************************" - puts " * This version of FXRuby (<%= FXRUBY_VERSION %>) must be built against" + puts " * This version of FXRuby (<%= PKG_VERSION %>) must be built against" puts " * one of the stable releases of FOX, but it appears that" puts " * you have a development version of FOX (version #{installed_fox_version})" puts " * installed instead. Please download and install one of" diff --git a/scripts/FXRuby.iss.erb b/scripts/FXRuby.iss.erb index e355bff6870241e521a7d8abad351753e0fd3201..2a468a17988f589c0974715d2554b14b4a03d69d 100755 --- a/scripts/FXRuby.iss.erb +++ b/scripts/FXRuby.iss.erb @@ -3,7 +3,7 @@ [Setup] AppName=FXRuby -AppVerName=FXRuby <%= FXRUBY_VERSION %> +AppVerName=FXRuby <%= PKG_VERSION %> AppPublisherURL=<%= FXRUBY_HOME_URL %> AppSupportURL=<%= FXRUBY_HOME_URL %> AppUpdatesURL=<%= FXRUBY_HOME_URL %> @@ -13,7 +13,7 @@ AllowNoIcons=no LicenseFile=LICENSE InfoBeforeFile=README.win32.txt OutputDir=. -OutputBaseFilename=FXRuby-<%= FXRUBY_VERSION %>-<%= RUBYVER %> +OutputBaseFilename=FXRuby-<%= PKG_VERSION %>-<%= info[1] %> [Files] ; readme files @@ -28,9 +28,9 @@ Source: "tests\README"; DestDir: "{app}\doc\FXRuby\tests"; Flags: ignoreversion Source: "tests\*.rb"; DestDir: "{app}\doc\FXRuby\tests"; Flags: ignoreversion Source: "tests\*.ps"; DestDir: "{app}\doc\FXRuby\tests"; Flags: ignoreversion ; main extension shared library -Source: "ext\fox16\fox16.so"; DestDir: "{app}\lib\ruby\site_ruby\<%= RUBY_VERSION %>\<%= TARGET %>; Flags: ignoreversion +Source: "ext\fox16\fox16.so"; DestDir: "{app}\lib\ruby\site_ruby\<%= info[0] %>\<%= info[2] %>; Flags: ignoreversion ; library files -Source: "lib\fox16\*.rb"; DestDir: "{app}\lib\ruby\site_ruby\<%= RUBY_VERSION %>\fox16"; Flags: ignoreversion +Source: "lib\fox16\*.rb"; DestDir: "{app}\lib\ruby\site_ruby\<%= info[0] %>\fox16"; Flags: ignoreversion ; samples Source: "examples\README"; DestDir: "{app}\samples\FXRuby"; Flags: ignoreversion Source: "examples\babelfish.rb"; DestDir: "{app}\samples\FXRuby"; DestName: "babelfish.rbw"; Flags: ignoreversion diff --git a/scripts/make-installers.rb.erb b/scripts/make-installers.rb.erb index 9c7b4ecc5346b4cecb6262a2b3457738156dfe8b..7e7de01e2b733e018458677946999b4aee452e63 100755 --- a/scripts/make-installers.rb.erb +++ b/scripts/make-installers.rb.erb @@ -73,7 +73,7 @@ def do_upload(fxruby_version) end if __FILE__ == $0 - fxruby_version = "<%= FXRUBY_VERSION %>" + fxruby_version = "<%= PKG_VERSION %>" untar(fxruby_version) iss_filename, dir = copy_installer_script(fxruby_version) Dir.chdir(dir)