Fix FTI of dnssec extra subpackage

This commit is contained in:
Lumir Balhar 2022-05-10 10:40:30 +02:00
parent f4de643d19
commit 64deaf6196
1 changed files with 7 additions and 1 deletions

View File

@ -13,7 +13,7 @@
Name: python-dns
Version: 2.2.1
Release: 1%{?dist}
Release: 2%{?dist}
Summary: DNS toolkit for Python
# The entire package is licensed with both licenses, see LICENSE file
@ -51,6 +51,8 @@ Summary: %{summary}
%autosetup -p1 -n %{pypi_name}-%{version}%{rctag}
# Update trio from 0.20 to 0.21
sed -i "s/\(trio = {version=\">=0.14,<0.\)20\(\", optional=true}\)/\121\2/" pyproject.toml
# Update cryptography from 37.0 to 38.0
sed -i "s/\(cryptography = {version=\">=2.6,<\)37.0\(\", optional=true}\)/\138.0\2/" pyproject.toml
# strip exec permissions so that we don't pick up dependencies from docs
find examples -type f | xargs chmod a-x
@ -88,6 +90,10 @@ find examples -type f | xargs chmod a-x
%endif
%changelog
* Tue May 10 2022 Lumír Balhar <lbalhar@redhat.com> - 2.2.1-2
- Fix FTI of dnssec extra subpackage
Resolves: rhbz#2082931
* Mon Mar 07 2022 Lumír Balhar <lbalhar@redhat.com> - 2.2.1-1
- Update to 2.2.1
Resolves: rhbz#2061222