Compare commits

...

8 Commits
f33 ... rawhide

Author SHA1 Message Date
Artem Polishchuk
4bf78e5d5b build(update): 21.1.0 2022-10-10 03:13:39 +03:00
Artem Polishchuk
206da99607 Convert to rpmautospec 2022-10-09 22:07:10 +03:00
Fedora Release Engineering
d27870410e Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2022-07-22 16:24:34 +00:00
Python Maint
c69f6c73d1 Rebuilt for Python 3.11 2022-06-13 18:55:55 +02:00
Fedora Release Engineering
6b7d890a07 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2022-01-21 10:23:31 +00:00
Fedora Release Engineering
e9a92b8f1c - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2021-07-23 05:01:33 +00:00
Python Maint
f0bb044d82 Rebuilt for Python 3.10 2021-06-04 17:20:06 +02:00
Tomas Hrnciar
5df246df6a python 3.10 disable failing test 2021-05-18 09:22:31 +02:00
4 changed files with 62 additions and 36 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
/argon2_cffi-19.1.0.tar.gz
/argon2-cffi-19.2.0.tar.gz
/argon2-cffi-20.1.0.tar.gz
/argon2-cffi-21.1.0.tar.gz

44
changelog Normal file
View File

@ -0,0 +1,44 @@
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 20.1.0-10
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
* Mon Jun 13 2022 Python Maint <python-maint@redhat.com> - 20.1.0-9
- Rebuilt for Python 3.11
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 20.1.0-8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 20.1.0-7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
* Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 20.1.0-6
- Rebuilt for Python 3.10
* Wed Jan 27 2021 Miro Hrončok <mhroncok@redhat.com> - 20.1.0-5
- Stop requiring test dependencies on runtime
- Run tests during build
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 20.1.0-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 20.1.0-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 20.1.0-2
- Rebuilt for Python 3.9
* Thu May 21 2020 Artem Polishchuk <ego.cordatus@gmail.com> - 20.1.0-1
- Update to 20.1.0
- Disable LTO
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 19.2.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
* Sun Jan 19 2020 Artem Polishchuk <ego.cordatus@gmail.com> - 19.2.0-1
- Update to 19.2.0
- Switch to {pypi_source}
- Enable LTO
- Cosmetic spec file fix
- Minimum Python version is >= 3.5 now
* Fri Jun 14 2019 Pavlo Rudyi <paulcarroty@fedoraproject.org> - 19.1.0-1
- initial build

View File

@ -1,8 +1,8 @@
%global pypi_name argon2-cffi
Name: python-%{pypi_name}
Version: 20.1.0
Release: 5%{?dist}
Version: 21.1.0
Release: %autorelease
Summary: The secure Argon2 password hashing algorithm
License: MIT
@ -11,6 +11,7 @@ Source0: %{pypi_source}
BuildRequires: gcc
BuildRequires: python3-devel >= 3.5
BuildRequires: python3dist(cffi)
BuildRequires: python3dist(hypothesis)
BuildRequires: python3dist(pytest)
@ -18,22 +19,25 @@ BuildRequires: python3dist(setuptools)
BuildRequires: python3dist(six)
BuildRequires: python3dist(sphinx)
BuildRequires: python3dist(wheel)
BuildRequires: pkgconfig(libargon2)
%description
CFFI-based Argon2 Bindings for Python.
%global _description %{expand:
CFFI-based Argon2 Bindings for Python.}
%description %_description
%package -n python3-%{pypi_name}
Summary: %{summary}
%{?python_provide:%python_provide python3-%{pypi_name}}
%description -n python3-%{pypi_name}
CFFI-based Argon2 Bindings for Python.
%description -n python3-%{pypi_name} %_description
%package -n python-%{pypi_name}-doc
Summary: Documentation for argon2-cffi
BuildRequires: python3dist(argon2-cffi)
%description -n python-%{pypi_name}-doc
Documentation for argon2-cffi.
@ -49,6 +53,11 @@ rm -r extras/libargon2/LICENSE \
extras/libargon2/README.md \
docs/license.rst
# Theme error:
# no theme named 'furo' found (missing theme.conf?)
sed -i '/html_theme = "furo"/d' \
docs/conf.py
%build
export ARGON2_CFFI_USE_SYSTEM=1
@ -80,32 +89,4 @@ rm -rf html/.{doctrees,buildinfo}
%changelog
* Wed Jan 27 2021 Miro Hrončok <mhroncok@redhat.com> - 20.1.0-5
- Stop requiring test dependencies on runtime
- Run tests during build
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 20.1.0-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 20.1.0-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 20.1.0-2
- Rebuilt for Python 3.9
* Thu May 21 2020 Artem Polishchuk <ego.cordatus@gmail.com> - 20.1.0-1
- Update to 20.1.0
- Disable LTO
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 19.2.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
* Sun Jan 19 2020 Artem Polishchuk <ego.cordatus@gmail.com> - 19.2.0-1
- Update to 19.2.0
- Switch to {pypi_source}
- Enable LTO
- Cosmetic spec file fix
- Minimum Python version is >= 3.5 now
* Fri Jun 14 2019 Pavlo Rudyi <paulcarroty@fedoraproject.org> - 19.1.0-1
- initial build
%autochangelog

View File

@ -1 +1 @@
SHA512 (argon2-cffi-20.1.0.tar.gz) = d1d798e3e51ed67c4f523a66081fea99479ee986b5cfc36b250954e757b9846625681445447f9347519d9988f8a2ace2e3c8ce5817c5c6b4767819cf56ee0af2
SHA512 (argon2-cffi-21.1.0.tar.gz) = bbfebd2c075f360a6c1c187c0789be2aae7480b9398f36db7bdfe74f288d9e00b44a788918c54f4cc8bb1947136ab0493f61975de408c482a5131e2bf1a8f4d0