mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-01-29 20:34:22 +01:00
Fix code style
This commit is contained in:
parent
bb2b4cfc4c
commit
23dd8f7da1
2 changed files with 30 additions and 12 deletions
|
@ -28,14 +28,18 @@ import getpass
|
|||
|
||||
|
||||
def s_user(user):
|
||||
"""Check for root user"""
|
||||
"""
|
||||
Check for root user
|
||||
"""
|
||||
if user != "root":
|
||||
print("\nslpkg: error: must have root privileges\n")
|
||||
sys.exit(0)
|
||||
|
||||
|
||||
def remove_repositories(repositories, default_repositories):
|
||||
"""Remove no default repositories"""
|
||||
"""
|
||||
Remove no default repositories
|
||||
"""
|
||||
repos = []
|
||||
for repo in repositories:
|
||||
if repo in default_repositories:
|
||||
|
@ -44,7 +48,9 @@ def remove_repositories(repositories, default_repositories):
|
|||
|
||||
|
||||
def update_repositories(repositories, conf_path):
|
||||
"""Upadate with user custom repositories"""
|
||||
"""
|
||||
Upadate with user custom repositories
|
||||
"""
|
||||
repo_file = "{0}custom-repositories".format(conf_path)
|
||||
if os.path.isfile(repo_file):
|
||||
f = open(repo_file, "r")
|
||||
|
|
|
@ -30,14 +30,18 @@ from splitting import split_package
|
|||
class Utils(object):
|
||||
|
||||
def dimensional_list(self, lists):
|
||||
""" Create one dimensional list """
|
||||
"""
|
||||
Create one dimensional list
|
||||
"""
|
||||
one_list = []
|
||||
for lst in lists:
|
||||
one_list += lst
|
||||
return one_list
|
||||
|
||||
def remove_dbs(self, double):
|
||||
""" Remove douuble item from list """
|
||||
"""
|
||||
Remove douuble item from list
|
||||
"""
|
||||
one = []
|
||||
for dup in double:
|
||||
if dup not in one:
|
||||
|
@ -45,18 +49,20 @@ class Utils(object):
|
|||
return one
|
||||
|
||||
def read_file(self, registry):
|
||||
""" Return reading file """
|
||||
"""
|
||||
Return reading file
|
||||
"""
|
||||
with open(registry, "r") as file_txt:
|
||||
read_file = file_txt.read()
|
||||
file_txt.close()
|
||||
return read_file
|
||||
|
||||
def package_name(self, PACKAGES_TXT, repo):
|
||||
""" Return PACKAGE NAME """
|
||||
"""
|
||||
Return PACKAGE NAME
|
||||
"""
|
||||
packages = []
|
||||
for line in PACKAGES_TXT.splitlines():
|
||||
# index += 1
|
||||
# toolbar_width = status(index, toolbar_width, step)
|
||||
if line.startswith("PACKAGE NAME:"):
|
||||
if repo == "slackr":
|
||||
packages.append(line[14:].strip())
|
||||
|
@ -65,7 +71,9 @@ class Utils(object):
|
|||
return packages
|
||||
|
||||
def check_downloaded(self, path, maybe_downloaded):
|
||||
""" Return downloaded packages """
|
||||
"""
|
||||
Return downloaded packages
|
||||
"""
|
||||
downloaded = []
|
||||
for pkg in maybe_downloaded:
|
||||
if os.path.isfile(path + pkg):
|
||||
|
@ -73,7 +81,9 @@ class Utils(object):
|
|||
return downloaded
|
||||
|
||||
def read_file_pkg(self, file_pkg):
|
||||
""" Return packages from file """
|
||||
"""
|
||||
Return packages from file
|
||||
"""
|
||||
packages = []
|
||||
if os.path.isfile(file_pkg):
|
||||
packages = []
|
||||
|
@ -86,7 +96,9 @@ class Utils(object):
|
|||
return filter(lambda x: x != "", packages)
|
||||
|
||||
def read_config(self, config):
|
||||
""" Read config file and return uncomment line """
|
||||
"""
|
||||
Read config file and return uncomment line
|
||||
"""
|
||||
for line in config.splitlines():
|
||||
line = line.lstrip()
|
||||
if line and not line.startswith("#"):
|
||||
|
|
Loading…
Add table
Reference in a new issue