commit python-seqdiag for openSUSE:Factory

2020-05-19 Thread root
Hello community,

here is the log from the commit of package python-seqdiag for openSUSE:Factory 
checked in at 2020-05-19 14:58:32

Comparing /work/SRC/openSUSE:Factory/python-seqdiag (Old)
 and  /work/SRC/openSUSE:Factory/.python-seqdiag.new.2738 (New)


Package is "python-seqdiag"

Tue May 19 14:58:32 2020 rev:5 rq:807289 version:2.0.0

Changes:

--- /work/SRC/openSUSE:Factory/python-seqdiag/python-seqdiag.changes
2020-02-25 16:06:42.340553177 +0100
+++ /work/SRC/openSUSE:Factory/.python-seqdiag.new.2738/python-seqdiag.changes  
2020-05-19 14:58:46.949440363 +0200
@@ -1,0 +2,5 @@
+Tue May 19 09:27:58 UTC 2020 - Petr Gajdos 
+
+- %python3_only -> %python_alternative
+
+---



Other differences:
--
++ python-seqdiag.spec ++
--- /var/tmp/diff_new_pack.nKbhR2/_old  2020-05-19 14:58:47.977442643 +0200
+++ /var/tmp/diff_new_pack.nKbhR2/_new  2020-05-19 14:58:47.981442652 +0200
@@ -31,6 +31,8 @@
 BuildRequires:  python-rpm-macros
 Requires:   python-blockdiag >= 1.5.0
 Requires:   python-setuptools
+Requires(post): update-alternatives
+Requires(postun): update-alternatives
 BuildArch:  noarch
 %python_subpackages
 
@@ -48,11 +50,18 @@
 
 %install
 %python_install
+%python_clone -a %{buildroot}%{_bindir}/seqdiag
+
+%post
+%python_install_alternative seqdiag
+
+%postun
+%python_uninstall_alternative seqdiag
 
 %files %{python_files}
 %license LICENSE
 %doc CHANGES.rst README.rst
-%python3_only %{_bindir}/seqdiag
+%python_alternative %{_bindir}/seqdiag
 %{python_sitelib}/*
 
 %changelog




commit python-seqdiag for openSUSE:Factory

2020-02-25 Thread root
Hello community,

here is the log from the commit of package python-seqdiag for openSUSE:Factory 
checked in at 2020-02-25 16:06:12

Comparing /work/SRC/openSUSE:Factory/python-seqdiag (Old)
 and  /work/SRC/openSUSE:Factory/.python-seqdiag.new.26092 (New)


Package is "python-seqdiag"

Tue Feb 25 16:06:12 2020 rev:4 rq:778944 version:2.0.0

Changes:

--- /work/SRC/openSUSE:Factory/python-seqdiag/python-seqdiag.changes
2019-04-30 13:04:23.842019919 +0200
+++ /work/SRC/openSUSE:Factory/.python-seqdiag.new.26092/python-seqdiag.changes 
2020-02-25 16:06:42.340553177 +0100
@@ -1,0 +2,21 @@
+Tue Feb 25 06:28:27 UTC 2020 - Thomas Bechtold 
+
+- update to version 2.0.0
+  * compat module is no longer needed
+  * Enable Travis CI
+  * Define long_description_content_type
+  * Drop "setup.py release" macro
+  * Add get_version() to setup.py
+  * Add project_urls to setup.py
+  * isort'ize
+  * Add .gitignore
+  * Fix author_email
+  * Drop py27 and py34 support
+  * Bump version
+  * Remove buildout
+  * Fix seqdiag is not universal package
+  * Fix flake8 violations
+  * Stop to use deprecated APIs
+- Stop building python2 version. No longer supported upstream
+
+---

Old:

  seqdiag-0.9.6.tar.gz

New:

  seqdiag-2.0.0.tar.gz



Other differences:
--
++ python-seqdiag.spec ++
--- /var/tmp/diff_new_pack.JQl3QN/_old  2020-02-25 16:06:46.556561997 +0100
+++ /var/tmp/diff_new_pack.JQl3QN/_new  2020-02-25 16:06:46.564562014 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-seqdiag
 #
-# 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
@@ -16,14 +16,10 @@
 #
 
 
+%define skip_python2 1
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
-%if 0%{?suse_version} && 0%{?suse_version} <= 1110
-%{!?python_sitelib: %global python_sitelib %(python -c "from 
distutils.sysconfig import get_python_lib; print get_python_lib()")}
-%else
-BuildArch:  noarch
-%endif
 Name:   python-seqdiag
-Version:0.9.6
+Version:2.0.0
 Release:0
 Summary:Python module to generate sequence-diagram images from text
 License:Apache-2.0
@@ -35,6 +31,7 @@
 BuildRequires:  python-rpm-macros
 Requires:   python-blockdiag >= 1.5.0
 Requires:   python-setuptools
+BuildArch:  noarch
 %python_subpackages
 
 %description

++ seqdiag-0.9.6.tar.gz -> seqdiag-2.0.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/seqdiag-0.9.6/CHANGES.rst 
new/seqdiag-2.0.0/CHANGES.rst
--- old/seqdiag-0.9.6/CHANGES.rst   2018-07-24 16:30:36.0 +0200
+++ new/seqdiag-2.0.0/CHANGES.rst   2020-01-26 06:44:56.0 +0100
@@ -1,6 +1,10 @@
 Changelog
 =
 
+2.0.0 (2020-01-26)
+--
+* Drop python2 and python3.4 support
+
 0.9.6 (2018-07-24)
 --
 * Fix a bug
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/seqdiag-0.9.6/MANIFEST.in 
new/seqdiag-2.0.0/MANIFEST.in
--- old/seqdiag-0.9.6/MANIFEST.in   2018-07-24 16:29:43.0 +0200
+++ new/seqdiag-2.0.0/MANIFEST.in   2020-01-26 06:44:04.0 +0100
@@ -1,5 +1,3 @@
-include buildout.cfg
-include bootstrap.py
 include CHANGES.rst
 include MANIFEST.in
 include README.rst
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/seqdiag-0.9.6/PKG-INFO new/seqdiag-2.0.0/PKG-INFO
--- old/seqdiag-0.9.6/PKG-INFO  2018-07-24 16:31:44.0 +0200
+++ new/seqdiag-2.0.0/PKG-INFO  2020-01-26 06:47:11.595198000 +0100
@@ -1,12 +1,14 @@
 Metadata-Version: 2.1
 Name: seqdiag
-Version: 0.9.6
+Version: 2.0.0
 Summary: seqdiag generates sequence-diagram image from text
 Home-page: http://blockdiag.com/
 Author: Takeshi Komiya
 Author-email: i.tkom...@gmail.com
 License: Apache License 2.0
 Download-URL: http://pypi.python.org/pypi/seqdiag
+Project-URL: Code, https://github.com/blockdiag/nwdiag
+Project-URL: Issue tracker, https://github.com/blockdiag/nwdiag/issues
 Description: `seqdiag` generate sequence-diagram image file from spec-text 
file.
 
 .. image:: https://drone.io/bitbucket.org/blockdiag/seqdiag/status.png
@@ -85,8 +87,8 @@
 
 Requirements
 
-* Python 2.6, 2.7, 3.2, 3.3, 3.4
-* Pillow 2.2.1 or later
+* Python 3.5 or later
+* blockdiag 1.5.0 or later
 * funcparserlib 0.3.6 or later
 * reportlab (optional)
 * wand and imagemagick (opt

commit python-seqdiag for openSUSE:Factory

2019-04-30 Thread root
Hello community,

here is the log from the commit of package python-seqdiag for openSUSE:Factory 
checked in at 2019-04-30 13:04:18

Comparing /work/SRC/openSUSE:Factory/python-seqdiag (Old)
 and  /work/SRC/openSUSE:Factory/.python-seqdiag.new.5536 (New)


Package is "python-seqdiag"

Tue Apr 30 13:04:18 2019 rev:3 rq:697923 version:0.9.6

Changes:

--- /work/SRC/openSUSE:Factory/python-seqdiag/python-seqdiag.changes
2018-12-24 11:46:17.321191951 +0100
+++ /work/SRC/openSUSE:Factory/.python-seqdiag.new.5536/python-seqdiag.changes  
2019-04-30 13:04:23.842019919 +0200
@@ -1,0 +2,6 @@
+Thu Apr 25 19:53:17 UTC 2019 - Dirk Mueller 
+
+- update to 0.9.6:
+  * Python 3.7 compatibility
+
+---

Old:

  seqdiag-0.9.5.tar.gz

New:

  seqdiag-0.9.6.tar.gz



Other differences:
--
++ python-seqdiag.spec ++
--- /var/tmp/diff_new_pack.Vook7a/_old  2019-04-30 13:04:26.034016147 +0200
+++ /var/tmp/diff_new_pack.Vook7a/_new  2019-04-30 13:04:26.034016147 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-seqdiag
 #
-# 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
@@ -23,7 +23,7 @@
 BuildArch:  noarch
 %endif
 Name:   python-seqdiag
-Version:0.9.5
+Version:0.9.6
 Release:0
 Summary:Python module to generate sequence-diagram images from text
 License:Apache-2.0

++ seqdiag-0.9.5.tar.gz -> seqdiag-0.9.6.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/seqdiag-0.9.5/CHANGES.rst 
new/seqdiag-0.9.6/CHANGES.rst
--- old/seqdiag-0.9.5/CHANGES.rst   2014-12-31 16:19:37.0 +0100
+++ new/seqdiag-0.9.6/CHANGES.rst   2018-07-24 16:30:36.0 +0200
@@ -1,6 +1,12 @@
 Changelog
 =
 
+0.9.6 (2018-07-24)
+--
+* Fix a bug
+
+  - Fix #24 Python 3.7 compatibility
+
 0.9.5 (2015-01-01)
 --
 * Support blockdiag 1.5.0 core interface
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/seqdiag-0.9.5/PKG-INFO new/seqdiag-0.9.6/PKG-INFO
--- old/seqdiag-0.9.5/PKG-INFO  2015-01-01 15:51:58.0 +0100
+++ new/seqdiag-0.9.6/PKG-INFO  2018-07-24 16:31:44.0 +0200
@@ -1,10 +1,10 @@
-Metadata-Version: 1.1
+Metadata-Version: 2.1
 Name: seqdiag
-Version: 0.9.5
+Version: 0.9.6
 Summary: seqdiag generates sequence-diagram image from text
 Home-page: http://blockdiag.com/
 Author: Takeshi Komiya
-Author-email: i.tkomiya at gmail.com
+Author-email: i.tkom...@gmail.com
 License: Apache License 2.0
 Download-URL: http://pypi.python.org/pypi/seqdiag
 Description: `seqdiag` generate sequence-diagram image file from spec-text 
file.
@@ -97,8 +97,6 @@
 ===
 Apache License 2.0
 
-
-
 Keywords: diagram,generator
 Platform: UNKNOWN
 Classifier: Development Status :: 3 - Alpha
@@ -108,3 +106,5 @@
 Classifier: Topic :: Software Development
 Classifier: Topic :: Software Development :: Documentation
 Classifier: Topic :: Text Processing :: Markup
+Provides-Extra: rst
+Provides-Extra: testing
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/seqdiag-0.9.5/README.rst new/seqdiag-0.9.6/README.rst
--- old/seqdiag-0.9.5/README.rst2014-11-05 03:04:16.0 +0100
+++ new/seqdiag-0.9.6/README.rst2018-07-24 16:29:43.0 +0200
@@ -87,5 +87,3 @@
 License
 ===
 Apache License 2.0
-
-
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/seqdiag-0.9.5/setup.cfg new/seqdiag-0.9.6/setup.cfg
--- old/seqdiag-0.9.5/setup.cfg 2015-01-01 15:51:58.0 +0100
+++ new/seqdiag-0.9.6/setup.cfg 2018-07-24 16:31:44.0 +0200
@@ -1,7 +1,6 @@
 [egg_info]
 tag_build = 
 tag_date = 0
-tag_svn_revision = 0
 
 [build]
 build-base = _build
@@ -21,4 +20,5 @@
 
 [flake8]
 ignore = _
+copyright-check = True
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/seqdiag-0.9.5/setup.py new/seqdiag-0.9.6/setup.py
--- old/seqdiag-0.9.5/setup.py  2014-12-31 16:16:51.0 +0100
+++ new/seqdiag-0.9.6/setup.py  2018-07-24 16:31:28.0 +0200
@@ -15,6 +15,7 @@
 "Topic :: Text Processing :: Markup",
 ]
 
+requires = ['blockdiag>=1.5.0']
 test_requires = ['nose',
  'pep8>=1.3',
  'reportlab',
@@ -24,6 +25,9 @@
 if sys.version_info > (2, 6) and sys.version_info < (2, 7):
 test_requires.append('unitt

commit python-seqdiag for openSUSE:Factory

2018-12-24 Thread root
Hello community,

here is the log from the commit of package python-seqdiag for openSUSE:Factory 
checked in at 2018-12-24 11:46:16

Comparing /work/SRC/openSUSE:Factory/python-seqdiag (Old)
 and  /work/SRC/openSUSE:Factory/.python-seqdiag.new.28833 (New)


Package is "python-seqdiag"

Mon Dec 24 11:46:16 2018 rev:2 rq:659827 version:0.9.5

Changes:

--- /work/SRC/openSUSE:Factory/python-seqdiag/python-seqdiag.changes
2018-04-19 15:29:01.076211051 +0200
+++ /work/SRC/openSUSE:Factory/.python-seqdiag.new.28833/python-seqdiag.changes 
2018-12-24 11:46:17.321191951 +0100
@@ -1,0 +2,10 @@
+Tue Dec 18 23:37:49 UTC 2018 - Jan Engelhardt 
+
+- Use noun phrase in summary. Fixup grammar issues.
+
+---
+Tue Dec  4 12:54:09 UTC 2018 - Matej Cepl 
+
+- Remove superfluous devel dependency for noarch package
+
+---



Other differences:
--
++ python-seqdiag.spec ++
--- /var/tmp/diff_new_pack.7yus0V/_old  2018-12-24 11:46:17.777191551 +0100
+++ /var/tmp/diff_new_pack.7yus0V/_new  2018-12-24 11:46:17.777191551 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-seqdiag
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 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
@@ -12,38 +12,36 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
+%if 0%{?suse_version} && 0%{?suse_version} <= 1110
+%{!?python_sitelib: %global python_sitelib %(python -c "from 
distutils.sysconfig import get_python_lib; print get_python_lib()")}
+%else
+BuildArch:  noarch
+%endif
 Name:   python-seqdiag
 Version:0.9.5
 Release:0
-Summary:Generates sequence-diagram image from text
+Summary:Python module to generate sequence-diagram images from text
 License:Apache-2.0
 Group:  Development/Languages/Python
-Url:http://blockdiag.com/
-Source: 
https://pypi.python.org/packages/source/s/seqdiag/seqdiag-%{version}.tar.gz
+URL:http://blockdiag.com/
+Source: 
https://files.pythonhosted.org/packages/source/s/seqdiag/seqdiag-%{version}.tar.gz
 BuildRequires:  %{python_module blockdiag >= 1.5.0}
-BuildRequires:  %{python_module devel}
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  python-rpm-macros
 Requires:   python-blockdiag >= 1.5.0
 Requires:   python-setuptools
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-%if 0%{?suse_version} && 0%{?suse_version} <= 1110
-%{!?python_sitelib: %global python_sitelib %(python -c "from 
distutils.sysconfig import get_python_lib; print get_python_lib()")}
-%else
-BuildArch:  noarch
-%endif
 %python_subpackages
 
 %description
-`seqdiag` generate sequence-diagram image file from spec-text file.
+`seqdiag` generates sequence-diagram image files from spec-text files.
 
 * Generate sequence-diagram from dot like text (basic feature).
-* Multilingualization for node-label (utf-8 only).
+* Multilingualization for node-label (UTF-8 only).
 
 %prep
 %setup -q -n seqdiag-%{version}
@@ -55,8 +53,8 @@
 %python_install
 
 %files %{python_files}
-%defattr(-,root,root,-)
-%doc CHANGES.rst LICENSE README.rst
+%license LICENSE
+%doc CHANGES.rst README.rst
 %python3_only %{_bindir}/seqdiag
 %{python_sitelib}/*