From a2f84b028b463e2c9337edad08b173c6699fa558 Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Sat, 19 Dec 2020 00:14:25 -0300 Subject: Update certifi to the last version with Python2.7 support We're now using Certifi 2020.4.5.1 --- game/python-extra/certifi/__init__.py | 3 +++ game/python-extra/certifi/__main__.py | 12 ++++++++++++ game/python-extra/certifi/core.py | 30 ++++++++++++++++++++++++++++++ 3 files changed, 45 insertions(+) create mode 100644 game/python-extra/certifi/__init__.py create mode 100644 game/python-extra/certifi/__main__.py create mode 100644 game/python-extra/certifi/core.py (limited to 'game') diff --git a/game/python-extra/certifi/__init__.py b/game/python-extra/certifi/__init__.py new file mode 100644 index 0000000..1e2dfac --- /dev/null +++ b/game/python-extra/certifi/__init__.py @@ -0,0 +1,3 @@ +from .core import contents, where + +__version__ = "2020.04.05.1" diff --git a/game/python-extra/certifi/__main__.py b/game/python-extra/certifi/__main__.py new file mode 100644 index 0000000..8945b5d --- /dev/null +++ b/game/python-extra/certifi/__main__.py @@ -0,0 +1,12 @@ +import argparse + +from certifi import contents, where + +parser = argparse.ArgumentParser() +parser.add_argument("-c", "--contents", action="store_true") +args = parser.parse_args() + +if args.contents: + print(contents()) +else: + print(where()) diff --git a/game/python-extra/certifi/core.py b/game/python-extra/certifi/core.py new file mode 100644 index 0000000..56b52a3 --- /dev/null +++ b/game/python-extra/certifi/core.py @@ -0,0 +1,30 @@ +# -*- coding: utf-8 -*- + +""" +certifi.py +~~~~~~~~~~ + +This module returns the installation location of cacert.pem or its contents. +""" +import os + +try: + from importlib.resources import read_text +except ImportError: + # This fallback will work for Python versions prior to 3.7 that lack the + # importlib.resources module but relies on the existing `where` function + # so won't address issues with environments like PyOxidizer that don't set + # __file__ on modules. + def read_text(_module, _path, encoding="ascii"): + with open(where(), "r", encoding=encoding) as data: + return data.read() + + +def where(): + f = os.path.dirname(__file__) + + return os.path.join(f, "cacert.pem") + + +def contents(): + return read_text("certifi", "cacert.pem", encoding="ascii") -- cgit v1.2.3-70-g09d2