cmds.distro: Move all modules to lib
Functions abstracting the distribution are not only needed in the context of the distro subcommand, but also by other code, so make the bulk of the code abstracting the distribution available in some place more universally useful than below cmds.distro. This commit leaves the source files mostly unchanged. They are only patched to fix import paths, so that functionality is preserved. Refactoring the code from command-line API to library API will be done by the next commit. Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
parent
f94a2ac037
commit
7e7cee6d11
45 changed files with 44 additions and 42 deletions
14
src/python/jw/pkg/lib/distros/debian/Delete.py
Normal file
14
src/python/jw/pkg/lib/distros/debian/Delete.py
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
|
||||
from argparse import Namespace
|
||||
|
||||
from ...Cmd import Cmd
|
||||
from ..BeDelete import BeDelete as Base
|
||||
|
||||
class Delete(Base):
|
||||
|
||||
def __init__(self, parent: Cmd):
|
||||
super().__init__(parent)
|
||||
|
||||
async def run(self, args: Namespace):
|
||||
return await self.util.dpkg(['-P', *args.names], sudo=True)
|
||||
18
src/python/jw/pkg/lib/distros/debian/Dup.py
Normal file
18
src/python/jw/pkg/lib/distros/debian/Dup.py
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
|
||||
from argparse import Namespace
|
||||
|
||||
from ...Cmd import Cmd
|
||||
from ..BeDup import BeDup as Base
|
||||
|
||||
class Dup(Base):
|
||||
|
||||
def __init__(self, parent: Cmd):
|
||||
super().__init__(parent)
|
||||
|
||||
async def run(self, args: Namespace):
|
||||
apt_get_args: list[str] = []
|
||||
if args.download_only:
|
||||
apt_get_args.append('--download-only')
|
||||
apt_get_args.append('upgrade')
|
||||
return await self.util.apt_get(apt_get_args)
|
||||
19
src/python/jw/pkg/lib/distros/debian/Install.py
Normal file
19
src/python/jw/pkg/lib/distros/debian/Install.py
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
|
||||
from argparse import Namespace
|
||||
|
||||
from ...Cmd import Cmd
|
||||
from ..BeInstall import BeInstall as Base
|
||||
|
||||
class Install(Base):
|
||||
|
||||
def __init__(self, parent: Cmd):
|
||||
super().__init__(parent)
|
||||
|
||||
async def run(self, args: Namespace):
|
||||
apt_get_args = ['install']
|
||||
if args.only_update:
|
||||
apt_get_args.append('--only-upgrade')
|
||||
apt_get_args.append('--no-install-recommends')
|
||||
apt_get_args.extend(args.packages)
|
||||
return await self.util.apt_get(apt_get_args)
|
||||
4
src/python/jw/pkg/lib/distros/debian/Makefile
Normal file
4
src/python/jw/pkg/lib/distros/debian/Makefile
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
TOPDIR = ../../../../../../..
|
||||
|
||||
include $(TOPDIR)/make/proj.mk
|
||||
include $(JWBDIR)/make/py-mod.mk
|
||||
20
src/python/jw/pkg/lib/distros/debian/Pkg.py
Normal file
20
src/python/jw/pkg/lib/distros/debian/Pkg.py
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
|
||||
from typing import Iterable
|
||||
from argparse import Namespace
|
||||
|
||||
from ...Package import Package
|
||||
from ...pm.dpkg import list_files, query_packages
|
||||
from ...Cmd import Cmd
|
||||
from ..BePkg import BePkg as Base
|
||||
|
||||
class Pkg(Base):
|
||||
|
||||
def __init__(self, parent: Cmd):
|
||||
super().__init__(parent)
|
||||
|
||||
async def _files(self, name: str) -> Iterable[str]:
|
||||
return await list_files(name)
|
||||
|
||||
async def _meta_data(self, names: Iterable[str]) -> Iterable[Package]:
|
||||
return await query_packages(names)
|
||||
29
src/python/jw/pkg/lib/distros/debian/RebootRequired.py
Normal file
29
src/python/jw/pkg/lib/distros/debian/RebootRequired.py
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
|
||||
import os
|
||||
from argparse import Namespace
|
||||
|
||||
from ...log import *
|
||||
from ...Cmd import Cmd
|
||||
from ..BeRebootRequired import BeRebootRequired as Base
|
||||
|
||||
class RebootRequired(Base):
|
||||
|
||||
def __init__(self, parent: Cmd):
|
||||
super().__init__(parent)
|
||||
|
||||
async def run(self, args: Namespace):
|
||||
reboot_required = '/run/reboot_required'
|
||||
if os.path.exists(reboot_required):
|
||||
if args.verbose:
|
||||
log(NOTICE, f'Yes. {reboot_required} exists.')
|
||||
required_pkgs = '/run/reboot-required.pkgs'
|
||||
if os.path.exists(required_pkgs):
|
||||
with open(required_pkgs, 'r') as f:
|
||||
content = f.read()
|
||||
print(f'-- From {required_pkgs}:')
|
||||
print(content.strip())
|
||||
return 1
|
||||
if args.verbose:
|
||||
log(NOTICE, f'No. {reboot_required} doesn\'t exist.')
|
||||
return 0
|
||||
14
src/python/jw/pkg/lib/distros/debian/Refresh.py
Normal file
14
src/python/jw/pkg/lib/distros/debian/Refresh.py
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
|
||||
from argparse import Namespace
|
||||
|
||||
from ...Cmd import Cmd
|
||||
from ..BeRefresh import BeRefresh as Base
|
||||
|
||||
class Refresh(Base):
|
||||
|
||||
def __init__(self, parent: Cmd):
|
||||
super().__init__(parent)
|
||||
|
||||
async def run(self, args: Namespace):
|
||||
return await self.util.apt_get(['update'])
|
||||
17
src/python/jw/pkg/lib/distros/debian/Select.py
Normal file
17
src/python/jw/pkg/lib/distros/debian/Select.py
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
|
||||
from typing import Iterable
|
||||
from argparse import Namespace
|
||||
|
||||
from ...Package import Package
|
||||
from ...pm.dpkg import query_packages
|
||||
from ...Cmd import Cmd
|
||||
from ..BeSelect import BeSelect as Base
|
||||
|
||||
class Select(Base):
|
||||
|
||||
def __init__(self, parent: Cmd):
|
||||
super().__init__(parent)
|
||||
|
||||
async def _all_installed_packages(self) -> Iterable[Package]:
|
||||
return await query_packages()
|
||||
22
src/python/jw/pkg/lib/distros/debian/Util.py
Normal file
22
src/python/jw/pkg/lib/distros/debian/Util.py
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
|
||||
from ...Cmd import Cmd
|
||||
from ...pm.dpkg import run_dpkg
|
||||
from ..Util import Util as Base
|
||||
|
||||
class Util(Base):
|
||||
|
||||
def __init__(self, parent: Cmd):
|
||||
super().__init__(parent)
|
||||
|
||||
async def apt_get(self, args: list[str]):
|
||||
cmd = ['/usr/bin/apt-get']
|
||||
mod_env = None
|
||||
if not self.interactive:
|
||||
cmd.extend(['--yes', '--quiet'])
|
||||
mod_env = { 'DEBIAN_FRONTEND': 'noninteractive' }
|
||||
cmd.extend(args)
|
||||
return await self._sudo(cmd, mod_env=mod_env)
|
||||
|
||||
async def dpkg(self, *args, **kwargs):
|
||||
return await run_dpkg(*args, **kwargs)
|
||||
Loading…
Reference in a new issue