From 286fa18ca614b18d12d835c9062d7f5f6f321712 Mon Sep 17 00:00:00 2001 From: Yaroslav Yashin Date: Sat, 28 Dec 2024 20:16:14 +0100 Subject: [PATCH] Cocoapods support dropped --- Web3Core.podspec | 19 ------------------- web3swift.podspec | 22 ---------------------- 2 files changed, 41 deletions(-) delete mode 100644 Web3Core.podspec delete mode 100755 web3swift.podspec diff --git a/Web3Core.podspec b/Web3Core.podspec deleted file mode 100644 index e407b5e15..000000000 --- a/Web3Core.podspec +++ /dev/null @@ -1,19 +0,0 @@ -Pod::Spec.new do |spec| - spec.compiler_flags = '-DCOCOAPODS' - - spec.name = 'Web3Core' - spec.version = '3.2.0' - spec.ios.deployment_target = "13.0" - spec.osx.deployment_target = "10.15" - spec.license = { :type => 'Apache License 2.0', :file => 'LICENSE.md' } - spec.summary = 'Core of web3swift library' - spec.homepage = 'https://github.com/web3swift-team/web3swift' - spec.author = {"Alex Vlasov" => "alex.m.vlasov@gmail.com", "Anton Grigorev" => "antongrigorjev2010@gmail.com", "Petr Korolev" => "sky4winder@gmail.com", "Yaroslav Yashin" => "yaroslav.yashin@gmail.com"} - spec.source = { :git => 'https://github.com/web3swift-team/web3swift.git', :tag => spec.version.to_s } - spec.swift_version = '5.5' - - spec.dependency 'secp256k1.c', '~> 0.1' - spec.dependency 'BigInt', '~> 5.2.0' # no newer version in pods. - spec.dependency 'CryptoSwift', '~> 1.5.1' - spec.source_files = "Sources/Web3Core/**/*.swift" -end diff --git a/web3swift.podspec b/web3swift.podspec deleted file mode 100755 index 5b1a11da7..000000000 --- a/web3swift.podspec +++ /dev/null @@ -1,22 +0,0 @@ -WEB3CORE_VERSION ||= '3.2.0' - -Pod::Spec.new do |spec| - spec.name = 'web3swift' - spec.version = WEB3CORE_VERSION - spec.ios.deployment_target = "13.0" - spec.osx.deployment_target = "10.15" - spec.license = { :type => 'Apache License 2.0', :file => 'LICENSE.md' } - spec.summary = 'Web3 implementation in vanilla Swift for iOS, macOS, and Linux' - spec.homepage = 'https://github.com/web3swift-team/web3swift' - spec.author = {"Alex Vlasov" => "alex.m.vlasov@gmail.com", "Anton Grigorev" => "antongrigorjev2010@gmail.com", "Petr Korolev" => "sky4winder@gmail.com", "Yaroslav Yashin" => "yaroslav.yashin@gmail.com"} - spec.source = { :git => 'https://github.com/web3swift-team/web3swift.git', :tag => spec.version.to_s } - spec.swift_version = '5.5' - - # Make this line same as Web3Core sources - spec.source_files = "Sources/web3swift/**/*.swift" - spec.ios.source_files = 'Sources/web3swift/Browser/*.swift' - spec.resource_bundle = { "Browser" => "Sources/web3swift/Browser/*.js" } - spec.frameworks = 'CoreImage' - spec.dependency 'Starscream', '~> 4.0.4' - spec.dependency 'Web3Core', "~> #{WEB3CORE_VERSION}" -end