diff --git a/product/ERP5/spec/CMFActivity.spec b/product/ERP5/spec/CMFActivity.spec
index 5eb003c5116758630f90637a51547d31e4953b53..3f01803cba5d8d19418a8b361706f80652c3b6d2 100755
--- a/product/ERP5/spec/CMFActivity.spec
+++ b/product/ERP5/spec/CMFActivity.spec
@@ -1,6 +1,6 @@
 %define product CMFActivity
-%define version 0.10
-%define release 2
+%define version 0.11
+%define release 1
 
 %define zope_home %{_prefix}/lib/zope
 %define software_home %{zope_home}/lib/python
@@ -15,6 +15,7 @@ URL:       http://www.erp5.org
 Source0:   %{product}-%{version}.tar.bz2
 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-rootdir
 BuildArch: noarch
+Conflicts: CMFActivity
 Requires:  zope zope-CMF zope-TimerService
 
 #----------------------------------------------------------------------
@@ -27,13 +28,11 @@ This tools add activities for Zope objects.
 
 %build
 
-
 %install
 %{__rm} -rf %{buildroot}
 %{__mkdir_p} %{buildroot}/%{software_home}/Products
 %{__cp} -a * %{buildroot}%{software_home}/Products/
 
-
 %clean
 %{__rm} -rf %{buildroot}
 
@@ -54,6 +53,9 @@ fi
 
 #----------------------------------------------------------------------
 %changelog
+* Thu Jan 26 2006 Kevin Deldycke <kevin@nexedi.com> 0.11-1mdk
+- Update to version 0.11
+
 * Mon Jan 23 2006 Kevin Deldycke <kevin@nexedi.com> 0.10-2mdk
 - CMFActivity need Timer Service Zope product
 
diff --git a/product/ERP5/spec/CMFCategory.spec b/product/ERP5/spec/CMFCategory.spec
index 1ef58a286bb397d3bb90f99bfea9b648017aaebe..79cee7796612c1500d3b97e8507a32530fe9e38e 100755
--- a/product/ERP5/spec/CMFCategory.spec
+++ b/product/ERP5/spec/CMFCategory.spec
@@ -1,5 +1,5 @@
 %define product CMFCategory
-%define version 0.10
+%define version 0.11
 %define release 1
 
 %define zope_home %{_prefix}/lib/zope
@@ -15,6 +15,7 @@ URL:       http://www.erp5.org
 Source0:   %{product}-%{version}.tar.bz2
 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-rootdir
 BuildArch: noarch
+Conflicts: CMFCategory
 Requires:  zope zope-CMF
 
 #----------------------------------------------------------------------
@@ -32,13 +33,11 @@ example, the category will be named color/red, color/blue or color/green.
 
 %build
 
-
 %install
 %{__rm} -rf %{buildroot}
 %{__mkdir_p} %{buildroot}/%{software_home}/Products
 %{__cp} -a * %{buildroot}%{software_home}/Products/
 
-
 %clean
 %{__rm} -rf %{buildroot}
 
@@ -59,6 +58,9 @@ fi
 
 #----------------------------------------------------------------------
 %changelog
+* Thu Jan 26 2006 Kevin Deldycke <kevin@nexedi.com> 0.11-1mdk
+- Update to version 0.11
+
 * Wed Jan 18 2006 Kevin Deldycke <kevin@nexedi.com> 0.10-1mdk
 - Update to version 0.10
 
diff --git a/product/ERP5/spec/ERP5.spec b/product/ERP5/spec/ERP5.spec
index 13df1b8f72598d07e8dac33301318dc7b4751240..96144cf5ee773d195ce1504d93e0f6a44ac3f2f8 100755
--- a/product/ERP5/spec/ERP5.spec
+++ b/product/ERP5/spec/ERP5.spec
@@ -1,6 +1,6 @@
 %define product ERP5
-%define version 0.10
-%define release 9
+%define version 0.11
+%define release 1
 
 %define zope_home %{_prefix}/lib/zope
 %define software_home %{zope_home}/lib/python
@@ -15,6 +15,7 @@ URL:       http://www.erp5.org
 Source0:   %{product}-%{version}.tar.bz2
 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-rootdir
 BuildArch: noarch
+Conflicts: ERP5
 Requires:  erp5-zope >= 2.7.8, erp5-CMFPhoto, erp5-Formulator, zope-CMFReportTool, zope-Localizer, zope-Photo, zope-ZMySQLDA, zope-BTreeFolder2, zope-CMFMailIn, zope-ERP5Catalog, zope-ERP5Form, zope-ERP5SyncML, zope-CMFCategory, zope-ERP5Type, python-numeric, python-psyco, python-glpk, zope-CMFActivity, zope-ERP5Security, zope-ERP5OOo, zope-ExtFile, zope-TimerService
 
 #----------------------------------------------------------------------
@@ -30,12 +31,10 @@ very short time.
 
 %build
 
-
 %install
 %{__rm} -rf %{buildroot}
 %{__mkdir_p} %{buildroot}/%{software_home}/Products
 %{__cp} -a * %{buildroot}%{software_home}/Products/
-
 cat > README.urpmi <<EOF
 
 ERP5 need a MySQL-Max version 5.x.x server to work properly. Because this server
@@ -46,7 +45,6 @@ package and its dependancies.
 
 EOF
 
-
 %clean
 %{__rm} -rf %{buildroot}
 
@@ -55,6 +53,7 @@ mkdir /var/lib/zope/Extensions
 mkdir /var/lib/zope/PropertySheet
 mkdir /var/lib/zope/Constraint
 ln -s %{software_home}/Products/%{product}/Extensions/zsqlbrain.py /var/lib/zope/Extensions/
+mv %{software_home}/Products/%{product}/utils/cvs_update.sh /var/lib/zope/Products/
 if [ "`%{_prefix}/bin/zopectl status`" != "daemon manager not running" ] ; then
   service zope restart
 fi
@@ -71,6 +70,10 @@ fi
 
 #----------------------------------------------------------------------
 %changelog
+* Thu Jan 26 2006 Kevin Deldycke <kevin@nexedi.com> 0.11-1mdk
+- Update to version 0.11
+- Put the cvs_update script in the right place
+
 * Wed Jan 25 2006 Kevin Deldycke <kevin@nexedi.com> 0.10-9mdk
 - Add README.urpmi in %%doc
 
diff --git a/product/ERP5/spec/ERP5Catalog.spec b/product/ERP5/spec/ERP5Catalog.spec
index 419c7fad2d662fbc71c6f9507a97049ed7f5c73f..6eb71a9da682ef869975c3bce387a66e3b0d34be 100755
--- a/product/ERP5/spec/ERP5Catalog.spec
+++ b/product/ERP5/spec/ERP5Catalog.spec
@@ -1,5 +1,5 @@
 %define product ERP5Catalog
-%define version 0.10
+%define version 0.11
 %define release 1
 
 %define zope_home %{_prefix}/lib/zope
@@ -15,6 +15,7 @@ URL:       http://www.erp5.org
 Source0:   %{product}-%{version}.tar.bz2
 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-rootdir
 BuildArch: noarch
+Conflicts: ERP5Catalog
 Requires:  erp5-zope zope-ZSQLCatalog zope-ERP5Type
 
 #----------------------------------------------------------------------
@@ -27,13 +28,11 @@ This is a Catalog that filters catalog queries. It is based on ZSQLCatalog.
 
 %build
 
-
 %install
 %{__rm} -rf %{buildroot}
 %{__mkdir_p} %{buildroot}/%{software_home}/Products
 %{__cp} -a * %{buildroot}%{software_home}/Products/
 
-
 %clean
 %{__rm} -rf %{buildroot}
 
@@ -54,6 +53,9 @@ fi
 
 #----------------------------------------------------------------------
 %changelog
+* Thu Jan 26 2006 Kevin Deldycke <kevin@nexedi.com> 0.11-1mdk
+- Update to version 0.11
+
 * Wed Jan 18 2006 Kevin Deldycke <kevin@nexedi.com> 0.10-1mdk
 - Update to version 0.10
 
diff --git a/product/ERP5/spec/ERP5Form.spec b/product/ERP5/spec/ERP5Form.spec
index 479f276e5fa721719fc03db47a96c4ef4593ae56..a49a8ba7af275613f2b836a7a89d874eab8ac274 100755
--- a/product/ERP5/spec/ERP5Form.spec
+++ b/product/ERP5/spec/ERP5Form.spec
@@ -1,5 +1,5 @@
 %define product ERP5Form
-%define version 0.10
+%define version 0.11
 %define release 1
 
 %define zope_home %{_prefix}/lib/zope
@@ -15,6 +15,7 @@ URL:       http://www.erp5.org
 Source0:   %{product}-%{version}.tar.bz2
 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-rootdir
 BuildArch: noarch
+Conflicts: ERP5Form
 Requires:  erp5-zope erp5-Formulator
 
 #----------------------------------------------------------------------
@@ -31,13 +32,11 @@ ERP5Type, ERP5Form defines a fast rapid application environment.
 
 %build
 
-
 %install
 %{__rm} -rf %{buildroot}
 %{__mkdir_p} %{buildroot}/%{software_home}/Products
 %{__cp} -a * %{buildroot}%{software_home}/Products/
 
-
 %clean
 %{__rm} -rf %{buildroot}
 
@@ -58,6 +57,9 @@ fi
 
 #----------------------------------------------------------------------
 %changelog
+* Thu Jan 26 2006 Kevin Deldycke <kevin@nexedi.com> 0.11-1mdk
+- Update to version 0.11
+
 * Wed Jan 18 2006 Kevin Deldycke <kevin@nexedi.com> 0.10-1mdk
 - Update to version 0.10
 
diff --git a/product/ERP5/spec/ERP5OOo.spec b/product/ERP5/spec/ERP5OOo.spec
index 03e2431a77ef912b8b27acecceabd51b1e0d382a..9d3436e9d8d12d446c697aa487798d479535b9bf 100755
--- a/product/ERP5/spec/ERP5OOo.spec
+++ b/product/ERP5/spec/ERP5OOo.spec
@@ -1,5 +1,5 @@
 %define product ERP5OOo
-%define version 0.10
+%define version 0.11
 %define release 1
 
 %define zope_home %{_prefix}/lib/zope
@@ -15,6 +15,7 @@ URL:       http://www.erp5.org
 Source0:   %{product}-%{version}.tar.bz2
 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-rootdir
 BuildArch: noarch
+Conflicts: ERP5OOo
 Requires:  erp5-zope
 
 #----------------------------------------------------------------------
@@ -27,13 +28,11 @@ General purpose tools to parse and handle OpenOffice v1.x documents in ERP5.
 
 %build
 
-
 %install
 %{__rm} -rf %{buildroot}
 %{__mkdir_p} %{buildroot}/%{software_home}/Products
 %{__cp} -a * %{buildroot}%{software_home}/Products/
 
-
 %clean
 %{__rm} -rf %{buildroot}
 
@@ -54,6 +53,9 @@ fi
 
 #----------------------------------------------------------------------
 %changelog
+* Thu Jan 26 2006 Kevin Deldycke <kevin@nexedi.com> 0.11-1mdk
+- Update to version 0.11
+
 * Wed Jan 18 2006 Kevin Deldycke <kevin@nexedi.com> 0.10-1mdk
 - Update to version 0.10
 
diff --git a/product/ERP5/spec/ERP5Security.spec b/product/ERP5/spec/ERP5Security.spec
index 5c9309a1527ca2bce3ed1792b719ce50b53dd746..af6b0e93258a2d587a04318df15882f85eff373e 100755
--- a/product/ERP5/spec/ERP5Security.spec
+++ b/product/ERP5/spec/ERP5Security.spec
@@ -1,5 +1,5 @@
 %define product ERP5Security
-%define version 0.10
+%define version 0.11
 %define release 1
 
 %define zope_home %{_prefix}/lib/zope
@@ -15,6 +15,7 @@ URL:       http://www.erp5.org
 Source0:   %{product}-%{version}.tar.bz2
 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-rootdir
 BuildArch: noarch
+Conflicts: ERP5Security
 Requires:  erp5-zope zope-PluggableAuthService
 
 #----------------------------------------------------------------------
@@ -29,13 +30,11 @@ ERP5.
 
 %build
 
-
 %install
 %{__rm} -rf %{buildroot}
 %{__mkdir_p} %{buildroot}/%{software_home}/Products
 %{__cp} -a * %{buildroot}%{software_home}/Products/
 
-
 %clean
 %{__rm} -rf %{buildroot}
 
@@ -56,6 +55,9 @@ fi
 
 #----------------------------------------------------------------------
 %changelog
+* Thu Jan 26 2006 Kevin Deldycke <kevin@nexedi.com> 0.11-1mdk
+- Update to version 0.11
+
 * Wed Jan 18 2006 Kevin Deldycke <kevin@nexedi.com> 0.10-1mdk
 - Update to version 0.10
 
diff --git a/product/ERP5/spec/ERP5SyncML.spec b/product/ERP5/spec/ERP5SyncML.spec
index ffde094ad5a6ac2187060eca237cecc4b8fcef18..d49dab42a8d4740f3f44d8250328e175537dbfe8 100755
--- a/product/ERP5/spec/ERP5SyncML.spec
+++ b/product/ERP5/spec/ERP5SyncML.spec
@@ -1,5 +1,5 @@
 %define product ERP5SyncML
-%define version 0.10
+%define version 0.11
 %define release 1
 
 %define zope_home %{_prefix}/lib/zope
@@ -15,6 +15,7 @@ URL:       http://www.erp5.org
 Source0:   %{product}-%{version}.tar.bz2
 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-rootdir
 BuildArch: noarch
+Conflicts: ERP5SyncML
 Requires:  erp5-zope zope-ERP5Type erp5diff
 
 #----------------------------------------------------------------------
@@ -29,13 +30,11 @@ the Rapid Application Developpement feature used in ERP5.
 
 %build
 
-
 %install
 %{__rm} -rf %{buildroot}
 %{__mkdir_p} %{buildroot}/%{software_home}/Products
 %{__cp} -a * %{buildroot}%{software_home}/Products/
 
-
 %clean
 %{__rm} -rf %{buildroot}
 
@@ -56,6 +55,9 @@ fi
 
 #----------------------------------------------------------------------
 %changelog
+* Thu Jan 26 2006 Kevin Deldycke <kevin@nexedi.com> 0.11-1mdk
+- Update to version 0.11
+
 * Wed Jan 18 2006 Kevin Deldycke <kevin@nexedi.com> 0.10-1mdk
 - Update to version 0.10
 
diff --git a/product/ERP5/spec/ERP5Type.spec b/product/ERP5/spec/ERP5Type.spec
index c9108959eeff5c4720ef361eea9d1c501cc06ed9..54ece841a48e1acce844a2fc8d21a746822d80c3 100755
--- a/product/ERP5/spec/ERP5Type.spec
+++ b/product/ERP5/spec/ERP5Type.spec
@@ -1,6 +1,6 @@
 %define product ERP5Type
-%define version 0.10
-%define release 2
+%define version 0.11
+%define release 1
 
 %define zope_home %{_prefix}/lib/zope
 %define software_home %{zope_home}/lib/python
@@ -15,6 +15,7 @@ URL:       http://www.erp5.org
 Source0:   %{product}-%{version}.tar.bz2
 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-rootdir
 BuildArch: noarch
+Conflicts: ERP5Type
 Requires:  erp5-zope
 
 #----------------------------------------------------------------------
@@ -29,13 +30,11 @@ the Rapid Application Developpement feature used in ERP5.
 
 %build
 
-
 %install
 %{__rm} -rf %{buildroot}
 %{__mkdir_p} %{buildroot}/%{software_home}/Products
 %{__cp} -a * %{buildroot}%{software_home}/Products/
 
-
 %clean
 %{__rm} -rf %{buildroot}
 
@@ -57,6 +56,9 @@ fi
 
 #----------------------------------------------------------------------
 %changelog
+* Thu Jan 26 2006 Kevin Deldycke <kevin@nexedi.com> 0.11-1mdk
+- Update to version 0.11
+
 * Thu Jan 19 2006 Kevin Deldycke <kevin@nexedi.com> 0.10-2mdk
 - Add missing custom post-command
 
diff --git a/product/ERP5/spec/ZSQLCatalog.spec b/product/ERP5/spec/ZSQLCatalog.spec
index e062eb15a693413eb3c56b65973e613da063a9d1..ac6f3dfe3991f62c37f1471112b8b9f80ec2b475 100755
--- a/product/ERP5/spec/ZSQLCatalog.spec
+++ b/product/ERP5/spec/ZSQLCatalog.spec
@@ -1,6 +1,6 @@
 %define product ZSQLCatalog
-%define version 0.10
-%define release 3
+%define version 0.11
+%define release 1
 
 %define zope_home %{_prefix}/lib/zope
 %define software_home %{zope_home}/lib/python
@@ -15,6 +15,7 @@ URL:       http://www.erp5.org
 Source0:   %{product}-%{version}.tar.bz2
 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-rootdir
 BuildArch: noarch
+Conflicts: ZSQLCatalog
 Requires:  zope
 
 #----------------------------------------------------------------------
@@ -29,13 +30,11 @@ which can be connected to any SQL relationnal database through ZSQLMethods.
 
 %build
 
-
 %install
 %{__rm} -rf %{buildroot}
 %{__mkdir_p} %{buildroot}/%{software_home}/Products
 %{__cp} -a * %{buildroot}%{software_home}/Products/
 
-
 %clean
 %{__rm} -rf %{buildroot}
 
@@ -58,6 +57,9 @@ fi
 
 #----------------------------------------------------------------------
 %changelog
+* Thu Jan 26 2006 Kevin Deldycke <kevin@nexedi.com> 0.11-1mdk
+- Update to version 0.11
+
 * Mon Jan 23 2006 Kevin Deldycke <kevin@nexedi.com> 0.10-3mdk
 - Fix bad symlink