Hello community,
here is the log from the commit of package python-coverage-config-reload-plugin
for openSUSE:Factory checked in at 2019-05-06 13:28:30
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-coverage-config-reload-plugin (Old)
and
/work/SRC/openSUSE:Factory/.python-coverage-config-reload-plugin.new.5148 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-coverage-config-reload-plugin"
Mon May 6 13:28:30 2019 rev:3 rq:700975 version:0.3.0
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-coverage-config-reload-plugin/python-coverage-config-reload-plugin.changes
2018-12-13 19:41:54.533211379 +0100
+++
/work/SRC/openSUSE:Factory/.python-coverage-config-reload-plugin.new.5148/python-coverage-config-reload-plugin.changes
2019-05-06 13:28:35.877430399 +0200
@@ -1,0 +2,12 @@
+Sat May 4 09:08:20 UTC 2019 - John Vandenberg <[email protected]>
+
+- Update to v0.3.0
+ * Support for coverage 4.4.1+
+ * All logic moved into PluginBase and ConfigReloadPlugin
+ which is registered as a plugin using either noop or
+ configurer plugin types
+ * Tests for all coverage patch versions 4.0 - 5.0a,
+ CPython 2.7 and 3.4 - 3.7 and PyPy 6.0
+ * Add LICENSE to distributions
+
+-------------------------------------------------------------------
Old:
----
LICENSE
coverage_config_reload_plugin-0.2.0-py2.py3-none-any.whl
New:
----
coverage-config-reload-plugin-0.3.0.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-coverage-config-reload-plugin.spec ++++++
--- /var/tmp/diff_new_pack.vqnocZ/_old 2019-05-06 13:28:36.589431938 +0200
+++ /var/tmp/diff_new_pack.vqnocZ/_new 2019-05-06 13:28:36.589431938 +0200
@@ -1,7 +1,7 @@
#
# spec file for package python-coverage-config-reload-plugin
#
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -18,25 +18,22 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-coverage-config-reload-plugin
-Version: 0.2.0
+Version: 0.3.0
Release: 0
-# For license file
-%define tag 2abc0b1f930ee5b281e15e8fb7e3dfe7a456e414
Summary: Coverage hack plugin to reload the coverage configuration
License: MIT
Group: Development/Languages/Python
-Url: https://github.com/jayvdb/coverage_config_reload_plugin
-Source0:
https://files.pythonhosted.org/packages/any/c/coverage-config-reload-plugin/coverage_config_reload_plugin-%{version}-py2.py3-none-any.whl
-Source10:
https://raw.githubusercontent.com/jayvdb/coverage_config_reload_plugin/%{tag}/LICENSE
-BuildRequires: %{python_module pip}
+URL: https://github.com/jayvdb/coverage_config_reload_plugin
+Source:
https://files.pythonhosted.org/packages/source/c/coverage-config-reload-plugin/coverage-config-reload-plugin-%{version}.tar.gz
+BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
+Requires: python-coverage >= 4.0
+BuildArch: noarch
# SECTION test requirements
BuildRequires: %{python_module coverage >= 4.0}
+BuildRequires: %{python_module unittest-mixins}
# /SECTION
-Requires: python-coverage >= 4.0
-BuildArch: noarch
-
%python_subpackages
%description
@@ -44,17 +41,20 @@
configuration files after other plugins have been loaded.
%prep
-%setup -T -c -n %{name}-%{version}
-cp %{SOURCE10} .
+%setup -q -n coverage-config-reload-plugin-%{version}
%build
-# Not needed
+%python_build
%install
-%python_expand pip%{$python_bin_suffix} install --root %{buildroot} --prefix
%{_prefix} --compile %{SOURCE0}
+%python_install
+%python_expand %fdupes %{buildroot}%{$python_sitelib}
+
+%check
+%python_exec setup.py test
%files %{python_files}
-%defattr(-,root,root,-)
+%doc CHANGELOG.md README.md
%license LICENSE
%{python_sitelib}/*