Merge pull request #20977 from muxi/release-cpp-podspec

gRPC-C++ podspec follows gRPC versioning
pull/20963/head
Muxi Yan 5 years ago committed by GitHub
commit e730d427e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 9
      gRPC-C++.podspec
  2. 16
      templates/gRPC-C++.podspec.template

@ -23,19 +23,16 @@
Pod::Spec.new do |s|
s.name = 'gRPC-C++'
# TODO (mxyan): use version that match gRPC version when pod is stabilized
# version = '1.26.0-dev'
version = '0.0.9-dev'
version = '1.26.0-dev'
s.version = version
s.summary = 'gRPC C++ library'
s.homepage = 'https://grpc.io'
s.license = 'Apache License, Version 2.0'
s.authors = { 'The gRPC contributors' => 'grpc-packages@google.com' }
grpc_version = '1.26.0-dev'
s.source = {
:git => 'https://github.com/grpc/grpc.git',
:tag => "v#{grpc_version}",
:tag => "v#{version}",
}
s.ios.deployment_target = '7.0'
@ -216,7 +213,7 @@ Pod::Spec.new do |s|
s.subspec 'Implementation' do |ss|
ss.header_mappings_dir = '.'
ss.dependency "#{s.name}/Interface", version
ss.dependency 'gRPC-Core', grpc_version
ss.dependency 'gRPC-Core', version
ss.source_files = 'include/grpcpp/impl/codegen/core_codegen.h',
'src/cpp/client/channel_cc.cc',

@ -128,30 +128,20 @@
def ruby_multiline_list(files, indent):
return (',\n' + indent*' ').join('\'%s\'' % f for f in files)
def modify_podspec_version_string(pod_version, grpc_version):
# Append -preX when it is a pre-release
if len(str(grpc_version).split('-')) > 1:
return pod_version + '-' + str(grpc_version).split('-')[-1]
else:
return pod_version
%>
Pod::Spec.new do |s|
s.name = 'gRPC-C++'
# TODO (mxyan): use version that match gRPC version when pod is stabilized
# version = '${settings.version}'
version = '${modify_podspec_version_string('0.0.9', settings.version)}'
version = '${settings.version}'
s.version = version
s.summary = 'gRPC C++ library'
s.homepage = 'https://grpc.io'
s.license = 'Apache License, Version 2.0'
s.authors = { 'The gRPC contributors' => 'grpc-packages@google.com' }
grpc_version = '${settings.version}'
s.source = {
:git => 'https://github.com/grpc/grpc.git',
:tag => "v#{grpc_version}",
:tag => "v#{version}",
}
s.ios.deployment_target = '7.0'
@ -201,7 +191,7 @@
s.subspec 'Implementation' do |ss|
ss.header_mappings_dir = '.'
ss.dependency "#{s.name}/Interface", version
ss.dependency 'gRPC-Core', grpc_version
ss.dependency 'gRPC-Core', version
ss.source_files = ${ruby_multiline_list(grpcpp_private_files(libs, filegroups), 22)}

Loading…
Cancel
Save