diff options
author | Andreas Oberritter <obi@opendreambox.org> | 2010-12-08 13:38:23 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2011-01-04 14:46:51 +0000 |
commit | bd34e7d6dffbdcd3cfb0bc21daf73e9090e5110f (patch) | |
tree | 4eb6fdd4501facd55b4921f7b09f35bac638b79f /bitbake/lib/bb/fetch/cvs.py | |
parent | 7bbde5b149751c2b38964b786b76a25f62199397 (diff) | |
download | poky-bd34e7d6dffbdcd3cfb0bc21daf73e9090e5110f.tar.gz |
fetchers: Add parameter scmdata=keep to include .git/ and others in generated tarballs.
* Allows generating version information from SCMs during build.
* Note that tar doesn't need to use --exclude '.git', because
git checkout-index doesn't clone the repository.
(Bitbake rev: 05cbc1d1a01c667c77688f36fbc5b61c5f452a3a)
Signed-off-by: Andreas Oberritter <obi@opendreambox.org>
Signed-off-by: Chris Larson <chris_larson@mentor.com>
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake/lib/bb/fetch/cvs.py')
-rw-r--r-- | bitbake/lib/bb/fetch/cvs.py | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/bitbake/lib/bb/fetch/cvs.py b/bitbake/lib/bb/fetch/cvs.py index bd919e234e..0edb794b04 100644 --- a/bitbake/lib/bb/fetch/cvs.py +++ b/bitbake/lib/bb/fetch/cvs.py | |||
@@ -149,14 +149,20 @@ class Cvs(Fetch): | |||
149 | pass | 149 | pass |
150 | raise FetchError(ud.module) | 150 | raise FetchError(ud.module) |
151 | 151 | ||
152 | scmdata = ud.parm.get("scmdata", "") | ||
153 | if scmdata == "keep": | ||
154 | tar_flags = "" | ||
155 | else: | ||
156 | tar_flags = "--exclude 'CVS'" | ||
157 | |||
152 | # tar them up to a defined filename | 158 | # tar them up to a defined filename |
153 | if 'fullpath' in ud.parm: | 159 | if 'fullpath' in ud.parm: |
154 | os.chdir(pkgdir) | 160 | os.chdir(pkgdir) |
155 | myret = os.system("tar --exclude 'CVS' -czf %s %s" % (ud.localpath, localdir)) | 161 | myret = os.system("tar %s -czf %s %s" % (tar_flags, ud.localpath, localdir)) |
156 | else: | 162 | else: |
157 | os.chdir(moddir) | 163 | os.chdir(moddir) |
158 | os.chdir('..') | 164 | os.chdir('..') |
159 | myret = os.system("tar -czf %s %s" % (ud.localpath, os.path.basename(moddir))) | 165 | myret = os.system("tar %s -czf %s %s" % (tar_flags, ud.localpath, os.path.basename(moddir))) |
160 | 166 | ||
161 | if myret != 0: | 167 | if myret != 0: |
162 | try: | 168 | try: |