|
|
dd60df8771
|
Accepting request 1000545 from home:badshah400:branches:network
- Update to version 1.48.0.
- Drop grpc-no-return-from-non-void-function.patch: Fixes upstream.
OBS-URL: https://build.opensuse.org/request/show/1000545
OBS-URL: https://build.opensuse.org/package/show/network/python-grpcio?expand=0&rev=36
|
2022-09-05 10:25:06 +00:00 |
|
|
|
713e12d2b1
|
- update to 1.46.3:
* backport: xds: use federation env var to guard new-style resource name parsing
* This release contains refinements, improvements, and bug fixes.
OBS-URL: https://build.opensuse.org/package/show/network/python-grpcio?expand=0&rev=34
|
2022-06-04 15:07:57 +00:00 |
|
|
|
f3c5845381
|
Accepting request 975462 from home:badshah400:branches:network
Update to version 1.46.0
OBS-URL: https://build.opensuse.org/request/show/975462
OBS-URL: https://build.opensuse.org/package/show/network/python-grpcio?expand=0&rev=32
|
2022-05-09 08:33:48 +00:00 |
|
|
|
80f6eadfd1
|
Accepting request 972319 from home:badshah400:branches:network
* Update to version 1.45.0.
* Build with system re2; add BuildRequires: pkgconfig(re2).
* python-grpcio-disable-boring-ssl.patch: Line offset changes.
* Add grpc-no-return-from-non-void-function.patch to return a default string from a function defined to return a string (patch mirrored from obs://devel:tools/grpc).
*-This line, and those below, will be ignored--
old: network/python-grpcio
new: home:badshah400:branches:network/python-grpcio rev None
Index: python-grpcio-disable-boring-ssl.patch
===================================================================
--- python-grpcio-disable-boring-ssl.patch (revision 29)
+++ python-grpcio-disable-boring-ssl.patch (revision 4)
@@ -7,11 +7,11 @@
setup.py | 1 +
1 file changed, 1 insertion(+)
-diff --git a/setup.py b/setup.py
-index e23c9acf087..72307598a5b 100644
---- a/setup.py
-+++ b/setup.py
-@@ -249,6 +249,7 @@ def check_linker_need_libatomic():
+Index: grpcio-1.45.0/setup.py
+===================================================================
+--- grpcio-1.45.0.orig/setup.py
++++ grpcio-1.45.0/setup.py
+@@ -285,6 +285,7 @@ if BUILD_WITH_SYSTEM_OPENSSL:
CORE_C_FILES)
CORE_C_FILES = filter(lambda x: 'src/boringssl' not in x, CORE_C_FILES)
SSL_INCLUDE = (os.path.join('/usr', 'include', 'openssl'),)
@@ -19,4 +19,3 @@
if BUILD_WITH_SYSTEM_ZLIB:
CORE_C_FILES = filter(lambda x: 'third_party/zlib' not in x, CORE_C_FILES)
-
Index: python-grpcio.changes
===================================================================
--- python-grpcio.changes (revision 29)
+++ python-grpcio.changes (revision 4)
@@ -1,4 +1,19 @@
-------------------------------------------------------------------
+Tue Mar 29 12:28:19 UTC 2022 - Atri Bhattacharya <badshah400@gmail.com>
+
+- Update to version 1.45.0:
+ * Reimplement Gevent Integration [gh#grpc/grpc#28276].
+ * Support musllinux binary wheels on x64 and x86
+ [gh#grpc/grpc#28092].
+ * Increase the Python protobuf requirement to >=3.12.0
+ [gh#grpc/grpc#28604].
+- Build with system re2; add BuildRequires: pkgconfig(re2).
+- python-grpcio-disable-boring-ssl.patch: Line offset changes.
+- Add grpc-no-return-from-non-void-function.patch to return a
+ default string from a function defined to return a string (patch
+ mirrored from obs://devel:tools/grpc).
+
+-------------------------------------------------------------------
Sat Feb 19 17:04:04 UTC 2022 - Atri Bhattacharya <badshah400@gmail.com>
- Update to version 1.44.0:
Index: python-grpcio.spec
===================================================================
--- python-grpcio.spec (revision 29)
+++ python-grpcio.spec (revision 4)
@@ -20,7 +20,7 @@
# PYTHON2 NOT SUPPORTED BY UPSTREAM
%define skip_python2 1
Name: python-grpcio
-Version: 1.44.0
+Version: 1.45.0
Release: 0
Summary: HTTP/2-based Remote Procedure Call implementation
License: Apache-2.0
@@ -29,6 +29,8 @@
Source: https://files.pythonhosted.org/packages/source/g/grpcio/grpcio-%{version}.tar.gz
# PATCH-FIX-UPSTREAM python-grpcio-disable-boring-ssl.patch gh#grpc/grpc#24498 badshah400@gmail.com -- Make enabling system ssl disable boring ssl; patch taken from upstream PR
Patch0: python-grpcio-disable-boring-ssl.patch
+# PATCH-FIX-UPSTREAM grpc-no-return-from-non-void-function.patch badshah400@gmail.com -- Return a default string from a function defined to return a string (patch mirrored from obs://devel:tools/grpc)
+Patch1: grpc-no-return-from-non-void-function.patch
BuildRequires: %{python_module Cython}
BuildRequires: %{python_module devel}
BuildRequires: %{python_module setuptools}
@@ -39,6 +41,7 @@
BuildRequires: python-rpm-macros
BuildRequires: pkgconfig(libcares)
BuildRequires: pkgconfig(openssl)
+BuildRequires: pkgconfig(re2)
BuildRequires: pkgconfig(zlib)
Requires: ca-certificates
Requires: python-six >= 1.5.2
@@ -60,6 +63,7 @@
export GRPC_PYTHON_BUILD_SYSTEM_ZLIB=true
export GRPC_PYTHON_BUILD_SYSTEM_OPENSSL=true
export GRPC_PYTHON_BUILD_SYSTEM_CARES=true
+export GRPC_PYTHON_BUILD_SYSTEM_RE2=true
%python_build
%install
Index: grpc-no-return-from-non-void-function.patch
===================================================================
--- grpc-no-return-from-non-void-function.patch (added)
+++ grpc-no-return-from-non-void-function.patch (revision 4)
@@ -0,0 +1,12 @@
+Index: grpc-1.45.0/src/core/lib/transport/metadata_batch.h
+===================================================================
+--- grpc-1.45.0.orig/src/core/lib/transport/metadata_batch.h
++++ grpc-1.45.0/src/core/lib/transport/metadata_batch.h
+@@ -530,6 +530,7 @@ struct GrpcStreamNetworkState {
+ case kNotSeenByServer:
+ return "not seen by server";
+ }
++ return "none";
+ }
+ };
+
Index: grpcio-1.45.0.tar.gz
===================================================================
Binary file grpcio-1.45.0.tar.gz (revision 4) added
Index: grpcio-1.44.0.tar.gz
===================================================================
Binary file grpcio-1.44.0.tar.gz (revision 29) deleted
OBS-URL: https://build.opensuse.org/request/show/972319
OBS-URL: https://build.opensuse.org/package/show/network/python-grpcio?expand=0&rev=30
|
2022-05-02 07:34:58 +00:00 |
|
|
|
f782683797
|
Accepting request 956021 from home:badshah400:branches:network
Update to version 1.44.0
OBS-URL: https://build.opensuse.org/request/show/956021
OBS-URL: https://build.opensuse.org/package/show/network/python-grpcio?expand=0&rev=29
|
2022-02-20 16:06:23 +00:00 |
|
|
|
cb37ad910e
|
Accepting request 953004 from home:badshah400:branches:network
Update to version 1.43.0
OBS-URL: https://build.opensuse.org/request/show/953004
OBS-URL: https://build.opensuse.org/package/show/network/python-grpcio?expand=0&rev=28
|
2022-02-09 20:08:28 +00:00 |
|
|
|
16e653f32f
|
- update to 1.41.1:
* This is release 1.41.0 (goat) of gRPC Core.
OBS-URL: https://build.opensuse.org/package/show/network/python-grpcio?expand=0&rev=27
|
2021-10-26 20:52:04 +00:00 |
|
|
|
664ef1536c
|
OBS-URL: https://build.opensuse.org/package/show/network/python-grpcio?expand=0&rev=26
|
2021-10-22 16:19:58 +00:00 |
|
|
|
9ef38dd7cd
|
Accepting request 926791 from home:badshah400:branches:network
Update to version 1.41.0
OBS-URL: https://build.opensuse.org/request/show/926791
OBS-URL: https://build.opensuse.org/package/show/network/python-grpcio?expand=0&rev=25
|
2021-10-22 16:19:45 +00:00 |
|
|
|
c2f1a40f94
|
Accepting request 910125 from home:badshah400:branches:network
Update to version 1.39.0.
OBS-URL: https://build.opensuse.org/request/show/910125
OBS-URL: https://build.opensuse.org/package/show/network/python-grpcio?expand=0&rev=24
|
2021-08-07 13:15:39 +00:00 |
|
|
|
7cafd436c0
|
Accepting request 903299 from home:badshah400:branches:network
Update to version 1.38.1.
OBS-URL: https://build.opensuse.org/request/show/903299
OBS-URL: https://build.opensuse.org/package/show/network/python-grpcio?expand=0&rev=23
|
2021-07-04 19:11:44 +00:00 |
|
|
|
b94f76cfe8
|
Accepting request 895005 from home:badshah400:branches:network
Update to version 1.38.0.
OBS-URL: https://build.opensuse.org/request/show/895005
OBS-URL: https://build.opensuse.org/package/show/network/python-grpcio?expand=0&rev=21
|
2021-05-26 12:54:44 +00:00 |
|
|
|
555a0a5b79
|
Accepting request 891534 from home:badshah400:branches:network
Update to version 1.37.1.
OBS-URL: https://build.opensuse.org/request/show/891534
OBS-URL: https://build.opensuse.org/package/show/network/python-grpcio?expand=0&rev=19
|
2021-05-09 14:22:45 +00:00 |
|
|
|
8a006502a4
|
Accepting request 876839 from home:badshah400:branches:network
Update to version 1.36.1.
OBS-URL: https://build.opensuse.org/request/show/876839
OBS-URL: https://build.opensuse.org/package/show/network/python-grpcio?expand=0&rev=17
|
2021-03-05 07:52:29 +00:00 |
|
|
|
c50a7a4a01
|
Accepting request 875179 from home:munix9:branches:network
- Update to version 1.35.0:
* Implement Python Client and Server xDS Creds.
(gh#grpc/grpc#25365)
* Add %define _lto_cflags %{nil} (boo#1182659) (rh#1893533)
* Link roots.pem to ca-bundle.pem from ca-certificates package
OBS-URL: https://build.opensuse.org/request/show/875179
OBS-URL: https://build.opensuse.org/package/show/network/python-grpcio?expand=0&rev=15
|
2021-02-25 16:46:06 +00:00 |
|
|
|
aee9369bd7
|
Accepting request 862984 from home:badshah400:branches:network
Update to version 1.34.1
OBS-URL: https://build.opensuse.org/request/show/862984
OBS-URL: https://build.opensuse.org/package/show/network/python-grpcio?expand=0&rev=13
|
2021-01-16 12:20:03 +00:00 |
|
|
|
73b42c22f0
|
Accepting request 853437 from home:badshah400:branches:network
Update to version 1.34.0
OBS-URL: https://build.opensuse.org/request/show/853437
OBS-URL: https://build.opensuse.org/package/show/network/python-grpcio?expand=0&rev=11
|
2020-12-07 09:48:35 +00:00 |
|
|
|
74de1e102e
|
Accepting request 845169 from home:badshah400:branches:network
OBS-URL: https://build.opensuse.org/request/show/845169
OBS-URL: https://build.opensuse.org/package/show/network/python-grpcio?expand=0&rev=9
|
2020-11-03 08:17:28 +00:00 |
|
|
|
63b2023c2a
|
Accepting request 843284 from home:badshah400:branches:network
* Update to version 1.33.1.
* Add python-grpcio-disable-boring-ssl.patch: Make enabling system ssl disable boring ssl (gh#grpc/grpc#24498); patch taken from upstream PR.
OBS-URL: https://build.opensuse.org/request/show/843284
OBS-URL: https://build.opensuse.org/package/show/network/python-grpcio?expand=0&rev=7
|
2020-10-26 14:13:40 +00:00 |
|
|
|
84f3c1b0fd
|
- update to 1.31.0
* no upstream changelog available
OBS-URL: https://build.opensuse.org/package/show/network/python-grpcio?expand=0&rev=5
|
2020-09-16 11:12:20 +00:00 |
|
|
|
4195763142
|
Accepting request 826294 from home:jengelh:branches:network
- Trim marketing wording from description.
OBS-URL: https://build.opensuse.org/request/show/826294
OBS-URL: https://build.opensuse.org/package/show/network/python-grpcio?expand=0&rev=2
|
2020-08-16 17:33:57 +00:00 |
|
|
|
06c8b1e395
|
Accepting request 823977 from home:badshah400
An HTTP/2-based RPC framework (dependency for warpinator)
OBS-URL: https://build.opensuse.org/request/show/823977
OBS-URL: https://build.opensuse.org/package/show/network/python-grpcio?expand=0&rev=1
|
2020-08-10 07:51:27 +00:00 |
|