From 2c3fb34e766676b28b887d66d82d923b5b837c45 Mon Sep 17 00:00:00 2001 From: chenhaixing Date: Wed, 6 Jul 2022 20:49:34 +0800 Subject: [PATCH] add-patch-Bump-RECENT_DATE.patch --- Bump-RECENT_DATE.patch | 25 +++++++++++++++++++++++++ python-urllib3.spec | 6 +++++- 2 files changed, 30 insertions(+), 1 deletion(-) create mode 100644 Bump-RECENT_DATE.patch diff --git a/Bump-RECENT_DATE.patch b/Bump-RECENT_DATE.patch new file mode 100644 index 0000000..f7af7f8 --- /dev/null +++ b/Bump-RECENT_DATE.patch @@ -0,0 +1,25 @@ +From 2d98f6b53c38ab8e224cb825d6323b8eb54c887f Mon Sep 17 00:00:00 2001 +From: Quentin Pradet +Date: Fri, 1 Jul 2022 14:43:18 +0400 +Subject: [PATCH] Bump RECENT_DATE + +--- + /src/urllib3/connection.py | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/urllib3/connection.py b/src/urllib3/connection.py +index 60f70f7..f4991e5 100644 +--- a/src/urllib3/connection.py ++++ b/src/urllib3/connection.py +@@ -68,7 +68,7 @@ port_by_scheme = {"http": 80, "https": 443} + + # When it comes time to update this value as a part of regular maintenance + # (ie test_recent_date is failing) update it to ~6 months before the current date. +-RECENT_DATE = datetime.date(2020, 7, 1) ++RECENT_DATE = datetime.date(2022, 1, 1) + + _CONTAINS_CONTROL_CHAR_RE = re.compile(r"[^-!#$%&'*+.^_`|~0-9a-zA-Z]") + +-- +2.27.0 + diff --git a/python-urllib3.spec b/python-urllib3.spec index 36d9e13..9729bf5 100644 --- a/python-urllib3.spec +++ b/python-urllib3.spec @@ -3,7 +3,7 @@ Name: python-%{srcname} Version: 1.26.7 -Release: 1 +Release: 2 Summary: Sanity-friendly HTTP client for Python License: MIT URL: https://urllib3.readthedocs.io @@ -12,6 +12,7 @@ Source1: ssl_match_hostname_py3.py Patch0001: remove_mock.patch Patch6000: backport-CVE-2021-28363.patch +Patch6001: Bump-RECENT_DATE.patch BuildArch: noarch @@ -73,6 +74,9 @@ PYTHONPATH=%{buildroot}%{python3_sitelib}:%{python3_sitelib} %{__python3} -m pyt %{python3_sitelib}/urllib3-*.egg-info %changelog +* Wed Jul 06 2022 chenhaixing - 1.26.7-2 +- add patch Bump RECENT_DATE and solve test case test_recent_date failed + * Wed Jan 19 2022 wangkerong - 1.26.7-1 - update to 1.26.7 and remove python-nose dependency -- Gitee