e304a6
# Enable python3
e304a6
%bcond_without python3
e304a6
e304a6
# Disable python2
e304a6
%bcond_with python2
e304a6
e304a6
# RHEL8: Tests disabled due to missing deps
e304a6
%bcond_with tests
e304a6
e304a6
%global srcname cryptography
e304a6
e304a6
Name:           python-%{srcname}
e304a6
Version:        3.3.1
e304a6
Release:        2%{?dist}
e304a6
Summary:        PyCA's cryptography library
e304a6
e304a6
License:        ASL 2.0 or BSD
e304a6
URL:            https://cryptography.io/en/latest/
e304a6
Source0:        %{pypi_source}
e304a6
Source1:        %{pypi_source}.asc
e304a6
# key ids of upstream authors are published in the AUTHORS file:
e304a6
#    https://github.com/pyca/cryptography/blob/master/AUTHORS.rst
e304a6
# gpg2 --recv-keys "05FD 9FA1 6CF7 5735 0D91 A560 235A E5F1 29F9 ED98"
e304a6
# gpg2 --export --export-options export-minimal "05FD 9FA1 6CF7 5735 0D91 A560 235A E5F1 29F9 ED98" > gpgkey-05FD_9FA1_6CF7_5735_0D91_A560_235A_E5F1_29F9_ED98.gpg
e304a6
Source2:        gpgkey-05FD_9FA1_6CF7_5735_0D91_A560_235A_E5F1_29F9_ED98.gpg
e304a6
e304a6
# Exclude i686 arch. Due to a modularity issue it's being added to the
e304a6
# x86_64 compose of CRB, but we don't want to ship it at all.
e304a6
# See: https://projects.engineering.redhat.com/browse/RCM-72605
e304a6
ExcludeArch: i686
e304a6
e304a6
BuildRequires:  openssl-devel
e304a6
BuildRequires:  gcc
e304a6
BuildRequires:  gnupg2
e304a6
e304a6
%if 0%{?with_python2}
e304a6
BuildRequires:  python2-cffi >= 1.7
e304a6
BuildRequires:  python2-cryptography-vectors = %{version}
e304a6
BuildRequires:  python2-devel
e304a6
BuildRequires:  python2-enum34
e304a6
BuildRequires:  python2-idna >= 2.1
e304a6
BuildRequires:  python2-ipaddress
e304a6
BuildRequires:  python2-setuptools
e304a6
BuildRequires:  python2-six >= 1.4.1
e304a6
e304a6
%if %{with tests}
e304a6
BuildRequires:  python2-hypothesis >= 1.11.4
e304a6
BuildRequires:  python2-iso8601
e304a6
BuildRequires:  python2-pretend
e304a6
BuildRequires:  python2-pytest >= 3.2.1
e304a6
BuildRequires:  python2-pytz
e304a6
%endif
e304a6
%endif
e304a6
e304a6
%if 0%{?with_python3}
e304a6
BuildRequires:  python%{python3_pkgversion}-cffi >= 1.7
e304a6
BuildRequires:  python%{python3_pkgversion}-devel
e304a6
BuildRequires:  python%{python3_pkgversion}-rpm-macros
e304a6
BuildRequires:  python%{python3_pkgversion}-idna >= 2.1
e304a6
BuildRequires:  python%{python3_pkgversion}-setuptools
e304a6
BuildRequires:  python%{python3_pkgversion}-six >= 1.4.1
e304a6
e304a6
%if %{with tests}
e304a6
BuildRequires:  python%{python3_pkgversion}-cryptography-vectors = %{version}
e304a6
BuildRequires:  python%{python3_pkgversion}-hypothesis >= 1.11.4
e304a6
BuildRequires:  python%{python3_pkgversion}-iso8601
e304a6
BuildRequires:  python%{python3_pkgversion}-pretend
e304a6
BuildRequires:  python%{python3_pkgversion}-pytest >= 3.2.1
e304a6
BuildRequires:  python%{python3_pkgversion}-pytz
e304a6
%endif
e304a6
%endif
e304a6
e304a6
%description
e304a6
cryptography is a package designed to expose cryptographic primitives and
e304a6
recipes to Python developers.
e304a6
e304a6
%if 0%{?with_python2}
e304a6
%package -n  python2-%{srcname}
e304a6
Summary:        PyCA's cryptography library
e304a6
e304a6
%if 0%{?with_python3}
e304a6
%{?python_provide:%python_provide python2-%{srcname}}
e304a6
%else
e304a6
Provides:       python-%{srcname}
e304a6
%endif
e304a6
e304a6
Requires:       openssl-libs
e304a6
Requires:       python2-idna >= 2.1
e304a6
Requires:       python2-six >= 1.4.1
e304a6
Requires:       python2-cffi >= 1.7
e304a6
Requires:       python2-enum34
e304a6
Requires:       python2-ipaddress
e304a6
e304a6
%description -n python2-%{srcname}
e304a6
cryptography is a package designed to expose cryptographic primitives and
e304a6
recipes to Python developers.
e304a6
%endif
e304a6
e304a6
%if 0%{?with_python3}
e304a6
%package -n  python%{python3_pkgversion}-%{srcname}
e304a6
Summary:        PyCA's cryptography library
e304a6
%{?python_provide:%python_provide python%{python3_pkgversion}-%{srcname}}
e304a6
e304a6
Requires:       openssl-libs
e304a6
Requires:       python%{python3_pkgversion}-idna >= 2.1
e304a6
Requires:       python%{python3_pkgversion}-six >= 1.4.1
e304a6
Requires:       python%{python3_pkgversion}-cffi >= 1.7
e304a6
e304a6
%description -n python%{python3_pkgversion}-%{srcname}
e304a6
cryptography is a package designed to expose cryptographic primitives and
e304a6
recipes to Python developers.
e304a6
%endif
e304a6
e304a6
%prep
e304a6
# RHEL8: GPGverify macro is not present in RHEL
e304a6
# %%{gpgverify} --keyring='%%{SOURCE2}' --signature='%%{SOURCE1}' --data='%%{SOURCE0}'
e304a6
%autosetup -p1 -n %{srcname}-%{version}
e304a6
e304a6
%build
e304a6
%if 0%{?with_python2}
e304a6
%py2_build
e304a6
%endif
e304a6
%if 0%{?with_python3}
e304a6
%py3_build
e304a6
%endif
e304a6
e304a6
%install
e304a6
# Actually other *.c and *.h are appropriate
e304a6
# see https://github.com/pyca/cryptography/issues/1463
e304a6
find . -name .keep -print -delete
e304a6
e304a6
%if 0%{?with_python2}
e304a6
%py2_install
e304a6
%endif
e304a6
%if 0%{?with_python3}
e304a6
%py3_install
e304a6
%endif
e304a6
e304a6
%check
e304a6
%if %{with tests}
e304a6
%if 0%{?with_python2}
e304a6
# see https://github.com/pyca/cryptography/issues/4885 and
e304a6
# see https://bugzilla.redhat.com/show_bug.cgi?id=1761194 for deselected tests
e304a6
PYTHONPATH=%{buildroot}%{python2_sitearch} %{__python2} -m pytest -k "not (test_buffer_protocol_alternate_modes or test_dh_parameters_supported or test_load_ecdsa_no_named_curve)"
e304a6
%endif
e304a6
e304a6
%if 0%{?with_python3}
e304a6
PYTHONPATH=%{buildroot}%{python3_sitearch} %{__python3} -m pytest -k "not (test_buffer_protocol_alternate_modes or test_dh_parameters_supported or test_load_ecdsa_no_named_curve)"
e304a6
%endif
e304a6
%endif
e304a6
e304a6
e304a6
%if 0%{?with_python2}
e304a6
%files -n python2-%{srcname}
e304a6
%doc LICENSE LICENSE.APACHE LICENSE.BSD README.rst docs
e304a6
%{python2_sitearch}/%{srcname}
e304a6
%{python2_sitearch}/%{srcname}-%{version}-py*.egg-info
e304a6
%endif
e304a6
e304a6
e304a6
%if 0%{?with_python3}
e304a6
%files -n python%{python3_pkgversion}-%{srcname}
e304a6
%doc README.rst docs
e304a6
%license LICENSE LICENSE.APACHE LICENSE.BSD
e304a6
%{python3_sitearch}/%{srcname}
e304a6
%{python3_sitearch}/%{srcname}-%{version}-py*.egg-info
e304a6
%endif
e304a6
e304a6
e304a6
%changelog
e304a6
* Mon Jan 18 2021 Tomas Orsava <torsava@redhat.com> - 3.3.1-2
e304a6
- Convert from Fedora to the python39 module in RHEL8
e304a6
- Resolves: rhbz#1877430
e304a6
e304a6
* Thu Dec 10 2020 Christian Heimes <cheimes@redhat.com> - 3.3.1-1
e304a6
- Update to 3.3.1 (#1905756)
e304a6
e304a6
* Wed Oct 28 2020 Christian Heimes <cheimes@redhat.com> - 3.2.1-1
e304a6
- Update to 3.2.1 (#1892153)
e304a6
e304a6
* Mon Oct 26 2020 Christian Heimes <cheimes@redhat.com> - 3.2-1
e304a6
- Update to 3.2 (#1891378)
e304a6
e304a6
* Mon Sep 07 2020 Christian Heimes <cheimes@redhat.com> - 3.1-1
e304a6
- Update to 3.1 (#1872978)
e304a6
e304a6
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.0-2
e304a6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
e304a6
e304a6
* Tue Jul 21 2020 Christian Heimes <cheimes@redhat.com> - 3.0-1
e304a6
- Update to 3.0 (#185897)
e304a6
e304a6
* Sat May 23 2020 Miro Hrončok <mhroncok@redhat.com> - 2.9-3
e304a6
- Rebuilt for Python 3.9
e304a6
e304a6
* Tue May 12 2020 Felix Schwarz <fschwarz@fedoraproject.org> - 2.9-2
e304a6
- add source file verification
e304a6
e304a6
* Fri Apr 03 2020 Christian Heimes <cheimes@redhat.com> - 2.9-1
e304a6
- Update to 2.9 (#1820348)
e304a6
e304a6
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.8-3
e304a6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
e304a6
e304a6
* Mon Jan 13 2020 Christian Heimes <cheimes@redhat.com> - 2.8-2
e304a6
- cryptography 2.8+ no longer depends on python-asn1crypto
e304a6
e304a6
* Thu Oct 17 2019 Christian Heimes <cheimes@redhat.com> - 2.8-1
e304a6
- Update to 2.8
e304a6
- Resolves: rhbz#1762779
e304a6
e304a6
* Sun Oct 13 2019 Christian Heimes <cheimes@redhat.com> - 2.7-3
e304a6
- Skip unit tests that fail with OpenSSL 1.1.1.d
e304a6
- Resolves: rhbz#1761194
e304a6
- Fix and simplify Python 3 packaging
e304a6
e304a6
* Sat Oct 12 2019 Christian Heimes <cheimes@redhat.com> - 2.7-2
e304a6
- Drop Python 2 package
e304a6
- Resolves: rhbz#1761081
e304a6
e304a6
* Tue Sep 03 2019 Randy Barlow <bowlofeggs@fedoraproject.org> - 2.7-1
e304a6
- Update to 2.7 (#1715680).
e304a6
e304a6
* Fri Aug 16 2019 Miro Hrončok <mhroncok@redhat.com> - 2.6.1-3
e304a6
- Rebuilt for Python 3.8
e304a6
e304a6
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.1-2
e304a6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
e304a6
e304a6
* Thu Feb 28 2019 Christian Heimes <cheimes@redhat.com> - 2.6.1-1
e304a6
- New upstream release 2.6.1, resolves RHBZ#1683691
e304a6
e304a6
* Wed Feb 13 2019 Alfredo Moralejo <amoralej@redhat.com> - 2.5-1
e304a6
- Updated to 2.5.
e304a6
e304a6
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.3-3
e304a6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
e304a6
e304a6
* Mon Aug 13 2018 Christian Heimes <cheimes@redhat.com> - 2.3-2
e304a6
- Use TLSv1.2 in test as workaround for RHBZ#1615143
e304a6
e304a6
* Wed Jul 18 2018 Christian Heimes <cheimes@redhat.com> - 2.3-1
e304a6
- New upstream release 2.3
e304a6
- Fix AEAD tag truncation bug, RHBZ#1602752
e304a6
e304a6
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.1-3
e304a6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
e304a6
e304a6
* Fri Jun 15 2018 Miro Hrončok <mhroncok@redhat.com> - 2.2.1-2
e304a6
- Rebuilt for Python 3.7
e304a6
e304a6
* Wed Mar 21 2018 Christian Heimes <cheimes@redhat.com> - 2.2.1-1
e304a6
- New upstream release 2.2.1
e304a6
e304a6
* Sun Feb 18 2018 Christian Heimes <cheimes@redhat.com> - 2.1.4-1
e304a6
- New upstream release 2.1.4
e304a6
e304a6
* Sun Feb 18 2018 Christian Heimes <cheimes@redhat.com> - 2.1.3-4
e304a6
- Build requires gcc
e304a6
e304a6
* Mon Feb 12 2018 Iryna Shcherbina <ishcherb@redhat.com> - 2.1.3-3
e304a6
- Update Python 2 dependency declarations to new packaging standards
e304a6
  (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
e304a6
e304a6
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.1.3-2
e304a6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild