diff options
| -rw-r--r-- | bitbake/lib/bb/fetch/__init__.py | 2 | ||||
| -rw-r--r-- | bitbake/lib/bb/fetch/repo.py | 106 | 
2 files changed, 108 insertions, 0 deletions
| diff --git a/bitbake/lib/bb/fetch/__init__.py b/bitbake/lib/bb/fetch/__init__.py index f40d7be334..435c02683c 100644 --- a/bitbake/lib/bb/fetch/__init__.py +++ b/bitbake/lib/bb/fetch/__init__.py @@ -766,6 +766,7 @@ import perforce  import bzr  import hg  import osc +import repo  methods.append(local.Local())  methods.append(wget.Wget()) @@ -778,3 +779,4 @@ methods.append(perforce.Perforce())  methods.append(bzr.Bzr())  methods.append(hg.Hg())  methods.append(osc.Osc()) +methods.append(repo.Repo()) diff --git a/bitbake/lib/bb/fetch/repo.py b/bitbake/lib/bb/fetch/repo.py new file mode 100644 index 0000000000..34c32fe0bb --- /dev/null +++ b/bitbake/lib/bb/fetch/repo.py @@ -0,0 +1,106 @@ +# ex:ts=4:sw=4:sts=4:et +# -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- +""" +BitBake "Fetch" repo (git) implementation + +""" + +# Copyright (C) 2009 Tom Rini <trini@embeddedalley.com> +# +# Based on git.py which is: +#Copyright (C) 2005 Richard Purdie +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License version 2 as +# published by the Free Software Foundation. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License along +# with this program; if not, write to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +import os, re +import bb +from   bb    import data +from   bb.fetch import Fetch +from   bb.fetch import FetchError +from   bb.fetch import runfetchcmd + +class Repo(Fetch): +    """Class to fetch a module or modules from repo (git) repositories""" +    def supports(self, url, ud, d): +        """ +        Check to see if a given url can be fetched with repo. +        """ +        return ud.type in ["repo"] + +    def localpath(self, url, ud, d): +        """ +        We don"t care about the git rev of the manifests repository, but +        we do care about the manifest to use.  The default is "default". +        We also care about the branch or tag to be used.  The default is +        "master". +        """ + +        if "protocol" in ud.parm: +            ud.proto = ud.parm["protocol"] +        else: +            ud.proto = "git" + +        if "branch" in ud.parm: +            ud.branch = ud.parm["branch"] +        else: +            ud.branch = "master" + +        if "manifest" in ud.parm: +            manifest = ud.parm["manifest"] +            if manifest.endswith(".xml"): +                ud.manifest = manifest +            else: +                ud.manifest = manifest + ".xml" +        else: +            ud.manifest = "default.xml" + +        ud.localfile = data.expand("repo_%s%s_%s_%s.tar.gz" % (ud.host, ud.path.replace("/", "."), ud.manifest, ud.branch), d) + +        return os.path.join(data.getVar("DL_DIR", d, True), ud.localfile) + +    def go(self, loc, ud, d): +        """Fetch url""" + +        if os.access(os.path.join(data.getVar("DL_DIR", d, True), ud.localfile), os.R_OK): +            bb.msg.debug(1, bb.msg.domain.Fetcher, "%s already exists (or was stashed). Skipping repo init / sync." % ud.localpath) +            return + +        gitsrcname = "%s%s" % (ud.host, ud.path.replace("/", ".")) +        repodir = data.getVar("REPODIR", d, True) or os.path.join(data.getVar("DL_DIR", d, True), "repo") +        codir = os.path.join(repodir, gitsrcname, ud.manifest) + +        if ud.user: +            username = ud.user + "@" +        else: +            username = "" + +        bb.mkdirhier(os.path.join(codir, "repo")) +        os.chdir(os.path.join(codir, "repo")) +        if not os.path.exists(os.path.join(codir, "repo", ".repo")): +            runfetchcmd("repo init -m %s -b %s -u %s://%s%s%s" % (ud.manifest, ud.branch, ud.proto, username, ud.host, ud.path), d) + +        runfetchcmd("repo sync", d) +        os.chdir(codir) + +        # Create a cache +        runfetchcmd("tar --exclude=.repo --exclude=.git -czf %s %s" % (ud.localpath, os.path.join(".", "*") ), d) + +    def suppports_srcrev(self): +        return False + +    def _build_revision(self, url, ud, d): +        return ud.manifest + +    def _want_sortable_revision(self, url, ud, d): +        return False | 
