deploy: Fix various style issues.

Fix various pylint issues and some python3 compatibility.

Change-Id: I2c35ccc5ad2d0902c229f9de57912cf6d5a83ece
This commit is contained in:
Dominik Riebeling 2019-11-17 11:55:46 +01:00
parent aefbc13e19
commit 440791105a
5 changed files with 139 additions and 130 deletions

View file

@ -22,13 +22,13 @@ deploy.program = "rbthemeeditor"
deploy.project = "utils/themeeditor/themeeditor.pro"
deploy.svnserver = "svn://svn.rockbox.org/rockbox/"
deploy.svnpaths = \
[ "utils/themeeditor/",
"lib/skin_parser/",
"docs/COPYING" ]
["utils/themeeditor/",
"lib/skin_parser/",
"docs/COPYING"]
deploy.useupx = False
deploy.bundlecopy = {
"resources/windowicon.icns" : "Contents/Resources/",
"Info.plist" : "Contents/"
"Info.plist" : "Contents/"
}
deploy.progexe = {
"win32" : "release/rbthemeeditor.exe",
@ -52,7 +52,7 @@ deploy.make = {
# 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.
# progexe will get added automatically.
deploy.programfiles = [ ]
deploy.programfiles = list()
deploy.nsisscript = "utils/themeeditor/themeeditor.nsi"
deploy.deploy()