2023-05-19 16:04:53 +08:00
|
|
|
%global pypi_name cryptography
|
|
|
|
|
Name: python-%{pypi_name}
|
|
|
|
|
Version: 40.0.2
|
|
|
|
|
Release: 1
|
2020-02-13 16:45:17 +08:00
|
|
|
Summary: PyCA's cryptography library
|
|
|
|
|
License: ASL 2.0 or BSD
|
2020-08-08 16:27:57 +08:00
|
|
|
URL: https://cryptography.io/en/latest/
|
2023-05-19 16:04:53 +08:00
|
|
|
Source0: %{pypi_source %{pypi_name}}
|
|
|
|
|
Source1: cargo-vendor-cache.tar.gz
|
2020-08-08 16:27:57 +08:00
|
|
|
|
2023-05-19 16:04:53 +08:00
|
|
|
Patch6002: backport-provide-openssl-apis-related-to-SM-for-python.patch
|
2023-02-14 17:10:23 +08:00
|
|
|
|
2022-07-19 10:33:05 +08:00
|
|
|
BuildRequires: openssl-devel cargo
|
2020-02-13 16:45:17 +08:00
|
|
|
BuildRequires: gcc
|
2023-05-19 16:04:53 +08:00
|
|
|
BuildRequires: rust-packaging
|
2020-02-13 16:45:17 +08:00
|
|
|
|
|
|
|
|
BuildRequires: python%{python3_pkgversion}-devel
|
|
|
|
|
BuildRequires: python%{python3_pkgversion}-pytest >= 3.2.1
|
|
|
|
|
BuildRequires: python%{python3_pkgversion}-setuptools
|
|
|
|
|
BuildRequires: python%{python3_pkgversion}-pretend
|
|
|
|
|
BuildRequires: python%{python3_pkgversion}-iso8601
|
|
|
|
|
BuildRequires: python%{python3_pkgversion}-cryptography-vectors = %{version}
|
|
|
|
|
BuildRequires: python%{python3_pkgversion}-asn1crypto >= 0.21
|
|
|
|
|
BuildRequires: python%{python3_pkgversion}-hypothesis >= 1.11.4
|
|
|
|
|
BuildRequires: python%{python3_pkgversion}-pytz
|
|
|
|
|
BuildRequires: python%{python3_pkgversion}-idna >= 2.1
|
|
|
|
|
BuildRequires: python%{python3_pkgversion}-six >= 1.4.1
|
|
|
|
|
BuildRequires: python%{python3_pkgversion}-cffi >= 1.7
|
2022-07-19 10:33:05 +08:00
|
|
|
BuildRequires: python%{python3_pkgversion}-setuptools-rust
|
|
|
|
|
BuildRequires: python3-pip
|
|
|
|
|
BuildRequires: python3-pytest-subtests
|
2019-09-30 11:14:49 -04:00
|
|
|
%description
|
2020-02-13 16:45:17 +08:00
|
|
|
cryptography is a package designed to expose cryptographic primitives and
|
|
|
|
|
recipes to Python developers.
|
|
|
|
|
|
|
|
|
|
|
2023-05-19 16:04:53 +08:00
|
|
|
%package -n python%{python3_pkgversion}-%{pypi_name}
|
2020-02-13 16:45:17 +08:00
|
|
|
Summary: PyCA's cryptography library
|
|
|
|
|
|
|
|
|
|
Requires: openssl-libs
|
|
|
|
|
Requires: python%{python3_pkgversion}-idna >= 2.1
|
|
|
|
|
Requires: python%{python3_pkgversion}-asn1crypto >= 0.21
|
|
|
|
|
Requires: python%{python3_pkgversion}-six >= 1.4.1
|
|
|
|
|
Requires: python%{python3_pkgversion}-cffi >= 1.7
|
2019-09-30 11:14:49 -04:00
|
|
|
|
2023-05-19 16:04:53 +08:00
|
|
|
%{?python_provide:%python_provide python%{python3_pkgversion}-%{pypi_name}}
|
2019-09-30 11:14:49 -04:00
|
|
|
|
2023-05-19 16:04:53 +08:00
|
|
|
%description -n python%{python3_pkgversion}-%{pypi_name}
|
2020-02-13 16:45:17 +08:00
|
|
|
cryptography is a package designed to expose cryptographic primitives and
|
|
|
|
|
recipes to Python developers.
|
2019-09-30 11:14:49 -04:00
|
|
|
|
|
|
|
|
%package_help
|
|
|
|
|
|
|
|
|
|
%prep
|
2023-05-19 16:04:53 +08:00
|
|
|
%autosetup -n %{pypi_name}-%{version} -p1
|
|
|
|
|
tar xzvf %{SOURCE1} -C ./src/rust/
|
2022-07-19 10:33:05 +08:00
|
|
|
mkdir .cargo
|
|
|
|
|
cat >> .cargo/config.toml << EOF
|
|
|
|
|
[source.crates-io]
|
|
|
|
|
replace-with = "vendored-sources"
|
|
|
|
|
|
|
|
|
|
[source.vendored-sources]
|
|
|
|
|
directory = "src/rust/vendor"
|
|
|
|
|
EOF
|
|
|
|
|
|
2020-02-13 16:45:17 +08:00
|
|
|
|
2019-09-30 11:14:49 -04:00
|
|
|
%build
|
|
|
|
|
%py3_build
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
|
%py3_install
|
|
|
|
|
|
|
|
|
|
%check
|
2023-05-19 16:04:53 +08:00
|
|
|
#PYTHONPATH=%{buildroot}%{python3_sitearch} %{__python3} -m pytest --ignore vendor
|
2019-09-30 11:14:49 -04:00
|
|
|
|
2023-05-19 16:04:53 +08:00
|
|
|
%files -n python%{python3_pkgversion}-%{pypi_name}
|
2020-02-13 16:45:17 +08:00
|
|
|
%defattr(-,root,root)
|
2022-07-19 10:33:05 +08:00
|
|
|
#%doc AUTHORS.rst
|
2020-02-13 16:45:17 +08:00
|
|
|
%license LICENSE LICENSE.APACHE LICENSE.BSD
|
2023-05-19 16:04:53 +08:00
|
|
|
%{python3_sitearch}/%{pypi_name}
|
|
|
|
|
%{python3_sitearch}/%{pypi_name}-%{version}-py*.egg-info
|
2019-09-30 11:14:49 -04:00
|
|
|
|
|
|
|
|
%files help
|
2020-02-13 16:45:17 +08:00
|
|
|
%defattr(-,root,root)
|
|
|
|
|
%doc README.rst docs
|
2019-09-30 11:14:49 -04:00
|
|
|
|
|
|
|
|
%changelog
|
2023-05-19 16:04:53 +08:00
|
|
|
* Fri May 19 2023 Dongxing Wang <dxwangk@isoftstone.com> - 40.0.2-1
|
|
|
|
|
- Upgrade package to 40.0.2
|
|
|
|
|
|
2023-02-14 17:10:23 +08:00
|
|
|
* Tue Feb 14 2023 zhuofeng<zhuofeng2@huawei.com> - 39.0.0-2
|
|
|
|
|
- Type:CVE
|
|
|
|
|
- CVE:CVE-2023-23931
|
|
|
|
|
- SUG:NA
|
|
|
|
|
- DESC:fix CVE-2023-23931
|
|
|
|
|
|
2023-02-03 11:40:27 +08:00
|
|
|
* Fri Feb 3 2023 huangduirong <huangduirong@huawei.com> - 39.0.0-1
|
|
|
|
|
- Upgrade package to 39.0.0
|
|
|
|
|
|
2022-07-19 10:33:05 +08:00
|
|
|
* Tue Jul 19 2022 huangtianhua <huangtianhua@huawei.com> - 36.0.1-1
|
|
|
|
|
- Upgrade package to 36.0.1
|
|
|
|
|
|
2022-07-01 14:26:16 +08:00
|
|
|
* Fri Jul 01 2022 tianwei<tianwei12@h-partners.com> -3.3.1-4
|
|
|
|
|
- Type:bugfix
|
|
|
|
|
- ID:NA
|
|
|
|
|
- SUG:NA
|
|
|
|
|
- DESC: provide openssl apis related to SM for python
|
|
|
|
|
|
2022-06-30 17:05:44 +08:00
|
|
|
* Thu Jun 30 2022 tianwei<tianwei12@h-partners.com> -3.3.1-3
|
|
|
|
|
- Type:bugfix
|
|
|
|
|
- ID:NA
|
|
|
|
|
- SUG:NA
|
|
|
|
|
- DESC: add SM4 symmetric block cipher
|
|
|
|
|
|
2021-02-23 09:56:05 +08:00
|
|
|
* Tue Feb 23 2021 shixuantong <shixuantong@huawei.com> - 3.3.1-2
|
|
|
|
|
- fix CVE-2020-36242
|
|
|
|
|
|
2021-02-01 14:38:23 +08:00
|
|
|
* Mon Feb 1 2021 liudabo <liudabo1@huawei.com> - 3.3.1-1
|
|
|
|
|
- upgrade version to 3.3.1
|
|
|
|
|
|
2020-08-11 16:12:48 +08:00
|
|
|
* Tue Aug 11 2020 tianwei<tianwei12@huawei.com> -3.0-2
|
2020-08-08 16:27:57 +08:00
|
|
|
- Type:enhancement
|
|
|
|
|
- ID:NA
|
|
|
|
|
- SUG:NA
|
|
|
|
|
- DESC:delete python2
|
|
|
|
|
|
2020-07-24 17:19:17 +08:00
|
|
|
* Thu Jul 23 2020 dingyue<dingyue5@huawei.com> -3.0-1
|
|
|
|
|
- Type:enhancement
|
|
|
|
|
- ID:NA
|
|
|
|
|
- SUG:NA
|
|
|
|
|
- DESC:NA
|
|
|
|
|
|
2020-05-11 16:20:09 +08:00
|
|
|
* Thu Apr 16 2020 chengquan<chengquan3@huawei.com> -2.9-1
|
|
|
|
|
- Type:enhancement
|
|
|
|
|
- ID:NA
|
|
|
|
|
- SUG:NA
|
|
|
|
|
- DESC:upgrade software to v2.9
|
|
|
|
|
|
2020-02-13 16:45:17 +08:00
|
|
|
* Thu Feb 13 2020 openEuler Buildteam <buildteam@openeuler.org> - 2.6.1-1
|
|
|
|
|
- Update to 2.6.1
|
|
|
|
|
|
2019-11-06 19:48:59 +08:00
|
|
|
* Tue Oct 22 2019 openEuler Buildteam <buildteam@openeuler.org> - 2.3-5
|
|
|
|
|
- Package rebuild.
|
|
|
|
|
|
|
|
|
|
* Sat Oct 19 2019 openEuler Buildteam <buildteam@openeuler.org> - 2.3-4
|
|
|
|
|
- Type: enhancement
|
|
|
|
|
- ID: NA
|
|
|
|
|
- SUG: NA
|
|
|
|
|
- DESC: fix build failed.
|
|
|
|
|
|
|
|
|
|
* Sat Sep 14 2019 openEuler Buildteam <buildteam@openeuler.org> - 2.3-3
|
|
|
|
|
- Package init.
|