Skip to content

Commit

Permalink
setup.py: Standardize plugin naming
Browse files Browse the repository at this point in the history
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
lmr authored and ldoktor committed Aug 14, 2019
1 parent aea2d6a commit ade4e80
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
9 changes: 6 additions & 3 deletions avocado-plugins-vt.spec
Original file line number Diff line number Diff line change
Expand Up @@ -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/
Expand Down Expand Up @@ -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/*
Expand All @@ -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.

Copy link
@pevogam

pevogam Sep 29, 2019

Contributor

@lmr: Shouldn't this be singular? A close look at other plugins yields the avocado_framework_plugin_* form.

This comment has been minimized.

Copy link
@ldoktor

ldoktor Sep 30, 2019

Contributor

It should, I noticed it only after merging and didn't consider this important enough to raise a PR. But if you want to, go ahead...

This comment has been minimized.

Copy link
@pevogam

pevogam Sep 30, 2019

Contributor

Sure, I have pushed #2285 with more details.

%{python3_sitelib}/virttest*
%{_datadir}/avocado-plugins-vt/backends/*
%{_datadir}/avocado-plugins-vt/shared/*
Expand All @@ -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

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit ade4e80

Please sign in to comment.