rpms/MySQL-python/devel MySQL-python.spec, 1.28, 1.29 setup.py, 1.1, 1.2

Tom Lane (tgl) fedora-extras-commits at redhat.com
Tue Jun 12 18:57:43 UTC 2007


Author: tgl

Update of /cvs/pkgs/rpms/MySQL-python/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv660

Modified Files:
	MySQL-python.spec setup.py 
Log Message:
Fix quoting bug for bz #243877


Index: MySQL-python.spec
===================================================================
RCS file: /cvs/pkgs/rpms/MySQL-python/devel/MySQL-python.spec,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- MySQL-python.spec	20 Apr 2007 20:23:35 -0000	1.28
+++ MySQL-python.spec	12 Jun 2007 18:57:08 -0000	1.29
@@ -1,7 +1,7 @@
 Summary: An interface to MySQL
 Name: MySQL-python
 Version: 1.2.2
-Release: 1%{?dist}
+Release: 2%{?dist}
 License: GPL
 Group: Development/Libraries
 URL: http://sourceforge.net/projects/mysql-python/
@@ -67,6 +67,10 @@
 %dir /usr/%{_lib}/python?.?/site-packages/MySQLdb/constants
 
 %changelog
+* Tue Jun 12 2007 Tom Lane <tgl at redhat.com> 1.2.2-2
+- Fix quoting bug in use of older setup.py: need to quote version_info now
+Resolves: #243877
+
 * Fri Apr 20 2007 Tom Lane <tgl at redhat.com> 1.2.2-1
 - Update to 1.2.2, but not 1.2.2 setup.py (since we don't ship setuptools yet)
 


Index: setup.py
===================================================================
RCS file: /cvs/pkgs/rpms/MySQL-python/devel/setup.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- setup.py	20 Apr 2007 20:23:35 -0000	1.1
+++ setup.py	12 Jun 2007 18:57:08 -0000	1.2
@@ -89,7 +89,7 @@
 rel = open("MySQLdb/release.py",'w')
 rel.write("""
 __author__ = "%(author)s <%(author_email)s>"
-version_info = %(version_info)s
+version_info = "%(version_info)s"
 __version__ = "%(version)s"
 """ % metadata)
 rel.close()




More information about the fedora-extras-commits mailing list