diff options
author | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2010-07-28 18:37:12 +0000 |
---|---|---|
committer | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2010-07-28 18:37:12 +0000 |
commit | a9acd1f45b6ff7553317061733c6b9d51aad9450 (patch) | |
tree | 5ab3a9e38c74384bc5ed37cfba6a5b0442993a75 | |
parent | 980e0c7383fdb913014a71cc69725b42ebca4254 (diff) |
Restructure and rename deploy-release.py.
Move actual working functionality into a python module, and write a
simple script to use it.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27598 a1c6a512-1295-4272-9138-f99709370657
-rwxr-xr-x | rbutil/rbutilqt/deploy-rbutil.py | 68 | ||||
-rwxr-xr-x | rbutil/rbutilqt/deploy.py (renamed from rbutil/rbutilqt/deploy-release.py) | 55 |
2 files changed, 79 insertions, 44 deletions
diff --git a/rbutil/rbutilqt/deploy-rbutil.py b/rbutil/rbutilqt/deploy-rbutil.py new file mode 100755 index 0000000000..10c3159fe2 --- /dev/null +++ b/rbutil/rbutilqt/deploy-rbutil.py @@ -0,0 +1,68 @@ +#!/usr/bin/python +# __________ __ ___. +# Open \______ \ ____ ____ | | _\_ |__ _______ ___ +# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / +# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < +# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ +# \/ \/ \/ \/ \/ +# $Id$ +# +# Copyright (c) 2010 Dominik Riebeling +# +# All files in this archive are subject to the GNU General Public License. +# See the file COPYING in the source tree root for full license agreement. +# +# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY +# KIND, either express or implied. +# + +import deploy +import sys + +deploy.program = "RockboxUtility" +deploy.project = "rbutil/rbutilqt/rbutilqt.pro" +deploy.svnserver = "svn://svn.rockbox.org/rockbox/" +deploy.svnpaths = \ + [ "rbutil/", + "tools/ucl", + "tools/rbspeex", + "apps/codecs/libspeex", + "docs/COPYING", + "docs/CREDITS", + "tools/iriver.c", + "tools/Makefile", + "tools/mkboot.h", + "tools/voicefont.c", + "tools/VOICE_PAUSE.wav", + "tools/wavtrim.h", + "tools/iriver.h", + "tools/mkboot.c", + "tools/telechips.c", + "tools/telechips.h", + "tools/voicefont.h", + "tools/wavtrim.c", + "tools/sapi_voice.vbs" ] +deploy.useupx = False +deploy.bundlecopy = { + "icons/rbutilqt.icns" : "Contents/Resources/", + "Info.plist" : "Contents/" +} +# Windows nees some special treatment. Differentiate between program name +# and executable filename. +if sys.platform == "win32": + deploy.progexe = "Release/" + deploy.program + ".exe" + deploy.make = "mingw32-make" +elif sys.platform == "darwin": + deploy.progexe = deploy.program + ".app" + # OS X 10.6 defaults to gcc 4.2. Building universal binaries that are + # compatible with 10.4 requires using gcc-4.0. + if not "QMAKESPEC" in deploy.environment: + deploy.environment["QMAKESPEC"] = "macx-g++40" +else: + deploy.progexe = deploy.program +# all files of the program. Will get put into an archive after building +# (zip on w32, tar.bz2 on Linux). Does not apply on Mac which uses dmg. +deploy.programfiles = [ deploy.progexe ] + +deploy.deploy() + diff --git a/rbutil/rbutilqt/deploy-release.py b/rbutil/rbutilqt/deploy.py index ffb8f71c0e..f4f3fac786 100755 --- a/rbutil/rbutilqt/deploy-release.py +++ b/rbutil/rbutilqt/deploy.py @@ -63,57 +63,23 @@ except ImportError: # == Global stuff == # Windows nees some special treatment. Differentiate between program name # and executable filename. -program = "RockboxUtility" -project = "rbutil/rbutilqt/rbutilqt.pro" +program = "" +project = "" environment = os.environ +progexe = "" make = "make" -if sys.platform == "win32": - progexe = "Release/" + program + ".exe" - make = "mingw32-make" -elif sys.platform == "darwin": - progexe = program + ".app" - # OS X 10.6 defaults to gcc 4.2. Building universal binaries that are - # compatible with 10.4 requires using gcc-4.0. - if not "QMAKESPEC" in environment: - environment["QMAKESPEC"] = "macx-g++40" -else: - progexe = program - -# all files of the program. Will get put into an archive after building -# (zip on w32, tar.bz2 on Linux). Does not apply on Mac which uses dmg. -programfiles = [ progexe ] - -svnserver = "svn://svn.rockbox.org/rockbox/" +programfiles = [] + +svnserver = "" # Paths and files to retrieve from svn when creating a tarball. # This is a mixed list, holding both paths and filenames. -svnpaths = [ "rbutil/", - "tools/ucl", - "tools/rbspeex", - "apps/codecs/libspeex", - "docs/COPYING", - "docs/CREDITS", - "tools/iriver.c", - "tools/Makefile", - "tools/mkboot.h", - "tools/voicefont.c", - "tools/VOICE_PAUSE.wav", - "tools/wavtrim.h", - "tools/iriver.h", - "tools/mkboot.c", - "tools/telechips.c", - "tools/telechips.h", - "tools/voicefont.h", - "tools/wavtrim.c", - "tools/sapi_voice.vbs" ] +svnpaths = [ ] # set this to true to run upx on the resulting binary, false to skip this step. # only used on w32. useupx = False # OS X: files to copy into the bundle. Workaround for out-of-tree builds. -bundlecopy = { - "icons/rbutilqt.icns" : "Contents/Resources/", - "Info.plist" : "Contents/" -} +bundlecopy = { } # == Functions == def usage(myself): @@ -374,8 +340,9 @@ def tempclean(workfolder, nopro): print "Temporary files kept at %s" % workfolder -def main(): +def deploy(): startup = time.time() + try: opts, args = getopt.getopt(sys.argv[1:], "q:p:t:a:sbdkh", ["qmake=", "project=", "tag=", "add=", "source-only", "binary-only", "dynamic", "keep-temp", "help"]) @@ -526,5 +493,5 @@ def main(): if __name__ == "__main__": - main() + deploy() |