rpms/python-peak-rules/devel python-peak-rules-py26-deprecation.patch, NONE, 1.1 python-peak-rules.spec, 1.10, 1.11

Kyle VanderBeek kylev at fedoraproject.org
Wed Jul 15 04:58:54 UTC 2009


Author: kylev

Update of /cvs/pkgs/rpms/python-peak-rules/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv7111

Modified Files:
	python-peak-rules.spec 
Added Files:
	python-peak-rules-py26-deprecation.patch 
Log Message:
Patch with r2600 from SVN to fix bug 511401

python-peak-rules-py26-deprecation.patch:

--- NEW FILE python-peak-rules-py26-deprecation.patch ---
--- /PEAK-Rules/peak/rules/indexing.py	2009/02/22 04:20:24	2599
+++ PEAK-Rules/peak/rules/indexing.py	2009/07/15 04:30:57	2600
@@ -217,7 +217,7 @@
     def __new__(cls, engine, expr):
         if cls is BitmapIndex:
             cls = bitmap_index_type(engine, expr)
-        return super(BitmapIndex, cls).__new__(cls, engine, expr)
+        return super(BitmapIndex, cls).__new__(cls)
 
     def __init__(self, engine, expr):
         self.extra = {}


Index: python-peak-rules.spec
===================================================================
RCS file: /cvs/pkgs/rpms/python-peak-rules/devel/python-peak-rules.spec,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -p -r1.10 -r1.11
--- python-peak-rules.spec	5 Jun 2009 14:39:09 -0000	1.10
+++ python-peak-rules.spec	15 Jul 2009 04:58:54 -0000	1.11
@@ -13,7 +13,7 @@ Version:        0.5a1.dev
 # Release:0.3.a1.dev%{devrev}%{?dist}
 # But we can't do that yet because it breaks the upgrade path.
 # When version hits 0.5.1 or 0.6 we can correct this.
-Release:        7.%{devrev}%{?dist}
+Release:        8.%{devrev}%{?dist}
 Summary:        Generic functions and business rules support systems
 
 Group:          Development/Languages
@@ -23,6 +23,7 @@ Source0:        http://peak.telecommunit
 Patch0:         %{name}-setup.patch
 Patch1:         %{name}-doctest.patch
 Patch2:         %{name}-x86_64-doctest.patch
+Patch3:         %{name}-py26-deprecation.patch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildArch:      noarch
 
@@ -51,6 +52,7 @@ dispatch engines and custom method combi
 %patch0 -b .setup
 %patch1 -p1 -b .test
 %patch2 -p0 -b .x86_64
+%patch3 -p1
 %{__chmod} -x %{docs}
 
 %build
@@ -75,7 +77,10 @@ rm -rf %{buildroot}
 %{python_sitelib}/*
 
 %changelog
-* Wed Jun 03 2009 Luke Macken <lmacken at redhat.com> 0.5a1.dev-6.2582
+* Tue Jul 14 2009 Kyle VanderBeek <kylev at kylev.com> - 0.5a1.dev-8.2582
+- SVN r2600 to fix python 2.6 deprecation warnings from BitmapIndex
+
+* Wed Jun 03 2009 Luke Macken <lmacken at redhat.com> 0.5a1.dev-7.2582
 - Add a patch to get the doctests to work on x86_64
 
 * Wed Apr 15 2009 Karsten Hopp <karsten at redhat.com> 0.5a1.dev-6.2582




More information about the fedora-extras-commits mailing list