Hello community,

here is the log from the commit of package python-MarkupSafe for 
openSUSE:Factory checked in at 2014-03-15 17:35:54
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-MarkupSafe (Old)
 and      /work/SRC/openSUSE:Factory/.python-MarkupSafe.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-MarkupSafe"

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-MarkupSafe/python-MarkupSafe.changes      
2013-10-25 11:21:12.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.python-MarkupSafe.new/python-MarkupSafe.changes 
2014-03-15 17:35:55.000000000 +0100
@@ -1,0 +2,6 @@
+Thu Mar 13 14:03:44 UTC 2014 - mci...@suse.cz
+
+- update to 0.19:
+  + Various Python 3.x fixes
+
+-------------------------------------------------------------------

Old:
----
  MarkupSafe-0.18.tar.gz

New:
----
  MarkupSafe-0.19.tar.gz

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

Other differences:
------------------
++++++ python-MarkupSafe.spec ++++++
--- /var/tmp/diff_new_pack.6y5l1d/_old  2014-03-15 17:35:56.000000000 +0100
+++ /var/tmp/diff_new_pack.6y5l1d/_new  2014-03-15 17:35:56.000000000 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-MarkupSafe
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 SUSE LINUX Products 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-MarkupSafe
-Version:        0.18
+Version:        0.19
 Release:        0
 Url:            http://dev.pocoo.org/
 Summary:        Implements a XML/HTML/XHTML Markup safe string for Python

++++++ MarkupSafe-0.18.tar.gz -> MarkupSafe-0.19.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/MarkupSafe-0.18/MarkupSafe.egg-info/PKG-INFO 
new/MarkupSafe-0.19/MarkupSafe.egg-info/PKG-INFO
--- old/MarkupSafe-0.18/MarkupSafe.egg-info/PKG-INFO    2013-05-22 
03:15:40.000000000 +0200
+++ new/MarkupSafe-0.19/MarkupSafe.egg-info/PKG-INFO    2014-03-06 
17:52:29.000000000 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.0
 Name: MarkupSafe
-Version: 0.18
+Version: 0.19
 Summary: Implements a XML/HTML/XHTML Markup safe string for Python
 Home-page: http://github.com/mitsuhiko/markupsafe
 Author: Armin Ronacher
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/MarkupSafe-0.18/PKG-INFO new/MarkupSafe-0.19/PKG-INFO
--- old/MarkupSafe-0.18/PKG-INFO        2013-05-22 03:15:40.000000000 +0200
+++ new/MarkupSafe-0.19/PKG-INFO        2014-03-06 17:52:29.000000000 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.0
 Name: MarkupSafe
-Version: 0.18
+Version: 0.19
 Summary: Implements a XML/HTML/XHTML Markup safe string for Python
 Home-page: http://github.com/mitsuhiko/markupsafe
 Author: Armin Ronacher
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/MarkupSafe-0.18/setup.py new/MarkupSafe-0.19/setup.py
--- old/MarkupSafe-0.18/setup.py        2013-05-22 03:15:33.000000000 +0200
+++ new/MarkupSafe-0.19/setup.py        2014-03-06 17:51:40.000000000 +0100
@@ -1,6 +1,6 @@
 import os
 import sys
-from setuptools import setup, Extension, Feature
+from setuptools import setup, Extension
 from distutils.command.build_ext import build_ext
 from distutils.errors import CCompilerError, DistutilsExecError, \
     DistutilsPlatformError
@@ -13,13 +13,14 @@
 is_pypy = hasattr(sys, 'pypy_version_info')
 
 
-speedups = Feature(
-    'optional C speed-enhancement module',
-    standard=True,
-    ext_modules = [
-        Extension('markupsafe._speedups', ['markupsafe/_speedups.c']),
-    ],
-)
+# Remove old arguments that were once supported.  Thanks setuptools
+# 3.0 for just randomly removing functionality.
+for arg in '--with-speedups', '--without-speedups':
+    try:
+        sys.argv.remove(arg)
+    except ValueError:
+        pass
+
 
 ext_errors = (CCompilerError, DistutilsExecError, DistutilsPlatformError)
 if sys.platform == 'win32' and sys.version_info > (2, 6):
@@ -61,12 +62,11 @@
 
 
 def run_setup(with_binary):
-    features = {}
-    if with_binary:
-        features['speedups'] = speedups
+    ext = Extension('markupsafe._speedups', ['markupsafe/_speedups.c'])
+    ext_modules = [ext] if with_binary else []
     setup(
         name='MarkupSafe',
-        version='0.18',
+        version='0.19',
         url='http://github.com/mitsuhiko/markupsafe',
         license='BSD',
         author='Armin Ronacher',
@@ -90,7 +90,7 @@
         test_suite='markupsafe.tests.suite',
         include_package_data=True,
         cmdclass={'build_ext': ve_build_ext},
-        features=features,
+        ext_modules=ext_modules,
     )
 
 

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to