Hello community,

here is the log from the commit of package python-emoji for openSUSE:Factory 
checked in at 2019-03-01 16:49:54
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-emoji (Old)
 and      /work/SRC/openSUSE:Factory/.python-emoji.new.28833 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-emoji"

Fri Mar  1 16:49:54 2019 rev:3 rq:680455 version:0.5.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-emoji/python-emoji.changes        
2018-12-13 19:43:42.893069703 +0100
+++ /work/SRC/openSUSE:Factory/.python-emoji.new.28833/python-emoji.changes     
2019-03-01 16:49:55.461742504 +0100
@@ -1,0 +2,6 @@
+Fri Mar  1 10:57:54 UTC 2019 - Tomáš Chvátal <[email protected]>
+
+- Update to 0.5.1:
+  * Various small fixes
+
+-------------------------------------------------------------------

Old:
----
  emoji-0.5.0.tar.gz

New:
----
  emoji-0.5.1.tar.gz

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

Other differences:
------------------
++++++ python-emoji.spec ++++++
--- /var/tmp/diff_new_pack.AfyoXm/_old  2019-03-01 16:49:55.937742325 +0100
+++ /var/tmp/diff_new_pack.AfyoXm/_new  2019-03-01 16:49:55.937742325 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-emoji
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2018 Matthias Bach <[email protected]>.
 #
 # All modifications and additions to the file contributed by third parties
@@ -19,7 +19,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:           python-emoji
-Version:        0.5.0
+Version:        0.5.1
 Release:        0
 Summary:        Emoji for Python
 License:        BSD-3-Clause

++++++ emoji-0.5.0.tar.gz -> emoji-0.5.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/emoji-0.5.0/PKG-INFO new/emoji-0.5.1/PKG-INFO
--- old/emoji-0.5.0/PKG-INFO    2018-03-28 07:33:37.000000000 +0200
+++ new/emoji-0.5.1/PKG-INFO    2018-09-14 04:57:18.000000000 +0200
@@ -1,12 +1,11 @@
-Metadata-Version: 1.1
+Metadata-Version: 2.1
 Name: emoji
-Version: 0.5.0
+Version: 0.5.1
 Summary: Emoji for Python
 Home-page: https://github.com/carpedm20/emoji/
 Author: Taehoon Kim and Kevin Wurster
 Author-email: [email protected]
 License: New BSD
-Description-Content-Type: UNKNOWN
 Description: Emoji
         =====
         
@@ -103,3 +102,4 @@
 Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
 Classifier: Topic :: Multimedia :: Graphics :: Presentation
 Classifier: Topic :: Software Development :: Libraries :: Python Modules
+Provides-Extra: dev
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/emoji-0.5.0/emoji/__init__.py 
new/emoji-0.5.1/emoji/__init__.py
--- old/emoji-0.5.0/emoji/__init__.py   2018-03-28 07:33:35.000000000 +0200
+++ new/emoji-0.5.1/emoji/__init__.py   2018-09-14 04:57:08.000000000 +0200
@@ -18,15 +18,17 @@
 from emoji.core import emojize
 from emoji.core import demojize
 from emoji.core import get_emoji_regexp
+from emoji.core import emoji_count
+from emoji.core import emoji_lis
 from emoji.unicode_codes import EMOJI_ALIAS_UNICODE
 from emoji.unicode_codes import EMOJI_UNICODE
 from emoji.unicode_codes import UNICODE_EMOJI
 from emoji.unicode_codes import UNICODE_EMOJI_ALIAS
 
-
-__version__ = '0.5.0'
+__version__ = '0.5.1'
 __author__ = 'Taehoon Kim and Kevin Wurster'
 __email__ = '[email protected]'
+# and [email protected]
 __source__ = 'https://github.com/carpedm20/emoji/'
 __license__ = '''
 New BSD License
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/emoji-0.5.0/emoji/core.py 
new/emoji-0.5.1/emoji/core.py
--- old/emoji-0.5.0/emoji/core.py       2018-03-28 07:19:06.000000000 +0200
+++ new/emoji-0.5.1/emoji/core.py       2018-09-14 04:51:48.000000000 +0200
@@ -98,7 +98,7 @@
     """
     _entities = []
     for pos,c in enumerate(string):
-        if c in emoji.UNICODE_EMOJI:
+        if c in unicode_codes.UNICODE_EMOJI:
             _entities.append({
                 "location":pos,
                 "emoji": c
@@ -109,7 +109,7 @@
    """Returns the count of emojis in a string"""
    c=0
    for i in string:
-     if i in emoji.UNICODE_EMOJI:
+     if i in unicode_codes.UNICODE_EMOJI:
              c=c+1
    return(c)
-   
\ No newline at end of file
+   
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/emoji-0.5.0/emoji.egg-info/PKG-INFO 
new/emoji-0.5.1/emoji.egg-info/PKG-INFO
--- old/emoji-0.5.0/emoji.egg-info/PKG-INFO     2018-03-28 07:33:37.000000000 
+0200
+++ new/emoji-0.5.1/emoji.egg-info/PKG-INFO     2018-09-14 04:57:18.000000000 
+0200
@@ -1,12 +1,11 @@
-Metadata-Version: 1.1
+Metadata-Version: 2.1
 Name: emoji
-Version: 0.5.0
+Version: 0.5.1
 Summary: Emoji for Python
 Home-page: https://github.com/carpedm20/emoji/
 Author: Taehoon Kim and Kevin Wurster
 Author-email: [email protected]
 License: New BSD
-Description-Content-Type: UNKNOWN
 Description: Emoji
         =====
         
@@ -103,3 +102,4 @@
 Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
 Classifier: Topic :: Multimedia :: Graphics :: Presentation
 Classifier: Topic :: Software Development :: Libraries :: Python Modules
+Provides-Extra: dev


Reply via email to