Example #1
0
 def __init__(self, config, name, href, trunk_path='trunk', branches_path='branches'):
     Repository.__init__(self, config, name)
     # allow user to adjust location of branch.
     self.href = config.repos.get(name, href)
     self.trunk_path = trunk_path
     self.branches_path = branches_path
     self.svn_program = config.svn_program
Example #2
0
 def __init__(self, config, name, href, trunk_template=None, branches_template=None, tags_template=None):
     Repository.__init__(self, config, name)
     # allow user to adjust location of branch.
     self.href = config.repos.get(name, href)
     self.trunk_template = trunk_template or "%(module)s/trunk"
     self.branches_template = branches_template or "%(module)s/branches/%(branch)s"
     self.tags_template = tags_template or "%(module)s/tags/%(tag)s"
     self.svn_program = config.svn_program
Example #3
0
    def __init__(self, config, name, server, database, defbranch):
        Repository.__init__(self, config, name)

        self.server = config.repos.get(name, server)

        self.database = os.path.join(self.config.checkoutroot,
                                     config.repos.get(name, database))

        self.defbranch = config.repos.get(name, defbranch)
Example #4
0
 def __init__(self, config, name, cvsroot, password=None):
     Repository.__init__(self, config, name)
     # has the repository path been overridden?
     if self.name in config.repos:
         self.cvsroot = config.repos[name]
     else:
         self.cvsroot = cvsroot
         login(cvsroot, password)
     self.cvs_program = config.cvs_program
Example #5
0
 def __init__(self, config, name, cvsroot, password=None):
     Repository.__init__(self, config, name)
     # has the repository path been overridden?
     if self.name in config.repos:
         self.cvsroot = config.repos[name]
     else:
         self.cvsroot = cvsroot
         login(cvsroot, password)
     self.cvs_program = config.cvs_program
Example #6
0
    def __init__(self, config, name, server, database, defbranch):
        Repository.__init__(self, config, name)

        self.server = config.repos.get(name, server)

        self.database = os.path.join(self.config.checkoutroot,
                                     config.repos.get(name, database))

        self.defbranch = config.repos.get(name, defbranch)
Example #7
0
 def __init__(self,
              config,
              name,
              href,
              trunk_template='%(module)s',
              branches_template='%(module)s/%(branch)s'):
     Repository.__init__(self, config, name)
     # allow user to adjust location of branch.
     self.href = config.repos.get(name, href)
     self.trunk_template = trunk_template
     self.branches_template = branches_template
Example #8
0
 def branch_from_xml(self, name, branchnode):
     branch = Repository.branch_from_xml(self, name, branchnode)
     # patches represented as children of the branch node
     for childnode in branchnode.childNodes:
         if (childnode.nodeType == childnode.ELEMENT_NODE and
             childnode.nodeName == 'patch'):
             patchfile = childnode.getAttribute('file')
             if childnode.hasAttribute('strip'):
                 patchstrip = int(childnode.getAttribute('strip'))
             else:
                 patchstrip = 0
             branch.patches.append((patchfile, patchstrip))
     return branch
Example #9
0
 def branch_from_xml(self, name, branchnode, repositories, default_repo):
     try:
         branch = Repository.branch_from_xml(self, name, branchnode, repositories, default_repo)
     except TypeError:
         raise FatalError(_('branch for %s is not correct, check the moduleset file.') % name)
     # patches represented as children of the branch node
     for childnode in branchnode.childNodes:
         if childnode.nodeType != childnode.ELEMENT_NODE: continue
         if childnode.nodeName == 'patch':
             patchfile = childnode.getAttribute('file')
             if childnode.hasAttribute('strip'):
                 patchstrip = int(childnode.getAttribute('strip'))
             else:
                 patchstrip = 0
             branch.patches.append((patchfile, patchstrip))
         elif childnode.nodeName == 'quilt':
             branch.quilt = get_branch(childnode, repositories, default_repo)
     return branch
Example #10
0
 def branch_from_xml(self, name, branchnode, repositories, default_repo):
     try:
         branch = Repository.branch_from_xml(self, name, branchnode,
                                             repositories, default_repo)
     except TypeError:
         raise FatalError(
             _('branch for %s is not correct, check the moduleset file.') %
             name)
     # patches represented as children of the branch node
     for childnode in branchnode.childNodes:
         if childnode.nodeType != childnode.ELEMENT_NODE: continue
         if childnode.nodeName == 'patch':
             patchfile = childnode.getAttribute('file')
             if childnode.hasAttribute('strip'):
                 patchstrip = int(childnode.getAttribute('strip'))
             else:
                 patchstrip = 0
             branch.patches.append((patchfile, patchstrip))
         elif childnode.nodeName == 'quilt':
             branch.quilt = get_branch(childnode, repositories,
                                       default_repo)
     return branch
Example #11
0
File: hg.py Project: aissat/jhbuild
 def __init__(self, config, name, href):
     Repository.__init__(self, config, name)
     # allow user to adjust location of branch.
     self.href = config.repos.get(name, href)
Example #12
0
 def __init__(self, config, name, href):
     Repository.__init__(self, config, name)
     # allow user to adjust location of branch.
     self.href = config.repos.get(name, href)
Example #13
0
 def __init__(self, config, name, href, trunk_template='%(module)s', branches_template='%(module)s/%(branch)s'):
     Repository.__init__(self, config, name)
     # allow user to adjust location of branch.
     self.href = config.repos.get(name, href)
     self.trunk_template = trunk_template
     self.branches_template = branches_template
Example #14
0
 def __init__(self, config, name, archive, href=None):
     Repository.__init__(self, config, name)
     self.archive = archive
     self.href = href
Example #15
0
 def __init__(self, config, name):
     Repository.__init__(self, config, name)