Hello community,
here is the log from the commit of package python-objgraph for openSUSE:Factory
checked in at 2019-06-05 11:38:33
Comparing /work/SRC/openSUSE:Factory/python-objgraph (Old)
and /work/SRC/openSUSE:Factory/.python-objgraph.new.5148 (New)
Package is "python-objgraph"
Wed Jun 5 11:38:33 2019 rev:4 rq:707157 version:3.4.1
Changes:
--- /work/SRC/openSUSE:Factory/python-objgraph/python-objgraph.changes
2018-12-24 11:40:32.829497092 +0100
+++
/work/SRC/openSUSE:Factory/.python-objgraph.new.5148/python-objgraph.changes
2019-06-05 11:38:34.571082939 +0200
@@ -1,0 +2,7 @@
+Mon Jun 3 11:21:35 UTC 2019 - Tomáš Chvátal
+
+- Update to 3.4.1:
+ * Add support for Python 3.7.
+ * Drop support for Python 3.3 and 3.4.
+
+---
Old:
objgraph-3.4.0.tar.gz
New:
objgraph-3.4.1.tar.gz
Other differences:
--
++ python-objgraph.spec ++
--- /var/tmp/diff_new_pack.BRmGpr/_old 2019-06-05 11:38:35.443082828 +0200
+++ /var/tmp/diff_new_pack.BRmGpr/_new 2019-06-05 11:38:35.443082828 +0200
@@ -1,7 +1,7 @@
#
# spec file for package python-objgraph
#
-# 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
@@ -16,29 +16,27 @@
#
-%bcond_without tests
-
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
+%define oldpython python
Name: python-objgraph
-Version:3.4.0
+Version:3.4.1
Release:0
Summary:Python module to draw object reference graphs with graphviz
License:MIT
Group: Development/Languages/Python
-Url:http://mg.pov.lt/objgraph/
+URL:http://mg.pov.lt/objgraph/
Source:
https://files.pythonhosted.org/packages/source/o/objgraph/objgraph-%{version}.tar.gz
BuildRequires: %{python_module graphviz}
+BuildRequires: %{python_module mock}
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: graphviz-gd
BuildRequires: graphviz-gnome
BuildRequires: python-rpm-macros
-# Test requirements
-BuildRequires: %{python_module mock}
Requires: graphviz-gd
Requires: graphviz-gnome
Requires: python-graphviz
-BuildRoot: %{_tmppath}/%{name}-%{version}-build
+Obsoletes: %{oldpython}-objgraph-doc
BuildArch: noarch
%python_subpackages
@@ -48,14 +46,6 @@
graphviz is needed if pretty graphs are desired.
xdot can be used for interactive use.
-%package -n python-objgraph-doc
-Summary:Documentation for %{name}
-Group: Development/Languages/Python
-Provides: %{python_module objgraph-doc = %{version}}
-
-%description -n python-objgraph-doc
-Documentation and help files for %{name}
-
%prep
%setup -q -n objgraph-%{version}
@@ -64,22 +54,14 @@
%install
%python_install
-%python_expand %fdupes %{buildroot}%{$python_sitearch}
+%python_expand %fdupes %{buildroot}%{$python_sitelib}
-%if %{with tests}
%check
%python_exec setup.py test
-%endif
%files %{python_files}
-%defattr(-,root,root,-)
-%doc README.rst
+%doc README.rst CHANGES.rst HACKING.rst
%license LICENSE
%{python_sitelib}/*
-%files -n python-objgraph-doc
-%defattr(-,root,root,-)
-%doc docs/
-%doc CHANGES.rst HACKING.rst
-
%changelog
++ objgraph-3.4.0.tar.gz -> objgraph-3.4.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/objgraph-3.4.0/.travis.yml
new/objgraph-3.4.1/.travis.yml
--- old/objgraph-3.4.0/.travis.yml 2017-01-20 10:22:05.0 +0100
+++ new/objgraph-3.4.1/.travis.yml 2019-04-23 19:07:10.0 +0200
@@ -1,15 +1,14 @@
language: python
-sudo: false
+dist: xenial
python:
- 2.7
-- 3.3
-- 3.4
- 3.5
- 3.6
+- 3.7
addons:
- apt:
-packages:
- - graphviz
+apt:
+packages:
+- graphviz
install:
- pip install coverage coveralls flake8 -e .
before_script:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/objgraph-3.4.0/CHANGES.rst
new/objgraph-3.4.1/CHANGES.rst
--- old/objgraph-3.4.0/CHANGES.rst 2018-02-13 16:15:47.0 +0100
+++ new/objgraph-3.4.1/CHANGES.rst 2019-04-23 19:32:17.0 +0200
@@ -3,6 +3,14 @@
.. currentmodule:: objgraph
+3.4.1 (2019-04-23)
+--
+
+- Add support for Python 3.7.
+
+- Drop support for Python 3.3 and 3.4.
+
+
3.4.0 (2018-02-13)
--
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnigno