Changeset 1921
- Timestamp:
- Dec 27, 2008, 2:29:34 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/scripts/git-migration/rules.mako
r1920 r1921 4 4 repos = packages 5 5 packages = [package[len('packages/'):] for package in packages] 6 7 scripts = ['git-migration', 'invirt.mit.edu', 'munin', 'prod-migration'] 8 repos += ['scripts/%s' % script for script in scripts] 9 10 repos += ['doc/xvm', 'scripts/osx-update'] 6 11 7 12 doubled_packages = { … … 215 220 end match 216 221 217 match /trunk/(scripts|vmctl)(/|$) 218 end match 219 220 match /trunk/(COPYING|xvm-host-setup-notes) 222 % for script in scripts: 223 match /trunk/scripts/${script}(/|$) 224 repository scripts/${script}.git 225 branch master 226 end match 227 % endfor 228 229 match /trunk/scripts(/|$) 230 repository scripts/osx-update.git 231 branch master 232 min revision 1785 233 max revision 1785 234 end match 235 236 match /trunk/scripts(/|$) 237 repository scripts/prod-migration.git 238 branch master 239 max revision 1863 240 end match 241 242 % for rev in [803, 804, 925, 926, 928, 1537, 1566]: 243 match /trunk(/|$) 244 repository doc/xvm.git 245 branch master 246 min revision ${rev} 247 max revision ${rev} 248 end match 249 % endfor 250 251 match /trunk/vmctl(/|$) 252 end match 253 254 match /trunk/COPYING$ 221 255 end match 222 256
Note: See TracChangeset
for help on using the changeset viewer.