2014-09-22 20:21:00 +02:00
|
|
|
#!/usr/bin/env python3
|
2014-06-19 09:04:37 +02:00
|
|
|
# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et:
|
|
|
|
|
2017-05-09 21:37:03 +02:00
|
|
|
# Copyright 2014-2017 Florian Bruhin (The Compiler) <mail@qutebrowser.org>
|
2014-05-13 23:09:25 +02:00
|
|
|
#
|
|
|
|
# This file is part of qutebrowser.
|
|
|
|
#
|
|
|
|
# qutebrowser is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# qutebrowser is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with qutebrowser. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2017-05-17 11:31:14 +02:00
|
|
|
"""Script to clean up the mess made by Python/setuptools/PyInstaller."""
|
2014-05-13 23:09:25 +02:00
|
|
|
|
|
|
|
import os
|
|
|
|
import os.path
|
|
|
|
import sys
|
|
|
|
import glob
|
|
|
|
import shutil
|
2014-08-26 19:10:14 +02:00
|
|
|
import fnmatch
|
2014-05-13 23:09:25 +02:00
|
|
|
|
2015-06-28 22:31:30 +02:00
|
|
|
sys.path.insert(0, os.path.join(os.path.dirname(__file__), os.pardir,
|
2016-04-27 18:30:54 +02:00
|
|
|
os.pardir))
|
2014-10-26 19:42:01 +01:00
|
|
|
|
|
|
|
from scripts import utils
|
|
|
|
|
2014-05-13 23:09:25 +02:00
|
|
|
|
2014-06-06 17:12:54 +02:00
|
|
|
recursive_lint = ('__pycache__', '*.pyc')
|
|
|
|
lint = ('build', 'dist', 'pkg/pkg', 'pkg/qutebrowser-*.pkg.tar.xz', 'pkg/src',
|
2014-05-13 23:09:25 +02:00
|
|
|
'pkg/qutebrowser', 'qutebrowser.egg-info', 'setuptools-*.egg',
|
2014-07-23 21:41:30 +02:00
|
|
|
'setuptools-*.zip', 'doc/qutebrowser.asciidoc', 'doc/*.html',
|
2014-09-16 20:12:14 +02:00
|
|
|
'doc/qutebrowser.1', 'README.html', 'qutebrowser/html/doc')
|
2014-05-13 23:09:25 +02:00
|
|
|
|
|
|
|
|
|
|
|
def remove(path):
|
2014-05-15 08:24:10 +02:00
|
|
|
"""Remove either a file or directory unless --dry-run is given."""
|
2014-05-13 23:09:25 +02:00
|
|
|
if os.path.isdir(path):
|
|
|
|
print("rm -r '{}'".format(path))
|
2014-05-16 07:49:04 +02:00
|
|
|
if '--dry-run' not in sys.argv:
|
2014-05-15 08:24:10 +02:00
|
|
|
shutil.rmtree(path)
|
2014-05-13 23:09:25 +02:00
|
|
|
else:
|
|
|
|
print("rm '{}'".format(path))
|
2014-05-16 07:49:04 +02:00
|
|
|
if '--dry-run' not in sys.argv:
|
2014-05-15 08:24:10 +02:00
|
|
|
os.remove(path)
|
2014-05-13 23:09:25 +02:00
|
|
|
|
|
|
|
|
2014-08-26 19:10:14 +02:00
|
|
|
def main():
|
|
|
|
"""Clean up lint in the current dir."""
|
2014-10-26 19:42:01 +01:00
|
|
|
utils.change_cwd()
|
2014-08-26 19:10:14 +02:00
|
|
|
for elem in lint:
|
|
|
|
for f in glob.glob(elem):
|
|
|
|
remove(f)
|
2014-05-13 23:09:25 +02:00
|
|
|
|
2014-08-26 19:10:14 +02:00
|
|
|
for root, _dirs, _files in os.walk(os.getcwd()):
|
|
|
|
path = os.path.basename(root)
|
|
|
|
if any([fnmatch.fnmatch(path, e) for e in recursive_lint]):
|
|
|
|
remove(root)
|
2014-05-13 23:09:25 +02:00
|
|
|
|
2014-08-26 19:10:14 +02:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|