mercurial/scmutil.py
changeset 14482 58b36e9ea783
parent 14435 5f6090e559fa
child 14483 973959fbe8ec
--- a/mercurial/scmutil.py	Tue May 31 15:28:23 2011 -0500
+++ b/mercurial/scmutil.py	Tue May 31 19:16:18 2011 +0200
@@ -691,3 +691,13 @@
                 wctx.add([dst])
         elif not dryrun:
             wctx.copy(origsrc, dst)
+
+def readrequires(opener, supported):
+    '''Reads and parses .hg/requires and checks if all entries found
+    are in the list of supported features.'''
+    requirements = set(opener.read("requires").splitlines())
+    for r in requirements:
+        if r not in supported:
+            raise error.RequirementError(
+                _("requirement '%s' not supported") % r)
+    return requirements