Blame SOURCES/bundled-libs.patch

fe34ac
diff -uNr a/msrest/authentication.py b/msrest/authentication.py
fe34ac
--- a/msrest/authentication.py	2018-07-13 00:15:27.000000000 +0200
fe34ac
+++ b/msrest/authentication.py	2019-05-03 15:24:56.197378655 +0200
fe34ac
@@ -23,6 +23,8 @@
fe34ac
 # IN THE SOFTWARE.
fe34ac
 #
fe34ac
 # --------------------------------------------------------------------------
fe34ac
+import sys
fe34ac
+sys.path.insert(0, '/usr/lib/python-msrest/bundled')
fe34ac
 from typing import Optional, Dict
fe34ac
 
fe34ac
 import requests
fe34ac
@@ -250,4 +252,4 @@
fe34ac
                 self._topic_key_header: topic_key,
fe34ac
             }
fe34ac
         )
fe34ac
-    
fe34ac
\ No newline at end of file
fe34ac
+    
fe34ac
diff -uNr a/msrest/configuration.py b/msrest/configuration.py
fe34ac
--- a/msrest/configuration.py	2018-07-13 00:15:27.000000000 +0200
fe34ac
+++ b/msrest/configuration.py	2019-05-03 15:21:21.714180695 +0200
fe34ac
@@ -33,6 +33,8 @@
fe34ac
     from ConfigParser import NoOptionError  # type: ignore
fe34ac
 import platform
fe34ac
 
fe34ac
+import sys
fe34ac
+sys.path.insert(0, '/usr/lib/python-msrest/bundled')
fe34ac
 from typing import Dict, List, Any, Callable
fe34ac
 
fe34ac
 import requests
fe34ac
diff -uNr a/msrest/exceptions.py b/msrest/exceptions.py
fe34ac
--- a/msrest/exceptions.py	2018-07-13 00:15:27.000000000 +0200
fe34ac
+++ b/msrest/exceptions.py	2019-05-03 15:24:04.788289959 +0200
fe34ac
@@ -27,6 +27,7 @@
fe34ac
 import logging
fe34ac
 import sys
fe34ac
 
fe34ac
+sys.path.insert(0, '/usr/lib/python-msrest/bundled')
fe34ac
 from typing import Callable, Any, Optional, TYPE_CHECKING
fe34ac
 
fe34ac
 if TYPE_CHECKING:
fe34ac
diff -uNr a/msrest/http_logger.py b/msrest/http_logger.py
fe34ac
--- a/msrest/http_logger.py	2018-07-13 00:15:27.000000000 +0200
fe34ac
+++ b/msrest/http_logger.py	2019-05-03 15:25:23.071902273 +0200
fe34ac
@@ -28,6 +28,8 @@
fe34ac
 import re
fe34ac
 import types
fe34ac
 
fe34ac
+import sys
fe34ac
+sys.path.insert(0, '/usr/lib/python-msrest/bundled')
fe34ac
 from typing import Any, Union, Optional, TYPE_CHECKING
fe34ac
 
fe34ac
 if TYPE_CHECKING:
fe34ac
diff -uNr a/msrest/paging.py b/msrest/paging.py
fe34ac
--- a/msrest/paging.py	2018-07-13 00:15:27.000000000 +0200
fe34ac
+++ b/msrest/paging.py	2019-05-03 15:21:59.087518189 +0200
fe34ac
@@ -29,6 +29,8 @@
fe34ac
 except ImportError:
fe34ac
     from collections import Iterator
fe34ac
 
fe34ac
+import sys
fe34ac
+sys.path.insert(0, '/usr/lib/python-msrest/bundled')
fe34ac
 from typing import Dict, Any, List, Callable, Optional, TYPE_CHECKING
fe34ac
 
fe34ac
 if TYPE_CHECKING:
fe34ac
diff -uNr a/msrest/pipeline.py b/msrest/pipeline.py
fe34ac
--- a/msrest/pipeline.py	2018-07-13 00:15:27.000000000 +0200
fe34ac
+++ b/msrest/pipeline.py	2019-05-03 15:23:44.789644462 +0200
fe34ac
@@ -33,6 +33,8 @@
fe34ac
     from urllib.parse import urlparse
fe34ac
 import xml.etree.ElementTree as ET
fe34ac
 
fe34ac
+import sys
fe34ac
+sys.path.insert(0, '/usr/lib/python-msrest/bundled')
fe34ac
 from typing import Dict, Any, Optional, Union, List, TYPE_CHECKING
fe34ac
 
fe34ac
 if TYPE_CHECKING:
fe34ac
diff -uNr a/msrest/polling/poller.py b/msrest/polling/poller.py
fe34ac
--- a/msrest/polling/poller.py	2018-07-13 00:15:27.000000000 +0200
fe34ac
+++ b/msrest/polling/poller.py	2019-05-03 15:22:48.745637924 +0200
fe34ac
@@ -31,6 +31,8 @@
fe34ac
 except ImportError:
fe34ac
     from urllib.parse import urlparse
fe34ac
 
fe34ac
+import sys
fe34ac
+sys.path.insert(0, '/usr/lib/python-msrest/bundled')
fe34ac
 from typing import Any, Callable, Union, List, Optional, TYPE_CHECKING
fe34ac
 
fe34ac
 if TYPE_CHECKING:
fe34ac
diff -uNr a/msrest/serialization.py b/msrest/serialization.py
fe34ac
--- a/msrest/serialization.py	2018-07-13 00:15:27.000000000 +0200
fe34ac
+++ b/msrest/serialization.py	2019-05-03 15:24:30.140840555 +0200
fe34ac
@@ -41,6 +41,7 @@
fe34ac
 
fe34ac
 import isodate
fe34ac
 
fe34ac
+sys.path.insert(0, '/usr/lib/python-msrest/bundled')
fe34ac
 from typing import Dict, Any
fe34ac
 
fe34ac
 from .exceptions import (
fe34ac
diff -uNr a/msrest/service_client.py b/msrest/service_client.py
fe34ac
--- a/msrest/service_client.py	2018-07-13 00:15:27.000000000 +0200
fe34ac
+++ b/msrest/service_client.py	2019-05-03 15:23:16.304149413 +0200
fe34ac
@@ -33,6 +33,8 @@
fe34ac
     from urllib.parse import urljoin, urlparse
fe34ac
 import warnings
fe34ac
 
fe34ac
+import sys
fe34ac
+sys.path.insert(0, '/usr/lib/python-msrest/bundled')
fe34ac
 from typing import Any, Dict, Union, IO, Tuple, Optional, cast, TYPE_CHECKING
fe34ac
 
fe34ac
 if TYPE_CHECKING: