rules.mako: indent control flow
authorGreg Price <price@mit.edu>
Mon, 29 Dec 2008 06:54:53 +0000 (01:54 -0500)
committerGreg Price <price@mit.edu>
Mon, 29 Dec 2008 06:54:53 +0000 (01:54 -0500)
svn path=/trunk/scripts/git-migration/; revision=1944

rules.mako

index cd4718d..e3b8e9c 100644 (file)
@@ -116,15 +116,15 @@ end match
 
 % for package in packages:
 
-% if package == 'sipb-xen-database':
+%   if package == 'sipb-xen-database':
 match /trunk/packages/${package}/${package}-0/
   repository ${get_repo(package)}
   branch ${get_branch(package)}
   max revision 8
 end match
-% endif
+%   endif
 
-% if package in doubled_packages:
+%   if package in doubled_packages:
 match /trunk/packages/${package}/${package}/
   repository ${get_repo(package)}
   branch ${get_branch(package)}
@@ -134,11 +134,11 @@ end match
 match /package_tags/${package}/([^/~]+)/${package}/
   repository ${get_repo(package)}
   branch tags/${get_tag_prefix(package)}\1
-% if package == 'sipb-xen-dev':
+%     if package == 'sipb-xen-dev':
   max revision 318
-% else:
+%     else:
   max revision ${doubled_packages[package][0] - 1}
-% endif
+%     endif
 end match
 
 match /trunk/packages/tmp/${package}/
@@ -150,33 +150,33 @@ match /trunk/packages/${package}/
   min revision ${doubled_packages[package][1]}
   max revision ${doubled_packages[package][1]}
 end match
-% endif
+%   endif
 
 match /trunk/packages/${package}/
   repository ${get_repo(package)}
   branch ${get_branch(package)}
-% if package in doubled_packages:
+%   if package in doubled_packages:
   min revision ${doubled_packages[package][1] + 1}
-% endif
-% if package in punt:
+%   endif
+%   if package in punt:
   max revision ${punt[package] - 1}
-% endif
+%   endif
 end match
 
 match /package_tags/${package}/([^/~]+)/
   repository ${get_repo(package)}
   branch tags/${get_tag_prefix(package)}\1
-% if package in doubled_packages:
+%   if package in doubled_packages:
   min revision ${doubled_packages[package][1]}
-% endif
+%   endif
 end match
 
 match /package_tags/${package}/([^/~]+)~([^/~]+)/
   repository ${get_repo(package)}
   branch tags/${get_tag_prefix(package)}\1_\2
-% if package in doubled_packages:
+%   if package in doubled_packages:
   min revision ${doubled_packages[package][1]}
-% endif
+%   endif
 end match
 
 % endfor