kiwi-el8/kiwi/package_manager/dnf.py

252 lines
7.9 KiB
Python

# Copyright (c) 2015 SUSE Linux GmbH. All rights reserved.
#
# This file is part of kiwi.
#
# kiwi 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.
#
# kiwi 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 kiwi. If not, see <http://www.gnu.org/licenses/>
#
import re
# project
from kiwi.command import Command
from kiwi.package_manager.base import PackageManagerBase
from kiwi.exceptions import (
KiwiRequestError
)
class PackageManagerDnf(PackageManagerBase):
"""
Implements base class for installation/deletion of
packages and collections using dnf
"""
def post_init(self, custom_args=None):
"""
Post initialization method
Store custom dnf arguments
Attributes
* :attr:`dnf_args`
dnf arguments from repository runtime configuration
* :attr:`command_env`
dnf command environment from repository runtime configuration
:param list custom_args: custom dnf arguments
"""
self.custom_args = custom_args
if not custom_args:
self.custom_args = []
runtime_config = self.repository.runtime_config()
self.dnf_args = runtime_config['dnf_args']
self.command_env = runtime_config['command_env']
def request_package(self, name):
"""
Queue a package request
:param string name: package name
"""
self.package_requests.append(name)
def request_collection(self, name):
"""
Queue a collection request
:param string name: dnf group name
"""
self.collection_requests.append('"' + name + '"')
def request_product(self, name):
"""
Queue a product request
There is no product definition in the fedora repo data
:param string name: unused
"""
pass
def request_package_exclusion(self, name):
"""
Queue a package exclusion(skip) request
:param string name: package name
"""
self.exclude_requests.append(name)
def process_install_requests_bootstrap(self):
"""
Process package install requests for bootstrap phase (no chroot)
"""
Command.run(
['dnf'] + self.dnf_args + ['makecache']
)
bash_command = [
'dnf'
] + self.dnf_args + [
'--installroot', self.root_dir
] + self.custom_args + ['install'] + self.package_requests
if self.collection_requests:
bash_command += [
'&&', 'dnf'
] + self.dnf_args + [
'--installroot', self.root_dir
] + self.custom_args + [
'group', 'install'
] + self.collection_requests
self.cleanup_requests()
return Command.call(
['bash', '-c', ' '.join(bash_command)], self.command_env
)
def process_install_requests(self):
"""
Process package install requests for image phase (chroot)
"""
if self.exclude_requests:
# For DNF, excluding a package means removing it from
# the solver operation. This is done by adding --exclude
# to the command line. This means that if the package is
# hard required by another package, it will break the transaction.
for package in self.exclude_requests:
self.custom_args.append('--exclude=' + package)
Command.run(
['chroot', self.root_dir, 'rpm', '--rebuilddb']
)
chroot_dnf_args = self.root_bind.move_to_root(
self.dnf_args
)
bash_command = [
'chroot', self.root_dir, 'dnf'
] + chroot_dnf_args + self.custom_args + [
'install'
] + self.package_requests
if self.collection_requests:
bash_command += [
'&&', 'chroot', self.root_dir, 'dnf'
] + chroot_dnf_args + self.custom_args + [
'group', 'install'
] + self.collection_requests
self.cleanup_requests()
return Command.call(
['bash', '-c', ' '.join(bash_command)], self.command_env
)
def process_delete_requests(self, force=False):
"""
Process package delete requests (chroot)
:param bool force: force deletion: true|false
"""
delete_items = []
for delete_item in self.package_requests:
try:
Command.run(['chroot', self.root_dir, 'rpm', '-q', delete_item])
delete_items.append(delete_item)
except Exception:
# ignore packages which are not installed
pass
if not delete_items:
raise KiwiRequestError(
'None of the requested packages to delete are installed'
)
delete_options = ['--nodeps', '--allmatches', '--noscripts']
self.cleanup_requests()
return Command.call(
[
'chroot', self.root_dir, 'rpm', '-e'
] + delete_options + delete_items,
self.command_env
)
def update(self):
"""
Process package update requests (chroot)
"""
chroot_dnf_args = self.root_bind.move_to_root(
self.dnf_args
)
return Command.call(
[
'chroot', self.root_dir, 'dnf'
] + chroot_dnf_args + self.custom_args + [
'upgrade'
],
self.command_env
)
def process_only_required(self):
"""
Setup package processing only for required packages
"""
if '--setopt=install_weak_deps=False' not in self.custom_args:
self.custom_args.append('--setopt=install_weak_deps=False')
def process_plus_recommended(self):
"""
Setup package processing to also include recommended dependencies.
"""
if '--setopt=install_weak_deps=False' in self.custom_args:
self.custom_args.remove('--setopt=install_weak_deps=False')
def match_package_installed(self, package_name, dnf_output):
"""
Match expression to indicate a package has been installed
This match for the package to be installed in the output
of the dnf command is not 100% accurate. There might
be false positives due to sub package names starting with
the same base package name
:param list package_list: list of all packages
:param string log_line: dnf status line
"""
return re.match(
'.*Installing : ' + re.escape(package_name) + '.*', dnf_output
)
def match_package_deleted(self, package_name, dnf_output):
"""
Match expression to indicate a package has been deleted
:param list package_list: list of all packages
:param string log_line: dnf status line
"""
return re.match(
'.*Removing: ' + re.escape(package_name) + '.*', dnf_output
)
def database_consistent(self):
"""
Check if rpm package database is consistent
"""
try:
Command.run(['chroot', self.root_dir, 'rpmdb', '--initdb'])
return True
except Exception:
return False
def dump_reload_package_database(self, version=45):
"""
Dump and reload the rpm database to match the desired rpm db version
For the supported RHEL versions there is no dump/reload cycle required
:param string version: unused
"""
pass