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
This commit is contained in:
Frieder Bluemle
2020-09-16 06:32:12 -07:00
committed by Facebook GitHub Bot
parent f03d5d94ed
commit 3d3dc2ea7a
5 changed files with 7 additions and 7 deletions

View File

@@ -8,10 +8,10 @@ Pod::Spec.new do |spec|
spec.name = 'Flipper' spec.name = 'Flipper'
spec.version = flipperkit_version spec.version = flipperkit_version
spec.license = { :type => 'MIT' } 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.summary = 'SonarKit core cpp code with network implementation'
spec.authors = 'Facebook' 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 } :tag => 'v'+flipperkit_version }
spec.module_name = 'Flipper' spec.module_name = 'Flipper'
spec.public_header_files = 'xplat/Flipper/*.h','xplat/utils/*.h' spec.public_header_files = 'xplat/Flipper/*.h','xplat/utils/*.h'

View File

@@ -10,11 +10,11 @@ Pod::Spec.new do |spec|
spec.name = 'FlipperKit' spec.name = 'FlipperKit'
spec.version = flipperkit_version spec.version = flipperkit_version
spec.license = { :type => 'MIT' } spec.license = { :type => 'MIT' }
spec.homepage = 'https://github.com/facebook/Sonar' spec.homepage = 'https://github.com/facebook/flipper'
spec.summary = 'Sonar iOS podspec' spec.summary = 'Sonar iOS podspec'
spec.authors = 'Facebook' spec.authors = 'Facebook'
spec.static_framework = true 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 } :tag=> "v"+flipperkit_version }
spec.module_name = 'FlipperKit' spec.module_name = 'FlipperKit'
spec.platforms = { :ios => "9.0" } spec.platforms = { :ios => "9.0" }

View File

@@ -1,5 +1,5 @@
# Uncomment the next line to define a global platform for your project # 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' source 'https://github.com/CocoaPods/Specs'
platform :ios, '10.0' platform :ios, '10.0'
swift_version = "4.1" swift_version = "4.1"

View File

@@ -1,5 +1,5 @@
project 'Sample.xcodeproj' project 'Sample.xcodeproj'
source 'https://github.com/facebook/Sonar.git' source 'https://github.com/facebook/flipper.git'
source 'https://github.com/CocoaPods/Specs' source 'https://github.com/CocoaPods/Specs'
target 'Sample' do target 'Sample' do

View File

@@ -1,5 +1,5 @@
project 'SampleSwift.xcodeproj' project 'SampleSwift.xcodeproj'
source 'https://github.com/facebook/Sonar.git' source 'https://github.com/facebook/flipper.git'
source 'https://github.com/CocoaPods/Specs' source 'https://github.com/CocoaPods/Specs'
target 'SampleSwift' do target 'SampleSwift' do