Hello community,
here is the log from the commit of package python-portalocker for
openSUSE:Factory checked in at 2018-05-17 19:33:20
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-portalocker (Old)
and /work/SRC/openSUSE:Factory/.python-portalocker.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-portalocker"
Thu May 17 19:33:20 2018 rev:1 rq:610091 version:1.2.1
Changes:
--------
New Changes file:
--- /dev/null 2018-04-25 19:14:53.472341877 +0200
+++
/work/SRC/openSUSE:Factory/.python-portalocker.new/python-portalocker.changes
2018-05-17 19:33:27.478957839 +0200
@@ -0,0 +1,9 @@
+-------------------------------------------------------------------
+Thu May 17 12:40:14 UTC 2018 - [email protected]
+
+- Fix specfile name
+
+-------------------------------------------------------------------
+Thu May 17 12:07:31 UTC 2018 - [email protected]
+
+- Initial packaging effort
New:
----
portalocker-1.2.1-old-Sphinx.patch
portalocker-1.2.1.tar.gz
python-portalocker.changes
python-portalocker.spec
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-portalocker.spec ++++++
#
# spec file for package portalocker
#
# 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/
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-portalocker
Version: 1.2.1
Release: 0
Summary: Cross-platform locking library
License: Python-2.0
Group: Development/Languages/Python
URL: https://github.com/WoLpH/portalocker
Source:
https://files.pythonhosted.org/packages/source/p/portalocker/portalocker-%{version}.tar.gz
Patch0: portalocker-1.2.1-old-Sphinx.patch
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
BuildArch: noarch
BuildRequires: %{python_module flake8 >= 3.5.0}
BuildRequires: %{python_module pytest >= 3.4.0}
BuildRequires: %{python_module pytest-cache >= 1.0}
BuildRequires: %{python_module Sphinx >= 1.6.5}
%python_subpackages
%description
Portalocker is a library to provide an easy API to file locking.
An important detail to note is that on Linux and Unix systems the locks are
advisory by default. By specifying the `-o mand` option to the mount command it
is possible to enable mandatory file locking on Linux. This is generally not
recommended however. For more information about the subject:
%prep
%setup -q -n portalocker-%{version}
%patch0 -p1
%build
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
%python_exec setup.py test
%files %{python_files}
%license LICENSE
%doc README.rst
%{python_sitelib}/*
%changelog
++++++ portalocker-1.2.1-old-Sphinx.patch ++++++
--- a/setup.py
+++ b/setup.py
@@ -27,10 +27,7 @@ tests_require = [
'flake8>=3.5.0',
'pytest>=3.4.0',
'pytest-cache>=1.0',
- 'pytest-cov>=2.5.1',
- 'pytest-flakes>=2.0.0',
- 'pytest-pep8>=1.0.6',
- 'sphinx>=1.7.1',
+ 'sphinx>=1.6.5',
]
@@ -47,7 +44,7 @@ class PyTest(TestCommand):
import pytest
errno = pytest.main(shlex.split(self.pytest_args))
sys.exit(errno)
-
+
class Combine(setuptools.Command):
description = 'Build single combined portalocker file'