forked from avocado-framework/avocado-vt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Since Python 3.3+ provides `ipaddress` as the standard library for IPv4/IPv6 manipulation, let's replace the third-party one (`netaddr`) with it for a better maintainability. Signed-off-by: Xu Han <[email protected]>
- Loading branch information
Showing
9 changed files
with
25 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ | |
Summary: Avocado Virt Test Plugin | ||
Name: avocado-plugins-vt | ||
Version: 98.0 | ||
Release: 1%{?gitrel}%{?dist} | ||
Release: 2%{?gitrel}%{?dist} | ||
License: GPLv2 | ||
Group: Development/Tools | ||
URL: http://avocado-framework.readthedocs.org/ | ||
|
@@ -69,7 +69,7 @@ Xunit output, among others. | |
%package -n python3-%{name} | ||
Summary: %{summary} | ||
Requires: python3, python3-devel, python3-avocado >= 51.0, python3-aexpect | ||
Requires: python3-netaddr, python3-netifaces, python3-simplejson | ||
Requires: python3-netifaces, python3-simplejson | ||
%{?python_provide:%python_provide python3-%{srcname}} | ||
%description -n python3-%{name} | ||
Avocado Virt Test is a plugin that lets you execute virt-tests | ||
|
@@ -104,6 +104,9 @@ Xunit output, among others. | |
|
||
|
||
%changelog | ||
* Thu Jul 20 2022 Xu Han <[email protected]> - 98.0-2 | ||
- Removed python3-netaddr dependency | ||
|
||
* Thu Jul 14 2022 Cleber Rosa <[email protected]> - 98.0-1 | ||
- New release | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters