mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-05 03:47:57 +03:00
[Lint] Cleanup helper scripts to pass PyLint
This commit is contained in:
parent
807fa609f9
commit
d280fa9fbd
7 changed files with 30 additions and 20 deletions
|
@ -10,6 +10,8 @@
|
||||||
|
|
||||||
"""Script to parse javascript files for translation strings and generate gettext.js"""
|
"""Script to parse javascript files for translation strings and generate gettext.js"""
|
||||||
|
|
||||||
|
from __future__ import print_function
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import re
|
import re
|
||||||
|
|
||||||
|
|
|
@ -11,6 +11,8 @@
|
||||||
|
|
||||||
"""Parses Python and Javascript code for translation strings to create the 'deluge.pot' template for translators"""
|
"""Parses Python and Javascript code for translation strings to create the 'deluge.pot' template for translators"""
|
||||||
|
|
||||||
|
from __future__ import print_function
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import re
|
import re
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
|
@ -30,7 +32,7 @@ WEBUI_RENDER_DIR = "deluge/ui/web/render"
|
||||||
INFILES_LIST = "infiles.list"
|
INFILES_LIST = "infiles.list"
|
||||||
POT_FILEPATH = os.path.join("deluge", "i18n", "deluge.pot")
|
POT_FILEPATH = os.path.join("deluge", "i18n", "deluge.pot")
|
||||||
|
|
||||||
RE_EXC_PLUGIN_BUILD = re.compile("deluge\/plugins\/.*\/build")
|
RE_EXC_PLUGIN_BUILD = re.compile("deluge\\/plugins\\/.*\\/build")
|
||||||
|
|
||||||
xgettext_cmd = [
|
xgettext_cmd = [
|
||||||
"xgettext",
|
"xgettext",
|
||||||
|
|
|
@ -15,6 +15,8 @@ Usage: python minify_web_js.py deluge/ui/web/js/deluge-all
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
from __future__ import print_function
|
||||||
|
|
||||||
import fileinput
|
import fileinput
|
||||||
import fnmatch
|
import fnmatch
|
||||||
import os
|
import os
|
||||||
|
@ -106,5 +108,5 @@ if __name__ == '__main__':
|
||||||
else:
|
else:
|
||||||
JS_SOURCE_DIRS = [os.path.abspath(sys.argv[1])]
|
JS_SOURCE_DIRS = [os.path.abspath(sys.argv[1])]
|
||||||
|
|
||||||
for source_dir in JS_SOURCE_DIRS:
|
for js_source_dir in JS_SOURCE_DIRS:
|
||||||
minify_js_dir(source_dir)
|
minify_js_dir(js_source_dir)
|
||||||
|
|
|
@ -27,6 +27,7 @@ Options:
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import array
|
import array
|
||||||
|
import ast
|
||||||
import getopt
|
import getopt
|
||||||
import os
|
import os
|
||||||
import struct
|
import struct
|
||||||
|
@ -51,7 +52,6 @@ def add(msgid, transtr, fuzzy):
|
||||||
"""
|
"""
|
||||||
Add a non-fuzzy translation to the dictionary.
|
Add a non-fuzzy translation to the dictionary.
|
||||||
"""
|
"""
|
||||||
global MESSAGES
|
|
||||||
if not fuzzy and transtr and not transtr.startswith('\0'):
|
if not fuzzy and transtr and not transtr.startswith('\0'):
|
||||||
MESSAGES[msgid] = transtr
|
MESSAGES[msgid] = transtr
|
||||||
|
|
||||||
|
@ -60,7 +60,6 @@ def generate():
|
||||||
"""
|
"""
|
||||||
Return the generated output.
|
Return the generated output.
|
||||||
"""
|
"""
|
||||||
global MESSAGES
|
|
||||||
keys = MESSAGES.keys()
|
keys = MESSAGES.keys()
|
||||||
# the keys are sorted in the .mo file
|
# the keys are sorted in the .mo file
|
||||||
keys.sort()
|
keys.sort()
|
||||||
|
@ -165,8 +164,7 @@ def make(filename, outfile):
|
||||||
l = l.strip()
|
l = l.strip()
|
||||||
if not l:
|
if not l:
|
||||||
continue
|
continue
|
||||||
# XXX: Does this always follow Python escape semantics?
|
l = ast.literal_eval(l)
|
||||||
l = eval(l)
|
|
||||||
if section == section_id:
|
if section == section_id:
|
||||||
msgid += l
|
msgid += l
|
||||||
elif section == section_str:
|
elif section == section_str:
|
||||||
|
|
|
@ -11,6 +11,8 @@
|
||||||
# See LICENSE for more details.
|
# See LICENSE for more details.
|
||||||
#
|
#
|
||||||
|
|
||||||
|
from __future__ import print_function
|
||||||
|
|
||||||
import glob
|
import glob
|
||||||
import os
|
import os
|
||||||
import re
|
import re
|
||||||
|
@ -27,7 +29,7 @@ import deluge.common
|
||||||
class VersionInfo(object):
|
class VersionInfo(object):
|
||||||
def __init__(self, version, internalname=None, originalfilename=None,
|
def __init__(self, version, internalname=None, originalfilename=None,
|
||||||
comments=None, company=None, description=None,
|
comments=None, company=None, description=None,
|
||||||
copyright=None, trademarks=None, product=None, dll=False,
|
_copyright=None, trademarks=None, product=None, dll=False,
|
||||||
debug=False, verbose=True):
|
debug=False, verbose=True):
|
||||||
parts = version.split(".")
|
parts = version.split(".")
|
||||||
while len(parts) < 4:
|
while len(parts) < 4:
|
||||||
|
@ -38,7 +40,7 @@ class VersionInfo(object):
|
||||||
self.comments = comments
|
self.comments = comments
|
||||||
self.company = company
|
self.company = company
|
||||||
self.description = description
|
self.description = description
|
||||||
self.copyright = copyright
|
self.copyright = _copyright
|
||||||
self.trademarks = trademarks
|
self.trademarks = trademarks
|
||||||
self.product = product
|
self.product = product
|
||||||
self.dll = dll
|
self.dll = dll
|
||||||
|
@ -105,7 +107,7 @@ for script in glob.glob(os.path.join(python_path, "Scripts\\deluge*-script.py*")
|
||||||
try:
|
try:
|
||||||
fzr.addScript(new_script, gui_only=gui_script)
|
fzr.addScript(new_script, gui_only=gui_script)
|
||||||
script_list.append(new_script)
|
script_list.append(new_script)
|
||||||
except:
|
except Exception:
|
||||||
os.remove(script)
|
os.remove(script)
|
||||||
|
|
||||||
# Start the freezing process.
|
# Start the freezing process.
|
||||||
|
@ -120,9 +122,9 @@ excludeDlls = ("MSIMG32.dll", "MSVCR90.dll", "MSVCP90.dll", "MSVCR120.dll",
|
||||||
"POWRPROF.dll", "DNSAPI.dll", "USP10.dll", "MPR.dll",
|
"POWRPROF.dll", "DNSAPI.dll", "USP10.dll", "MPR.dll",
|
||||||
"jpeg.dll", "libfreetype-6.dll", "libpng12-0.dll", "libtiff.dll",
|
"jpeg.dll", "libfreetype-6.dll", "libpng12-0.dll", "libtiff.dll",
|
||||||
"SDL_image.dll", "SDL_ttf.dll")
|
"SDL_image.dll", "SDL_ttf.dll")
|
||||||
for dll in excludeDlls:
|
for exclude_dll in excludeDlls:
|
||||||
try:
|
try:
|
||||||
os.remove(os.path.join(build_dir, dll))
|
os.remove(os.path.join(build_dir, exclude_dll))
|
||||||
except OSError:
|
except OSError:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
@ -135,11 +137,11 @@ gtk_locale = os.path.join(gtk_root, 'share/locale')
|
||||||
locale_include_list = ['gtk20.mo', 'locale.alias']
|
locale_include_list = ['gtk20.mo', 'locale.alias']
|
||||||
|
|
||||||
|
|
||||||
def ignored_files(adir, filenames):
|
def ignored_files(adir, ignore_filenames):
|
||||||
return [
|
return [
|
||||||
filename for filename in filenames
|
ignore_file for ignore_file in ignore_filenames
|
||||||
if not os.path.isdir(os.path.join(adir, filename))
|
if not os.path.isdir(os.path.join(adir, ignore_file)) and
|
||||||
and filename not in locale_include_list
|
ignore_file not in locale_include_list
|
||||||
]
|
]
|
||||||
shutil.copytree(gtk_locale, os.path.join(build_dir, 'share/locale'), ignore=ignored_files)
|
shutil.copytree(gtk_locale, os.path.join(build_dir, 'share/locale'), ignore=ignored_files)
|
||||||
|
|
||||||
|
@ -160,7 +162,7 @@ for path_root, path in theme_include_list:
|
||||||
dst_dir = os.path.join(build_dir, os.path.dirname(path))
|
dst_dir = os.path.join(build_dir, os.path.dirname(path))
|
||||||
try:
|
try:
|
||||||
os.makedirs(dst_dir)
|
os.makedirs(dst_dir)
|
||||||
except:
|
except OSError:
|
||||||
pass
|
pass
|
||||||
shutil.copy(full_path, dst_dir)
|
shutil.copy(full_path, dst_dir)
|
||||||
|
|
||||||
|
@ -173,7 +175,7 @@ for script in script_list:
|
||||||
description="Deluge Bittorrent Client",
|
description="Deluge Bittorrent Client",
|
||||||
company="Deluge Team",
|
company="Deluge Team",
|
||||||
product="Deluge",
|
product="Deluge",
|
||||||
copyright="Deluge Team")
|
_copyright="Deluge Team")
|
||||||
stamp(os.path.join(build_dir, script_exe), versionInfo)
|
stamp(os.path.join(build_dir, script_exe), versionInfo)
|
||||||
|
|
||||||
# Copy version info to file for nsis script.
|
# Copy version info to file for nsis script.
|
||||||
|
|
4
setup.py
4
setup.py
|
@ -9,6 +9,8 @@
|
||||||
# See LICENSE for more details.
|
# See LICENSE for more details.
|
||||||
#
|
#
|
||||||
|
|
||||||
|
from __future__ import print_function
|
||||||
|
|
||||||
import glob
|
import glob
|
||||||
import os
|
import os
|
||||||
import platform
|
import platform
|
||||||
|
@ -91,7 +93,7 @@ class BuildTranslations(cmd.Command):
|
||||||
os.system('C_ALL=C ' + '%s ' * 5 % (intltool_merge, intltool_merge_opts,
|
os.system('C_ALL=C ' + '%s ' * 5 % (intltool_merge, intltool_merge_opts,
|
||||||
po_dir, desktop_in, desktop_data))
|
po_dir, desktop_in, desktop_data))
|
||||||
|
|
||||||
print('Compiling po files from %s...' % po_dir),
|
print('Compiling po files from %s...' % po_dir)
|
||||||
for path, names, filenames in os.walk(po_dir):
|
for path, names, filenames in os.walk(po_dir):
|
||||||
for f in filenames:
|
for f in filenames:
|
||||||
upto_date = False
|
upto_date = False
|
||||||
|
|
|
@ -31,11 +31,13 @@
|
||||||
# include RELEASE-VERSION
|
# include RELEASE-VERSION
|
||||||
#
|
#
|
||||||
|
|
||||||
__all__ = ("get_version")
|
from __future__ import print_function
|
||||||
|
|
||||||
import os
|
import os
|
||||||
from subprocess import PIPE, Popen
|
from subprocess import PIPE, Popen
|
||||||
|
|
||||||
|
__all__ = ("get_version")
|
||||||
|
|
||||||
VERSION_FILE = os.path.join(os.path.dirname(__file__), "RELEASE-VERSION")
|
VERSION_FILE = os.path.join(os.path.dirname(__file__), "RELEASE-VERSION")
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue