blob: aeae5c3c5c33781f38aab008602c34babd41df5b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
---
#
# Which package manager to use, options are:
# - packagekit - PackageKit CLI tool
# - zypp - Zypp RPM frontend
# - yum - Yum RPM frontend
# - dnf - DNF, the new RPM frontend
# - urpmi - Mandriva package manager
# - apt - APT frontend for DEB and RPM
# - pacman - Pacman
# - portage - Gentoo package manager
# - entropy - Sabayon package manager
#
backend: portage
#
# List of maps with package operations such as install or remove.
# Distro developers can provide a list of packages to remove
# from the installed system (for instance packages meant only
# for the live system).
#
# A job implementing a distro specific logic to determine other
# packages that need to be installed or removed can run before
# this one. Distro developers may want to install locale packages
# or remove drivers not needed on the installed system.
# This job will populate a list of dictionaries in the global
# storage called "packageOperations" and it is processed
# after the static list in the job configuration.
#
operations:
- remove:
- app-admin/calamares
- app-misc/calamares-config-kogaion
- app-misc/calamares-runtime
- app-misc/kogaion-live
- dev-cpp/yaml-cpp
- dev-qt/designer:5
- dev-qt/linguist-tools:5
- dev-qt/qtconcurrent:5
- dev-qt/qtcore:5
- dev-qt/qtdbus:5
- dev-qt/qtdeclarative:5
- dev-qt/qtgui:5
- dev-qt/qtnetwork:5
- dev-qt/qtopengl:5
- dev-qt/qtprintsupport:5
- dev-qt/qtscript:5
- dev-qt/qtsvg:5
- dev-qt/qttest:5
- dev-qt/qtwidgets:5
- dev-qt/qtxml:5
- dev-qt/qtxmlpatterns:5
- kde-frameworks/extra-cmake-modules
- kde-frameworks/kconfig
- kde-frameworks/kcoreaddons
- kde-frameworks/kf-env
- kde-frameworks/ki18n
- kde-frameworks/solid
- sys-apps/dmidecode
- sys-auth/polkit-qt5
- sys-boot/os-prober
- x11-themes/kogaion-artwork-calamares
# - install:
# - pkg1
# - pkg2
# - localInstall:
# - /path/to/pkg1
|