Mxx_ru 1.6.14.10 → 1.6.14.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 00d671247fa8a2875c456acdb7872795482df1c9292742bea38653732ad2e4f5
4
- data.tar.gz: 34039de6bfed6139cae5c57ac11ae0cce4054503cdb071c969c1f0fd5352e013
3
+ metadata.gz: c3803d1494a96ed3972be493f0d2d1fa44c3a9ee2d277b83bfe677abe1119a92
4
+ data.tar.gz: 785550ee3ae3de77f51760625433917745fc53a9a07a96515eea6c53a46b2983
5
5
  SHA512:
6
- metadata.gz: ca859d9be86f523c88f7239bafa19c71591ffe222d4904139748e86f88d5beb3401ae1fed1b626f0775f50b7c04bfcb9b130eb8722f6c7782046e6cb1462e039
7
- data.tar.gz: a7e606dc300e5e62de3be3e65d7eedf68d25ecfeece4a7b5c7bc97827a2f76de4228207652bb368164c7a155deaf288c192ebc80675ab172bcc1a61f16dcb54a
6
+ metadata.gz: 280baff9073326a90fa932e938fe22f572e0c84cef0b0c078d971dca287abd9d88b6d8982dc8bb06ac04239fcfec5da58fbf0aae9affc10a560d4c6374f892ef
7
+ data.tar.gz: cc8368dee25cbc7e58d57a7e0d141eabb517dc6e9cfda61de5afc8d9a3c343c8af4cb28c6abc0f6300cad892db15c6ef3f4a2c315ddc2d5ec3c5f0767521ceb5
data/bin/mxxruexternals CHANGED
@@ -151,7 +151,7 @@ load '#{options.externals_file}'
151
151
 
152
152
  PREVIOUS_FILE = File.join MxxRu::Externals::EXTERNALS_STORAGE_DIR, 'previous.rb'
153
153
  BAK_FILE_NAME = lambda {|n| "\#{PREVIOUS_FILE}.\#{n}.bak" }
154
- MV_IF_EXISTS = lambda{ |from, to| mv(from, to) if File.exists?(from) }
154
+ MV_IF_EXISTS = lambda{ |from, to| mv(from, to) if File.exist?(from) }
155
155
 
156
156
  file PREVIOUS_FILE do
157
157
  cp '#{options.externals_file}', PREVIOUS_FILE, :verbose => Rake.verbose
data/bin/mxxrugen CHANGED
File without changes
@@ -1,7 +1,7 @@
1
1
  #--
2
2
  # Copyright (c) 1996-2004, Yauheni Akhotnikau
3
3
  # Copyright (c) 2004-2006, JSC Intervale
4
- # Copyright (c) 2006-2015, The Mxx_ru Project
4
+ # Copyright (c) 2006-2024, The Mxx_ru Project
5
5
  # All rights reserved.
6
6
  #
7
7
  # Redistribution and use in source and binary forms, with or without modification,
@@ -1,7 +1,7 @@
1
1
  #--
2
2
  # Copyright (c) 1996-2004, Yauheni Akhotnikau
3
3
  # Copyright (c) 2004-2006, JSC Intervale
4
- # Copyright (c) 2006-2015, The Mxx_ru Project
4
+ # Copyright (c) 2006-2024, The Mxx_ru Project
5
5
  # All rights reserved.
6
6
  #
7
7
  # Redistribution and use in source and binary forms, with or without modification,
@@ -1,7 +1,7 @@
1
1
  #--
2
2
  # Copyright (c) 1996-2004, Yauheni Akhotnikau
3
3
  # Copyright (c) 2004-2006, JSC Intervale
4
- # Copyright (c) 2006-2018, The Mxx_ru Project
4
+ # Copyright (c) 2006-2024, The Mxx_ru Project
5
5
  # All rights reserved.
6
6
  #
7
7
  # Redistribution and use in source and binary forms, with or without modification,
@@ -186,7 +186,7 @@ module MxxRu
186
186
  def process_std_include_path_file( a_file_name, a_owner_obj )
187
187
  @include_paths.find { |path|
188
188
  test_name = File.join( [ path, a_file_name ] )
189
- if File.exists?( test_name )
189
+ if File.exist?( test_name )
190
190
  add_depend_to( a_owner_obj, test_name )
191
191
  true
192
192
  else
@@ -210,7 +210,7 @@ module MxxRu
210
210
  # names in form local/path/details/../details/../details
211
211
  Pathname.new(
212
212
  File.join( a_local_path, a_file_name ) ).cleanpath
213
- if File.exists?( test_name )
213
+ if File.exist?( test_name )
214
214
  add_depend_to( a_owner_obj, test_name )
215
215
  else
216
216
  process_std_include_path_file( a_file_name, a_owner_obj )
@@ -1,7 +1,7 @@
1
1
  #--
2
2
  # Copyright (c) 1996-2004, Yauheni Akhotnikau
3
3
  # Copyright (c) 2004-2006, JSC Intervale
4
- # Copyright (c) 2006-2016, The Mxx_ru Project
4
+ # Copyright (c) 2006-2024, The Mxx_ru Project
5
5
  # All rights reserved.
6
6
  #
7
7
  # Redistribution and use in source and binary forms, with or without modification,
@@ -280,7 +280,7 @@ private
280
280
  def detect_build_results_state
281
281
  result = {}
282
282
  do_with_install_manifest_content do |filename|
283
- if File.exists?( filename )
283
+ if File.exist?( filename )
284
284
  result[ filename ] = File.mtime( filename )
285
285
  end
286
286
  end
@@ -335,7 +335,7 @@ private
335
335
  # is the current directory.
336
336
  def clean_installed_files
337
337
  do_with_install_manifest_content do |file_to_remove|
338
- if File.exists?( file_to_remove )
338
+ if File.exist?( file_to_remove )
339
339
  FileUtils.rm( file_to_remove, **file_utils_options )
340
340
  end
341
341
  end
@@ -353,7 +353,7 @@ private
353
353
  # Open INSTALL_MANIFEST if it exists and call _block_ for every
354
354
  # non-empty name from it.
355
355
  def do_with_install_manifest_content(&block)
356
- if File.exists?( INSTALL_MANIFEST )
356
+ if File.exist?( INSTALL_MANIFEST )
357
357
  File::open( INSTALL_MANIFEST, 'r' ) do |manifest|
358
358
  manifest.each_line do |line|
359
359
  filename = line.chomp
@@ -1,7 +1,7 @@
1
1
  #--
2
2
  # Copyright (c) 1996-2004, Yauheni Akhotnikau
3
3
  # Copyright (c) 2004-2006, JSC Intervale
4
- # Copyright (c) 2006-2015, The Mxx_ru Project
4
+ # Copyright (c) 2006-2024, The Mxx_ru Project
5
5
  # All rights reserved.
6
6
  #
7
7
  # Redistribution and use in source and binary forms, with or without modification,
@@ -420,7 +420,7 @@ module MxxRu
420
420
  MxxRu::Util::change_file_ext( full_name, ".pdb" ) )
421
421
 
422
422
  exp_file_name = MxxRu::Util::change_file_ext( full_name, ".exp" )
423
- if File.exists?( exp_file_name )
423
+ if File.exist?( exp_file_name )
424
424
  MxxRu::Util::delete_file( exp_file_name )
425
425
  # Import library for this export-file must be removed too.
426
426
  MxxRu::Util::delete_file(
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2006-2021, The Mxx_ru Project
2
+ # Copyright (c) 2006-2024, The Mxx_ru Project
3
3
  # All rights reserved.
4
4
  #
5
5
  # Redistribution and use in source and binary forms, with or without modification,
@@ -288,7 +288,7 @@ private
288
288
  end
289
289
 
290
290
  def rm_dir_if_exists(dir_name)
291
- rm_r(dir_name, **fileop_options) if Dir.exists?(dir_name)
291
+ rm_r(dir_name, **fileop_options) if Dir.exist?(dir_name)
292
292
  end
293
293
 
294
294
  def rm_directories(dirs)
@@ -296,7 +296,7 @@ private
296
296
  end
297
297
 
298
298
  def rm_file_if_exists(file_name)
299
- rm(file_name, **fileop_options) if File.exists?(file_name)
299
+ rm(file_name, **fileop_options) if File.exist?(file_name)
300
300
  end
301
301
 
302
302
  def rm_files(files)
@@ -691,7 +691,7 @@ class ArchiveAsExternals < Rake::TaskLib
691
691
  # Temporary directory must be removed in a case of any error.
692
692
  successful = false
693
693
  begin
694
- mkdir(tmp_dir, **fileop_options) if !Dir.exists?(tmp_dir)
694
+ mkdir(tmp_dir, **fileop_options) if !Dir.exist?(tmp_dir)
695
695
 
696
696
  cd tmp_dir do
697
697
  download_archive
@@ -758,7 +758,7 @@ private
758
758
  sh(*make_unpacker_args)
759
759
  rm(archive_name, **fileop_options)
760
760
  names = Dir['*']
761
- if 1 == names.size and Dir.exists?(names.first)
761
+ if 1 == names.size and Dir.exist?(names.first)
762
762
  # This is the only folder in the distributive.
763
763
  # Move all its contents one level up.
764
764
  cd names.first do
@@ -822,7 +822,7 @@ end # module MxxRu
822
822
  desc "Remove all external projects"
823
823
  task :remove do
824
824
  d = MxxRu::Externals::EXTERNALS_STORAGE_DIR
825
- rm_r(d, :verbose => Rake.verbose) if Dir.exists?(d)
825
+ rm_r(d, :verbose => Rake.verbose) if Dir.exist?(d)
826
826
  end
827
827
 
828
828
  desc "Remove and get again all external projects"
@@ -1,7 +1,7 @@
1
1
  #--
2
2
  # Copyright (c) 1996-2004, Yauheni Akhotnikau
3
3
  # Copyright (c) 2004-2006, JSC Intervale
4
- # Copyright (c) 2006-2021, The Mxx_ru Project
4
+ # Copyright (c) 2006-2024, The Mxx_ru Project
5
5
  # All rights reserved.
6
6
  #
7
7
  # Redistribution and use in source and binary forms, with or without modification,
@@ -34,5 +34,5 @@
34
34
  #
35
35
  # puts 'Mxx_ru version is: ' + MXX_RU_VERSION
36
36
  #
37
- MXX_RU_VERSION = '1.6.14.10'
37
+ MXX_RU_VERSION = '1.6.14.12'
38
38
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: Mxx_ru
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.14.10
4
+ version: 1.6.14.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - The Mxx_ru Project
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-11-15 00:00:00.000000000 Z
11
+ date: 2024-11-11 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Mxx_ru is a cross-platform build tool primarily focused to C/C++ projects
14
14
  email: eao197@yahoo.com
@@ -381,7 +381,7 @@ homepage: http://sourceforge.net/projects/mxxru
381
381
  licenses:
382
382
  - BSD-3-Clause
383
383
  metadata: {}
384
- post_install_message:
384
+ post_install_message:
385
385
  rdoc_options:
386
386
  - "--main"
387
387
  - README
@@ -398,9 +398,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
398
398
  - !ruby/object:Gem::Version
399
399
  version: '0'
400
400
  requirements: []
401
- rubyforge_project:
402
- rubygems_version: 2.7.6
403
- signing_key:
401
+ rubygems_version: 3.4.20
402
+ signing_key:
404
403
  specification_version: 4
405
404
  summary: Mxx_ru (Make++ on Ruby) is a cross-platform build tool
406
405
  test_files: []