From 3d3dc2ea7af2dc0f308ee1c73183db6279c2cabf Mon Sep 17 00:00:00 2001 From: Frieder Bluemle Date: Wed, 16 Sep 2020 06:32:12 -0700 Subject: [PATCH] Fix repo name in Podfile (#1528) Summary: A few people reported issues due to the previous repo name (`Sonar`) being referenced in the Podfile. - https://github.com/facebook/react-native/issues/27565 - https://github.com/facebook/react-native/issues/29251 - https://github.com/facebook/flipper/issues/1321 This PR updates it to the current name (`flipper`). Please let me know if these updates are also needed for the files under `Specs/Flipper/**/Flipper.podspec` (not sure what the purpose is). Pull Request resolved: https://github.com/facebook/flipper/pull/1528 Reviewed By: nikoant Differential Revision: D23730546 Pulled By: passy fbshipit-source-id: b4d776f44a054f3fe8b793ca36a8fbc8835e5d04 --- Flipper.podspec | 4 ++-- FlipperKit.podspec | 4 ++-- iOS/Podfile | 2 +- iOS/Sample/Podfile | 2 +- iOS/SampleSwift/Podfile | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Flipper.podspec b/Flipper.podspec index ffc2e5a72..916846ae5 100644 --- a/Flipper.podspec +++ b/Flipper.podspec @@ -8,10 +8,10 @@ Pod::Spec.new do |spec| spec.name = 'Flipper' spec.version = flipperkit_version spec.license = { :type => 'MIT' } - spec.homepage = 'https://github.com/facebook/sonar' + spec.homepage = 'https://github.com/facebook/flipper' spec.summary = 'SonarKit core cpp code with network implementation' spec.authors = 'Facebook' - spec.source = { :git => 'https://github.com/facebook/Sonar.git', + spec.source = { :git => 'https://github.com/facebook/flipper.git', :tag => 'v'+flipperkit_version } spec.module_name = 'Flipper' spec.public_header_files = 'xplat/Flipper/*.h','xplat/utils/*.h' diff --git a/FlipperKit.podspec b/FlipperKit.podspec index 410553e91..dcf3b6f45 100644 --- a/FlipperKit.podspec +++ b/FlipperKit.podspec @@ -10,11 +10,11 @@ Pod::Spec.new do |spec| spec.name = 'FlipperKit' spec.version = flipperkit_version spec.license = { :type => 'MIT' } - spec.homepage = 'https://github.com/facebook/Sonar' + spec.homepage = 'https://github.com/facebook/flipper' spec.summary = 'Sonar iOS podspec' spec.authors = 'Facebook' spec.static_framework = true - spec.source = { :git => 'https://github.com/facebook/Sonar.git', + spec.source = { :git => 'https://github.com/facebook/flipper.git', :tag=> "v"+flipperkit_version } spec.module_name = 'FlipperKit' spec.platforms = { :ios => "9.0" } diff --git a/iOS/Podfile b/iOS/Podfile index 8d4a5fbb0..3f6defadb 100644 --- a/iOS/Podfile +++ b/iOS/Podfile @@ -1,5 +1,5 @@ # Uncomment the next line to define a global platform for your project -source 'https://github.com/facebook/Sonar.git' +source 'https://github.com/facebook/flipper.git' source 'https://github.com/CocoaPods/Specs' platform :ios, '10.0' swift_version = "4.1" diff --git a/iOS/Sample/Podfile b/iOS/Sample/Podfile index 3812ebe1b..8163b42a0 100644 --- a/iOS/Sample/Podfile +++ b/iOS/Sample/Podfile @@ -1,5 +1,5 @@ project 'Sample.xcodeproj' -source 'https://github.com/facebook/Sonar.git' +source 'https://github.com/facebook/flipper.git' source 'https://github.com/CocoaPods/Specs' target 'Sample' do diff --git a/iOS/SampleSwift/Podfile b/iOS/SampleSwift/Podfile index 47aedbd17..189c4d5ca 100644 --- a/iOS/SampleSwift/Podfile +++ b/iOS/SampleSwift/Podfile @@ -1,5 +1,5 @@ project 'SampleSwift.xcodeproj' -source 'https://github.com/facebook/Sonar.git' +source 'https://github.com/facebook/flipper.git' source 'https://github.com/CocoaPods/Specs' target 'SampleSwift' do