Hello community,
here is the log from the commit of package python-venusian for openSUSE:Factory
checked in at 2020-03-10 14:05:50
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-venusian (Old)
and /work/SRC/openSUSE:Factory/.python-venusian.new.26092 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-venusian"
Tue Mar 10 14:05:50 2020 rev:8 rq:783371 version:3.0.0
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-venusian/python-venusian.changes
2019-10-16 09:17:05.831187389 +0200
+++
/work/SRC/openSUSE:Factory/.python-venusian.new.26092/python-venusian.changes
2020-03-10 14:05:51.899400323 +0100
@@ -1,0 +2,16 @@
+Tue Mar 10 12:18:57 UTC 2020 - [email protected]
+
+- version update to 3.0.0
+ 3.0.0 (2019-10-04)
+ - This release matches 2.0.0 other than in the version number. This fixes an
+ issue with Requires-Python metadata not being uploaded correctly to PyPi.
+ This version is only compatible with Python 3.5+
+ 2.0.0 (2019-10-04)
+ - Drop support for Python 2.7, 3.3, and 3.4
+ - Removed the usage of the ``imp`` module to squelch the warnings regarding a
+ deprecated modules. See https://github.com/Pylons/venusian/pull/63 and
+ https://github.com/Pylons/venusian/issues/57
+- modified patches
+ % fix-pylons-sphinx-theme.diff (refreshed)
+
+-------------------------------------------------------------------
Old:
----
venusian-1.2.0.tar.gz
New:
----
venusian-3.0.0.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-venusian.spec ++++++
--- /var/tmp/diff_new_pack.uBreWd/_old 2020-03-10 14:05:52.651400690 +0100
+++ /var/tmp/diff_new_pack.uBreWd/_new 2020-03-10 14:05:52.651400690 +0100
@@ -1,7 +1,7 @@
#
# spec file for package python-venusian
#
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
# Copyright (c) 2013-2019 LISA GmbH, Bingen, Germany.
#
# All modifications and additions to the file contributed by third parties
@@ -18,8 +18,9 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
+%define skip_python2 1
Name: python-venusian
-Version: 1.2.0
+Version: 3.0.0
Release: 0
Summary: A library for deferring decorator actions
License: SUSE-Repoze AND ZPL-2.1
@@ -66,14 +67,14 @@
%build
%python_build
-python3 setup.py build_sphinx && rm -v
build/sphinx/html/{.buildinfo,objects.inv}
+PYTHONPATH=src python3 setup.py build_sphinx && rm -v
build/sphinx/html/{.buildinfo,objects.inv}
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
-%pytest venusian
+%pytest
%files %{python_files}
%license LICENSE.txt
++++++ fix-pylons-sphinx-theme.diff ++++++
--- /var/tmp/diff_new_pack.uBreWd/_old 2020-03-10 14:05:52.683400705 +0100
+++ /var/tmp/diff_new_pack.uBreWd/_new 2020-03-10 14:05:52.683400705 +0100
@@ -1,31 +1,33 @@
-Index: b/docs/conf.py
+Index: venusian-3.0.0/docs/conf.py
===================================================================
---- a/docs/conf.py
-+++ b/docs/conf.py
-@@ -17,38 +17,10 @@ import os
+--- venusian-3.0.0.orig/docs/conf.py 2020-03-10 12:14:58.987113508 +0100
++++ venusian-3.0.0/docs/conf.py 2020-03-10 12:21:03.213085906 +0100
+@@ -16,40 +16,10 @@ import sys
+ import os
import datetime
import pkg_resources
++import pylons_sphinx_themes
-# Add and use Pylons theme
--if 'sphinx-build' in ' '.join(sys.argv): # protect against dumb importers
+-if "sphinx-build" in " ".join(sys.argv): # protect against dumb importers
- from subprocess import call, Popen, PIPE
-+import pylons_sphinx_themes
-
-- p = Popen('which git', shell=True, stdout=PIPE)
+-
+- p = Popen("which git", shell=True, stdout=PIPE)
- git = p.stdout.read().strip()
- cwd = os.getcwd()
-- _themes = os.path.join(cwd, '_themes')
+- _themes = os.path.join(cwd, "_themes")
-
- if not os.path.isdir(_themes):
-- call([git, 'clone', 'git://github.com/Pylons/pylons_sphinx_theme.git',
-- '_themes'])
+- call(
+- [git, "clone", "git://github.com/Pylons/pylons_sphinx_theme.git",
"_themes"]
+- )
- else:
- os.chdir(_themes)
-- call([git, 'checkout', 'master'])
-- call([git, 'pull'])
+- call([git, "checkout", "master"])
+- call([git, "pull"])
- os.chdir(cwd)
-
-- sys.path.append(os.path.abspath('_themes'))
+- sys.path.append(os.path.abspath("_themes"))
-
- parent = os.path.dirname(os.path.dirname(__file__))
- sys.path.append(os.path.abspath(parent))
@@ -36,10 +38,10 @@
-# Options for HTML output
-# -----------------------
-
--sys.path.append(os.path.abspath('_themes'))
--html_theme_path = ['_themes']
- html_theme = 'pylons'
+-sys.path.append(os.path.abspath("_themes"))
+-html_theme_path = ["_themes"]
+ html_theme = "pylons"
+html_theme_path = pylons_sphinx_themes.get_html_themes_path()
- html_theme_options = dict(github_url='https://github.com/Pylons/venusian')
+ html_theme_options = dict(github_url="https://github.com/Pylons/venusian")
# If your extensions are in another directory, add it here. If the
++++++ venusian-1.2.0.tar.gz -> venusian-3.0.0.tar.gz ++++++
++++ 6221 lines of diff (skipped)