Hello community,

here is the log from the commit of package python-singledispatch for 
openSUSE:Factory checked in at 2015-05-18 22:25:22
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-singledispatch (Old)
 and      /work/SRC/openSUSE:Factory/.python-singledispatch.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-singledispatch"

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/python-singledispatch/python-singledispatch.changes  
    2013-12-16 18:08:05.000000000 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-singledispatch.new/python-singledispatch.changes
 2015-05-18 22:25:23.000000000 +0200
@@ -1,0 +2,8 @@
+Wed May 13 09:56:19 UTC 2015 - [email protected]
+
+- update to version 3.4.0.3:
+  * Should now install flawlessly on PyPy as well. Thanks to Ryan
+    Petrello for finding and fixing the setup.py issue.
+- remove unwanted shebang in python files
+
+-------------------------------------------------------------------

Old:
----
  singledispatch-3.4.0.2.tar.gz

New:
----
  singledispatch-3.4.0.3.tar.gz

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

Other differences:
------------------
++++++ python-singledispatch.spec ++++++
--- /var/tmp/diff_new_pack.EQKsgV/_old  2015-05-18 22:25:23.000000000 +0200
+++ /var/tmp/diff_new_pack.EQKsgV/_new  2015-05-18 22:25:23.000000000 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-singledispatch
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 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
@@ -17,7 +17,7 @@
 
 
 Name:           python-singledispatch
-Version:        3.4.0.2
+Version:        3.4.0.3
 Release:        0
 Summary:        Provides functools.singledispatch for Python 2.x
 License:        MIT
@@ -46,6 +46,8 @@
 
 %prep
 %setup -q -n singledispatch-%{version}
+# remove unwanted shebang
+sed -i '1 { /^#!/ d }' singledispatch_helpers.py singledispatch.py
 
 %build
 python setup.py build

++++++ singledispatch-3.4.0.2.tar.gz -> singledispatch-3.4.0.3.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/singledispatch-3.4.0.2/PKG-INFO 
new/singledispatch-3.4.0.3/PKG-INFO
--- old/singledispatch-3.4.0.2/PKG-INFO 2013-07-02 11:04:44.000000000 +0200
+++ new/singledispatch-3.4.0.3/PKG-INFO 2014-03-18 21:42:06.000000000 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: singledispatch
-Version: 3.4.0.2
+Version: 3.4.0.3
 Summary: This library brings functools.singledispatch from Python 3.4 to 
Python 2.6-3.3.
 Home-page: 
http://docs.python.org/3/library/functools.html#functools.singledispatch
 Author: Łukasz Langa
@@ -153,6 +153,12 @@
         Change Log
         ----------
         
+        3.4.0.3
+        ~~~~~~~
+        
+        Should now install flawlessly on PyPy as well. Thanks to Ryan Petrello
+        for finding and fixing the ``setup.py`` issue.
+        
         3.4.0.2
         ~~~~~~~
         
@@ -231,5 +237,6 @@
 Classifier: Programming Language :: Python :: 3
 Classifier: Programming Language :: Python :: 3.2
 Classifier: Programming Language :: Python :: 3.3
+Classifier: Programming Language :: Python :: 3.4
 Classifier: Topic :: Software Development :: Libraries
 Classifier: Topic :: Software Development :: Libraries :: Python Modules
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/singledispatch-3.4.0.2/README.rst 
new/singledispatch-3.4.0.3/README.rst
--- old/singledispatch-3.4.0.2/README.rst       2013-07-02 10:48:47.000000000 
+0200
+++ new/singledispatch-3.4.0.3/README.rst       2014-03-18 21:23:56.000000000 
+0100
@@ -145,6 +145,12 @@
 Change Log
 ----------
 
+3.4.0.3
+~~~~~~~
+
+Should now install flawlessly on PyPy as well. Thanks to Ryan Petrello
+for finding and fixing the ``setup.py`` issue.
+
 3.4.0.2
 ~~~~~~~
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/singledispatch-3.4.0.2/setup.py 
new/singledispatch-3.4.0.3/setup.py
--- old/singledispatch-3.4.0.2/setup.py 2013-07-02 10:31:10.000000000 +0200
+++ new/singledispatch-3.4.0.3/setup.py 2014-03-18 21:21:53.000000000 +0100
@@ -4,7 +4,7 @@
 """This library brings functools.singledispatch from Python 3.4 to Python 
2.6-3.3."""
 
 # Copyright (C) 2013 by Łukasz Langa
-# 
+#
 # Permission is hereby granted, free of charge, to any person obtaining a copy
 # of this software and associated documentation files (the "Software"), to deal
 # in the Software without restriction, including without limitation the rights
@@ -26,13 +26,7 @@
 import os
 import sys
 import codecs
-from setuptools import setup, find_packages
-
-PY3 = sys.version_info[0] == 3
-
-if not PY3:
-    reload(sys)
-    sys.setdefaultencoding('utf8')
+from setuptools import setup
 
 with codecs.open(
     os.path.join(os.path.dirname(__file__), 'README.rst'), 'r', 'utf8',
@@ -47,7 +41,7 @@
 
 setup (
     name = 'singledispatch',
-    version = '3.4.0.2',
+    version = '3.4.0.3',
     author = 'Łukasz Langa',
     author_email = '[email protected]',
     description = __doc__,
@@ -74,6 +68,7 @@
         'Programming Language :: Python :: 3',
         'Programming Language :: Python :: 3.2',
         'Programming Language :: Python :: 3.3',
+        'Programming Language :: Python :: 3.4',
         'Topic :: Software Development :: Libraries',
         'Topic :: Software Development :: Libraries :: Python Modules',
     ]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/singledispatch-3.4.0.2/singledispatch.egg-info/PKG-INFO 
new/singledispatch-3.4.0.3/singledispatch.egg-info/PKG-INFO
--- old/singledispatch-3.4.0.2/singledispatch.egg-info/PKG-INFO 2013-07-02 
11:04:44.000000000 +0200
+++ new/singledispatch-3.4.0.3/singledispatch.egg-info/PKG-INFO 2014-03-18 
21:42:06.000000000 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: singledispatch
-Version: 3.4.0.2
+Version: 3.4.0.3
 Summary: This library brings functools.singledispatch from Python 3.4 to 
Python 2.6-3.3.
 Home-page: 
http://docs.python.org/3/library/functools.html#functools.singledispatch
 Author: Łukasz Langa
@@ -153,6 +153,12 @@
         Change Log
         ----------
         
+        3.4.0.3
+        ~~~~~~~
+        
+        Should now install flawlessly on PyPy as well. Thanks to Ryan Petrello
+        for finding and fixing the ``setup.py`` issue.
+        
         3.4.0.2
         ~~~~~~~
         
@@ -231,5 +237,6 @@
 Classifier: Programming Language :: Python :: 3
 Classifier: Programming Language :: Python :: 3.2
 Classifier: Programming Language :: Python :: 3.3
+Classifier: Programming Language :: Python :: 3.4
 Classifier: Topic :: Software Development :: Libraries
 Classifier: Topic :: Software Development :: Libraries :: Python Modules
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/singledispatch-3.4.0.2/singledispatch.egg-info/top_level.txt 
new/singledispatch-3.4.0.3/singledispatch.egg-info/top_level.txt
--- old/singledispatch-3.4.0.2/singledispatch.egg-info/top_level.txt    
2013-07-02 11:04:44.000000000 +0200
+++ new/singledispatch-3.4.0.3/singledispatch.egg-info/top_level.txt    
2014-03-18 21:42:06.000000000 +0100
@@ -1,2 +1,2 @@
-singledispatch
 singledispatch_helpers
+singledispatch


Reply via email to