# HG changeset patch
# User Alain Leufroy <alain.leufroy@logilab.fr>
# Date 1284107789 -7200
#      Fri Sep 10 10:36:29 2010 +0200
# Branch stable
# Node ID 79a869714ae70096ce7d0ae8d39ad294f891f0f8
# Parent  6405b59a8355371fadfa076dd480cb08af36f6d1
fix install dependancy conflict (yapps)

diff --git a/__pkginfo__.py b/__pkginfo__.py
--- a/__pkginfo__.py
+++ b/__pkginfo__.py
@@ -69,8 +69,8 @@
 else:
     ext_modules = [ Extension('rql_solve',
                               ['gecode_solver.cpp'],
-                              libraries=['GecodeInt-3-3-1-r-x86', 
-                                         'GecodeKernel-3-3-1-r-x86', 
+                              libraries=['GecodeInt-3-3-1-r-x86',
+                                         'GecodeKernel-3-3-1-r-x86',
                                          'GecodeSearch-3-3-1-r-x86',
                                          'GecodeSupport-3-3-1-r-x86',
                                          ],
@@ -82,11 +82,11 @@
 install_requires = [
     'logilab-common >= 0.47.0',
     'logilab-database',
-    'yapps2 >= 2.1.1',
+    'yapps == 2.1.1', # XXX to ensure we don't use the broken pypi version
     'constraint', # fallback if the gecode compiled module is missing
     ]
 
 # links to download yapps2 package that is not (yet) registered in pypi
 dependency_links = [
-    "http://ftp.logilab.org/pub/yapps/yapps2-2.1.1.zip#egg=yapps2-2.1.1",
+    "http://ftp.logilab.org/pub/yapps/yapps2-2.1.1.zip#egg=yapps-2.1.1",
     ]