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 +4 -4
- data/bin/mxxruexternals +1 -1
- data/bin/mxxrugen +0 -0
- data/lib/mxx_ru/abstract_target.rb +1 -1
- data/lib/mxx_ru/binary_target.rb +1 -1
- data/lib/mxx_ru/cpp/analyzer.rb +3 -3
- data/lib/mxx_ru/cpp/ext_cmake_project.rb +4 -4
- data/lib/mxx_ru/cpp/toolsets/vc_family.rb +2 -2
- data/lib/mxx_ru/externals.rb +6 -6
- data/lib/mxx_ru/version.rb +2 -2
- data/tests/unix/lib_linking_mode/o/main_conflict.o +0 -0
- metadata +6 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c3803d1494a96ed3972be493f0d2d1fa44c3a9ee2d277b83bfe677abe1119a92
|
4
|
+
data.tar.gz: 785550ee3ae3de77f51760625433917745fc53a9a07a96515eea6c53a46b2983
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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.
|
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-
|
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,
|
data/lib/mxx_ru/binary_target.rb
CHANGED
@@ -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-
|
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,
|
data/lib/mxx_ru/cpp/analyzer.rb
CHANGED
@@ -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-
|
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.
|
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.
|
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-
|
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.
|
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.
|
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.
|
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-
|
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.
|
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(
|
data/lib/mxx_ru/externals.rb
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
#--
|
2
|
-
# Copyright (c) 2006-
|
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.
|
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.
|
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.
|
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.
|
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.
|
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"
|
data/lib/mxx_ru/version.rb
CHANGED
@@ -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-
|
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.
|
37
|
+
MXX_RU_VERSION = '1.6.14.12'
|
38
38
|
|
Binary file
|
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.
|
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:
|
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
|
-
|
402
|
-
|
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: []
|