Hello community,
here is the log from the commit of package python-text-unidecode for
openSUSE:Factory checked in at 2019-09-23 12:03:50
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-text-unidecode (Old)
and /work/SRC/openSUSE:Factory/.python-text-unidecode.new.7948 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-text-unidecode"
Mon Sep 23 12:03:50 2019 rev:5 rq:729751 version:1.3
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-text-unidecode/python-text-unidecode.changes
2019-02-24 17:14:36.332459047 +0100
+++
/work/SRC/openSUSE:Factory/.python-text-unidecode.new.7948/python-text-unidecode.changes
2019-09-23 12:03:51.581940546 +0200
@@ -1,0 +2,7 @@
+Tue Sep 10 09:49:12 UTC 2019 - Tomáš Chvátal <[email protected]>
+
+- Update to 1.3:
+ * text-unidecode is now dual-licensed under Artistic License and GPL 1 /
+ GPL 2+, to cause less problems for distributions.
+
+-------------------------------------------------------------------
Old:
----
text-unidecode-1.2.tar.gz
New:
----
text-unidecode-1.3.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-text-unidecode.spec ++++++
--- /var/tmp/diff_new_pack.ODRvTt/_old 2019-09-23 12:03:52.689940364 +0200
+++ /var/tmp/diff_new_pack.ODRvTt/_new 2019-09-23 12:03:52.689940364 +0200
@@ -18,10 +18,10 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-text-unidecode
-Version: 1.2
+Version: 1.3
Release: 0
Summary: The most basic Text::Unidecode port
-License: Artistic-1.0
+License: Artistic-1.0 OR GPL-2.0-or-later
Group: Development/Languages/Python
URL: https://github.com/kmike/text-unidecode/
Source:
https://files.pythonhosted.org/packages/source/t/text-unidecode/text-unidecode-%{version}.tar.gz
@@ -53,7 +53,7 @@
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
-%python_expand PYTHONPATH=%{buildroot}%{$python_sitelib}
py.test-%{$python_bin_suffix} -v
+%pytest
%files %{python_files}
%license LICENSE
++++++ text-unidecode-1.2.tar.gz -> text-unidecode-1.3.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/text-unidecode-1.2/LICENSE
new/text-unidecode-1.3/LICENSE
--- old/text-unidecode-1.2/LICENSE 2017-11-07 10:21:48.000000000 +0100
+++ new/text-unidecode-1.3/LICENSE 2019-08-30 23:23:40.000000000 +0200
@@ -1,3 +1,10 @@
+text-unidecode is a free software; you can redistribute
+it and/or modify it under the terms of either:
+
+* GPL or GPLv2+ (see https://www.gnu.org/licenses/license-list.html#GNUGPL), or
+* Artistic License - see below:
+
+
The "Artistic License"
Preamble
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/text-unidecode-1.2/PKG-INFO
new/text-unidecode-1.3/PKG-INFO
--- old/text-unidecode-1.2/PKG-INFO 2018-02-22 22:12:37.000000000 +0100
+++ new/text-unidecode-1.3/PKG-INFO 2019-08-30 23:36:27.000000000 +0200
@@ -1,12 +1,11 @@
Metadata-Version: 1.1
Name: text-unidecode
-Version: 1.2
+Version: 1.3
Summary: The most basic Text::Unidecode port
Home-page: https://github.com/kmike/text-unidecode/
Author: Mikhail Korobov
Author-email: [email protected]
License: Artistic License
-Description-Content-Type: UNKNOWN
Description: Text-Unidecode
==============
@@ -22,10 +21,16 @@
and isounidecode_). unidecode_ is GPL; isounidecode_ uses too much
memory,
and it didn't support Python 3 when this package was created.
- This port is licensed under `Artistic License`_ and supports Python
2.7 and
- 3.3+. If you're OK with GPL, use unidecode_ (it has better memory
usage and
+ You can redistribute it and/or modify this port under the terms of
either:
+
+ * `Artistic License`_, or
+ * GPL or GPLv2+
+
+ If you're OK with GPL-only, use unidecode_ (it has better memory usage
and
better transliteration quality).
+ ``text-unidecode`` supports Python 2.7 and 3.4+.
+
.. _unidecode: https://pypi.python.org/pypi/Unidecode/
.. _isounidecode: https://pypi.python.org/pypi/isounidecode/
.. _Artistic License: https://opensource.org/licenses/Artistic-Perl-1.0
@@ -44,20 +49,22 @@
>>> from text_unidecode import unidecode
>>> unidecode(u'какой-то текст')
- u'kakoi-to tekst'
+ 'kakoi-to tekst'
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Artistic License
+Classifier: License :: OSI Approved :: GNU General Public License (GPL)
+Classifier: License :: OSI Approved :: GNU General Public License v2 or later
(GPLv2+)
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
-Classifier: Programming Language :: Python :: 3.3
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 :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development :: Libraries :: Python Modules
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/text-unidecode-1.2/README.rst
new/text-unidecode-1.3/README.rst
--- old/text-unidecode-1.2/README.rst 2018-02-22 22:08:43.000000000 +0100
+++ new/text-unidecode-1.3/README.rst 2019-08-30 23:30:06.000000000 +0200
@@ -13,10 +13,16 @@
and isounidecode_). unidecode_ is GPL; isounidecode_ uses too much memory,
and it didn't support Python 3 when this package was created.
-This port is licensed under `Artistic License`_ and supports Python 2.7 and
-3.3+. If you're OK with GPL, use unidecode_ (it has better memory usage and
+You can redistribute it and/or modify this port under the terms of either:
+
+* `Artistic License`_, or
+* GPL or GPLv2+
+
+If you're OK with GPL-only, use unidecode_ (it has better memory usage and
better transliteration quality).
+``text-unidecode`` supports Python 2.7 and 3.4+.
+
.. _unidecode: https://pypi.python.org/pypi/Unidecode/
.. _isounidecode: https://pypi.python.org/pypi/isounidecode/
.. _Artistic License: https://opensource.org/licenses/Artistic-Perl-1.0
@@ -35,4 +41,4 @@
>>> from text_unidecode import unidecode
>>> unidecode(u'какой-то текст')
- u'kakoi-to tekst'
+ 'kakoi-to tekst'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/text-unidecode-1.2/setup.py
new/text-unidecode-1.3/setup.py
--- old/text-unidecode-1.2/setup.py 2018-02-22 22:10:43.000000000 +0100
+++ new/text-unidecode-1.3/setup.py 2019-08-30 23:33:37.000000000 +0200
@@ -3,7 +3,7 @@
import sys
from setuptools import setup
-__version__ = '1.2'
+__version__ = '1.3'
if sys.version_info >= (3, ):
@@ -32,14 +32,16 @@
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Artistic License',
+ 'License :: OSI Approved :: GNU General Public License (GPL)',
+ 'License :: OSI Approved :: GNU General Public License v2 or later
(GPLv2+)',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
- 'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
+ 'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: Libraries :: Python Modules',
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/text-unidecode-1.2/src/text_unidecode.egg-info/PKG-INFO
new/text-unidecode-1.3/src/text_unidecode.egg-info/PKG-INFO
--- old/text-unidecode-1.2/src/text_unidecode.egg-info/PKG-INFO 2018-02-22
22:12:37.000000000 +0100
+++ new/text-unidecode-1.3/src/text_unidecode.egg-info/PKG-INFO 2019-08-30
23:36:27.000000000 +0200
@@ -1,12 +1,11 @@
Metadata-Version: 1.1
Name: text-unidecode
-Version: 1.2
+Version: 1.3
Summary: The most basic Text::Unidecode port
Home-page: https://github.com/kmike/text-unidecode/
Author: Mikhail Korobov
Author-email: [email protected]
License: Artistic License
-Description-Content-Type: UNKNOWN
Description: Text-Unidecode
==============
@@ -22,10 +21,16 @@
and isounidecode_). unidecode_ is GPL; isounidecode_ uses too much
memory,
and it didn't support Python 3 when this package was created.
- This port is licensed under `Artistic License`_ and supports Python
2.7 and
- 3.3+. If you're OK with GPL, use unidecode_ (it has better memory
usage and
+ You can redistribute it and/or modify this port under the terms of
either:
+
+ * `Artistic License`_, or
+ * GPL or GPLv2+
+
+ If you're OK with GPL-only, use unidecode_ (it has better memory usage
and
better transliteration quality).
+ ``text-unidecode`` supports Python 2.7 and 3.4+.
+
.. _unidecode: https://pypi.python.org/pypi/Unidecode/
.. _isounidecode: https://pypi.python.org/pypi/isounidecode/
.. _Artistic License: https://opensource.org/licenses/Artistic-Perl-1.0
@@ -44,20 +49,22 @@
>>> from text_unidecode import unidecode
>>> unidecode(u'какой-то текст')
- u'kakoi-to tekst'
+ 'kakoi-to tekst'
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Artistic License
+Classifier: License :: OSI Approved :: GNU General Public License (GPL)
+Classifier: License :: OSI Approved :: GNU General Public License v2 or later
(GPLv2+)
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
-Classifier: Programming Language :: Python :: 3.3
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 :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development :: Libraries :: Python Modules