-
Notifications
You must be signed in to change notification settings - Fork 242
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Let's use the same naming standard that other avocado plugins are using (avocado-framework-plugin-[name]). Signed-off-by: Lucas Meneghel Rodrigues <[email protected]>
- Loading branch information
Showing
2 changed files
with
8 additions
and
5 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 |
---|---|---|
|
@@ -38,7 +38,7 @@ | |
Summary: Avocado Virt Test Plugin | ||
Name: avocado-plugins-vt | ||
Version: 70.0 | ||
Release: 0%{?gitrel}%{?dist} | ||
Release: 1%{?gitrel}%{?dist} | ||
License: GPLv2 | ||
Group: Development/Tools | ||
URL: http://avocado-framework.readthedocs.org/ | ||
|
@@ -139,7 +139,7 @@ Xunit output, among others. | |
%config(noreplace)/etc/avocado/conf.d/vt.conf | ||
%doc README.rst LICENSE | ||
%{python2_sitelib}/avocado_vt* | ||
%{python2_sitelib}/avocado_plugins_vt* | ||
%{python2_sitelib}/avocado_framework_plugins_vt* | ||
%{python2_sitelib}/virttest* | ||
%{_datadir}/avocado-plugins-vt/backends/* | ||
%{_datadir}/avocado-plugins-vt/shared/* | ||
|
@@ -153,7 +153,7 @@ Xunit output, among others. | |
%config(noreplace)/etc/avocado/conf.d/vt.conf | ||
%doc README.rst LICENSE | ||
%{python3_sitelib}/avocado_vt* | ||
%{python3_sitelib}/avocado_plugins_vt* | ||
%{python3_sitelib}/avocado_framework_plugins_vt* | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
ldoktor
Contributor
|
||
%{python3_sitelib}/virttest* | ||
%{_datadir}/avocado-plugins-vt/backends/* | ||
%{_datadir}/avocado-plugins-vt/shared/* | ||
|
@@ -162,6 +162,9 @@ Xunit output, among others. | |
|
||
|
||
%changelog | ||
* Wed Aug 14 2019 Lukas Doktor <[email protected]> - 70.0-1 | ||
- Rename package to "avocado_framework_plugins_vt" | ||
|
||
* Wed Jun 26 2019 Cleber Rosa <[email protected]> - 70.0-0 | ||
- 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -91,9 +91,9 @@ def pre_post_plugin_type(): | |
requirements.append("stevedore>=1.8.0,<=1.10.0") | ||
requirements.append("avocado-framework<70.0") | ||
|
||
setup(name='avocado-plugins-vt', | ||
setup(name='avocado-framework-plugins-vt', | ||
version=VERSION, | ||
description='Avocado Virt Test Compatibility Layer plugin', | ||
description='Avocado Plugin for Virtualization Testing', | ||
author='Avocado Developers', | ||
author_email='[email protected]', | ||
url='http://github.com/avocado-framework/avocado-vt', | ||
|
@lmr: Shouldn't this be singular? A close look at other plugins yields the
avocado_framework_plugin_*
form.