]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
__init__.py: support == requirements.
authorDaira Hopwood <daira@jacaranda.org>
Fri, 10 Jul 2015 05:27:56 +0000 (06:27 +0100)
committerDaira Hopwood <daira@jacaranda.org>
Tue, 4 Aug 2015 18:10:29 +0000 (19:10 +0100)
Signed-off-by: Daira Hopwood <daira@jacaranda.org>
src/allmydata/__init__.py
src/allmydata/_auto_deps.py

index 0b0c5f816cc392920822cc1c496bf74cd15b812c..9f08f76863136e53b25f52f0a7e6bc0f78d548f4 100644 (file)
@@ -269,10 +269,10 @@ def get_package_versions_and_locations():
 
 
 def check_requirement(req, vers_and_locs):
-    # We support only conjunctions of <=, >=, and !=
+    # We support only conjunctions of <=, >=, ==, and !=
 
     reqlist = req.split(',')
-    name = reqlist[0].split('<=')[0].split('>=')[0].split('!=')[0].strip(' ').split('[')[0]
+    name = reqlist[0].split('<=')[0].split('>=')[0].split('==')[0].split('!=')[0].strip(' ').split('[')[0]
     if name not in vers_and_locs:
         raise PackagingError("no version info for %s" % (name,))
     if req.strip(' ') == name:
@@ -308,13 +308,19 @@ def match_requirement(req, reqlist, actualver):
                 if not (actualver >= normalized_version(required, what="required minimum version %r in %r" % (required, req))):
                     return False  # minimum requirement not met
             else:
-                s = r.split('!=')
+                s = r.split('==')
                 if len(s) == 2:
                     required = s[1].strip(' ')
-                    if not (actualver != normalized_version(required, what="excluded version %r in %r" % (required, req))):
-                        return False  # not-equal requirement not met
+                    if not (actualver == normalized_version(required, what="required exact version %r in %r" % (required, req))):
+                        return False  # exact requirement not met
                 else:
-                    raise PackagingError("no version info or could not understand requirement %r" % (req,))
+                    s = r.split('!=')
+                    if len(s) == 2:
+                        required = s[1].strip(' ')
+                        if not (actualver != normalized_version(required, what="excluded version %r in %r" % (required, req))):
+                            return False  # not-equal requirement not met
+                    else:
+                        raise PackagingError("no version info or could not understand requirement %r" % (req,))
 
     return True
 
index 615e82a075d8766238b909cb4e0d6ec44d57dfdd..c2d01c5ee3b607ef915d0219441e4f449baf9aa9 100644 (file)
@@ -13,7 +13,7 @@
 #   * >= X, != Y, != Z, ... where X < Y < Z...
 #
 # (In addition, check_requirement in allmydata/__init__.py only supports
-# >=, <= and != operators.)
+# >=, <=, ==, and != operators.)
 
 install_requires = [
     # We require newer versions of setuptools (actually