15
0
Files
python-certifi/python-certifi.spec
Markéta Machová 8942337bc9 Accepting request 1036414 from home:glaubitz:branches:devel:languages:python
- Update to 2022.9.24:
  * (no changes)
- from version 2022.09.24:
  * (no changes)
- from version 2022.09.14:
  * (no changes)
- from version 2022.06.15.2:
  * Only use importlib.resources's new files() /
    Traversable API on Python ≥3.11 (#204)
- from version 2022.06.15.1:
  * Fix deprecation warning on Python 3.11 (#199)
  * fixes #198 -- update link in license
- from version 2022.06.15:
  * Add py.typed to MANIFEST.in to package in sdist (#196)
- from version 2022.05.18.1:
  * Add support for Python 3.10 and drop EOL 3.5 (#167)
- from version 2022.05.18:
  * Automatically lock github issues after
    they've been closed for 90 days (#189)
  * Remove universal wheel, python 2 is unsupported (#187)
  * Add type annotations to package
  * Added Required Python Version (#152)
  * Fix homepage link (#145)
- Refresh patches for new version
  * python-certifi-shipped-requests-cabundle.patch

OBS-URL: https://build.opensuse.org/request/show/1036414
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-certifi?expand=0&rev=57
2022-11-17 12:40:32 +00:00

79 lines
2.7 KiB
RPMSpec

#
# spec file for package python-certifi
#
# Copyright (c) 2022 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-certifi
Version: 2022.9.24
Release: 0
Summary: Python package for providing Mozilla's CA Bundle
License: MPL-2.0
Group: Development/Languages/Python
URL: https://github.com/certifi/python-certifi
Source: https://files.pythonhosted.org/packages/source/c/certifi/certifi-%{version}.tar.gz
# PATCH-FIX-SUSE -- prefer SUSE certificates
Patch0: python-certifi-shipped-requests-cabundle.patch
# PATCH-FEATURE-UPSTREAM two-basic-unit-tests.patch gh#certifi/python-certifi#137 mcepl@suse.com
# Add at least primitive test suite (by bnavigator)
Patch1: two-basic-unit-tests.patch
BuildRequires: %{python_module setuptools}
BuildRequires: ca-certificates
BuildRequires: ca-certificates-mozilla
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: ca-certificates
Requires: ca-certificates-mozilla
BuildArch: noarch
%python_subpackages
%description
Certifi provides Mozilla's carefully curated collection of Root Certificates
for validating the trustworthiness of SSL certificates while verifying the
identity of TLS hosts. It has been extracted from the Requests project.
Note that on SUSE packages the used CA bundle is actually the system bundle
%prep
%autosetup -p1 -n certifi-%{version}
%build
%python_build
%install
%python_install
%{python_expand chmod +x %{buildroot}%{$python_sitelib}/certifi/core.py
sed -i "s|#!%{_bindir}/env python|#!%__$python|" %{buildroot}/%{$python_sitelib}/certifi/core.py
rm %{buildroot}%{$python_sitelib}/certifi/cacert.pem
}
%python_expand $python -m compileall %{buildroot}%{$python_sitelib}/certifi/
%python_expand $python -O -m compileall %{buildroot}%{$python_sitelib}/certifi/
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
%pyunittest -v certifi.tests.test_certifi
%files %{python_files}
%license LICENSE
%doc README.rst
%{python_sitelib}/certifi/
%{python_sitelib}/certifi-%{version}-py*.egg-info
%changelog