git: 404e70248927 - main - net/rubygem-grpc: Update to 1.48.0
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 27 Aug 2022 10:33:14 UTC
The branch main has been updated by sunpoet: URL: https://cgit.FreeBSD.org/ports/commit/?id=404e702489272b4003a340a7189fc27537788182 commit 404e702489272b4003a340a7189fc27537788182 Author: Po-Chuan Hsieh <sunpoet@FreeBSD.org> AuthorDate: 2022-08-27 10:25:35 +0000 Commit: Po-Chuan Hsieh <sunpoet@FreeBSD.org> CommitDate: 2022-08-27 10:25:35 +0000 net/rubygem-grpc: Update to 1.48.0 Changes: https://github.com/grpc/grpc/releases https://github.com/grpc/grpc/commits/master/src/ruby --- net/rubygem-grpc/Makefile | 2 +- net/rubygem-grpc/distinfo | 6 +-- .../files/patch-src_ruby_ext_grpc_extconf.rb | 44 +++++++--------------- 3 files changed, 18 insertions(+), 34 deletions(-) diff --git a/net/rubygem-grpc/Makefile b/net/rubygem-grpc/Makefile index 261d8ecc2a1c..4dfd001d01da 100644 --- a/net/rubygem-grpc/Makefile +++ b/net/rubygem-grpc/Makefile @@ -1,5 +1,5 @@ PORTNAME= grpc -PORTVERSION= 1.47.0 +PORTVERSION= 1.48.0 CATEGORIES= net rubygems MASTER_SITES= RG diff --git a/net/rubygem-grpc/distinfo b/net/rubygem-grpc/distinfo index cae577673fde..c180ef412773 100644 --- a/net/rubygem-grpc/distinfo +++ b/net/rubygem-grpc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1657634046 -SHA256 (rubygem/grpc-1.47.0.gem) = 95a6d589ed8ef4cdc1a2ac7aa7c91401b5e593d8fcfa477f6f9d3a3219b591ee -SIZE (rubygem/grpc-1.47.0.gem) = 5599232 +TIMESTAMP = 1660576896 +SHA256 (rubygem/grpc-1.48.0.gem) = e82889a676e19cfc2b08883694d97c05666e318d355e7398d7dbf686060f42a5 +SIZE (rubygem/grpc-1.48.0.gem) = 5637120 diff --git a/net/rubygem-grpc/files/patch-src_ruby_ext_grpc_extconf.rb b/net/rubygem-grpc/files/patch-src_ruby_ext_grpc_extconf.rb index 74acc4494991..e9c3881e6c81 100644 --- a/net/rubygem-grpc/files/patch-src_ruby_ext_grpc_extconf.rb +++ b/net/rubygem-grpc/files/patch-src_ruby_ext_grpc_extconf.rb @@ -1,19 +1,21 @@ ---- src/ruby/ext/grpc/extconf.rb.orig 2022-04-11 16:34:02 UTC +--- src/ruby/ext/grpc/extconf.rb.orig 2022-07-30 16:45:00 UTC +++ src/ruby/ext/grpc/extconf.rb -@@ -45,9 +45,9 @@ if darwin && !cross_compiling - ENV['ARFLAGS'] = '-o' +@@ -68,11 +68,11 @@ if apple_toolchain && !cross_compiling end --ENV['EMBED_OPENSSL'] = 'true' --ENV['EMBED_ZLIB'] = 'true' --ENV['EMBED_CARES'] = 'true' + # Don't embed on TruffleRuby (constant-time crypto is unsafe with Sulong, slow build times) +-ENV['EMBED_OPENSSL'] = (RUBY_ENGINE != 'truffleruby').to_s +ENV['EMBED_OPENSSL'] = 'false' + # Don't embed on TruffleRuby (the system zlib is already linked for the zlib C extension, slow build times) +-ENV['EMBED_ZLIB'] = (RUBY_ENGINE != 'truffleruby').to_s +ENV['EMBED_ZLIB'] = 'false' + +-ENV['EMBED_CARES'] = 'true' +ENV['EMBED_CARES'] = 'false' ENV['ARCH_FLAGS'] = RbConfig::CONFIG['ARCH_FLAG'] - if darwin && !cross_compiling -@@ -66,29 +66,30 @@ output_dir = File.expand_path(RbConfig::CONFIG['topdir + if apple_toolchain && !cross_compiling +@@ -93,30 +93,10 @@ output_dir = File.expand_path(RbConfig::CONFIG['topdir grpc_lib_dir = File.join(output_dir, 'libs', grpc_config) ENV['BUILDDIR'] = output_dir @@ -32,33 +34,15 @@ - system(cmd) - exit 1 unless $? == 0 -end -+#unless windows -+# puts 'Building internal gRPC into ' + grpc_lib_dir -+# nproc = 4 -+# nproc = Etc.nprocessors if Etc.respond_to? :nprocessors -+# nproc_override = ENV['GRPC_RUBY_BUILD_PROCS'] -+# unless nproc_override.nil? or nproc_override.size == 0 -+# nproc = nproc_override -+# puts "Overriding make parallelism to #{nproc}" -+# end -+# make = bsd ? 'gmake' : 'make' -+# cmd = "#{make} -j#{nproc} -C #{grpc_root} #{grpc_lib_dir}/libgrpc.a CONFIG=#{grpc_config} Q=" -+# puts "Building grpc native library: #{cmd}" -+# system(cmd) -+# exit 1 unless $? == 0 -+#end - +- -$CFLAGS << ' -I' + File.join(grpc_root, 'include') -+#$CFLAGS << ' -I' + File.join(grpc_root, 'include') - +- ext_export_file = File.join(grpc_root, 'src', 'ruby', 'ext', 'grpc', 'ext-export') + ext_export_file += '-truffleruby' if RUBY_ENGINE == 'truffleruby' -$LDFLAGS << ' -Wl,--version-script="' + ext_export_file + '.gcc"' if linux --$LDFLAGS << ' -Wl,-exported_symbols_list,"' + ext_export_file + '.clang"' if darwin -+#$LDFLAGS << ' -Wl,--version-script="' + ext_export_file + '.gcc"' if linux -+#$LDFLAGS << ' -Wl,-exported_symbols_list,"' + ext_export_file + '.clang"' if darwin +-$LDFLAGS << ' -Wl,-exported_symbols_list,"' + ext_export_file + '.clang"' if apple_toolchain -$LDFLAGS << ' ' + File.join(grpc_lib_dir, 'libgrpc.a') unless windows -+#$LDFLAGS << ' ' + File.join(grpc_lib_dir, 'libgrpc.a') unless windows +$LDFLAGS << ' -lgrpc' unless windows if grpc_config == 'gcov' $CFLAGS << ' -O0 -fprofile-arcs -ftest-coverage'