From 062469de5fc611137609e0b0e791b2d579bacb4ded6799c44f70dd8a0c0874fa Mon Sep 17 00:00:00 2001 From: Jan Engelhardt Date: Tue, 13 Feb 2024 10:20:07 +0000 Subject: [PATCH 1/3] - Update to release 1.61.1 OBS-URL: https://build.opensuse.org/package/show/devel:tools/grpc?expand=0&rev=185 --- grpc.changes | 7 +++++++ grpc.spec | 2 +- v1.61.0.tar.gz | 3 --- v1.61.1.tar.gz | 3 +++ 4 files changed, 11 insertions(+), 4 deletions(-) delete mode 100644 v1.61.0.tar.gz create mode 100644 v1.61.1.tar.gz diff --git a/grpc.changes b/grpc.changes index 18a8828..40acf25 100644 --- a/grpc.changes +++ b/grpc.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Tue Feb 13 10:18:50 UTC 2024 - Jan Engelhardt + +- Update to release 1.61.1 + * Add missing include directives so that the build with + newer absl works + ------------------------------------------------------------------- Wed Jan 31 19:51:15 UTC 2024 - Jan Engelhardt diff --git a/grpc.spec b/grpc.spec index 271ec04..313d6c5 100644 --- a/grpc.spec +++ b/grpc.spec @@ -20,7 +20,7 @@ %define lverp 1_61 %define src_install_dir /usr/src/%name Name: grpc -Version: 1.61.0 +Version: 1.61.1 Release: 0 Summary: HTTP/2-based Remote Procedure Call implementation License: Apache-2.0 diff --git a/v1.61.0.tar.gz b/v1.61.0.tar.gz deleted file mode 100644 index df147cc..0000000 --- a/v1.61.0.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:aa1e25461879fa674584a9f5d5aec998845b1dfe5746c16cc16eeba5c1c83abe -size 17401913 diff --git a/v1.61.1.tar.gz b/v1.61.1.tar.gz new file mode 100644 index 0000000..082ae67 --- /dev/null +++ b/v1.61.1.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dadc0420ad2d4b8ac49f516830f72feae3764bf83decc8d7c3a871eca1a0843 +size 17407078 From 62b153e2a2158ac9b5ea8bcca558d0b1b93bcce8555da4aa9114e5ecdba06e46 Mon Sep 17 00:00:00 2001 From: Jan Engelhardt Date: Wed, 14 Feb 2024 17:01:15 +0000 Subject: [PATCH 2/3] Accepting request 1146618 from home:dimstar:Factory - Also fixup hasbnag of tools/profiling/ios_bin/parse_link_map.py, which was exceptionally not using env python, but directly /usr/bin/python. OBS-URL: https://build.opensuse.org/request/show/1146618 OBS-URL: https://build.opensuse.org/package/show/devel:tools/grpc?expand=0&rev=186 --- grpc.changes | 7 +++++++ grpc.spec | 3 +++ 2 files changed, 10 insertions(+) diff --git a/grpc.changes b/grpc.changes index 40acf25..acaa62e 100644 --- a/grpc.changes +++ b/grpc.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Wed Feb 14 16:15:47 UTC 2024 - Dominique Leuenberger + +- Also fixup hasbnag of tools/profiling/ios_bin/parse_link_map.py, + which was exceptionally not using env python, but directly + /usr/bin/python. + ------------------------------------------------------------------- Tue Feb 13 10:18:50 UTC 2024 - Jan Engelhardt diff --git a/grpc.spec b/grpc.spec index 313d6c5..7572e1b 100644 --- a/grpc.spec +++ b/grpc.spec @@ -124,6 +124,9 @@ This subpackage contains source code of the gRPC reference implementation. %prep %autosetup -N %patch -P 1 -p1 +find "." -type f -exec grep -l '/usr/bin/python' {} + | + xargs -r perl -i -lpe \ + 's{#! ?/usr/bin/python\S*}{#!/usr/bin/python3}g;' find "." -type f -exec grep -l '/usr/bin/env ' {} + | xargs -r perl -i -lpe \ 's{#! ?/usr/bin/env python\S*}{#!/usr/bin/python3}g; From a168a00fb1dc6109e055638dd7e94d6ed6c8d0e403c04663ab598b0f3a64f6c1 Mon Sep 17 00:00:00 2001 From: Jan Engelhardt Date: Wed, 14 Feb 2024 17:07:03 +0000 Subject: [PATCH 3/3] Accepting request 1146622 from home:dimstar:Factory - Also fixup hashbang of tools/profiling/ios_bin/parse_link_map.py, OBS-URL: https://build.opensuse.org/request/show/1146622 OBS-URL: https://build.opensuse.org/package/show/devel:tools/grpc?expand=0&rev=187 --- grpc.changes | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grpc.changes b/grpc.changes index acaa62e..ad237c9 100644 --- a/grpc.changes +++ b/grpc.changes @@ -1,7 +1,7 @@ ------------------------------------------------------------------- Wed Feb 14 16:15:47 UTC 2024 - Dominique Leuenberger -- Also fixup hasbnag of tools/profiling/ios_bin/parse_link_map.py, +- Also fixup hashbang of tools/profiling/ios_bin/parse_link_map.py, which was exceptionally not using env python, but directly /usr/bin/python.