]> 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>
Fri, 10 Jul 2015 05:27:56 +0000 (06:27 +0100)
Signed-off-by: Daira Hopwood <daira@jacaranda.org>
src/allmydata/__init__.py
src/allmydata/_auto_deps.py

index 5f6cd8c11f2f948d77bde72539125ca26a29c5dc..183718ba2e93696404f4b49a888d222c6509e8d5 100644 (file)
@@ -250,10 +250,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:
@@ -289,13 +289,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 38d4183647ede643f1791dc4e50cbf221e0711e5..4fb39a23ea9d0b4340324ec23f30cf2e39166d96 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