Hello community,

here is the log from the commit of package codespell for openSUSE:Factory 
checked in at 2019-02-24 17:10:38
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/codespell (Old)
 and      /work/SRC/openSUSE:Factory/.codespell.new.28833 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "codespell"

Sun Feb 24 17:10:38 2019 rev:3 rq:670277 version:1.14.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/codespell/codespell.changes      2018-08-18 
00:03:08.150902023 +0200
+++ /work/SRC/openSUSE:Factory/.codespell.new.28833/codespell.changes   
2019-02-24 17:10:41.316500911 +0100
@@ -1,0 +2,7 @@
+Thu Jan 31 08:30:45 UTC 2019 - Tomáš Chvátal <[email protected]>
+
+- Update to 1.14.0:
+  * No upstream changelog
+- Fix build under python 3.7
+
+-------------------------------------------------------------------

Old:
----
  codespell-1.13.0.tar.gz

New:
----
  codespell-1.14.0.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ codespell.spec ++++++
--- /var/tmp/diff_new_pack.NJAJGy/_old  2019-02-24 17:10:42.148500762 +0100
+++ /var/tmp/diff_new_pack.NJAJGy/_new  2019-02-24 17:10:42.152500762 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package codespell
 #
-# 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
@@ -12,12 +12,12 @@
 # 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/
 #
 
 
 Name:           codespell
-Version:        1.13.0
+Version:        1.14.0
 Release:        0
 Summary:        Source code checker for common misspellings
 License:        GPL-2.0-only
@@ -25,11 +25,13 @@
 URL:            https://github.com/codespell-project/codespell/
 Source0:        
https://github.com/codespell-project/codespell/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
 Patch1:         help2man-run-needs-utf8-locale.patch
+BuildRequires:  fdupes
 BuildRequires:  help2man
-BuildRequires:  python3
+BuildRequires:  python-rpm-macros
+BuildRequires:  python3-chardet
 BuildRequires:  python3-pytest
 BuildRequires:  python3-setuptools
-Requires:       python3
+Requires:       python3-chardet
 Requires:       python3-setuptools
 BuildArch:      noarch
 
@@ -41,47 +43,30 @@
 %setup -q
 %autopatch
 
+# remove config that requires pulling more pytest stuff
+rm -f setup.cfg
+
 %build
 make %{?_smp_mflags} codespell.1
-python3 setup.py build
+%python3_build
 
 %check
+# disable command test; does not work in chroot
+export PATH=$PATH:%{buildroot}%{_bindir}
 make %{?_smp_mflags} check-dictionary
-python3 setup.py test
+python3 -m pytest -k 'not test_command'
 
 %install
-python3 setup.py install --root=%{buildroot}
+%python3_install
 install -D -m644 codespell.1 %{buildroot}/%{_mandir}/man1/codespell.1
+%fdupes %{buildroot}%{python3_sitelib}
 
 %files
 %license COPYING
 %doc README.rst
 %{_mandir}/man1/codespell.1%{?ext_man}
 %{_bindir}/codespell
-%dir %{python3_sitelib}/codespell-%{version}-py%{py3_ver}.egg-info
-%dir %{python3_sitelib}/codespell_lib
-%dir %{python3_sitelib}/codespell_lib/__pycache__
-%dir %{python3_sitelib}/codespell_lib/data
-%dir %{python3_sitelib}/codespell_lib/data/__pycache__
-%dir %{python3_sitelib}/codespell_lib/tests
-%dir %{python3_sitelib}/codespell_lib/tests/__pycache__
-%{python3_sitelib}/codespell-%{version}-py%{py3_ver}.egg-info/dependency_links.txt
-%{python3_sitelib}/codespell-%{version}-py%{py3_ver}.egg-info/entry_points.txt
-%{python3_sitelib}/codespell-%{version}-py%{py3_ver}.egg-info/not-zip-safe
-%{python3_sitelib}/codespell-%{version}-py%{py3_ver}.egg-info/PKG-INFO
-%{python3_sitelib}/codespell-%{version}-py%{py3_ver}.egg-info/SOURCES.txt
-%{python3_sitelib}/codespell-%{version}-py%{py3_ver}.egg-info/top_level.txt
-%{python3_sitelib}/codespell_lib/__init__.py
-%{python3_sitelib}/codespell_lib/__pycache__/__init__.cpython-36.pyc
-%{python3_sitelib}/codespell_lib/__pycache__/_codespell.cpython-36.pyc
-%{python3_sitelib}/codespell_lib/_codespell.py
-%{python3_sitelib}/codespell_lib/data/__init__.py
-%{python3_sitelib}/codespell_lib/data/__pycache__/__init__.cpython-36.pyc
-%{python3_sitelib}/codespell_lib/data/dictionary.txt
-%{python3_sitelib}/codespell_lib/data/linux-kernel.exclude
-%{python3_sitelib}/codespell_lib/tests/__init__.py
-%{python3_sitelib}/codespell_lib/tests/__pycache__/__init__.cpython-36.pyc
-%{python3_sitelib}/codespell_lib/tests/__pycache__/test_basic.cpython-36.pyc
-%{python3_sitelib}/codespell_lib/tests/test_basic.py
+%{python3_sitelib}/codespell_lib
+%{python3_sitelib}/%{name}-%{version}-py%{py3_ver}.egg-info
 
 %changelog

++++++ codespell-1.13.0.tar.gz -> codespell-1.14.0.tar.gz ++++++
++++ 9225 lines of diff (skipped)


Reply via email to