- 37개 파일 IP → zioinfo.co.kr 치환 (소스/매뉴얼/설정/하네스) - Manager DrConsole/NetworkConsole/CsapConsole 빌드 + /var/www/manager/ 배포 - 테스트: Manager HTTP 200, ITSM 신규 API 7개 전체 200 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
108 lines
3.7 KiB
Ruby
108 lines
3.7 KiB
Ruby
require 'json'
|
|
|
|
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
|
|
|
|
reactNativeVersion = '0.0.0'
|
|
begin
|
|
reactNativeVersion = `node --print "require('react-native/package.json').version"`
|
|
rescue
|
|
reactNativeVersion = '0.0.0'
|
|
end
|
|
|
|
reactNativeTargetVersion = reactNativeVersion.split('.')[1].to_i
|
|
|
|
fabric_enabled = ENV['RCT_NEW_ARCH_ENABLED'] == '1'
|
|
fabric_compiler_flags = '-DRN_FABRIC_ENABLED -DRCT_NEW_ARCH_ENABLED'
|
|
folly_version = '2022.05.16.00'
|
|
folly_compiler_flags = '-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -Wno-comma -Wno-shorten-64-to-32'
|
|
|
|
Pod::Spec.new do |s|
|
|
s.name = 'ExpoModulesCore'
|
|
s.version = package['version']
|
|
s.summary = package['description']
|
|
s.description = package['description']
|
|
s.license = package['license']
|
|
s.author = package['author']
|
|
s.homepage = package['homepage']
|
|
s.platforms = {
|
|
:ios => '13.4',
|
|
:osx => '10.15',
|
|
:tvos => '13.4'
|
|
}
|
|
s.swift_version = '5.4'
|
|
s.source = { git: 'https://github.com/expo/expo.git' }
|
|
s.static_framework = true
|
|
s.header_dir = 'ExpoModulesCore'
|
|
|
|
header_search_paths = [
|
|
]
|
|
|
|
# Swift/Objective-C compatibility
|
|
s.pod_target_xcconfig = {
|
|
'USE_HEADERMAP' => 'YES',
|
|
'DEFINES_MODULE' => 'YES',
|
|
'CLANG_CXX_LANGUAGE_STANDARD' => 'c++20',
|
|
'SWIFT_COMPILATION_MODE' => 'wholemodule',
|
|
'HEADER_SEARCH_PATHS' => header_search_paths.join(' '),
|
|
'OTHER_SWIFT_FLAGS' => "$(inherited) #{fabric_enabled ? fabric_compiler_flags : ''}"
|
|
}
|
|
user_header_search_paths = [
|
|
'"${PODS_CONFIGURATION_BUILD_DIR}/ExpoModulesCore/Swift Compatibility Header"',
|
|
'"$(PODS_ROOT)/Headers/Private/Yoga"', # Expo.h -> ExpoModulesCore-umbrella.h -> Fabric ViewProps.h -> Private Yoga headers
|
|
]
|
|
s.user_target_xcconfig = {
|
|
"HEADER_SEARCH_PATHS" => user_header_search_paths,
|
|
}
|
|
|
|
compiler_flags = folly_compiler_flags + ' ' + "-DREACT_NATIVE_TARGET_VERSION=#{reactNativeTargetVersion}"
|
|
if ENV['USE_HERMES'] == nil || ENV['USE_HERMES'] == '1'
|
|
compiler_flags += ' -DUSE_HERMES'
|
|
s.dependency 'hermes-engine'
|
|
add_dependency(s, "React-jsinspector", :framework_name => 'jsinspector_modern')
|
|
else
|
|
s.dependency 'React-jsc'
|
|
end
|
|
|
|
s.dependency 'React-Core'
|
|
s.dependency 'ReactCommon/turbomodule/core'
|
|
s.dependency 'React-RCTAppDelegate'
|
|
s.dependency 'React-NativeModulesApple'
|
|
|
|
if fabric_enabled
|
|
compiler_flags << ' ' << fabric_compiler_flags
|
|
|
|
s.dependency 'React-RCTFabric'
|
|
s.dependency 'RCT-Folly', folly_version
|
|
end
|
|
|
|
unless defined?(install_modules_dependencies)
|
|
# `install_modules_dependencies` is defined from react_native_pods.rb.
|
|
# when running with `pod ipc spec`, this method is not defined and we have to require manually.
|
|
require File.join(File.dirname(`node --print "require.resolve('react-native/package.json')"`), "scripts/react_native_pods")
|
|
end
|
|
install_modules_dependencies(s)
|
|
|
|
if !$ExpoUseSources&.include?(package['name']) && ENV['EXPO_USE_SOURCE'].to_i == 0 && File.exist?("ios/#{s.name}.xcframework") && Gem::Version.new(Pod::VERSION) >= Gem::Version.new('1.10.0')
|
|
s.source_files = 'ios/**/*.h', 'common/cpp/**/*.h'
|
|
s.vendored_frameworks = "ios/#{s.name}.xcframework"
|
|
else
|
|
s.source_files = 'ios/**/*.{h,m,mm,swift,cpp}', 'common/cpp/**/*.{h,cpp}'
|
|
end
|
|
|
|
exclude_files = ['ios/Tests/']
|
|
if !fabric_enabled
|
|
exclude_files.append('ios/Fabric/')
|
|
exclude_files.append('common/cpp/fabric/')
|
|
end
|
|
|
|
s.exclude_files = exclude_files
|
|
s.compiler_flags = compiler_flags
|
|
s.private_header_files = ['ios/**/*+Private.h', 'ios/**/Swift.h']
|
|
|
|
s.test_spec 'Tests' do |test_spec|
|
|
test_spec.dependency 'ExpoModulesTestCore'
|
|
|
|
test_spec.source_files = 'ios/Tests/**/*.{m,swift}'
|
|
end
|
|
end
|