Hello community, here is the log from the commit of package python-atomicwrites for openSUSE:Factory checked in at 2018-06-22 13:31:21 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-atomicwrites (Old) and /work/SRC/openSUSE:Factory/.python-atomicwrites.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-atomicwrites" Fri Jun 22 13:31:21 2018 rev:2 rq:615945 version:1.1.5 Changes: -------- New Changes file: --- /dev/null 2018-06-21 08:11:54.067253202 +0200 +++ /work/SRC/openSUSE:Factory/.python-atomicwrites.new/python-atomicwrites-doc.changes 2018-06-22 13:31:29.995263253 +0200 @@ -0,0 +1,56 @@ +------------------------------------------------------------------- +Thu Jun 7 17:16:00 UTC 2018 - [email protected] + +- Create separate -doc subpackage to build docs. +- Run tests in -doc subpackage to avoid dependency loop with + python-pytest. +- Use license tag + +------------------------------------------------------------------- +Fri Jun 30 16:49:02 UTC 2017 - [email protected] + +- Converted to single-spec + +------------------------------------------------------------------- +Wed Sep 21 02:05:33 UTC 2016 - [email protected] + +- update to version 1.1.5: + * Fix toxfile (#21) + * Make atomic_write work on paths with no directory separator (#20) + * Fix formatting + * Skip stylecheck under py26 + * Add contributing.rst + * Fix tox.ini + +------------------------------------------------------------------- +Sun May 8 07:16:22 UTC 2016 - [email protected] + +- specfile: + * updated source url to files.pythonhosted.org + +------------------------------------------------------------------- +Sat Mar 26 04:20:01 UTC 2016 - [email protected] + +- update to version 1.0.0: + * Fix unintentional exception clobbering when rollback fails + * Remove unused variable (fixes an unused variable warning) + * Update copyright notice + * Fix appveyor build + +------------------------------------------------------------------- +Mon Feb 15 18:11:26 UTC 2016 - [email protected] + +- update to version 0.1.9: + * Fix UnboundLocalError + +------------------------------------------------------------------- +Tue Jan 19 11:45:45 UTC 2016 - [email protected] + +- clean the spec file (not only) with spec-cleaner +- fix %check part + +------------------------------------------------------------------- +Mon Jan 18 23:25:46 UTC 2016 - [email protected] + +- let there be python3-atomicwrites + --- /work/SRC/openSUSE:Factory/python-atomicwrites/python-atomicwrites.changes 2017-08-10 14:11:32.345218670 +0200 +++ /work/SRC/openSUSE:Factory/.python-atomicwrites.new/python-atomicwrites.changes 2018-06-22 13:31:31.283215647 +0200 @@ -1,0 +2,13 @@ +Sun Jun 10 23:51:43 UTC 2018 - [email protected] + +- Drop other-OS mentions from description. + +------------------------------------------------------------------- +Thu Jun 7 17:16:00 UTC 2018 - [email protected] + +- Create separate -doc subpackage to build docs. +- Run tests in -doc subpackage to avoid dependency loop with + python-pytest. +- Use license tag + +------------------------------------------------------------------- New: ---- python-atomicwrites-doc.changes python-atomicwrites-doc.spec ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-atomicwrites-doc.spec ++++++ # # spec file for package python-atomicwrites-doc # # 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 # upon. The license for this file, and modifications and additions to the # file, is the same license as for the pristine package itself (unless the # license for the pristine package is not an Open Source License, in which # case the license is the MIT License). An "Open Source License" is a # 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/ # # This package allows us to test the package without a dependency loop with python-pytest # Please do not delete it %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-atomicwrites-doc Version: 1.1.5 Release: 0 Summary: Documentation for the Python atomic write support License: MIT Group: Documentation/HTML Url: https://github.com/untitaker/python-atomicwrites Source: https://files.pythonhosted.org/packages/source/a/atomicwrites/atomicwrites-%{version}.tar.gz BuildRequires: %{python_module atomicwrites} BuildRequires: %{python_module pytest} BuildRequires: %{python_module setuptools} BuildRequires: fdupes BuildRequires: python-rpm-macros BuildRequires: python3-Sphinx Provides: %{python_module atomicwrites-doc} BuildArch: noarch %description Atomic file writes for python. Features that distinguish it from other similar libraries: - Race-free assertion that the target file doesn't yet exist. This can be controlled with the 'overwrite' parameter. - high-level API that wraps a very flexible class-based API. This package contains the documentation for both python2 and python3 versions of python-atomicwrites %prep %setup -q -n atomicwrites-%{version} %build pushd docs make html rm _build/html/.buildinfo popd %install # not needed %check %{python_expand rm -rf tests/__pycache__ export PYTHONDONTWRITEBYTECODE=1 py.test-%{$python_bin_suffix} } %files %defattr(-,root,root,-) %doc docs/_build/html %doc README.rst %license LICENSE %changelog ++++++ python-atomicwrites.spec ++++++ --- /var/tmp/diff_new_pack.Erd2n1/_old 2018-06-22 13:31:32.847157840 +0200 +++ /var/tmp/diff_new_pack.Erd2n1/_new 2018-06-22 13:31:32.851157692 +0200 @@ -1,7 +1,7 @@ # # spec file for package python-atomicwrites # -# 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 @@ -20,18 +20,17 @@ Name: python-atomicwrites Version: 1.1.5 Release: 0 -Summary: Atomic file writes +Summary: Atomic file writes for Python License: MIT Group: Development/Languages/Python Url: https://github.com/untitaker/python-atomicwrites Source: https://files.pythonhosted.org/packages/source/a/atomicwrites/atomicwrites-%{version}.tar.gz BuildRequires: %{python_module devel} -BuildRequires: %{python_module pytest} BuildRequires: %{python_module setuptools} BuildRequires: fdupes BuildRequires: python-rpm-macros -BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildArch: noarch + %python_subpackages %description @@ -41,12 +40,7 @@ - Race-free assertion that the target file doesn't yet exist. This can be controlled with the 'overwrite' parameter. -- Windows support, although not well-tested. The MSDN resources are not very - explicit about which operations are atomic. - -- Simple high-level API that wraps a very flexible class-based API. - -- Consistent error handling across platforms. +- High-level API that wraps a very flexible class-based API. %prep %setup -q -n atomicwrites-%{version} @@ -59,14 +53,10 @@ %python_install %python_expand %fdupes -s %{buildroot}%{$python_sitelib} -%check -%{python_expand rm -rf tests/__pycache__ - $python -m pytest -} - %files %{python_files} %defattr(-,root,root,-) -%doc README.rst LICENSE +%doc README.rst +%license LICENSE %{python_sitelib}/* %changelog
