diff options
| author | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2012-04-12 21:14:11 +0200 |
|---|---|---|
| committer | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2012-04-12 21:15:49 +0200 |
| commit | 2aae74545855e133d6f0e6ce56bbb8995fd1b51e (patch) | |
| tree | 988e00bb652eb50310ef4f79cc92a45e184ada96 /utils | |
| parent | e9d5f6cb61fb9ef997213b64b8086574f591f3a5 (diff) | |
| download | rockbox-2aae74545855e133d6f0e6ce56bbb8995fd1b51e.zip rockbox-2aae74545855e133d6f0e6ce56bbb8995fd1b51e.tar.gz rockbox-2aae74545855e133d6f0e6ce56bbb8995fd1b51e.tar.bz2 rockbox-2aae74545855e133d6f0e6ce56bbb8995fd1b51e.tar.xz | |
Add new tarball generation script.
The old script depended on svn. An earlier version of this script has already
been used in the 3.11. branch.
Change-Id: Id03abb8f7bd005ede343243194c4453f0b2e8943
Diffstat (limited to 'utils')
| -rwxr-xr-x | utils/common/tarball.py | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/utils/common/tarball.py b/utils/common/tarball.py new file mode 100755 index 0000000..57765a5 --- /dev/null +++ b/utils/common/tarball.py @@ -0,0 +1,30 @@ +#!/usr/bin/python + +import gitscraper +import os +import sys + +if len(sys.argv) < 2: + print "Usage: %s <version|hash>" % sys.argv[0] + sys.exit() + +repository = os.path.abspath(os.path.dirname(os.path.abspath(__file__)) + "/../..") +if '.' in sys.argv[1]: + version = sys.argv[1] + basename = "rockbox-" + version + ref = "refs/tags/v" + version + "-final" + refs = gitscraper.get_refs(repository) + if ref in refs: + tree = refs[ref] + else: + print "Could not find hash for version!" + sys.exit() +else: + tree = sys.argv[1] + basename = "rockbox-" + tree + +gitscraper.archive_files(repository, tree, [], basename, archive="7z") + +print "done." + + |