commit python-emoji for openSUSE:Factory

2020-08-12 Thread root
Hello community,

here is the log from the commit of package python-emoji for openSUSE:Factory 
checked in at 2020-08-12 10:30:15

Comparing /work/SRC/openSUSE:Factory/python-emoji (Old)
 and  /work/SRC/openSUSE:Factory/.python-emoji.new.3399 (New)


Package is "python-emoji"

Wed Aug 12 10:30:15 2020 rev:8 rq:825644 version:0.6.0

Changes:

--- /work/SRC/openSUSE:Factory/python-emoji/python-emoji.changes
2020-03-30 23:06:53.968296013 +0200
+++ /work/SRC/openSUSE:Factory/.python-emoji.new.3399/python-emoji.changes  
2020-08-12 10:36:19.208285990 +0200
@@ -1,0 +2,10 @@
+Mon Aug 10 18:54:15 UTC 2020 - Matthias Bach 
+
+- Update to 0.6.0:
+  * Add variant selector for "emojize" function allowing to choose
+between "base"(None), VS-15 ("text_type") and VS-16
+("emoji_type")
+  * Add new emoji (Added to Unicode 2019-01-27)
+- Drop obsolete remove_nose.patch
+
+---

Old:

  emoji-0.5.4.tar.gz
  remove_nose.patch

New:

  emoji-0.6.0.tar.gz



Other differences:
--
++ python-emoji.spec ++
--- /var/tmp/diff_new_pack.Euay9m/_old  2020-08-12 10:36:20.324286543 +0200
+++ /var/tmp/diff_new_pack.Euay9m/_new  2020-08-12 10:36:20.324286543 +0200
@@ -2,7 +2,7 @@
 # spec file for package python-emoji
 #
 # Copyright (c) 2020 SUSE LLC
-# Copyright (c) 2018 Matthias Bach .
+# Copyright (c) 2020 Matthias Bach 
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,7 +19,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-emoji
-Version:0.5.4
+Version:0.6.0
 Release:0
 Summary:Emoji for Python
 License:BSD-3-Clause
@@ -27,7 +27,6 @@
 URL:https://github.com/carpedm20/emoji/
 Source: 
https://files.pythonhosted.org/packages/source/e/emoji/emoji-%{version}.tar.gz
 # https://github.com/carpedm20/emoji/pull/118
-Patch0: remove_nose.patch
 BuildRequires:  %{python_module pytest}
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes
@@ -48,7 +47,6 @@
 
 %prep
 %setup -q -n emoji-%{version}
-%patch0 -p1
 
 %build
 %python_build

++ emoji-0.5.4.tar.gz -> emoji-0.6.0.tar.gz ++
 3253 lines of diff (skipped)




commit python-emoji for openSUSE:Factory

2020-03-30 Thread root
Hello community,

here is the log from the commit of package python-emoji for openSUSE:Factory 
checked in at 2020-03-30 23:06:52

Comparing /work/SRC/openSUSE:Factory/python-emoji (Old)
 and  /work/SRC/openSUSE:Factory/.python-emoji.new.3160 (New)


Package is "python-emoji"

Mon Mar 30 23:06:52 2020 rev:7 rq:789800 version:0.5.4

Changes:

--- /work/SRC/openSUSE:Factory/python-emoji/python-emoji.changes
2019-09-18 13:11:14.416692418 +0200
+++ /work/SRC/openSUSE:Factory/.python-emoji.new.3160/python-emoji.changes  
2020-03-30 23:06:53.968296013 +0200
@@ -1,0 +2,5 @@
+Mon Mar 30 13:09:02 UTC 2020 - Paolo Stivanin 
+
+- Add remove_nose.patch 
+
+---

New:

  remove_nose.patch



Other differences:
--
++ python-emoji.spec ++
--- /var/tmp/diff_new_pack.I6TxzK/_old  2020-03-30 23:06:57.152297827 +0200
+++ /var/tmp/diff_new_pack.I6TxzK/_new  2020-03-30 23:06:57.192297851 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-emoji
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 # Copyright (c) 2018 Matthias Bach .
 #
 # All modifications and additions to the file contributed by third parties
@@ -26,7 +26,9 @@
 Group:  Development/Languages/Python
 URL:https://github.com/carpedm20/emoji/
 Source: 
https://files.pythonhosted.org/packages/source/e/emoji/emoji-%{version}.tar.gz
-BuildRequires:  %{python_module nose}
+# https://github.com/carpedm20/emoji/pull/118
+Patch0: remove_nose.patch
+BuildRequires:  %{python_module pytest}
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
@@ -46,6 +48,7 @@
 
 %prep
 %setup -q -n emoji-%{version}
+%patch0 -p1
 
 %build
 %python_build
@@ -55,7 +58,7 @@
 %python_expand %fdupes %{buildroot}%{$python_sitelib}/emoji*
 
 %check
-%python_expand nosetests-%{$python_bin_suffix}
+%pytest tests/test_core.py tests/test_unicode_codes.py
 
 %files %{python_files}
 %doc CHANGES.md README.rst

++ remove_nose.patch ++
diff -ru emoji-0.5.4-orig/setup.py emoji-0.5.4/setup.py
--- emoji-0.5.4-orig/setup.py   2019-09-12 05:00:55.0 +0200
+++ emoji-0.5.4/setup.py2020-03-30 15:01:24.412306600 +0200
@@ -59,7 +59,7 @@
 keywords=['emoji'],
 extras_require={
 'dev': [
-'nose',
+'pytest',
 'coverage',
 'coveralls'
 ]
diff -ru emoji-0.5.4-orig/tests/test_core.py emoji-0.5.4/tests/test_core.py
--- emoji-0.5.4-orig/tests/test_core.py 2019-07-30 19:45:48.0 +0200
+++ emoji-0.5.4/tests/test_core.py  2020-03-30 15:01:50.428356270 +0200
@@ -9,7 +9,6 @@
 from __future__ import unicode_literals
 
 import emoji
-from nose.tools import assert_raises
 
 
 def test_emojize_name_only():



commit python-emoji for openSUSE:Factory

2019-09-18 Thread root
Hello community,

here is the log from the commit of package python-emoji for openSUSE:Factory 
checked in at 2019-09-18 13:11:12

Comparing /work/SRC/openSUSE:Factory/python-emoji (Old)
 and  /work/SRC/openSUSE:Factory/.python-emoji.new.7948 (New)


Package is "python-emoji"

Wed Sep 18 13:11:12 2019 rev:6 rq:731172 version:0.5.4

Changes:

--- /work/SRC/openSUSE:Factory/python-emoji/python-emoji.changes
2019-09-13 15:04:40.857264866 +0200
+++ /work/SRC/openSUSE:Factory/.python-emoji.new.7948/python-emoji.changes  
2019-09-18 13:11:14.416692418 +0200
@@ -1,0 +2,7 @@
+Sat Sep 14 09:39:45 UTC 2019 - Matthias Bach 
+
+- Update to 0.5.4:
+  * :robot: has been added as an alias for :robot_face:
+  * Package now officially supports Python 3.7
+
+---

Old:

  emoji-0.5.3.tar.gz

New:

  emoji-0.5.4.tar.gz



Other differences:
--
++ python-emoji.spec ++
--- /var/tmp/diff_new_pack.C5zPik/_old  2019-09-18 13:11:15.068692281 +0200
+++ /var/tmp/diff_new_pack.C5zPik/_new  2019-09-18 13:11:15.068692281 +0200
@@ -19,7 +19,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-emoji
-Version:0.5.3
+Version:0.5.4
 Release:0
 Summary:Emoji for Python
 License:BSD-3-Clause

++ emoji-0.5.3.tar.gz -> emoji-0.5.4.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/emoji-0.5.3/PKG-INFO new/emoji-0.5.4/PKG-INFO
--- old/emoji-0.5.3/PKG-INFO2019-07-30 19:46:12.0 +0200
+++ new/emoji-0.5.4/PKG-INFO2019-09-12 05:01:55.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: emoji
-Version: 0.5.3
+Version: 0.5.4
 Summary: Emoji for Python
 Home-page: https://github.com/carpedm20/emoji/
 Author: Taehoon Kim and Kevin Wurster
@@ -88,14 +88,12 @@
 Classifier: License :: OSI Approved :: BSD License
 Classifier: Operating System :: OS Independent
 Classifier: Programming Language :: Python :: 2
-Classifier: Programming Language :: Python :: 2.6
 Classifier: Programming Language :: Python :: 2.7
 Classifier: Programming Language :: Python :: 3
-Classifier: Programming Language :: Python :: 3.2
-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: Programming Language :: Python
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/emoji-0.5.3/emoji/__init__.py 
new/emoji-0.5.4/emoji/__init__.py
--- old/emoji-0.5.3/emoji/__init__.py   2019-07-30 19:46:04.0 +0200
+++ new/emoji-0.5.4/emoji/__init__.py   2019-09-12 05:01:08.0 +0200
@@ -25,7 +25,7 @@
 from emoji.unicode_codes import UNICODE_EMOJI
 from emoji.unicode_codes import UNICODE_EMOJI_ALIAS
 
-__version__ = '0.5.3'
+__version__ = '0.5.4'
 __author__ = 'Taehoon Kim and Kevin Wurster'
 __email__ = 'carped...@gmail.com'
 # and wurst...@gmail.com
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/emoji-0.5.3/emoji/core.py 
new/emoji-0.5.4/emoji/core.py
--- old/emoji-0.5.3/emoji/core.py   2019-07-30 19:45:48.0 +0200
+++ new/emoji-0.5.4/emoji/core.py   2019-09-12 05:00:55.0 +0200
@@ -19,7 +19,7 @@
 __all__ = ['emojize', 'demojize', 'get_emoji_regexp','emoji_lis']
 
 
-PY2 = sys.version_info[0] is 2
+PY2 = sys.version_info[0] == 2
 
 _EMOJI_REGEXP = None
 _DEFAULT_DELIMITER = ":"
@@ -40,7 +40,7 @@
 Python is fun 
 """
 
-pattern = re.compile(u'(%s[a-zA-Z0-9\+\-_&.ô’Åéãíç()!#*]+%s)' % delimiters)
+pattern = re.compile(u'(%s[a-zA-Z0-9\\+\\-_&.ô’Åéãíç()!#*]+%s)' % 
delimiters)
 
 def replace(match):
 mg = match.group(1).replace(delimiters[0], 
_DEFAULT_DELIMITER).replace(delimiters[1], _DEFAULT_DELIMITER)
@@ -84,7 +84,7 @@
 global _EMOJI_REGEXP
 # Build emoji regexp once
 if _EMOJI_REGEXP is None:
-# Sort emojis by length to make sure mulit-character emojis are
+# Sort emojis by length to make sure multi-character emojis are
 # matched first
 emojis = sorted(unicode_codes.EMOJI_UNICODE.values(), key=len,
 reverse=True)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/emoji-0.5.3/emoji/unicode_codes.py 
new/emoji-0.5.4/emoji/unicode_codes.py
--- old/emoji-0.5.3/emoji/unicode_codes.py  

commit python-emoji for openSUSE:Factory

2019-09-13 Thread root
Hello community,

here is the log from the commit of package python-emoji for openSUSE:Factory 
checked in at 2019-09-13 15:03:05

Comparing /work/SRC/openSUSE:Factory/python-emoji (Old)
 and  /work/SRC/openSUSE:Factory/.python-emoji.new.7948 (New)


Package is "python-emoji"

Fri Sep 13 15:03:05 2019 rev:5 rq:730625 version:0.5.3

Changes:

--- /work/SRC/openSUSE:Factory/python-emoji/python-emoji.changes
2019-04-30 13:00:37.402169433 +0200
+++ /work/SRC/openSUSE:Factory/.python-emoji.new.7948/python-emoji.changes  
2019-09-13 15:04:40.857264866 +0200
@@ -1,0 +2,6 @@
+Fri Sep 13 07:59:56 UTC 2019 - Tomáš Chvátal 
+
+- Update to 0.5.3:
+  * no upstream changelog
+
+---

Old:

  emoji-0.5.2.tar.gz

New:

  emoji-0.5.3.tar.gz



Other differences:
--
++ python-emoji.spec ++
--- /var/tmp/diff_new_pack.6xgbAZ/_old  2019-09-13 15:04:41.457264739 +0200
+++ /var/tmp/diff_new_pack.6xgbAZ/_new  2019-09-13 15:04:41.461264738 +0200
@@ -19,7 +19,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-emoji
-Version:0.5.2
+Version:0.5.3
 Release:0
 Summary:Emoji for Python
 License:BSD-3-Clause

++ emoji-0.5.2.tar.gz -> emoji-0.5.3.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/emoji-0.5.2/PKG-INFO new/emoji-0.5.3/PKG-INFO
--- old/emoji-0.5.2/PKG-INFO2019-04-06 01:11:04.0 +0200
+++ new/emoji-0.5.3/PKG-INFO2019-07-30 19:46:12.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: emoji
-Version: 0.5.2
+Version: 0.5.3
 Summary: Emoji for Python
 Home-page: https://github.com/carpedm20/emoji/
 Author: Taehoon Kim and Kevin Wurster
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/emoji-0.5.2/emoji/__init__.py 
new/emoji-0.5.3/emoji/__init__.py
--- old/emoji-0.5.2/emoji/__init__.py   2019-04-06 01:10:30.0 +0200
+++ new/emoji-0.5.3/emoji/__init__.py   2019-07-30 19:46:04.0 +0200
@@ -25,7 +25,7 @@
 from emoji.unicode_codes import UNICODE_EMOJI
 from emoji.unicode_codes import UNICODE_EMOJI_ALIAS
 
-__version__ = '0.5.2'
+__version__ = '0.5.3'
 __author__ = 'Taehoon Kim and Kevin Wurster'
 __email__ = 'carped...@gmail.com'
 # and wurst...@gmail.com
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/emoji-0.5.2/emoji/core.py 
new/emoji-0.5.3/emoji/core.py
--- old/emoji-0.5.2/emoji/core.py   2019-04-06 01:10:19.0 +0200
+++ new/emoji-0.5.3/emoji/core.py   2019-07-30 19:45:48.0 +0200
@@ -52,11 +52,11 @@
 return pattern.sub(replace, string)
 
 
-def demojize(string, delimiters=(_DEFAULT_DELIMITER,_DEFAULT_DELIMITER)):
+def demojize(string, use_aliases=False, 
delimiters=(_DEFAULT_DELIMITER,_DEFAULT_DELIMITER)):
 
 """Replace unicode emoji in a string with emoji shortcodes. Useful for 
storage.
-
 :param string: String contains unicode characters. MUST BE UNICODE.
+:param use_aliases: (optional) Return emoji aliases.  See 
``emoji.UNICODE_EMOJI_ALIAS``.
 :param delimiters: (optional) User delimiters other than _DEFAULT_DELIMITER
 >>> import emoji
 >>> print(emoji.emojize("Python is fun :thumbs_up:"))
@@ -68,7 +68,8 @@
 """
 
 def replace(match):
-val = unicode_codes.UNICODE_EMOJI.get(match.group(0), match.group(0))
+codes_dict = unicode_codes.UNICODE_EMOJI_ALIAS if use_aliases else 
unicode_codes.UNICODE_EMOJI
+val = codes_dict.get(match.group(0), match.group(0))
 return delimiters[0] + val[1:-1] + delimiters[1]
 
 return re.sub(u'\ufe0f','',(get_emoji_regexp().sub(replace, string)))
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/emoji-0.5.2/emoji/unicode_codes.py 
new/emoji-0.5.3/emoji/unicode_codes.py
--- old/emoji-0.5.2/emoji/unicode_codes.py  2019-04-06 01:10:19.0 
+0200
+++ new/emoji-0.5.3/emoji/unicode_codes.py  2019-07-30 19:45:48.0 
+0200
@@ -351,6 +351,7 @@
 u':Zambia:': u'\U0001F1FF\U0001F1F2',
 u':Zimbabwe:': u'\U0001F1FF\U0001F1FC',
 u':abacus:': u'\U0001F9EE',
+u':adhesive_bandage:': u'\U0001FA79',
 u':admission_tickets:': u'\U0001F39F',
 u':adult:': u'\U0001F9D1',
 u':adult_dark_skin_tone:': u'\U0001F9D1\U0001F3FF',
@@ -381,8 +382,10 @@
 u':artist_palette:': u'\U0001F3A8',
 u':astonished_face:': u'\U0001F632',
 u':atom_symbol:': u'\U269B',
+u':auto_rickshaw:': u'\U0001F6FA',
 u':automobile:': u'\U0001F697',
 u':avocado:': u'\U0001F951',
+u':axe:': u'\U0001FA93',
 u':baby:': 

commit python-emoji for openSUSE:Factory

2019-04-30 Thread root
Hello community,

here is the log from the commit of package python-emoji for openSUSE:Factory 
checked in at 2019-04-30 13:00:32

Comparing /work/SRC/openSUSE:Factory/python-emoji (Old)
 and  /work/SRC/openSUSE:Factory/.python-emoji.new.5536 (New)


Package is "python-emoji"

Tue Apr 30 13:00:32 2019 rev:4 rq:697409 version:0.5.2

Changes:

--- /work/SRC/openSUSE:Factory/python-emoji/python-emoji.changes
2019-03-01 16:49:55.461742504 +0100
+++ /work/SRC/openSUSE:Factory/.python-emoji.new.5536/python-emoji.changes  
2019-04-30 13:00:37.402169433 +0200
@@ -1,0 +2,7 @@
+Wed Apr 24 08:52:16 UTC 2019 - pgaj...@suse.com
+
+- version update to 0.5.2
+  * no upstream changelog, see git log
+- run the test suite
+
+---

Old:

  emoji-0.5.1.tar.gz

New:

  emoji-0.5.2.tar.gz



Other differences:
--
++ python-emoji.spec ++
--- /var/tmp/diff_new_pack.zR7fEW/_old  2019-04-30 13:00:39.382168992 +0200
+++ /var/tmp/diff_new_pack.zR7fEW/_new  2019-04-30 13:00:39.402168987 +0200
@@ -19,7 +19,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-emoji
-Version:0.5.1
+Version:0.5.2
 Release:0
 Summary:Emoji for Python
 License:BSD-3-Clause
@@ -55,7 +55,7 @@
 %python_expand %fdupes %{buildroot}%{$python_sitelib}/emoji*
 
 %check
-%python_exec setup.py test
+%python_expand nosetests-%{$python_bin_suffix}
 
 %files %{python_files}
 %doc CHANGES.md README.rst

++ emoji-0.5.1.tar.gz -> emoji-0.5.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/emoji-0.5.1/PKG-INFO new/emoji-0.5.2/PKG-INFO
--- old/emoji-0.5.1/PKG-INFO2018-09-14 04:57:18.0 +0200
+++ new/emoji-0.5.2/PKG-INFO2019-04-06 01:11:04.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: emoji
-Version: 0.5.1
+Version: 0.5.2
 Summary: Emoji for Python
 Home-page: https://github.com/carpedm20/emoji/
 Author: Taehoon Kim and Kevin Wurster
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/emoji-0.5.1/emoji/__init__.py 
new/emoji-0.5.2/emoji/__init__.py
--- old/emoji-0.5.1/emoji/__init__.py   2018-09-14 04:57:08.0 +0200
+++ new/emoji-0.5.2/emoji/__init__.py   2019-04-06 01:10:30.0 +0200
@@ -25,7 +25,7 @@
 from emoji.unicode_codes import UNICODE_EMOJI
 from emoji.unicode_codes import UNICODE_EMOJI_ALIAS
 
-__version__ = '0.5.1'
+__version__ = '0.5.2'
 __author__ = 'Taehoon Kim and Kevin Wurster'
 __email__ = 'carped...@gmail.com'
 # and wurst...@gmail.com
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/emoji-0.5.1/emoji/core.py 
new/emoji-0.5.2/emoji/core.py
--- old/emoji-0.5.1/emoji/core.py   2018-09-14 04:51:48.0 +0200
+++ new/emoji-0.5.2/emoji/core.py   2019-04-06 01:10:19.0 +0200
@@ -39,7 +39,7 @@
 >>> print(emoji.emojize("Python is fun __thumbs_up__", delimiters = 
("__", "__")))
 Python is fun 
 """
- 
+
 pattern = re.compile(u'(%s[a-zA-Z0-9\+\-_&.ô’Åéãíç()!#*]+%s)' % delimiters)
 
 def replace(match):
@@ -71,7 +71,7 @@
 val = unicode_codes.UNICODE_EMOJI.get(match.group(0), match.group(0))
 return delimiters[0] + val[1:-1] + delimiters[1]
 
-return get_emoji_regexp().sub(replace, string)
+return re.sub(u'\ufe0f','',(get_emoji_regexp().sub(replace, string)))
 
 
 def get_emoji_regexp():
@@ -112,4 +112,4 @@
  if i in unicode_codes.UNICODE_EMOJI:
  c=c+1
return(c)
-   
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/emoji-0.5.1/emoji/unicode_codes.py 
new/emoji-0.5.2/emoji/unicode_codes.py
--- old/emoji-0.5.1/emoji/unicode_codes.py  2018-09-14 04:51:48.0 
+0200
+++ new/emoji-0.5.2/emoji/unicode_codes.py  2019-04-06 01:10:19.0 
+0200
@@ -350,6 +350,7 @@
 u':Yemen:': u'\U0001F1FE\U0001F1EA',
 u':Zambia:': u'\U0001F1FF\U0001F1F2',
 u':Zimbabwe:': u'\U0001F1FF\U0001F1FC',
+u':abacus:': u'\U0001F9EE',
 u':admission_tickets:': u'\U0001F39F',
 u':adult:': u'\U0001F9D1',
 u':adult_dark_skin_tone:': u'\U0001F9D1\U0001F3FF',
@@ -422,10 +423,15 @@
 u':backhand_index_pointing_up_medium-light_skin_tone:': 
u'\U0001F446\U0001F3FC',
 u':backhand_index_pointing_up_medium_skin_tone:': u'\U0001F446\U0001F3FD',
 u':bacon:': u'\U0001F953',
+u':badger:': u'\U0001F9A1',
 u':badminton:': u'\U0001F3F8',
+u':bagel:': u'\U0001F96F',
 u':baggage_claim:': u'\U0001F6C4',
 u':baguette_bread:': u'\U0001F956',
 u':balance_scale:': u'\U2696',
+u':bald:': 

commit python-emoji for openSUSE:Factory

2019-03-01 Thread root
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 
+
+- 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 .
 #
 # 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-INFO2018-03-28 07:33:37.0 +0200
+++ new/emoji-0.5.1/PKG-INFO2018-09-14 04:57:18.0 +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: carped...@gmail.com
 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.0 +0200
+++ new/emoji-0.5.1/emoji/__init__.py   2018-09-14 04:57:08.0 +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__ = 'carped...@gmail.com'
+# and wurst...@gmail.com
 __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.0 +0200
+++ new/emoji-0.5.1/emoji/core.py   2018-09-14 04:51:48.0 +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.0 
+0200
+++ new/emoji-0.5.1/emoji.egg-info/PKG-INFO 2018-09-14 04:57:18.0 
+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: 

commit python-emoji for openSUSE:Factory

2018-12-13 Thread root
Hello community,

here is the log from the commit of package python-emoji for openSUSE:Factory 
checked in at 2018-12-13 19:43:42

Comparing /work/SRC/openSUSE:Factory/python-emoji (Old)
 and  /work/SRC/openSUSE:Factory/.python-emoji.new.28833 (New)


Package is "python-emoji"

Thu Dec 13 19:43:42 2018 rev:2 rq:654033 version:0.5.0

Changes:

--- /work/SRC/openSUSE:Factory/python-emoji/python-emoji.changes
2018-04-16 12:50:39.625464572 +0200
+++ /work/SRC/openSUSE:Factory/.python-emoji.new.28833/python-emoji.changes 
2018-12-13 19:43:42.893069703 +0100
@@ -1,0 +2,5 @@
+Tue Dec  4 12:47:38 UTC 2018 - Matej Cepl 
+
+- Remove superfluous devel dependency for noarch package
+
+---



Other differences:
--
++ python-emoji.spec ++
--- /var/tmp/diff_new_pack.6DB9Da/_old  2018-12-13 19:43:43.265069217 +0100
+++ /var/tmp/diff_new_pack.6DB9Da/_new  2018-12-13 19:43:43.269069212 +0100
@@ -13,7 +13,7 @@
 # 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/
 #
 
 
@@ -26,7 +26,6 @@
 Group:  Development/Languages/Python
 URL:https://github.com/carpedm20/emoji/
 Source: 
https://files.pythonhosted.org/packages/source/e/emoji/emoji-%{version}.tar.gz
-BuildRequires:  %{python_module devel}
 BuildRequires:  %{python_module nose}
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes