Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 15 Apr 2018 02:01:44 +0000 (UTC)
From:      "Vanilla I. Shu" <vanilla@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r467361 - in head/devel/py-grpcio: . files
Message-ID:  <201804150201.w3F21iT5043484@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: vanilla
Date: Sun Apr 15 02:01:44 2018
New Revision: 467361
URL: https://svnweb.freebsd.org/changeset/ports/467361

Log:
  Update to 1.11.0.

Modified:
  head/devel/py-grpcio/Makefile
  head/devel/py-grpcio/distinfo
  head/devel/py-grpcio/files/patch-setup.py
  head/devel/py-grpcio/files/patch-src_core_tsi_ssl__transport__security.cc
  head/devel/py-grpcio/files/patch-src_python_grpcio_grpc__core__dependencies.py
  head/devel/py-grpcio/files/patch-third__party_boringssl_include_openssl_base.h

Modified: head/devel/py-grpcio/Makefile
==============================================================================
--- head/devel/py-grpcio/Makefile	Sun Apr 15 02:00:36 2018	(r467360)
+++ head/devel/py-grpcio/Makefile	Sun Apr 15 02:01:44 2018	(r467361)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	grpcio
-PORTVERSION=	1.10.1
+PORTVERSION=	1.11.0
 CATEGORIES=	devel python
 MASTER_SITES=	CHEESESHOP
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}

Modified: head/devel/py-grpcio/distinfo
==============================================================================
--- head/devel/py-grpcio/distinfo	Sun Apr 15 02:00:36 2018	(r467360)
+++ head/devel/py-grpcio/distinfo	Sun Apr 15 02:01:44 2018	(r467361)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1522984274
-SHA256 (grpcio-1.10.1.tar.gz) = 35e1545483e62ef142f9d72c3d34b3cbbfb514e108d584535db946070bc96252
-SIZE (grpcio-1.10.1.tar.gz) = 13998215
+TIMESTAMP = 1523723453
+SHA256 (grpcio-1.11.0.tar.gz) = a26d32bdc1479c3983194ad380e4cc4bad379729fac4d4acbbda209658d65610
+SIZE (grpcio-1.11.0.tar.gz) = 14188590

Modified: head/devel/py-grpcio/files/patch-setup.py
==============================================================================
--- head/devel/py-grpcio/files/patch-setup.py	Sun Apr 15 02:00:36 2018	(r467360)
+++ head/devel/py-grpcio/files/patch-setup.py	Sun Apr 15 02:01:44 2018	(r467361)
@@ -1,4 +1,4 @@
---- setup.py.orig	2018-01-02 23:09:14 UTC
+--- setup.py.orig	2018-04-13 19:56:08 UTC
 +++ setup.py
 @@ -37,17 +37,6 @@ PYTHON_STEM = os.path.join('src', 'pytho
  CORE_INCLUDE = ('include', '.',)
@@ -15,10 +15,10 @@
 -  CARES_INCLUDE += (os.path.join('third_party', 'cares', 'config_linux'),)
 -if 'openbsd' in sys.platform:
 -  CARES_INCLUDE += (os.path.join('third_party', 'cares', 'config_openbsd'),)
+ ADDRESS_SORTING_INCLUDE = (os.path.join('third_party', 'address_sorting', 'include'),)
  README = os.path.join(PYTHON_STEM, 'README.rst')
  
- # Ensure we're in the proper directory whether or not we're being used by pip.
-@@ -143,12 +132,9 @@ CYTHON_EXTENSION_MODULE_NAMES = ('grpc._
+@@ -145,12 +134,10 @@ CYTHON_EXTENSION_MODULE_NAMES = ('grpc._
  CYTHON_HELPER_C_FILES = ()
  
  CORE_C_FILES = tuple(grpc_core_dependencies.CORE_SOURCE_FILES)
@@ -26,9 +26,9 @@
 -  CORE_C_FILES = filter(lambda x: 'third_party/cares' not in x, CORE_C_FILES)
  
  EXTENSION_INCLUDE_DIRECTORIES = (
--    (PYTHON_STEM,) + CORE_INCLUDE + BORINGSSL_INCLUDE + ZLIB_INCLUDE +
--    CARES_INCLUDE)
-+    (PYTHON_STEM,) + CORE_INCLUDE + BORINGSSL_INCLUDE + ZLIB_INCLUDE)
+     (PYTHON_STEM,) + CORE_INCLUDE + BORINGSSL_INCLUDE + ZLIB_INCLUDE +
+-    CARES_INCLUDE + ADDRESS_SORTING_INCLUDE)
++    ADDRESS_SORTING_INCLUDE)
  
  EXTENSION_LIBRARIES = ()
  if "linux" in sys.platform:

Modified: head/devel/py-grpcio/files/patch-src_core_tsi_ssl__transport__security.cc
==============================================================================
--- head/devel/py-grpcio/files/patch-src_core_tsi_ssl__transport__security.cc	Sun Apr 15 02:00:36 2018	(r467360)
+++ head/devel/py-grpcio/files/patch-src_core_tsi_ssl__transport__security.cc	Sun Apr 15 02:01:44 2018	(r467361)
@@ -1,8 +1,8 @@
---- src/core/tsi/ssl_transport_security.cc.orig	2018-01-02 23:09:14 UTC
+--- src/core/tsi/ssl_transport_security.cc.orig	2018-04-13 19:56:08 UTC
 +++ src/core/tsi/ssl_transport_security.cc
 @@ -20,6 +20,7 @@
  
- #include <grpc/support/port_platform.h>
+ #include "src/core/tsi/ssl_transport_security.h"
  
 +#include <sys/socket.h>
  #include <limits.h>

Modified: head/devel/py-grpcio/files/patch-src_python_grpcio_grpc__core__dependencies.py
==============================================================================
--- head/devel/py-grpcio/files/patch-src_python_grpcio_grpc__core__dependencies.py	Sun Apr 15 02:00:36 2018	(r467360)
+++ head/devel/py-grpcio/files/patch-src_python_grpcio_grpc__core__dependencies.py	Sun Apr 15 02:01:44 2018	(r467361)
@@ -1,6 +1,6 @@
---- src/python/grpcio/grpc_core_dependencies.py.orig	2018-02-01 19:43:12 UTC
+--- src/python/grpcio/grpc_core_dependencies.py.orig	2018-04-13 19:56:08 UTC
 +++ src/python/grpcio/grpc_core_dependencies.py
-@@ -629,53 +629,4 @@ CORE_SOURCE_FILES = [
+@@ -631,53 +631,4 @@ CORE_SOURCE_FILES = [
      'third_party/zlib/trees.c',
      'third_party/zlib/uncompr.c',
      'third_party/zlib/zutil.c',

Modified: head/devel/py-grpcio/files/patch-third__party_boringssl_include_openssl_base.h
==============================================================================
--- head/devel/py-grpcio/files/patch-third__party_boringssl_include_openssl_base.h	Sun Apr 15 02:00:36 2018	(r467360)
+++ head/devel/py-grpcio/files/patch-third__party_boringssl_include_openssl_base.h	Sun Apr 15 02:01:44 2018	(r467361)
@@ -1,6 +1,6 @@
---- third_party/boringssl/include/openssl/base.h.orig	2018-01-02 23:09:20 UTC
+--- third_party/boringssl/include/openssl/base.h.orig	2018-04-13 19:56:11 UTC
 +++ third_party/boringssl/include/openssl/base.h
-@@ -328,9 +328,6 @@ typedef void *OPENSSL_BLOCK;
+@@ -367,9 +367,6 @@ typedef void *OPENSSL_BLOCK;
  // MSVC doesn't set __cplusplus to 201103 to indicate C++11 support (see
  // https://connect.microsoft.com/VisualStudio/feedback/details/763051/a-value-of-predefined-macro-cplusplus-is-still-199711l)
  // so MSVC is just assumed to support C++11.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201804150201.w3F21iT5043484>