116 lines
4.4 KiB
Diff
116 lines
4.4 KiB
Diff
From dca973830d4eee3e0f79e61237c44a9dd8201641 Mon Sep 17 00:00:00 2001
|
|
From: Trevor Gamblin <trevor.gamblin@windriver.com>
|
|
Date: Tue, 22 Jun 2021 12:31:46 -0400
|
|
Subject: [PATCH] change shebang to python3
|
|
|
|
Upstream-Status: Inappropriate (OE-specific)
|
|
|
|
Despite no longer supporting python2, some files in the pip source refer
|
|
to "python" instead of "python3", so patch them as needed to ensure that
|
|
they correctly reference the python3 binary.
|
|
|
|
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
|
|
|
|
---
|
|
src/pip/_vendor/chardet/langbulgarianmodel.py | 2 +-
|
|
src/pip/_vendor/chardet/langgreekmodel.py | 2 +-
|
|
src/pip/_vendor/chardet/langhebrewmodel.py | 2 +-
|
|
src/pip/_vendor/chardet/langhungarianmodel.py | 2 +-
|
|
src/pip/_vendor/chardet/langrussianmodel.py | 2 +-
|
|
src/pip/_vendor/chardet/langthaimodel.py | 2 +-
|
|
src/pip/_vendor/chardet/langturkishmodel.py | 2 +-
|
|
src/pip/_vendor/chardet/metadata/languages.py | 2 +-
|
|
src/pip/_vendor/requests/certs.py | 2 +-
|
|
9 files changed, 9 insertions(+), 9 deletions(-)
|
|
|
|
diff --git a/src/pip/_vendor/chardet/langbulgarianmodel.py b/src/pip/_vendor/chardet/langbulgarianmodel.py
|
|
index e963a50..97ea6ce 100644
|
|
--- a/src/pip/_vendor/chardet/langbulgarianmodel.py
|
|
+++ b/src/pip/_vendor/chardet/langbulgarianmodel.py
|
|
@@ -1,4 +1,4 @@
|
|
-#!/usr/bin/env python
|
|
+#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from pip._vendor.chardet.sbcharsetprober import SingleByteCharSetModel
|
|
diff --git a/src/pip/_vendor/chardet/langgreekmodel.py b/src/pip/_vendor/chardet/langgreekmodel.py
|
|
index d99528e..4a127ea 100644
|
|
--- a/src/pip/_vendor/chardet/langgreekmodel.py
|
|
+++ b/src/pip/_vendor/chardet/langgreekmodel.py
|
|
@@ -1,4 +1,4 @@
|
|
-#!/usr/bin/env python
|
|
+#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from pip._vendor.chardet.sbcharsetprober import SingleByteCharSetModel
|
|
diff --git a/src/pip/_vendor/chardet/langhebrewmodel.py b/src/pip/_vendor/chardet/langhebrewmodel.py
|
|
index 484c652..676c1a7 100644
|
|
--- a/src/pip/_vendor/chardet/langhebrewmodel.py
|
|
+++ b/src/pip/_vendor/chardet/langhebrewmodel.py
|
|
@@ -1,4 +1,4 @@
|
|
-#!/usr/bin/env python
|
|
+#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from pip._vendor.chardet.sbcharsetprober import SingleByteCharSetModel
|
|
diff --git a/src/pip/_vendor/chardet/langhungarianmodel.py b/src/pip/_vendor/chardet/langhungarianmodel.py
|
|
index bbc5cda..042eae7 100644
|
|
--- a/src/pip/_vendor/chardet/langhungarianmodel.py
|
|
+++ b/src/pip/_vendor/chardet/langhungarianmodel.py
|
|
@@ -1,4 +1,4 @@
|
|
-#!/usr/bin/env python
|
|
+#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from pip._vendor.chardet.sbcharsetprober import SingleByteCharSetModel
|
|
diff --git a/src/pip/_vendor/chardet/langrussianmodel.py b/src/pip/_vendor/chardet/langrussianmodel.py
|
|
index 5594452..564b02e 100644
|
|
--- a/src/pip/_vendor/chardet/langrussianmodel.py
|
|
+++ b/src/pip/_vendor/chardet/langrussianmodel.py
|
|
@@ -1,4 +1,4 @@
|
|
-#!/usr/bin/env python
|
|
+#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from pip._vendor.chardet.sbcharsetprober import SingleByteCharSetModel
|
|
diff --git a/src/pip/_vendor/chardet/langthaimodel.py b/src/pip/_vendor/chardet/langthaimodel.py
|
|
index 9a37db5..c974879 100644
|
|
--- a/src/pip/_vendor/chardet/langthaimodel.py
|
|
+++ b/src/pip/_vendor/chardet/langthaimodel.py
|
|
@@ -1,4 +1,4 @@
|
|
-#!/usr/bin/env python
|
|
+#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from pip._vendor.chardet.sbcharsetprober import SingleByteCharSetModel
|
|
diff --git a/src/pip/_vendor/chardet/langturkishmodel.py b/src/pip/_vendor/chardet/langturkishmodel.py
|
|
index 43f4230..7e710c3 100644
|
|
--- a/src/pip/_vendor/chardet/langturkishmodel.py
|
|
+++ b/src/pip/_vendor/chardet/langturkishmodel.py
|
|
@@ -1,4 +1,4 @@
|
|
-#!/usr/bin/env python
|
|
+#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from pip._vendor.chardet.sbcharsetprober import SingleByteCharSetModel
|
|
diff --git a/src/pip/_vendor/chardet/metadata/languages.py b/src/pip/_vendor/chardet/metadata/languages.py
|
|
index 3237d5a..aa2ec7c 100644
|
|
--- a/src/pip/_vendor/chardet/metadata/languages.py
|
|
+++ b/src/pip/_vendor/chardet/metadata/languages.py
|
|
@@ -1,4 +1,4 @@
|
|
-#!/usr/bin/env python
|
|
+#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
"""
|
|
Metadata about languages used by our model training code for our
|
|
diff --git a/src/pip/_vendor/requests/certs.py b/src/pip/_vendor/requests/certs.py
|
|
index 06a594e..bfa7839 100644
|
|
--- a/src/pip/_vendor/requests/certs.py
|
|
+++ b/src/pip/_vendor/requests/certs.py
|
|
@@ -1,4 +1,4 @@
|
|
-#!/usr/bin/env python
|
|
+#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""
|