Hello community,
here is the log from the commit of package python-virtualenv-clone for
openSUSE:Factory checked in at 2020-04-16 23:03:51
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-virtualenv-clone (Old)
and /work/SRC/openSUSE:Factory/.python-virtualenv-clone.new.2738 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-virtualenv-clone"
Thu Apr 16 23:03:51 2020 rev:11 rq:794489 version:0.5.4
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-virtualenv-clone/python-virtualenv-clone.changes
2019-04-14 12:22:38.947777462 +0200
+++
/work/SRC/openSUSE:Factory/.python-virtualenv-clone.new.2738/python-virtualenv-clone.changes
2020-04-16 23:03:56.715711726 +0200
@@ -1,0 +2,6 @@
+Thu Apr 16 07:54:58 UTC 2020 - Tomáš Chvátal <[email protected]>
+
+- Update to 0.5.4:
+ * Added support for Python 3.8.
+
+-------------------------------------------------------------------
Old:
----
virtualenv-clone-0.5.3.tar.gz
New:
----
virtualenv-clone-0.5.4.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-virtualenv-clone.spec ++++++
--- /var/tmp/diff_new_pack.eZlZAg/_old 2020-04-16 23:03:58.139712994 +0200
+++ /var/tmp/diff_new_pack.eZlZAg/_new 2020-04-16 23:03:58.139712994 +0200
@@ -1,7 +1,7 @@
#
# spec file for package python-virtualenv-clone
#
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -18,22 +18,21 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-virtualenv-clone
-Version: 0.5.3
+Version: 0.5.4
Release: 0
Summary: Script to clone virtualenvs
License: MIT
Group: Development/Languages/Python
-URL: http://github.com/edwardgeorge/virtualenv-clone
+URL: https://github.com/edwardgeorge/virtualenv-clone
Source:
https://files.pythonhosted.org/packages/source/v/virtualenv-clone/virtualenv-clone-%{version}.tar.gz
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module setuptools}
-BuildRequires: %{python_module tox}
BuildRequires: %{python_module virtualenv}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
+Requires: python-virtualenv
Requires(post): update-alternatives
Requires(preun): update-alternatives
-Recommends: python-virtualenv
BuildArch: noarch
%python_subpackages
@@ -84,7 +83,8 @@
%python_clone -a %{buildroot}%{_bindir}/virtualenv-clone
%check
-%python_exec setup.py test
+# The tests are not shipped and there are no tags in git repo :/
+#%%pytest
%post
%python_install_alternative virtualenv-clone
++++++ virtualenv-clone-0.5.3.tar.gz -> virtualenv-clone-0.5.4.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/virtualenv-clone-0.5.3/PKG-INFO
new/virtualenv-clone-0.5.4/PKG-INFO
--- old/virtualenv-clone-0.5.3/PKG-INFO 2019-04-08 23:24:53.000000000 +0200
+++ new/virtualenv-clone-0.5.4/PKG-INFO 2020-03-27 00:46:10.000000000 +0100
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: virtualenv-clone
-Version: 0.5.3
+Version: 0.5.4
Summary: script to clone virtualenvs.
Home-page: https://github.com/edwardgeorge/virtualenv-clone
Author: Edward George
@@ -54,5 +54,6 @@
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
+Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
Description-Content-Type: text/markdown
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/virtualenv-clone-0.5.3/clonevirtualenv.py
new/virtualenv-clone-0.5.4/clonevirtualenv.py
--- old/virtualenv-clone-0.5.3/clonevirtualenv.py 2019-04-08
23:23:24.000000000 +0200
+++ new/virtualenv-clone-0.5.4/clonevirtualenv.py 2020-03-26
23:13:12.000000000 +0100
@@ -11,7 +11,7 @@
import sys
import itertools
-__version__ = '0.5.3'
+__version__ = '0.5.4'
logger = logging.getLogger()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/virtualenv-clone-0.5.3/setup.py
new/virtualenv-clone-0.5.4/setup.py
--- old/virtualenv-clone-0.5.3/setup.py 2019-04-08 23:23:33.000000000 +0200
+++ new/virtualenv-clone-0.5.4/setup.py 2020-03-26 23:13:21.000000000 +0100
@@ -29,7 +29,7 @@
setup(name="virtualenv-clone",
- version='0.5.3',
+ version='0.5.4',
description='script to clone virtualenvs.',
long_description=long_description,
long_description_content_type='text/markdown',
@@ -55,6 +55,7 @@
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
+ "Programming Language :: Python :: 3.8",
],
tests_require=test_requirements,
cmdclass={'test': ToxTest}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/virtualenv-clone-0.5.3/virtualenv_clone.egg-info/PKG-INFO
new/virtualenv-clone-0.5.4/virtualenv_clone.egg-info/PKG-INFO
--- old/virtualenv-clone-0.5.3/virtualenv_clone.egg-info/PKG-INFO
2019-04-08 23:24:52.000000000 +0200
+++ new/virtualenv-clone-0.5.4/virtualenv_clone.egg-info/PKG-INFO
2020-03-27 00:46:10.000000000 +0100
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: virtualenv-clone
-Version: 0.5.3
+Version: 0.5.4
Summary: script to clone virtualenvs.
Home-page: https://github.com/edwardgeorge/virtualenv-clone
Author: Edward George
@@ -54,5 +54,6 @@
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
+Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
Description-Content-Type: text/markdown