commit python-tap.py for openSUSE:Factory

2020-05-20 Thread root
Hello community,

here is the log from the commit of package python-tap.py for openSUSE:Factory 
checked in at 2020-05-20 18:44:33

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


Package is "python-tap.py"

Wed May 20 18:44:33 2020 rev:4 rq:807162 version:3.0

Changes:

--- /work/SRC/openSUSE:Factory/python-tap.py/python-tap.py.changes  
2020-03-19 19:52:56.264274804 +0100
+++ /work/SRC/openSUSE:Factory/.python-tap.py.new.2738/python-tap.py.changes
2020-05-20 18:45:22.273270051 +0200
@@ -1,0 +2,5 @@
+Tue May 19 08:03:11 UTC 2020 - Petr Gajdos 
+
+- %python3_only -> %python_alternative
+
+---



Other differences:
--
++ python-tap.py.spec ++
--- /var/tmp/diff_new_pack.ZX1iRY/_old  2020-05-20 18:45:23.361272495 +0200
+++ /var/tmp/diff_new_pack.ZX1iRY/_new  2020-05-20 18:45:23.365272504 +0200
@@ -31,6 +31,8 @@
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
 Requires:   python-setuptools
+Requires(post): update-alternatives
+Requires(postun): update-alternatives
 Recommends: python-PyYAML
 Recommends: python-more-itertools
 BuildArch:  noarch
@@ -55,17 +57,27 @@
 %install
 export LANG=en_US.UTF-8
 %python_install
+%python_clone -a %{buildroot}%{_bindir}/tap
+%python_clone -a %{buildroot}%{_bindir}/tappy
 %python_expand %fdupes %{buildroot}%{$python_sitelib}
 
 %check
 export LANG=en_US.UTF-8
 %pytest
 
+%post
+%python_install_alternative tap
+%python_install_alternative tappy
+
+%postun
+%python_uninstall_alternative tap
+%python_uninstall_alternative tappy
+
 %files %{python_files}
 %doc AUTHORS README.md
 %license LICENSE
-%python3_only %{_bindir}/tappy
-%python3_only %{_bindir}/tap
+%python_alternative %{_bindir}/tappy
+%python_alternative %{_bindir}/tap
 %{python_sitelib}/*
 
 %changelog




commit python-tap.py for openSUSE:Factory

2020-03-19 Thread root
Hello community,

here is the log from the commit of package python-tap.py for openSUSE:Factory 
checked in at 2020-03-19 19:49:17

Comparing /work/SRC/openSUSE:Factory/python-tap.py (Old)
 and  /work/SRC/openSUSE:Factory/.python-tap.py.new.3160 (New)


Package is "python-tap.py"

Thu Mar 19 19:49:17 2020 rev:3 rq:786183 version:3.0

Changes:

--- /work/SRC/openSUSE:Factory/python-tap.py/python-tap.py.changes  
2019-09-23 12:32:40.461656781 +0200
+++ /work/SRC/openSUSE:Factory/.python-tap.py.new.3160/python-tap.py.changes
2020-03-19 19:52:56.264274804 +0100
@@ -1,0 +2,9 @@
+Wed Mar 11 12:59:42 UTC 2020 - pgaj...@suse.com
+
+- version update to 3.0
+  * Drop support for Python 2 (it is end-of-life).
+  * Add support for subtests.
+  * Run a test suite with ``python -m tap``.
+  * Discontinue use of Pipenv for managing development.
+
+---

Old:

  tap.py-2.6.1.tar.gz

New:

  tap.py-3.0.tar.gz



Other differences:
--
++ python-tap.py.spec ++
--- /var/tmp/diff_new_pack.MYOVc3/_old  2020-03-19 19:52:57.840274859 +0100
+++ /var/tmp/diff_new_pack.MYOVc3/_new  2020-03-19 19:52:57.876274861 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-tap.py
 #
-# 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
@@ -17,8 +17,9 @@
 
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
+%define skip_python2 1
 Name:   python-tap.py
-Version:2.6.1
+Version:3.0
 Release:0
 Summary:Test Anything Protocol (TAP) tools
 License:BSD-2-Clause
@@ -29,6 +30,7 @@
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
+Requires:   python-setuptools
 Recommends: python-PyYAML
 Recommends: python-more-itertools
 BuildArch:  noarch
@@ -36,6 +38,7 @@
 BuildRequires:  %{python_module PyYAML}
 BuildRequires:  %{python_module mock}
 BuildRequires:  %{python_module more-itertools}
+BuildRequires:  %{python_module pytest}
 # /SECTION
 %python_subpackages
 
@@ -56,7 +59,7 @@
 
 %check
 export LANG=en_US.UTF-8
-%python_exec setup.py test
+%pytest
 
 %files %{python_files}
 %doc AUTHORS README.md

++ tap.py-2.6.1.tar.gz -> tap.py-3.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tap.py-2.6.1/AUTHORS new/tap.py-3.0/AUTHORS
--- old/tap.py-2.6.1/AUTHORS2018-09-15 01:32:05.0 +0200
+++ new/tap.py-3.0/AUTHORS  2020-01-10 16:08:52.0 +0100
@@ -5,6 +5,7 @@
 
 * Andrew McNamara
 * Chris Clarke
+* Erik Cederstrand
 * Marc Abramowitz
 * Mark E. Hamilton
 * Matt Layman
@@ -12,3 +13,5 @@
 * Michael F. Lamb (http://datagrok.org)
 * Nicolas Caniart
 * Richard Bosworth
+* Ross Burton
+* Simon McVittie
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tap.py-2.6.1/MANIFEST.in new/tap.py-3.0/MANIFEST.in
--- old/tap.py-2.6.1/MANIFEST.in2018-01-07 03:54:20.0 +0100
+++ new/tap.py-3.0/MANIFEST.in  2019-12-15 02:25:01.0 +0100
@@ -1,8 +1,6 @@
 include AUTHORS
 include LICENSE
 include README.md
-include Pipfile
-include Pipfile.lock
 recursive-include docs *
 recursive-include tap/locale *
 prune docs/_build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tap.py-2.6.1/PKG-INFO new/tap.py-3.0/PKG-INFO
--- old/tap.py-2.6.1/PKG-INFO   2019-09-17 15:36:47.0 +0200
+++ new/tap.py-3.0/PKG-INFO 2020-01-10 16:12:24.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: tap.py
-Version: 2.6.1
+Version: 3.0
 Summary: Test Anything Protocol (TAP) tools
 Home-page: https://github.com/python-tap/tappy
 Author: Matt Layman
@@ -19,6 +19,20 @@
 Releases
 
 
+Version 3.0, Released January 10, 2020
+--
+
+* Drop support for Python 2 (it is end-of-life).
+* Add support for subtests.
+* Run a test suite with ``python -m tap``.
+* Discontinue use of Pipenv for managing development.
+
+Version 2.6.2, Released October 20, 2019
+
+
+* Fix bug in streaming mode that would generate tap files
+  when the plan was already set (affected pytest).
+
 Version 2.6.1, Released September 17, 2019
 --
 
@@ -185,7 +199,6 @@
 Classifier: Intended Audience :: 

commit python-tap.py for openSUSE:Factory

2019-09-23 Thread root
Hello community,

here is the log from the commit of package python-tap.py for openSUSE:Factory 
checked in at 2019-09-23 12:32:35

Comparing /work/SRC/openSUSE:Factory/python-tap.py (Old)
 and  /work/SRC/openSUSE:Factory/.python-tap.py.new.7948 (New)


Package is "python-tap.py"

Mon Sep 23 12:32:35 2019 rev:2 rq:731649 version:2.6.1

Changes:

--- /work/SRC/openSUSE:Factory/python-tap.py/python-tap.py.changes  
2019-03-22 15:10:25.905335455 +0100
+++ /work/SRC/openSUSE:Factory/.python-tap.py.new.7948/python-tap.py.changes
2019-09-23 12:32:40.461656781 +0200
@@ -1,0 +2,6 @@
+Wed Sep 18 07:28:19 UTC 2019 - Tomáš Chvátal 
+
+- Update to 2.6.1:
+  * Fix to work with new releases of more-itertools
+
+---

Old:

  tap.py-2.5.tar.gz

New:

  tap.py-2.6.1.tar.gz



Other differences:
--
++ python-tap.py.spec ++
--- /var/tmp/diff_new_pack.ULVgNV/_old  2019-09-23 12:32:42.005656527 +0200
+++ /var/tmp/diff_new_pack.ULVgNV/_new  2019-09-23 12:32:42.009656527 +0200
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-tap.py
-Version:2.5
+Version:2.6.1
 Release:0
 Summary:Test Anything Protocol (TAP) tools
 License:BSD-2-Clause

++ tap.py-2.5.tar.gz -> tap.py-2.6.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tap.py-2.5/LICENSE new/tap.py-2.6.1/LICENSE
--- old/tap.py-2.5/LICENSE  2018-01-07 03:13:00.0 +0100
+++ new/tap.py-2.6.1/LICENSE2019-09-17 02:58:18.0 +0200
@@ -1,4 +1,4 @@
-Copyright (c) 2018, Matt Layman and contributors. See AUTHORS for more details.
+Copyright (c) 2019, Matt Layman and contributors. See AUTHORS for more details.
 All rights reserved.
 
 Redistribution and use in source and binary forms, with or without
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tap.py-2.5/PKG-INFO new/tap.py-2.6.1/PKG-INFO
--- old/tap.py-2.5/PKG-INFO 2018-09-15 02:18:40.0 +0200
+++ new/tap.py-2.6.1/PKG-INFO   2019-09-17 15:36:47.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: tap.py
-Version: 2.5
+Version: 2.6.1
 Summary: Test Anything Protocol (TAP) tools
 Home-page: https://github.com/python-tap/tappy
 Author: Matt Layman
@@ -19,6 +19,17 @@
 Releases
 
 
+Version 2.6.1, Released September 17, 2019
+--
+
+* Fix TAP version 13 support from more-itertools behavior change.
+
+Version 2.6, Released September 16, 2019
+
+
+* Add support for Python 3.7.
+* Drop support for Python 3.4 (it is end-of-life).
+
 Version 2.5, Released September 15, 2018
 
 
@@ -175,9 +186,9 @@
 Classifier: License :: OSI Approved :: BSD License
 Classifier: Operating System :: OS Independent
 Classifier: Programming Language :: Python :: 2.7
-Classifier: Programming Language :: Python :: 3.4
 Classifier: Programming Language :: Python :: 3.5
 Classifier: Programming Language :: Python :: 3.6
+Classifier: Programming Language :: Python :: 3.7
 Classifier: Programming Language :: Python :: Implementation :: PyPy
 Classifier: Topic :: Software Development :: Testing
 Provides-Extra: yaml
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tap.py-2.5/Pipfile new/tap.py-2.6.1/Pipfile
--- old/tap.py-2.5/Pipfile  2018-09-15 01:32:59.0 +0200
+++ new/tap.py-2.6.1/Pipfile2019-01-23 19:31:06.0 +0100
@@ -6,7 +6,7 @@
 [dev-packages]
 Babel = "*"
 coverage = "*"
-"flake8" = "*"
+"flake8" = "==3.6.0"
 mock = "*"
 requests = "*"
 Sphinx = "*"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tap.py-2.5/README.md new/tap.py-2.6.1/README.md
--- old/tap.py-2.5/README.md2018-05-15 15:23:06.0 +0200
+++ new/tap.py-2.6.1/README.md  2019-09-17 03:43:18.0 +0200
@@ -29,9 +29,9 @@
 tappy is available for download from [PyPI][pypi]. tappy is currently supported
 on Python
 2.7,
-3.4,
 3.5,
 3.6,
+3.7,
 and PyPy.
 It is continuously tested on Linux, OS X, and Windows.
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tap.py-2.5/docs/conf.py new/tap.py-2.6.1/docs/conf.py
--- old/tap.py-2.5/docs/conf.py 2018-01-07 03:13:55.0 +0100
+++ new/tap.py-2.6.1/docs/conf.py   2019-09-17 02:58:18.0 +0200
@@ -52,7 +52,7 @@
 
 # General information about