2020-08-13 14:05:01 +08:00
|
|
|
%global _empty_manifest_terminate_build 0
|
|
|
|
|
|
2021-08-10 22:46:44 +08:00
|
|
|
Name: python-pycryptodomex
|
2022-06-10 15:02:01 +00:00
|
|
|
Version: 3.14.1
|
2021-08-10 22:46:44 +08:00
|
|
|
Release: 1
|
|
|
|
|
Summary: Cryptographic library for Python
|
|
|
|
|
License: BSD 2-Clause and Public Domain and Apache-2.0
|
|
|
|
|
URL: https://www.pycryptodome.org
|
2022-06-10 15:02:01 +00:00
|
|
|
Source0: https://files.pythonhosted.org/packages/24/40/e249ac3845a2333ce50f1bb02299ffb766babdfe80ca9d31e0158ad06afd/pycryptodomex-3.14.1.tar.gz
|
|
|
|
|
|
2020-08-13 14:05:01 +08:00
|
|
|
%description
|
|
|
|
|
PyCryptodome is a self-contained Python package of low-level cryptographic primitives.
|
|
|
|
|
|
|
|
|
|
%package -n python3-pycryptodomex
|
2021-08-10 22:46:44 +08:00
|
|
|
Summary: Cryptographic library for Python
|
|
|
|
|
Provides: python-pycryptodomex
|
|
|
|
|
# Base build requires
|
|
|
|
|
BuildRequires: python3-devel
|
|
|
|
|
BuildRequires: python3-setuptools
|
|
|
|
|
BuildRequires: python3-cffi
|
|
|
|
|
BuildRequires: gcc
|
2022-06-10 15:02:01 +00:00
|
|
|
BuildRequires: python3-pbr
|
|
|
|
|
BuildRequires: python3-pip
|
|
|
|
|
BuildRequires: python3-wheel
|
2020-08-13 14:05:01 +08:00
|
|
|
%description -n python3-pycryptodomex
|
|
|
|
|
PyCryptodome is a self-contained Python package of low-level cryptographic primitives.
|
|
|
|
|
|
|
|
|
|
%package help
|
2021-08-10 22:46:44 +08:00
|
|
|
Summary: Cryptographic library for Python
|
|
|
|
|
BuildArch: noarch
|
|
|
|
|
Provides: python3-pycryptodomex-doc
|
2020-08-13 14:05:01 +08:00
|
|
|
%description help
|
2021-08-10 22:46:44 +08:00
|
|
|
PyCryptodome is a self-contained Python package of low-level cryptographic primitives.
|
2020-08-13 14:05:01 +08:00
|
|
|
|
|
|
|
|
%prep
|
2022-06-10 15:02:01 +00:00
|
|
|
%autosetup -n pycryptodomex-%{version}
|
2020-08-13 14:05:01 +08:00
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
%py3_build
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
|
%py3_install
|
|
|
|
|
install -d -m755 %{buildroot}/%{_pkgdocdir}
|
|
|
|
|
if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi
|
|
|
|
|
if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi
|
|
|
|
|
if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi
|
|
|
|
|
if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi
|
|
|
|
|
pushd %{buildroot}
|
|
|
|
|
if [ -d usr/lib ]; then
|
2021-08-10 22:46:44 +08:00
|
|
|
find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst
|
2020-08-13 14:05:01 +08:00
|
|
|
fi
|
|
|
|
|
if [ -d usr/lib64 ]; then
|
2021-08-10 22:46:44 +08:00
|
|
|
find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst
|
2020-08-13 14:05:01 +08:00
|
|
|
fi
|
|
|
|
|
if [ -d usr/bin ]; then
|
2021-08-10 22:46:44 +08:00
|
|
|
find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst
|
2020-08-13 14:05:01 +08:00
|
|
|
fi
|
|
|
|
|
if [ -d usr/sbin ]; then
|
2021-08-10 22:46:44 +08:00
|
|
|
find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst
|
2020-08-13 14:05:01 +08:00
|
|
|
fi
|
|
|
|
|
touch doclist.lst
|
|
|
|
|
if [ -d usr/share/man ]; then
|
2021-08-10 22:46:44 +08:00
|
|
|
find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst
|
2020-08-13 14:05:01 +08:00
|
|
|
fi
|
|
|
|
|
popd
|
|
|
|
|
mv %{buildroot}/filelist.lst .
|
|
|
|
|
mv %{buildroot}/doclist.lst .
|
|
|
|
|
|
2021-08-10 22:46:44 +08:00
|
|
|
%check
|
|
|
|
|
%{__python3} setup.py test
|
|
|
|
|
|
2020-08-13 14:05:01 +08:00
|
|
|
%files -n python3-pycryptodomex -f filelist.lst
|
|
|
|
|
%dir %{python3_sitearch}/*
|
|
|
|
|
|
|
|
|
|
%files help -f doclist.lst
|
2022-06-10 15:02:01 +00:00
|
|
|
%{_docdir}/*
|
2020-08-13 14:05:01 +08:00
|
|
|
|
|
|
|
|
%changelog
|
2022-06-10 15:02:01 +00:00
|
|
|
* Thu Jun 09 2022 OpenStack_SIG <openstack@openeuler.org> - 3.14.1-1
|
|
|
|
|
- Upgrade package python3-pycryptodomex to version 3.14.1
|
|
|
|
|
|
2021-08-10 22:46:44 +08:00
|
|
|
* Tue Aug 03 2021 OpenStack_SIG <openstack@openeuler.org> - 3.10.1-1
|
|
|
|
|
- Update vertion to 3.10.1
|
|
|
|
|
|
2021-07-21 20:07:54 +08:00
|
|
|
* Wed Jul 21 2021 shixuantong<shixuantong@huawei.com> - 3.9.7-2
|
|
|
|
|
- remove gdb from BuildRequires
|
|
|
|
|
- Be More specific on BSD and Apache license
|
|
|
|
|
|
|
|
|
|
* Wed May 20 2020 Python_Bot <Python_Bot@openeuler.org> - 3.9.7-1
|
2020-08-13 14:05:01 +08:00
|
|
|
- Package Spec generated
|